Documentation
¶
Overview ¶
Package interfaces provides type definitions for Lux-specific interfaces
Package interfaces provides type aliases for ethereum interfaces
Index ¶
- Variables
- type AcceptedContractCaller
- type AcceptedStateReader
- type BlockNumberReader
- type CallMsg
- type ChainIDReader
- type ChainReader
- type ChainStateReader
- type ContractCaller
- type FeeHistory
- type FeeHistoryReader
- type FilterQuery
- type GasEstimator
- type GasPricer
- type GasPricer1559
- type LogFilterer
- type PendingContractCaller
- type PendingStateEventer
- type PendingStateReader
- type Subscription
- type TransactionReader
- type TransactionSender
Constants ¶
This section is empty.
Variables ¶
View Source
var (
NotFound = eth.NotFound
)
Error values
Functions ¶
This section is empty.
Types ¶
type AcceptedContractCaller ¶
type AcceptedContractCaller interface {
// AcceptedCodeAt returns the code of the given account in the accepted state.
AcceptedCodeAt(ctx context.Context, contract common.Address) ([]byte, error)
// AcceptedCallContract executes an Ethereum contract call against the accepted state.
AcceptedCallContract(ctx context.Context, call CallMsg) ([]byte, error)
}
AcceptedContractCaller defines the methods needed to perform contract calls on accepted state
type AcceptedStateReader ¶
type AcceptedStateReader = eth.ChainStateReader
Additional Lux-specific interfaces
type BlockNumberReader ¶
type BlockNumberReader = eth.BlockNumberReader
Type aliases for ethereum interfaces
type ChainStateReader ¶
type ChainStateReader = eth.ChainStateReader
Type aliases for ethereum interfaces
type FeeHistoryReader ¶
type FeeHistoryReader = eth.FeeHistoryReader
Type aliases for ethereum interfaces
type PendingContractCaller ¶ added in v0.15.11
type PendingContractCaller = eth.PendingContractCaller
Type aliases for ethereum interfaces
type PendingStateEventer ¶
type PendingStateEventer = eth.PendingStateEventer
Type aliases for ethereum interfaces
type PendingStateReader ¶ added in v0.15.11
type PendingStateReader = eth.PendingStateReader
Type aliases for ethereum interfaces
type TransactionReader ¶
type TransactionReader = eth.TransactionReader
Type aliases for ethereum interfaces
type TransactionSender ¶
type TransactionSender = eth.TransactionSender
Type aliases for ethereum interfaces
Click to show internal directories.
Click to hide internal directories.