Documentation ¶
Index ¶
- func NewBlock(b *types.Block, blockArgs *rpc_common.BlockArgs, leader string) (interface{}, error)
- func NewPublicEthService(hmy *hmy.Harmony, namespace string) rpc.API
- func NewReceipt(tx interface{}, blockHash common.Hash, blockNumber, blockIndex uint64, ...) (interface{}, error)
- type BlockWithFullTx
- type BlockWithTxHash
- type CxReceipt
- type PublicEthService
- type Transaction
- type TxReceipt
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewBlock ¶
NewBlock converts the given block to the RPC output which depends on fullTx. If inclTx is true transactions are returned. When fullTx is true the returned block contains full transaction details, otherwise it will only contain transaction hashes.
func NewPublicEthService ¶
NewPublicEthService creates a new API for the RPC interface
Types ¶
type BlockWithFullTx ¶
type BlockWithFullTx struct { Number *hexutil.Big `json:"number"` ViewID *hexutil.Big `json:"viewID"` Epoch *hexutil.Big `json:"epoch"` Hash common.Hash `json:"hash"` ParentHash common.Hash `json:"parentHash"` Nonce uint64 `json:"nonce"` MixHash common.Hash `json:"mixHash"` LogsBloom ethtypes.Bloom `json:"logsBloom"` StateRoot common.Hash `json:"stateRoot"` Miner string `json:"miner"` Difficulty uint64 `json:"difficulty"` ExtraData hexutil.Bytes `json:"extraData"` Size hexutil.Uint64 `json:"size"` GasLimit hexutil.Uint64 `json:"gasLimit"` GasUsed hexutil.Uint64 `json:"gasUsed"` Timestamp hexutil.Uint64 `json:"timestamp"` TransactionsRoot common.Hash `json:"transactionsRoot"` ReceiptsRoot common.Hash `json:"receiptsRoot"` Uncles []common.Hash `json:"uncles"` Transactions []*Transaction `json:"transactions"` Signers []string `json:"signers,omitempty"` }
BlockWithFullTx represents a block that will serialize to the RPC representation of a block having FULL transactions in the Transaction fields.
func NewBlockWithFullTx ¶
func NewBlockWithFullTx( b *types.Block, blockArgs *rpc_common.BlockArgs, leader string, ) (*BlockWithFullTx, error)
NewBlockWithFullTx ..
type BlockWithTxHash ¶
type BlockWithTxHash struct { Number *hexutil.Big `json:"number"` ViewID *hexutil.Big `json:"viewID"` Epoch *hexutil.Big `json:"epoch"` Hash common.Hash `json:"hash"` ParentHash common.Hash `json:"parentHash"` Nonce uint64 `json:"nonce"` MixHash common.Hash `json:"mixHash"` LogsBloom ethtypes.Bloom `json:"logsBloom"` StateRoot common.Hash `json:"stateRoot"` Miner string `json:"miner"` Difficulty uint64 `json:"difficulty"` ExtraData hexutil.Bytes `json:"extraData"` Size hexutil.Uint64 `json:"size"` GasLimit hexutil.Uint64 `json:"gasLimit"` GasUsed hexutil.Uint64 `json:"gasUsed"` Timestamp hexutil.Uint64 `json:"timestamp"` TransactionsRoot common.Hash `json:"transactionsRoot"` ReceiptsRoot common.Hash `json:"receiptsRoot"` Uncles []common.Hash `json:"uncles"` Transactions []common.Hash `json:"transactions"` Signers []string `json:"signers,omitempty"` }
BlockWithTxHash represents a block that will serialize to the RPC representation of a block having ONLY transaction hashes in the Transaction fields.
func NewBlockWithTxHash ¶
func NewBlockWithTxHash( b *types.Block, blockArgs *rpc_common.BlockArgs, leader string, ) (*BlockWithTxHash, error)
NewBlockWithTxHash ..
type CxReceipt ¶
type CxReceipt struct { BlockHash common.Hash `json:"blockHash"` BlockNumber *hexutil.Big `json:"blockNumber"` TxHash common.Hash `json:"hash"` From string `json:"from"` To string `json:"to"` ShardID uint32 `json:"shardID"` ToShardID uint32 `json:"toShardID"` Amount *hexutil.Big `json:"value"` }
CxReceipt represents a CxReceipt that will serialize to the RPC representation of a CxReceipt
type PublicEthService ¶
type PublicEthService struct {
// contains filtered or unexported fields
}
PublicEthService provides an API to access to the Eth endpoints for the Harmony blockchain.
func (*PublicEthService) GetBalance ¶
func (s *PublicEthService) GetBalance( ctx context.Context, address string, blockNr rpc.BlockNumber, ) (*hexutil.Big, error)
GetBalance returns the amount of Atto for the given address in the state of the given block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta block numbers are also allowed.
type Transaction ¶
type Transaction struct { BlockHash common.Hash `json:"blockHash"` BlockNumber *hexutil.Big `json:"blockNumber"` From string `json:"from"` Timestamp hexutil.Uint64 `json:"timestamp"` Gas hexutil.Uint64 `json:"gas"` GasPrice *hexutil.Big `json:"gasPrice"` Hash common.Hash `json:"hash"` Input hexutil.Bytes `json:"input"` Nonce hexutil.Uint64 `json:"nonce"` To string `json:"to"` TransactionIndex hexutil.Uint `json:"transactionIndex"` Value *hexutil.Big `json:"value"` ShardID uint32 `json:"shardID"` ToShardID uint32 `json:"toShardID"` V *hexutil.Big `json:"v"` R *hexutil.Big `json:"r"` S *hexutil.Big `json:"s"` }
Transaction represents a transaction that will serialize to the RPC representation of a transaction
func NewTransaction ¶
func NewTransaction( tx *types.Transaction, blockHash common.Hash, blockNumber uint64, timestamp uint64, index uint64, ) (*Transaction, error)
NewTransaction returns a transaction that will serialize to the RPC representation, with the given location metadata set (if available). Note that all txs on Harmony are replay protected (post EIP155 epoch).
func NewTransactionFromBlockHash ¶
NewTransactionFromBlockHash returns a transaction that will serialize to the RPC representation.
func NewTransactionFromBlockIndex ¶
func NewTransactionFromBlockIndex(b *types.Block, index uint64) (*Transaction, error)
NewTransactionFromBlockIndex returns a transaction that will serialize to the RPC representation.
type TxReceipt ¶
type TxReceipt struct { BlockHash common.Hash `json:"blockHash"` TransactionHash common.Hash `json:"transactionHash"` BlockNumber hexutil.Uint64 `json:"blockNumber"` TransactionIndex hexutil.Uint64 `json:"transactionIndex"` GasUsed hexutil.Uint64 `json:"gasUsed"` CumulativeGasUsed hexutil.Uint64 `json:"cumulativeGasUsed"` ContractAddress common.Address `json:"contractAddress"` Logs []*types.Log `json:"logs"` LogsBloom ethtypes.Bloom `json:"logsBloom"` ShardID uint32 `json:"shardID"` From string `json:"from"` To string `json:"to"` Root hexutil.Bytes `json:"root"` Status hexutil.Uint `json:"status"` }
TxReceipt represents a transaction receipt that will serialize to the RPC representation.