Multichain Supported

Supported Chains

This is a list of chains that we're currently supports. You can find the chain from @ramer-v2/core

Chain Name
Chain ID
Network

Viction

88

Mainnet

Polygon

137

Mainnet

Binance Smart Chain

90

Mainnet

Chiliz

88888

Mainnet

ZkSync Era

324

Mainnet

Ethereum

1

Mainnet

Orange

61022

Mainnet

Viction Testnet

89

Testnet

Orange Testnet

61022

Testnet

Raw Transaction params

The RawTransaction interface represents the structure of a blockchain transaction with various optional parameters.

Required Fields

Field
Type
Description

to

string

The recipient address of the transaction

Optional Transaction Data

Field
Type
Description

data

string

The transaction data payload

value

string

The amount of native currency to send

nonce

number

The transaction nonce (sequence number)

from

string

The sender's address

chainId

string

The network chain ID (can be excluded)

EIP-1559 Fields

Field
Type
Description

gasFeeCap

string

Maximum fee per gas (total)

maxFeePerGas

string

Maximum fee per gas unit

maxPriorityFeePerGas

string

Maximum priority fee per gas

Advanced Gas Settings

Field
Type
Description

gas

number

Gas limit for the transaction

gasPrice

string

Price per unit of gas

gasLimit

string

Maximum gas allowed for the transaction

Transaction Type

Field
Type
Description

type

string

Transaction type: '0x0' for legacy, '0x2' for EIP-1559

Special Flags

Field
Type
Description

isUnitySdk

boolean

Indicates if transaction uses Unity SDK

isOverrideGas

boolean

Indicates if gas settings should be overridden

isNFT

boolean

Indicates if transaction involves NFTs

isGasFree

boolean

Indicates if transaction is gas-free

Last updated