Assign Address For Account
Assign an address to a given account.
Required Params
Param
Purpose
Requirements
account_id
The account on which to perform this action.
The account must exist in the wallet.
Optional Params
Param
Purpose
Requirements
metadata
The metadata for this address.
String; can contain stringified JSON.
Examples
{
"method": "assign_address_for_account",
"params": {
"account_id": "60ef9401f98fc278cd8a1ef51f466111244c9d4b97e8f8886a86bd840238dcaa",
"metadata": "For transactions from Bob"
},
"jsonrpc": "2.0",
"id": 1
}{
"method": "assign_address_for_account",
"result": {
"address": {
"public_address_b58": "5WyFFfKNKX7DTaNTg9V7wQwaSbmDjaNzBa1QcYnBmM7B8i7yvqbcaN8bnMQLACiCBS9G4QCfESRa4TQwiKLQ7zAKvDSeUcCQGbBu6BmW7XG",
"account_id": "60ef9401f98fc278cd8a1ef51f466111244c9d4b97e8f8886a86bd840238dcaa",
"metadata": "For transactions from Bob",
"subaddress_index": "3"
}
},
"jsonrpc": "2.0",
"id": 1
}Last updated
Was this helpful?