Documentation ¶
Index ¶
- Constants
- func DecodeAbi(abiEncoded string) (*abi.ABI, error)
- func EncodeAbiStr(abiStr string) (string, error)
- type Contract
- func (c *Contract) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error
- func (c *Contract) GetTransactionEvents(txReceipt *types.Receipt, eventName string, eventPrototype interface{}) ([]interface{}, error)
- func (c *Contract) GetTransactionGasInfo(opts *bind.TransactOpts, method string, params ...interface{}) (GasInfo, error)
- func (c *Contract) GetTransferGasInfo(opts *bind.TransactOpts) (GasInfo, error)
- func (c *Contract) Transact(opts *bind.TransactOpts, method string, params ...interface{}) (common.Hash, error)
- func (c *Contract) Transfer(opts *bind.TransactOpts) (common.Hash, error)
- type ExecutionClient
- type GasInfo
- type LegacyVersionWrapper
- type LegacyVersionWrapper_v1_0_0
- func (m *LegacyVersionWrapper_v1_0_0) GetContract(contractName string) (*Contract, error)
- func (m *LegacyVersionWrapper_v1_0_0) GetContractWithAddress(contractName string, address common.Address) (*Contract, error)
- func (m *LegacyVersionWrapper_v1_0_0) GetEncodedABI(contractName string) string
- func (m *LegacyVersionWrapper_v1_0_0) GetVersion() *version.Version
- func (m *LegacyVersionWrapper_v1_0_0) GetVersionedContractName(contractName string) (string, bool)
- type LegacyVersionWrapper_v1_5_0_rc1
- func (m *LegacyVersionWrapper_v1_5_0_rc1) GetContract(contractName string) (*Contract, error)
- func (m *LegacyVersionWrapper_v1_5_0_rc1) GetContractWithAddress(contractName string, address common.Address) (*Contract, error)
- func (m *LegacyVersionWrapper_v1_5_0_rc1) GetEncodedABI(contractName string) string
- func (m *LegacyVersionWrapper_v1_5_0_rc1) GetVersion() *version.Version
- func (m *LegacyVersionWrapper_v1_5_0_rc1) GetVersionedContractName(contractName string) (string, bool)
- type RocketPool
- func (rp *RocketPool) GetABI(contractName string) (*abi.ABI, error)
- func (rp *RocketPool) GetABIs(contractNames ...string) ([]*abi.ABI, error)
- func (rp *RocketPool) GetAddress(contractName string) (*common.Address, error)
- func (rp *RocketPool) GetAddresses(contractNames ...string) ([]*common.Address, error)
- func (rp *RocketPool) GetContract(contractName string) (*Contract, error)
- func (rp *RocketPool) GetContracts(contractNames ...string) ([]*Contract, error)
- func (rp *RocketPool) MakeContract(contractName string, address common.Address) (*Contract, error)
- type VersionManager
Constants ¶
const ( GasLimitMultiplier float64 = 1.5 MaxGasLimit = 12000000 )
Transaction settings
const CacheTTL = 300 // 5 minutes
Cache settings
Variables ¶
This section is empty.
Functions ¶
func EncodeAbiStr ¶
zlib-compress and base64-encode an ABI JSON string
Types ¶
type Contract ¶
type Contract struct { Contract *bind.BoundContract Address *common.Address ABI *abi.ABI Client ExecutionClient }
Contract type wraps go-ethereum bound contract
func (*Contract) Call ¶
func (c *Contract) Call(opts *bind.CallOpts, result interface{}, method string, params ...interface{}) error
Call a contract method
func (*Contract) GetTransactionEvents ¶
func (c *Contract) GetTransactionEvents(txReceipt *types.Receipt, eventName string, eventPrototype interface{}) ([]interface{}, error)
Get contract events from a transaction eventPrototype must be an event struct type Returns a slice of untyped values; assert returned events to event struct type
func (*Contract) GetTransactionGasInfo ¶
func (c *Contract) GetTransactionGasInfo(opts *bind.TransactOpts, method string, params ...interface{}) (GasInfo, error)
Get Gas Limit for transaction
func (*Contract) GetTransferGasInfo ¶
func (c *Contract) GetTransferGasInfo(opts *bind.TransactOpts) (GasInfo, error)
Get gas limit for a transfer call
type ExecutionClient ¶ added in v1.2.0
type ExecutionClient interface { // CodeAt returns the code of the given account. This is needed to differentiate // between contract internal errors and the local chain being out of sync. CodeAt(ctx context.Context, contract common.Address, blockNumber *big.Int) ([]byte, error) // CallContract executes an Ethereum contract call with the specified data as the // input. CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error) // HeaderByHash returns the block header with the given hash. HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) // HeaderByNumber returns a block header from the current canonical chain. If number is // nil, the latest known header is returned. HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error) // PendingCodeAt returns the code of the given account in the pending state. PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error) // PendingNonceAt retrieves the current pending nonce associated with an account. PendingNonceAt(ctx context.Context, account common.Address) (uint64, error) // SuggestGasPrice retrieves the currently suggested gas price to allow a timely // execution of a transaction. SuggestGasPrice(ctx context.Context) (*big.Int, error) // SuggestGasTipCap retrieves the currently suggested 1559 priority fee to allow // a timely execution of a transaction. SuggestGasTipCap(ctx context.Context) (*big.Int, error) // EstimateGas tries to estimate the gas needed to execute a specific // transaction based on the current pending state of the backend blockchain. // There is no guarantee that this is the true gas limit requirement as other // transactions may be added or removed by miners, but it should provide a basis // for setting a reasonable default. EstimateGas(ctx context.Context, call ethereum.CallMsg) (gas uint64, err error) // SendTransaction injects the transaction into the pending pool for execution. SendTransaction(ctx context.Context, tx *types.Transaction) error // FilterLogs executes a log filter operation, blocking during execution and // returning all the results in one batch. // // TODO(karalabe): Deprecate when the subscription one can return past data too. FilterLogs(ctx context.Context, query ethereum.FilterQuery) ([]types.Log, error) // SubscribeFilterLogs creates a background log filtering operation, returning // a subscription immediately, which can be used to stream the found events. SubscribeFilterLogs(ctx context.Context, query ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error) // TransactionReceipt returns the receipt of a transaction by transaction hash. // Note that the receipt is not available for pending transactions. TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error) // BlockNumber returns the most recent block number BlockNumber(ctx context.Context) (uint64, error) // BalanceAt returns the wei balance of the given account. // The block number can be nil, in which case the balance is taken from the latest known block. BalanceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (*big.Int, error) // TransactionByHash returns the transaction with the given hash. TransactionByHash(ctx context.Context, hash common.Hash) (tx *types.Transaction, isPending bool, err error) // NonceAt returns the account nonce of the given account. // The block number can be nil, in which case the nonce is taken from the latest known block. NonceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (uint64, error) // SyncProgress retrieves the current progress of the sync algorithm. If there's // no sync currently running, it returns nil. SyncProgress(ctx context.Context) (*ethereum.SyncProgress, error) }
This is the common interface for execution clients.
type GasInfo ¶
type GasInfo struct { EstGasLimit uint64 `json:"estGasLimit"` SafeGasLimit uint64 `json:"safeGasLimit"` }
Response for gas limits from network and from user request
type LegacyVersionWrapper ¶ added in v1.3.0
type LegacyVersionWrapper interface { GetVersion() *version.Version GetVersionedContractName(contractName string) (string, bool) GetEncodedABI(contractName string) string GetContract(contractName string) (*Contract, error) GetContractWithAddress(contractName string, address common.Address) (*Contract, error) }
Wrapper for legacy contract versions
type LegacyVersionWrapper_v1_0_0 ¶ added in v1.3.0
type LegacyVersionWrapper_v1_0_0 struct {
// contains filtered or unexported fields
}
A wrapper that holds the updated contract information for this version
func (*LegacyVersionWrapper_v1_0_0) GetContract ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_0_0) GetContract(contractName string) (*Contract, error)
Get the contract with the provided name for this version of Rocket Pool
func (*LegacyVersionWrapper_v1_0_0) GetContractWithAddress ¶ added in v1.3.0
func (*LegacyVersionWrapper_v1_0_0) GetEncodedABI ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_0_0) GetEncodedABI(contractName string) string
Get the ABI for the provided contract
func (*LegacyVersionWrapper_v1_0_0) GetVersion ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_0_0) GetVersion() *version.Version
Get the version for this manager
func (*LegacyVersionWrapper_v1_0_0) GetVersionedContractName ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_0_0) GetVersionedContractName(contractName string) (string, bool)
Get the versioned name of the contract if it was upgraded as part of this deployment
type LegacyVersionWrapper_v1_5_0_rc1 ¶ added in v1.3.0
type LegacyVersionWrapper_v1_5_0_rc1 struct {
// contains filtered or unexported fields
}
A wrapper that holds the updated contract information for this version
func (*LegacyVersionWrapper_v1_5_0_rc1) GetContract ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_5_0_rc1) GetContract(contractName string) (*Contract, error)
Get the contract with the provided name for this version of Rocket Pool
func (*LegacyVersionWrapper_v1_5_0_rc1) GetContractWithAddress ¶ added in v1.3.0
func (*LegacyVersionWrapper_v1_5_0_rc1) GetEncodedABI ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_5_0_rc1) GetEncodedABI(contractName string) string
Get the ABI for the provided contract
func (*LegacyVersionWrapper_v1_5_0_rc1) GetVersion ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_5_0_rc1) GetVersion() *version.Version
Get the version for this manager
func (*LegacyVersionWrapper_v1_5_0_rc1) GetVersionedContractName ¶ added in v1.3.0
func (m *LegacyVersionWrapper_v1_5_0_rc1) GetVersionedContractName(contractName string) (string, bool)
Get the versioned name of the contract if it was upgraded as part of this deployment
type RocketPool ¶
type RocketPool struct { Client ExecutionClient RocketStorage *contracts.RocketStorage RocketStorageContract *Contract VersionManager *VersionManager // contains filtered or unexported fields }
Rocket Pool contract manager
func NewRocketPool ¶
func NewRocketPool(client ExecutionClient, rocketStorageAddress common.Address) (*RocketPool, error)
Create new contract manager
func (*RocketPool) GetABI ¶
func (rp *RocketPool) GetABI(contractName string) (*abi.ABI, error)
Load Rocket Pool contract ABIs
func (*RocketPool) GetABIs ¶
func (rp *RocketPool) GetABIs(contractNames ...string) ([]*abi.ABI, error)
func (*RocketPool) GetAddress ¶
func (rp *RocketPool) GetAddress(contractName string) (*common.Address, error)
Load Rocket Pool contract addresses
func (*RocketPool) GetAddresses ¶
func (rp *RocketPool) GetAddresses(contractNames ...string) ([]*common.Address, error)
func (*RocketPool) GetContract ¶
func (rp *RocketPool) GetContract(contractName string) (*Contract, error)
Load Rocket Pool contracts
func (*RocketPool) GetContracts ¶
func (rp *RocketPool) GetContracts(contractNames ...string) ([]*Contract, error)
func (*RocketPool) MakeContract ¶
Create a Rocket Pool contract instance
type VersionManager ¶ added in v1.3.0
type VersionManager struct { V1_0_0 LegacyVersionWrapper V1_5_0_RC1 LegacyVersionWrapper // contains filtered or unexported fields }
func NewVersionManager ¶ added in v1.3.0
func NewVersionManager(rp *RocketPool) *VersionManager