From 1f8ff7a721271fd84e0c4a7ca8cfc3ad65bbc19b Mon Sep 17 00:00:00 2001 From: David Hernando Date: Wed, 7 Dec 2022 21:48:23 +0100 Subject: [PATCH] Increase payments --- Docs/Examples/CallCEP47/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Docs/Examples/CallCEP47/Program.cs b/Docs/Examples/CallCEP47/Program.cs index f0d99fa..aaf560f 100644 --- a/Docs/Examples/CallCEP47/Program.cs +++ b/Docs/Examples/CallCEP47/Program.cs @@ -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); @@ -111,7 +111,7 @@ static async Task Main(string[] args) try { var deployHelper = cep47Client.TransferToken(user1Key.PublicKey, new AccountHashKey(user2Key.PublicKey), - new List() { TOKEN_ID }, 12_000_000_000); + new List() { TOKEN_ID }, 18_000_000_000); deployHelper.Sign(user1Key); await deployHelper.PutDeploy(); @@ -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();