Chain Specific Fields
ChainSpecificFields
Ethereum
When executing Ethereum transaction you can specify gasLimit
or gasPrice
by using chain specific fields
gasLimit
Gas limit, will be used for the contract call
Integer
300000
gasPrice
Gas price, will be used for the contract call (in WEI)
Integer
50000000
Polygon (MATIC)
When executing Matic transaction you can specify gasLimit
or gasPrice
by using chain specific fields
gasLimit
Gas limit, will be used for the contract call
Integer
300000
gasPrice
Gas price, will be used for the contract call (in WEI)
Integer
50000000
Vechain
When executing Vechain transaction you can specify gasLimit
or gasPriceCoef
by using chain specific fields
gasLimit
Gas limit, will be used for the contract call
Integer
300000
gasPriceCoef
Gas price coefficient, will be used for the contract call
Integer
1
Neo
When executing Vechain transaction you can specify networkFee, systemFee or outputs
by using chain specific fields
networkFee
Network fee used for the contract call. By default, 0.1 is used
Number
0.1
systemFee
System fee used for the contract call
Number
0.1
outputs
It is possible to add additional asset transfers together with a contract call by attaching additional outputs. This is a JSON object containing "to", "amount" and "assetId" with json types respectively string, number and string. If "to" is a script hash, it will be translated to a valid NEO address
JSON
{ "to": "AKJrLM5Q…", "amount": 1, "assetId": "602c79718…" }
Binance Smart Chain (BSC)
When executing BSC transaction you can specify gasLimit
or gasPrice
by using chain specific fields
gasLimit
Gas limit, will be used for the contract call
Integer
300000
gasPrice
Gas price, will be used for the contract call (in WEI)
Integer
50000000
Hedera
When executing Hedera transaction you can specify a memo by using a chain specific field
transactionMemo
A memo that can be used with a transaction
String
"0.0.2810009"
Examples
HTTP
Signing-Method
Header
id:value
id
: This is the ID of the signing method
value
: This is the value of the signing method
Request body
📘The request structure of
chainSpecificFields
is similar for other chains and use-cases as well.
Last updated