diff --git a/bin/near b/bin/near index 62e5ad67..5fcf8e0c 100755 --- a/bin/near +++ b/bin/near @@ -30,7 +30,12 @@ const deploy = { const scheduleFunctionCall = { command: 'call [args]', desc: 'schedule smart contract call which can modify state', - builder: (yargs) => yargs, + builder: (yargs) => yargs + .option('amount', { + desc: 'Number of tokens to attach', + type: 'string', + default: '1000000000' + }), handler: (argv) => exitOnError(main.scheduleFunctionCall(argv)) };