Shows information about multi-sig contract
Shows information about multi-sig contract
Shows information about multi-sig contract​USAGE$ celocli multisig:show ADDRESS​OPTIONS--all Show info about all transactions--raw Do not attempt to parse transactions--tx=tx Show info for a transaction​EXAMPLESshow 0x5409ed021d9299bf6814279a6a1411a7e866a631​show 0x5409ed021d9299bf6814279a6a1411a7e866a631 --tx 3​show 0x5409ed021d9299bf6814279a6a1411a7e866a631 --all --raw
See code: src/commands/multisig/show.ts​
Ability to approve CELO transfers to and from multisig. Submit transaction or approve a matching existing transaction
Ability to approve CELO transfers to and from multisig. Submit transaction or approve a matching existing transaction​USAGE$ celocli multisig:transfer ADDRESS​OPTIONS--amount=amount (required) Amount to transfer,e.g. 10e18​--from=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d (required) Account transferringvalue to the recipient​--sender=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d Identify sender if performingtransferFrom​--to=0xc1912fEE45d61C87Cc5EA59DaE31190FFFFf232d (required) Recipient of transfer​--transferFrom Perform transferFrom instead oftransfer in the ERC-20 interface​EXAMPLEStransfer <multiSigAddr> --to 0x5409ed021d9299bf6814279a6a1411a7e866a631 --amount200000e18 --from 0x123abc​transfer <multiSigAddr> --transferFrom --sender 0x123abc --to0x5409ed021d9299bf6814279a6a1411a7e866a631 --amount 200000e18 --from 0x123abc
See code: src/commands/multisig/transfer.ts​