Learn how to create dedicated addresses for your customers to deposit stablecoins
isEvmCompatible: true
.Parameter | Type | Default | Description |
---|---|---|---|
disableAutoSweep | Boolean (Optional) | false | If set to true , automatic sweeping of funds from this address is disabled. |
enableGaslessWithdraw | Boolean (Optional) | false | If set to true , allows withdrawals without requiring the user to pay gas fees directly. |
metadata | Object (Optional) | null | Custom metadata you can attach to the address for your own reference or tracking purposes. |
name | String (Optional) | null | A human-readable name for the address, useful for identification in your dashboard or logs. |
showPrivateKey | Boolean (Optional) | false | If set to true , the private key for this address will be returned in the API response. Use with caution. |
disableAutoSweep
, enableGaslessWithdraw
, and showPrivateKey
will override the corresponding settings in the master wallet configuration for this specific address. This allows for granular control at the address level, regardless of the wallet’s default settings.showPrivateKey
can expose sensitive information. Only use this in secure, trusted environments.showPrivateKey
exposing private keys can compromise security.POST
request to our Create Dedicated Address API.
Key | Required | Type | Description |
---|---|---|---|
name | false | string | The name of the address. |
address | true | string | The wallet address. |
metadata | false | object | Additional metadata for the address. This will be part of any transaction tied to this. |
showPrivateKey | false | boolean | If you want the address private key to be part of the response. |
disableAutoSweep | false | boolean | Disable automatic sweeping of assets sent to the address into your master wallet. |
enableGaslessWithdraw | false | boolean | Enable gasless transactions from this address. |
privateKey | false | string | The private key associated with the address. Required for executing actions securely. |