Assign an Gas Pump Address as a Deposit Address
Assign an Gas Pump Address as a Virtual Account Deposit Address
Virtual Accounts (VA) support adding existing blockchain addresses as Deposit Addresses. The most common use case is adding a Gas Pump (GP) address. See the GP flow at the following link.
Once you have your "Slave GP Contract Addresses" ready, you may create a Virtual Account and add the address as a Deposit Address.
Example request:
curl --request POST \
--url 'https://api.tatum.io/v3/offchain/account/{id}/address/{address}' \
--header 'x-api-key: {YOUR_API_KEY}'
//Response:
{
address: '0x6d7abd9f164db455e5aabfb5a53307e8d5657555',
currency: 'MATIC' // The currency will match the same as the Account
}
Good to Know
- You may add an external address to a VA, as long as said account was created without an XPUB.
- Assets that may be already present in the "Slave GP Contract Addresses" to be bound to the VA won't be considered to update the available balance.
Updated 5 months ago