Skip to main content
POST
/
api
/
v1
/
gasless
/
transferWithAuthorization
Queue ERC-3009 gasless transfer
curl --request POST \
  --url https://deposit-addresses.eco.com/api/v1/gasless/transferWithAuthorization \
  --header 'Content-Type: application/json' \
  --data '
{
  "chainId": 2,
  "from": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "to": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "value": "<string>",
  "validAfter": "<string>",
  "validBefore": "<string>",
  "nonce": "<string>",
  "signature": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "status": "PENDING",
    "permitTxHash": "<string>",
    "transferTxHash": "<string>",
    "intentHash": "<string>",
    "amount": "<string>",
    "error": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://eco.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
chainId
integer
required
Required range: x >= 1
from
string
required

Token owner (signer)

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

to
string
required

Deposit address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"

value
string
required

Raw token units

validAfter
string
required

Unix seconds

validBefore
string
required

Unix seconds

nonce
string
required

0x-prefixed 32-byte hex (64 hex chars)

Pattern: ^0x[a-fA-F0-9]{64}$
signature
string
required

ERC-3009 signature

Pattern: ^0x[a-fA-F0-9]{130}$

Response

202 - application/json

Job queued

data
object