Open mojoX911 opened 4 months ago
Add a command in bin/maker/cli named send_to_address that takes in an address:amount string, and sends a transaction to the address with the amount.
bin/maker/cli
send_to_address
address:amount
The maker-cli should pass a new RPCMsg::SendToAddress to makerd.
maker-cli
RPCMsg::SendToAddress
makerd
makerd should parse the message, get the relevant data, create sign and broadcast the transaction.
makerd should log all relevant information of the process.
Add an integration test for this command.
Should I pick this up?
@BEULAHEVANJALIN yup, go ahead.
Add a command in
bin/maker/cli
namedsend_to_address
that takes in anaddress:amount
string, and sends a transaction to the address with the amount.The
maker-cli
should pass a newRPCMsg::SendToAddress
tomakerd
.makerd
should parse the message, get the relevant data, create sign and broadcast the transaction.makerd
should log all relevant information of the process.Add an integration test for this command.