Skip to main content
POST
cURL
curl --request POST \
  --url https://asdo.algen.network/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "from": "<string>",
  "to": "<string>",
  "data": "<string>",
  "value": "<string>"
}
'
{
  "nonce": "<string>",
  "chainId": "<string>",
  "gasLimit": "<string>",
  "maxFeePerGas": "<string>",
  "maxPriorityFeePerGas": "<string>",
  "gasPrice": "<string>"
}

Body

application/json

eth_routerTransaction

from
string
required

The address from which the transaction is sent

to
string
required

The address the transaction is directed to

data
string
required

The compiled code of a contract or the hash of the invoked method signature and encoded parameters

value
string
required

The integer of the value sent with this transaction, in wei

Response

Original transaction object

nonce
string
required

The integer nonce for the transaction

chainId
string
required

Hex value of matched chain ID

gasLimit
string
required

Estimated gas limit for this transaction

maxFeePerGas
string

Max gas fee (EIP-1559)

maxPriorityFeePerGas
string

Priority gas fee (EIP-1559)

gasPrice
string

Gas price for legacy transactions