Address

Metacoin Address and balance

Create new Adderess

post
/address

Warning!!

  • An ECDSA private key that is paired with the ECDSA public key is used to authorize the transfer.
  • When you make your wallet, please keep the Private Key that is paired with the Public Key you sent in a safe place.
  • If you lose your private key, you can not claim your wallet.
  • ECDSA curve is prime256v1(secp256r1) or secp384r1 or secp521r1.
Query parameters
publickeystring · pem encodingRequired

ECDSA Public key for signing

addinfostring · max: 2048Optional
  • Address memo
  • Up to 2048 characters are stored, and characters after 2048 characters are not stored.
Responses
post
/address

Get address status

get
/address/{address}
Path parameters
addressstring · Metacoin AddressRequired

Metacoin address

Responses
get
/address/{address}

Get address list by public key

post
/address/bykey
Query parameters
publickeystringRequired
  • Metacoin address's public key
  • ignore carriage return, line feed, "-----BEGIN PUBLIC KEY-----", "-----END PUBLIC KEY-----"
Example: -----BEGIN PUBLIC KEY-----\nMIGbMBAGByqGSM49AgEGBSuBBAAjA4GGAAQBBp5oHHFaATF1UIephJYgtW+u2+aT\nhZLxNgn5JZhgFXzvTUHlThZxb61eTXMMjyU/IloNznwtzRWuPq1oMDOMq9oBbT/t\nE4lgyPF5/QtzuhaaYRpr/ahZ4JSLyHOegkopXeic3UFUmkpb4mXuSGgu5mChuuUC\nktjfluGNtvXHOWYtqTU=\n-----END PUBLIC KEY-----
Responses
post
/address/bykey

Get Temporary key(nonce) for ganerate transaction(ex Transfer, Dapp Create or Token Create)

get
/nonce/{address}
  • By using the signature value recorded in the transaction, the key value is obtained to prevent duplicate calls by other users.
  • In the existing blockchain, the nonce value is a serial number that means the number of TX occurrences, but in Metacoin, it is a random key value.
  • This command replaces the existing "getkey" API.
Path parameters
addressstring · Metacoin addressRequired

Address to get nonce value

Responses
get
/nonce/{address}

Get balance of address

get
/balance/{address}
Path parameters
addressstring · Metacoin addressRequired

Metacoin address

Responses
get
/balance/{address}

Last updated