Transfer
Create CCTP OffRamp
Cross Chain Transfer Protocol is a protocol that allows for the transfer of digital assets across different blockchain networks.
AuthorizationBearer <token>
JWT Bearer token authentication
In: header
sourceChainstring
The network where the CCTP off-ramp originates. Available options are sei
and noble
.
sourceTransactionHashstring
The transaction hash or signature of the Cross Chain Transfer Protocol burn transaction executed on the source chain.
transferIdstring
The transfer ID of the off-ramp in relation to.
Match
^payout_[a-z0-9]+$
Response Body
curl -X POST "https://api.sandbox.spherepay.co/v1/cctp/off-ramp" \
-H "Content-Type: application/json" \
-d '{
"sourceChain": "sei",
"sourceTransactionHash": "0x1234...abcd",
"transferId": 1234567890
}'
{
"id": "cctpOffRamp_1234567890",
"status": "pending",
"sourceChain": "sei",
"destChain": "usd",
"sourceTx": "0x1234...abcd"
}