Documentation ¶
Index ¶
- func NewBlock(b *types.Block, blockArgs *rpc_common.BlockArgs, leaderAddress string) (interface{}, error)
- func NewPublicEthService(ngy *ngy.nordicenergy, namespace string) rpc.API
- func NewReceipt(tx *types.EthTransaction, blockHash common.Hash, ...) (map[string]interface{}, error)
- type Block
- type BlockWithFullTx
- type BlockWithTxHash
- type PublicEthService
- type Transaction
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewBlock ¶
func NewBlock(b *types.Block, blockArgs *rpc_common.BlockArgs, leaderAddress string) (interface{}, error)
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 ¶
func NewPublicEthService(ngy *ngy.nordicenergy, namespace string) rpc.API
NewPublicEthService creates a new API for the RPC interface
Types ¶
type Block ¶
type Block struct { Number *hexutil.Big `json:"number"` Hash common.Hash `json:"hash"` ParentHash common.Hash `json:"parentHash"` Nonce ngytypes.BlockNonce `json:"nonce"` MixHash common.Hash `json:"mixHash"` UncleHash common.Hash `json:"sha3Uncles"` LogsBloom ethtypes.Bloom `json:"logsBloom"` StateRoot common.Hash `json:"stateRoot"` Miner common.Address `json:"miner"` Difficulty *hexutil.Big `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"` }
Block represents a basic block which is further amended by BlockWithTxHash or BlockWithFullTx
type BlockWithFullTx ¶
type BlockWithFullTx struct { *Block 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 common.Address) (*BlockWithFullTx, error)
NewBlockWithFullTx ..
type BlockWithTxHash ¶
type BlockWithTxHash struct { *Block 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 common.Address) (*BlockWithTxHash, error)
NewBlockWithTxHash ..
type PublicEthService ¶
type PublicEthService struct {
// contains filtered or unexported fields
}
PublicEthService provides an API to access to the Eth endpoints for the nordicenergy 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 common.Address `json:"from"` Timestamp hexutil.Uint64 `json:"timestamp"` // Not exposed by Ethereum anymore 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 *common.Address `json:"to"` TransactionIndex *hexutil.Uint64 `json:"transactionIndex"` Value *hexutil.Big `json:"value"` 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.EthTransaction, 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 nordicenergy are replay protected (post EIP155 epoch).
func NewTransactionFromBlockIndex ¶
func NewTransactionFromBlockIndex(b *types.Block, index uint64) (*Transaction, error)
NewTransactionFromBlockIndex returns a transaction that will serialize to the RPC representation.