./src/zcash-cli z_sendmany “tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5” “[{"amount": 1.0, "address": "t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7"}]”
error: {“code”:-8,“message”:“Invalid parameter, unknown address format: t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7”}
what’s wrong?
try switching the order:
./src/zcash-cli z_sendmany “tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5” “[{"address": "t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7", "amount": 1 }]”
./src/zcash-cli z_sendmany “tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5” “[{"address": "t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7", "amount": 1 }]”
error: {“code”:-8,“message”:“Invalid parameter, unknown address format: t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7”}
anon
4
instead of escape quote hell, go with smth more terse
$ ./src/zcash-cli z_sendmany tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5 '[{"amount": 1, "address": "t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7"}]'
anon
5
order of address, amount and memo elements doesn’t matter for single tx
./src/zcash-cli z_sendmany tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5 ‘[{“amount”: 1, “address”: “t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7”}]’
error: {“code”:-8,“message”:“Invalid parameter, unknown address format: t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7”}
./src/zcash-cli getinfo
{
“version” : 1000050,
“protocolversion” : 170002,
“walletversion” : 60000,
“balance” : 7.93670000,
“blocks” : 8726,
“timeoffset” : 0,
“connections” : 1,
“proxy” : “”,
“difficulty” : 1098.75625849,
“testnet” : true,
“keypoololdest” : 1478723090,
“keypoolsize” : 101,
“paytxfee” : 0.00000000,
“relayfee” : 0.00005000,
“errors” : “”
./src/zcash-cli z_listaddresses
[
“ztcbkTuzfeFw9cRZHBxr6N9ATRZRqvWSAuhqAz3No9QKJvmjg4ArYV1idDvyrtUB7AKmYWWKTwDoQDQCgLUvRUydQW7uB2t”
]
actually i didnt notice at first the error msg … there seems to be a problem with the addresses
try:
./src/zcash-cli listreceivedbyaddress 0 true
to list all the t-addresses …
./src/zcash-cli listreceivedbyaddress 0 true
[
{
“address” : “tmTCqPzRVxomLJJ3E6qro88447DQH6tzKNW”,
“account” : “”,
“amount” : 0.00000000,
“confirmations” : 0,
“txids” : [
]
},
{
“address” : “tmVjvMeEVbCeRzgmB72ZMWgpqkzQjgN1P6k”,
“account” : “”,
“amount” : 0.00000000,
“confirmations” : 0,
“txids” : [
]
}
]
both addresses have no coins in them!?
and the from t-addr that you are using is not one of the ones you have in your wallet?
“tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5”
./src/zcash-cli z_sendmany “tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5” “[{"amount": 1.0, "address": "t1eJoj5qq46QT4D1AffkWMJkbVAcU5bFSd7"}]”
./src/zcash-cli listunspent
[
{
“txid” : “1d06a52277416727d7e93b5bb6c932cc7ac08f2d8a36563e01af8dbc821dac03”,
“vout” : 0,
“address” : “tmFWTttGhJee3spHukZdhgvG6qht1Qc8Pu5”,
“scriptPubKey” : “2103ce843d09173db8546b8a08af91d074cefa359c7cdba19ed8166b875d74ecd882ac”,
“amount” : 3.84600000,
“confirmations” : 1064,
“spendable” : true
},
{
“txid” : “7b8d946b5b499d94211795eb7a38a1c073f4d75cb93ef5f086adfe06d61d41b3”,
“vout” : 0,
“address” : “tmVjoELJ4ErxB1yeSGzphoppcjdjhNymUXA”,
“scriptPubKey” : “21022d8ffcbe16c0c07361f0055f9f7532a4ddedf03d99338965dca7d9fd6f0e3e95ac”,
“amount” : 4.09070000,
“confirmations” : 578,
“spendable” : true
}
]
what about:
./src/zcash-cli z_gettotalbalance
and the addresses that you see in the listunspent are the addresses that sent you the coins … as far as i understand
./src/zcash-cli z_gettotalbalance
{
“transparent” : “7.9367”,
“private” : “0.00”,
“total” : “7.9367”
}
this is very strange!!!
the amount in transparent means that they should be in your t-addresses , yet the listreceivedbyaddress shows no amounts in your t-addresses!!!
is that a backup ? i mean did you export / import your wallet ?
your addresses are the ones under “own addresses” … what does that show?
ok … side question … what is your mining power (what hardware are you mining with) to get 7.xxx ZECs ?
just curious :)))
and also, what does it say under “own addresses” ? are these the same addresses that you got from
./src/zcash-cli listreceivedbyaddress 0 true
?