From e56c40f27b1376d4a190a81ffa327e6cbd3265cf Mon Sep 17 00:00:00 2001 From: Adrian C <92168447+windushka@users.noreply.github.com> Date: Wed, 31 May 2023 13:09:58 +0200 Subject: [PATCH] added details about max_coins (#198) --- packages/sc-deployer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sc-deployer/README.md b/packages/sc-deployer/README.md index b1deff6a..c6de4045 100644 --- a/packages/sc-deployer/README.md +++ b/packages/sc-deployer/README.md @@ -56,10 +56,10 @@ import { Args } from '@massalabs/massa-web3'; args: new Args().addString('Test'), // Arguments to pass to the constructor of the contract, use `NoArg` if any } as ISCData, ], - fromMAS(0.1), // max coins 0n, // fees 4_200_000_000n, // max gas true, // wait for the first event to be emitted and print it into the console. + fromMAS(0.1), // max coins (Optional. If not set, an estimated value will be used) ); })(); ```