Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccBalance ¶
type AccBalances ¶
type Fee ¶
type Fee struct {
Fee confSchema.TokenFee `json:"fee"`
}
type Fees ¶
type Fees struct {
Fees []confSchema.TokenFee `json:"fees"`
}
type Info ¶
type Info struct { IsSynced bool `json:"isSynced"` IsClosed bool `json:"isClosed"` BalanceRootHash string `json:"balanceRootHash"` RootHash string `json:"rootHash"` EverRootHash string `json:"everRootHash"` Owner string `json:"owner"` EthChainID string `json:"ethChainID"` FeeRecipient string `json:"feeRecipient"` EthLocker string `json:"ethLocker"` ArLocker string `json:"arLocker"` Lockers map[string]string `json:"lockers"` TokenList []TokenInfo `json:"tokenList"` }
type PendingTxs ¶
type PendingTxs struct { Total int `json:"total"` HasNextPage bool `json:"hasNextPage"` // true means can get more Txs []*cacheSchema.TxResponse `json:"txs"` }
type RespStatus ¶
type RespStatus struct {
Status string `json:"status"`
}
type TokenInfo ¶
type TokenInfo struct { Tag string `json:"tag"` ID string `json:"id"` Symbol string `json:"symbol"` Decimals int `json:"decimals"` TotalSupply string `json:"totalSupply"` ChainType string `json:"chainType"` ChainID string `json:"chainID"` BurnFees map[string]string `json:"burnFees"` // key: targetChainType, val: fee TransferFee string `json:"transferFee"` BundleFee string `json:"bundleFee"` HolderNum int `json:"holderNum"` CrossChainInfoList map[string]tokSchema.TargetChain `json:"crossChainInfoList"` // key: targetChainType }
type TuringInfo ¶
type TuringInfo struct { IsSynced bool `json:"isSynced"` RollupWatcherArId string `json:"rollupWatcherArId"` RollupLastArId string `json:"rollupLastArId"` RollupLastOnChainEverTxHash string `json:"rollupLastOnChainEverTxHash"` TrackerLastArId string `json:"trackerLastArId"` PendingTxNum int `json:"pendingTxNum"` CurRollupTxNum int `json:"curRollupTxNum"` RollupAddr string `json:"rollupAddr"` TrackerAddr string `json:"trackerAddr"` }
type Tx ¶
type Tx struct {
Tx *cacheSchema.TxResponse `json:"tx"`
}
type Txs ¶
type Txs struct { Txs []*cacheSchema.TxResponse `json:"txs"` CurrentPage int `json:"currentPage"` TotalPages int `json:"totalPages"` }
Click to show internal directories.
Click to hide internal directories.