Internal Transfer (Send)
Testnet Env
Testnet Env
POST
/api/v1/transfer
Last modified:2024-11-05 05:48:37
Request
Header Params
VESSEL-TIMESTAMP
string
required
VESSEL-API-KEY
string
required
Default:
{{API_KEY}}
VESSEL-PASSPHRASE
string
required
Default:
{{API_PASSPHRASE}}
VESSEL-SIGNATURE
string
required
Body Params application/json
eip712Message
string
required
account: Sender's account address.
domain: Contains metadata such as chainId and application name(Vessel) for the signing context.
message: Message details with the following:
action: Specifies the operation as "Send".
fromAddress: Address of the sender.
toAddress: Address of the recipient.
assetID: ID of the asset being transferred.
sendAmount: Amount to send.
feeAmount: Associated fee (if any). Currently, the fee is 0.
nonce: A unique number ensuring the request is not repeated.
timestamp: The timestamp of the transfer request.
primaryType and types: Metadata for the EIP-712 standard.
eip712Signature
string
required
signature
string
required
Example
{
"eip712Message": "{\"account\":\"0xdB456C895F91C8A098b22EB0AAe1BA7d85c5AE96\",\"domain\":{\"chainId\":31337,\"name\":\"Vessel\"},\"message\":{\"action\":\"Send\",\"fromAddress\":\"0xdB456C895F91C8A098b22EB0AAe1BA7d85c5AE96\",\"toAddress\":\"0xBA2B367127D42f1cC397897B12346911925E5566\",\"assetID\":\"1\",\"sendAmount\":\"0.345\",\"feeAmount\":\"0.0\",\"nonce\":\"1730783550464\",\"timestamp\":\"1730783550464\"},\"primaryType\":\"Vessel\",\"types\":{\"EIP712Domain\":[{\"name\":\"name\",\"type\":\"string\"},{\"name\":\"chainId\",\"type\":\"uint256\"}],\"Vessel\":[{\"name\":\"action\",\"type\":\"string\"},{\"name\":\"fromAddress\",\"type\":\"address\"},{\"name\":\"toAddress\",\"type\":\"address\"},{\"name\":\"assetID\",\"type\":\"string\"},{\"name\":\"sendAmount\",\"type\":\"string\"},{\"name\":\"feeAmount\",\"type\":\"string\"},{\"name\":\"nonce\",\"type\":\"string\"},{\"name\":\"timestamp\",\"type\":\"string\"}]}}",
"signature": "0x2202b0a6d7ccbec725dfdb2e10c2889e7806e5c4de901f278e8adcce1d8299144f558e09a948c3f6dcf54103a415cfa14c90d62e92425ad44609561e8a0f1fa7",
"eip712Signature": "0xe2e634eb0918e059dd9ae5b9a9b0220da7d7077ee78c75241bc6cc3fd4e6c454407aa1e386a2d83152364cfcda440656d989729b681b1c3f9a93259b4cd6bad21c"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://testnet.trade.vessel.finance/api/v1/transfer' \
--header 'VESSEL-TIMESTAMP;' \
--header 'VESSEL-TIMESTAMP;' \
--header 'VESSEL-API-KEY;' \
--header 'VESSEL-PASSPHRASE;' \
--header 'VESSEL-SIGNATURE;' \
--header 'Content-Type: application/json' \
--data-raw '{
"eip712Message": "{\"account\":\"0xdB456C895F91C8A098b22EB0AAe1BA7d85c5AE96\",\"domain\":{\"chainId\":31337,\"name\":\"Vessel\"},\"message\":{\"action\":\"Send\",\"fromAddress\":\"0xdB456C895F91C8A098b22EB0AAe1BA7d85c5AE96\",\"toAddress\":\"0xBA2B367127D42f1cC397897B12346911925E5566\",\"assetID\":\"1\",\"sendAmount\":\"0.345\",\"feeAmount\":\"0.0\",\"nonce\":\"1730783550464\",\"timestamp\":\"1730783550464\"},\"primaryType\":\"Vessel\",\"types\":{\"EIP712Domain\":[{\"name\":\"name\",\"type\":\"string\"},{\"name\":\"chainId\",\"type\":\"uint256\"}],\"Vessel\":[{\"name\":\"action\",\"type\":\"string\"},{\"name\":\"fromAddress\",\"type\":\"address\"},{\"name\":\"toAddress\",\"type\":\"address\"},{\"name\":\"assetID\",\"type\":\"string\"},{\"name\":\"sendAmount\",\"type\":\"string\"},{\"name\":\"feeAmount\",\"type\":\"string\"},{\"name\":\"nonce\",\"type\":\"string\"},{\"name\":\"timestamp\",\"type\":\"string\"}]}}",
"signature": "0x2202b0a6d7ccbec725dfdb2e10c2889e7806e5c4de901f278e8adcce1d8299144f558e09a948c3f6dcf54103a415cfa14c90d62e92425ad44609561e8a0f1fa7",
"eip712Signature": "0xe2e634eb0918e059dd9ae5b9a9b0220da7d7077ee78c75241bc6cc3fd4e6c454407aa1e386a2d83152364cfcda440656d989729b681b1c3f9a93259b4cd6bad21c"
}'
Responses
🟢200Success
application/json
Body
message
string
required
Example
{
"message": "success"
}
Modified at 2024-11-05 05:48:37