Skip to content

Commit

Permalink
Increase payments
Browse files Browse the repository at this point in the history
  • Loading branch information
davidatwhiletrue committed Dec 7, 2022
1 parent 2466a09 commit 1f8ff7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Docs/Examples/CallCEP47/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static async Task Main(string[] args)
try
{
var deployHelper = cep47Client.MintOne(user1Key.PublicKey, new AccountHashKey(user1Key.PublicKey),
TOKEN_ID, meta, 12_000_000_000);
TOKEN_ID, meta, 18_000_000_000);

deployHelper.Sign(user1Key);

Expand Down Expand Up @@ -111,7 +111,7 @@ static async Task Main(string[] args)
try
{
var deployHelper = cep47Client.TransferToken(user1Key.PublicKey, new AccountHashKey(user2Key.PublicKey),
new List<BigInteger>() { TOKEN_ID }, 12_000_000_000);
new List<BigInteger>() { TOKEN_ID }, 18_000_000_000);

deployHelper.Sign(user1Key);
await deployHelper.PutDeploy();
Expand Down Expand Up @@ -145,7 +145,7 @@ static async Task Main(string[] args)
try
{
var deployHelper = cep47Client.BurnOne(user2Key.PublicKey, new AccountHashKey(user2Key.PublicKey),
TOKEN_ID, 12_000_000_000);
TOKEN_ID, 18_000_000_000);

deployHelper.Sign(user2Key);
await deployHelper.PutDeploy();
Expand Down

0 comments on commit 1f8ff7a

Please sign in to comment.