Tools for Issuing Asset Sponsorship

Hello,

I created simple web-page (HTML, JS) to help people issue asset sponsorship.
It consists of two pages:

  1. sponsor.html = It can be used to issue sponsorship.
  2. transfer.html = it can be used to perform transfer using sponsored asset as fee.

Feel free to clone/download it from https://github.com/developerppv/waves-tools
Or you can open it directly https://developerppv.github.io/waves-tools/

Cheers.

4 Likes

May be you can deploy it on Github Pages and share the link?

1 Like

One can also use simple code on C# with WavesCs:

Asset asset = Assets.GetById("3xEkwjCavAq9hKdi5awW1Mb931TtrneMeM6F8RKHUogY", node);
decimal minimalFeeInAssets = 0.0001m;
node.SponsoredFeeForAsset(account, asset, minimalFeeInAssets);

Details are here

1 Like

Thank you… I will use it on my project!

don’t forget to add option to disband sponsorship in case it is needed (token compromized and etc :))