github.com/jimmyx0x/go-ethereum@v1.10.28/accounts/abi/bind/backend.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package bind
    18  
    19  import (
    20  	"context"
    21  	"errors"
    22  	"math/big"
    23  
    24  	"github.com/ethereum/go-ethereum"
    25  	"github.com/ethereum/go-ethereum/common"
    26  	"github.com/ethereum/go-ethereum/core/types"
    27  )
    28  
    29  var (
    30  	// ErrNoCode is returned by call and transact operations for which the requested
    31  	// recipient contract to operate on does not exist in the state db or does not
    32  	// have any code associated with it (i.e. suicided).
    33  	ErrNoCode = errors.New("no contract code at given address")
    34  
    35  	// ErrNoPendingState is raised when attempting to perform a pending state action
    36  	// on a backend that doesn't implement PendingContractCaller.
    37  	ErrNoPendingState = errors.New("backend does not support pending state")
    38  
    39  	// ErrNoCodeAfterDeploy is returned by WaitDeployed if contract creation leaves
    40  	// an empty contract behind.
    41  	ErrNoCodeAfterDeploy = errors.New("no contract code after deployment")
    42  )
    43  
    44  // ContractCaller defines the methods needed to allow operating with a contract on a read
    45  // only basis.
    46  type ContractCaller interface {
    47  	// CodeAt returns the code of the given account. This is needed to differentiate
    48  	// between contract internal errors and the local chain being out of sync.
    49  	CodeAt(ctx context.Context, contract common.Address, blockNumber *big.Int) ([]byte, error)
    50  
    51  	// CallContract executes an Ethereum contract call with the specified data as the
    52  	// input.
    53  	CallContract(ctx context.Context, call ethereum.CallMsg, blockNumber *big.Int) ([]byte, error)
    54  }
    55  
    56  // PendingContractCaller defines methods to perform contract calls on the pending state.
    57  // Call will try to discover this interface when access to the pending state is requested.
    58  // If the backend does not support the pending state, Call returns ErrNoPendingState.
    59  type PendingContractCaller interface {
    60  	// PendingCodeAt returns the code of the given account in the pending state.
    61  	PendingCodeAt(ctx context.Context, contract common.Address) ([]byte, error)
    62  
    63  	// PendingCallContract executes an Ethereum contract call against the pending state.
    64  	PendingCallContract(ctx context.Context, call ethereum.CallMsg) ([]byte, error)
    65  }
    66  
    67  // ContractTransactor defines the methods needed to allow operating with a contract
    68  // on a write only basis. Besides the transacting method, the remainder are helpers
    69  // used when the user does not provide some needed values, but rather leaves it up
    70  // to the transactor to decide.
    71  type ContractTransactor interface {
    72  	// HeaderByNumber returns a block header from the current canonical chain. If
    73  	// number is nil, the latest known header is returned.
    74  	HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)
    75  
    76  	// PendingCodeAt returns the code of the given account in the pending state.
    77  	PendingCodeAt(ctx context.Context, account common.Address) ([]byte, error)
    78  
    79  	// PendingNonceAt retrieves the current pending nonce associated with an account.
    80  	PendingNonceAt(ctx context.Context, account common.Address) (uint64, error)
    81  
    82  	// SuggestGasPrice retrieves the currently suggested gas price to allow a timely
    83  	// execution of a transaction.
    84  	SuggestGasPrice(ctx context.Context) (*big.Int, error)
    85  
    86  	// SuggestGasTipCap retrieves the currently suggested 1559 priority fee to allow
    87  	// a timely execution of a transaction.
    88  	SuggestGasTipCap(ctx context.Context) (*big.Int, error)
    89  
    90  	// EstimateGas tries to estimate the gas needed to execute a specific
    91  	// transaction based on the current pending state of the backend blockchain.
    92  	// There is no guarantee that this is the true gas limit requirement as other
    93  	// transactions may be added or removed by miners, but it should provide a basis
    94  	// for setting a reasonable default.
    95  	EstimateGas(ctx context.Context, call ethereum.CallMsg) (gas uint64, err error)
    96  
    97  	// SendTransaction injects the transaction into the pending pool for execution.
    98  	SendTransaction(ctx context.Context, tx *types.Transaction) error
    99  }
   100  
   101  // ContractFilterer defines the methods needed to access log events using one-off
   102  // queries or continuous event subscriptions.
   103  type ContractFilterer interface {
   104  	// FilterLogs executes a log filter operation, blocking during execution and
   105  	// returning all the results in one batch.
   106  	//
   107  	// TODO(karalabe): Deprecate when the subscription one can return past data too.
   108  	FilterLogs(ctx context.Context, query ethereum.FilterQuery) ([]types.Log, error)
   109  
   110  	// SubscribeFilterLogs creates a background log filtering operation, returning
   111  	// a subscription immediately, which can be used to stream the found events.
   112  	SubscribeFilterLogs(ctx context.Context, query ethereum.FilterQuery, ch chan<- types.Log) (ethereum.Subscription, error)
   113  }
   114  
   115  // DeployBackend wraps the operations needed by WaitMined and WaitDeployed.
   116  type DeployBackend interface {
   117  	TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error)
   118  	CodeAt(ctx context.Context, account common.Address, blockNumber *big.Int) ([]byte, error)
   119  }
   120  
   121  // ContractBackend defines the methods needed to work with contracts on a read-write basis.
   122  type ContractBackend interface {
   123  	ContractCaller
   124  	ContractTransactor
   125  	ContractFilterer
   126  }