Documentation ¶
Index ¶
- Variables
- type Connection
- func (c *Connection) CallOpts() *bind.CallOpts
- func (c *Connection) Client() *sero.WrappedClient
- func (c *Connection) Close()
- func (c *Connection) Connect() error
- func (c *Connection) EnsureHasBytecode(addr seroCommon.Address) error
- func (c *Connection) Keypair() *secp256k1.Keypair
- func (c *Connection) LatestBlock() (*big.Int, error)
- func (c *Connection) LockAndUpdateOpts() error
- func (c *Connection) Opts() *bind.TransactOpts
- func (c *Connection) SafeEstimateGas(ctx context.Context) (*big.Int, error)
- func (c *Connection) UnlockOpts()
- func (c *Connection) WaitForBlock(block *big.Int) error
Constants ¶
This section is empty.
Variables ¶
View Source
var BlockRetryInterval = time.Second * 5
Functions ¶
This section is empty.
Types ¶
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
func NewConnection ¶
func NewConnection(endpoint string, accountEndpoint string, http bool, kp *secp256k1.Keypair, log log.Logger, gasLimit, gasPrice *big.Int) *Connection
NewConnection returns an uninitialized connection, must call Connection.Connect() before using.
func (*Connection) CallOpts ¶
func (c *Connection) CallOpts() *bind.CallOpts
func (*Connection) Client ¶
func (c *Connection) Client() *sero.WrappedClient
func (*Connection) Close ¶
func (c *Connection) Close()
Close terminates the client connection and stops any running routines
func (*Connection) Connect ¶
func (c *Connection) Connect() error
Connect starts the ethereum WS connection
func (*Connection) EnsureHasBytecode ¶
func (c *Connection) EnsureHasBytecode(addr seroCommon.Address) error
EnsureHasBytecode asserts if contract code exists at the specified address
func (*Connection) Keypair ¶
func (c *Connection) Keypair() *secp256k1.Keypair
func (*Connection) LatestBlock ¶
func (c *Connection) LatestBlock() (*big.Int, error)
LatestBlock returns the latest block from the current chain
func (*Connection) LockAndUpdateOpts ¶
func (c *Connection) LockAndUpdateOpts() error
func (*Connection) Opts ¶
func (c *Connection) Opts() *bind.TransactOpts
func (*Connection) SafeEstimateGas ¶
func (*Connection) UnlockOpts ¶
func (c *Connection) UnlockOpts()
func (*Connection) WaitForBlock ¶
func (c *Connection) WaitForBlock(block *big.Int) error
WaitForBlock will poll for the block number until the current block is equal or greater than
Click to show internal directories.
Click to hide internal directories.