Huobi Eco Chain
HecoTransfers
Stream represents all possible native cryptocurrency (HECO) transfers with positive (> 0) value, which can be either- a Message Call in an Huobi Eco Chain Transaction from Externally Owned Account (EOA) (where User owns the private keys and controls it) to other EOA or Contract Account (CA) (which contains EVM code and is controlled by it)
- an Inner Message Call (Blockchain explorers often refer to it as Internal Transaction) from CA to other CA or EOA
{
from: address,
to: address,
value: int256,
op: string,
transaction: {
gasUsed: int256,
gasLimit: int256,
gasPrice: int256,
fee: int256,
origin: address,
nonce: int256,
index: int256,
hash: string,
blockHash: string,
balanceChange: {
senderBalanceBefore: int256,
senderBalanceAfter: int256,
receiverBalanceBefore: int256,
receiverBalanceAfter: int256,
}
},
block: {
number: int256,
hash: string,
parentHash: string,
coinbase: address,
difficulty: int256,
timestamp: int256,
header: {
gasUsed: int256,
nonce: int256,
sha3Uncles: string,
extraData: string,
mixHash: string,
stateRoot: string,
logsBloom: string,
transactionsRoot: string,
receiptsRoot: string
},
rewards: {
value: {
beneficiary: address,
reward: int256
}
}
}
}
HecoTokenTransfers
Stream represents all supported Huobi Eco Chain based HRC20 Token transfers with positive (> 0) value.{
from: address,
to: address,
value: int256,
token: {
verified: boolean,
name: string,
symbol: string,
contract: address,
decimals: int256
},
transaction: {
gasUsed: int256,
gasLimit: int256,
gasPrice: int256,
fee: int256,
origin: address,
nonce: int256,
index: int256,
hash: string,
blockHash: string
},
block: {
number: int256,
hash: string,
parentHash: string,
coinbase: address,
difficulty: int256,
timestamp: int256,
header: {
gasUsed: int256,
nonce: int256,
sha3Uncles: string,
extraData: string,
mixHash: string,
stateRoot: string,
logsBloom: string,
transactionsRoot: string,
receiptsRoot: string
},
rewards: [
{
value: {
beneficiary: address,
reward: int256
}
}
]
}
}
Last modified 1yr ago