Ft Schemas

FtBalance

NameTypeDescription

timestamp

number

The timestamp of balance changed.

blockNumber

number

The block number in which the transfer was emitted.

address

string

The owner's address.

contract

string

The ERC20 address.

balance

string

The owner's balance.

weight

number

The owner's balance after scaled (number type for easy sorting).

FtBalanceHold

NameTypeDescription

timestamp

number

The timestamp.

contract

string

The ERC20 address.

all

number

The number of users that have held the tokens.

active

number

The amount of users who sents or receives tokens in (timestamp - 1day, timestamp].

held

string

The amount of tokens which are held by all users.

FtBalanceInsight

NameTypeDescription

timestamp

number

The timestamp.

contract

string

The ERC20 address.

allHolders

number

The number of users that have held the tokens.

activeHolders

number

The number of users holding the token in the most recent period(e.g. in 7 days).

seniority

array<number>

The amount of new users in [[0, 7), [7, 30), [30, 60), [60, 90), [90, infinite)] days ago.

gini

number

FtBalanceLine

NameTypeDescription

timestamp

number

The timestamp at which the balance is changed.

blockNumber

number

The block number in which the transfer was emitted.

contract

string

The contract address.

address

string

The owner address.

balance

string

The owner's balance.

weight

number

The owner's balance after scaled (number type for easy sorting).

sent

string

Total amount transferred out.

received

string

Total amount transferred in.

transactionHash

Array<string>

The transaction hash array in this block where the balance has changed.

created

string

The created timestamp.

FtTransfer

NameTypeDescription

timestamp

number

The timestamp at which the event is emitted.

blockNumber

number

The block number in which the transfer was emitted.

transactionHash

string

The hash of the transaction which generates this transfer.

logIndex

number

The log index in the transaction.

address

string

The contract address which emits this transfer.

from

string

The token's current owner.

to

string

The token's new owner.

value

string

The amount of token to transfer from sender to recipient.

FtTransferStat

NameTypeDescription

contract

string

The ERC20 address.

timestamp

number

The timestamp.

count

number

The transfer's count in (timestamp - 1hour, timestamp].

volume

string

The transfer's volume in (timestamp - 1hour, timestamp].

Last updated