Create Wallet Address
Creates a wallet record for a user.
⚠️
To run this query you need the wallet id parameter. To find this one you need to first use our Get Wallet command.
Example
mutation createWalletAddress {
createWalletAddress(
input: { address: "address_here", addressName: "name_here", uname: "username_here", walletId: 1 }
) {
walletAddress {
address
addressName
rowId
walletId
}
}
}
Response
{
"data": {
"createWalletAddress": {
"walletAddress": {
"address": "address_here",
"addressName": "name_here",
"rowId": 1,
"walletId": 1
}
}
}
}