Jump to
Ctrl
+
/

Link Address

POST
/vaults/{vaultId}/{blockchain}/{network}/link-address

Through this endpoint, users can link addresses from Smart Vault to the Station address with the station address responsible for paying gas fees on behalf of all linked addresses. The linking process does not require approval.


Linking an address is an on-chain transaction and requires fee which will be paid from the station address in the Smart Vault. Linking is recommended only after having assets on this address which you want to transfer, linking is one timer operation per address..

Completing this step is required before using the station address.

Linking the address is allowed only for Smart Vaults.

Path Parameters

blockchain string Required

Represents the specific blockchain protocol name, e.g Ethereum.

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while network like "testnet", sepolia, nile are test networks.

vaultId string Required

The specific VaultID.

Default : 60c9d9921c38030006675ff6

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Request Body Schema application/json

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

data object Required
item object Required
address string Required

Address that you want to link.

Default : 0xd7861c7b036bc8d4746ddcda457e90d7a066db1d
feePriority string Optional

Represents the fee priority of the transaction, whether it is "slow", "standard" or "fast".

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-05-09
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
item object Required
feePriority string Required

Represents the fee priority of the transaction, whether it is "slow", "standard" or "fast".

standard
transactionRequestId string Required

Id of the created transaction.

6017dd02a309213863be9e55
type string Required

Represents the type of a transaction.

linking
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "feePriority": "standard",
            "transactionRequestId": "6017dd02a309213863be9e55",
            "type": "linking"
        }
    }
}