Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Multisig Cheat-Sheet
- getnewaddress //Generates new bitcoin address
- validateaddress <address> //Gets publicKey address
- dumpprivkey <address> //Gets the privatekey
- getrawtransaction <txid> 1 //Gets scriptPubKey and vout
- createmultisig 2 '["","",""]' //Creates the multisig address
- createrawtransaction '[{"txid":"","vout":}]' '{"receive_address":0.0008}'
- signrawtransaction 'hash_from_createraw' '[{"txid":"","vout":,"scriptPubKey":"","redeemScript":""}]' '["priv_key"]'
- signrawtransaction 'hash_from_signraw' '[{"txid":"","vout":,"scriptPubKey":"","redeemScript":""}]' '["priv_key2"]'
- sendrawtransaction <hash_from_2nd_signraw>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement