Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Block ¶
type Block struct { Network string BlockNumber int64 BlockHash string PreviousBlockHash string Transactions []Transaction }
type EtherscanExplorer ¶
type EtherscanExplorer struct {
// contains filtered or unexported fields
}
func NewEtherscanExplorer ¶
func NewEtherscanExplorer(apiKey string) *EtherscanExplorer
func (*EtherscanExplorer) GetAllTransactionsForAddress ¶
func (ex *EtherscanExplorer) GetAllTransactionsForAddress(address string) ([]Transaction, error)
type Explorer ¶
type Explorer interface {
GetAllTransactionsForAddress(string) ([]Transaction, error)
}
Click to show internal directories.
Click to hide internal directories.