backend.go 5.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package bind

import (
20
	"errors"
21 22 23 24
	"math/big"

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/types"
25
	"golang.org/x/net/context"
26 27
)

28 29 30 31 32
// ErrNoCode is returned by call and transact operations for which the requested
// recipient contract to operate on does not exist in the state db or does not
// have any code associated with it (i.e. suicided).
var ErrNoCode = errors.New("no contract code at given address")

33 34 35
// ContractCaller defines the methods needed to allow operating with contract on a read
// only basis.
type ContractCaller interface {
36 37 38
	// HasCode checks if the contract at the given address has any code associated
	// with it or not. This is needed to differentiate between contract internal
	// errors and the local chain being out of sync.
39
	HasCode(ctx context.Context, contract common.Address, pending bool) (bool, error)
40

41
	// ContractCall executes an Ethereum contract call with the specified data as
42 43
	// the input. The pending flag requests execution against the pending block, not
	// the stable head of the chain.
44
	ContractCall(ctx context.Context, contract common.Address, data []byte, pending bool) ([]byte, error)
45 46 47 48 49 50 51
}

// ContractTransactor defines the methods needed to allow operating with contract
// on a write only basis. Beside the transacting method, the remainder are helpers
// used when the user does not provide some needed values, but rather leaves it up
// to the transactor to decide.
type ContractTransactor interface {
52 53
	// PendingAccountNonce retrieves the current pending nonce associated with an
	// account.
54
	PendingAccountNonce(ctx context.Context, account common.Address) (uint64, error)
55 56 57

	// SuggestGasPrice retrieves the currently suggested gas price to allow a timely
	// execution of a transaction.
58
	SuggestGasPrice(ctx context.Context) (*big.Int, error)
59

60 61 62
	// HasCode checks if the contract at the given address has any code associated
	// with it or not. This is needed to differentiate between contract internal
	// errors and the local chain being out of sync.
63
	HasCode(ctx context.Context, contract common.Address, pending bool) (bool, error)
64

65 66 67 68 69
	// EstimateGasLimit 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.
70
	EstimateGasLimit(ctx context.Context, sender common.Address, contract *common.Address, value *big.Int, data []byte) (*big.Int, error)
71 72

	// SendTransaction injects the transaction into the pending pool for execution.
73
	SendTransaction(ctx context.Context, tx *types.Transaction) error
74 75 76 77
}

// ContractBackend defines the methods needed to allow operating with contract
// on a read-write basis.
78 79 80 81 82 83
//
// This interface is essentially the union of ContractCaller and ContractTransactor
// but due to a bug in the Go compiler (https://github.com/golang/go/issues/6977),
// we cannot simply list it as the two interfaces. The other solution is to add a
// third interface containing the common methods, but that convolutes the user API
// as it introduces yet another parameter to require for initialization.
84
type ContractBackend interface {
85 86 87
	// HasCode checks if the contract at the given address has any code associated
	// with it or not. This is needed to differentiate between contract internal
	// errors and the local chain being out of sync.
88
	HasCode(ctx context.Context, contract common.Address, pending bool) (bool, error)
89 90 91 92

	// ContractCall executes an Ethereum contract call with the specified data as
	// the input. The pending flag requests execution against the pending block, not
	// the stable head of the chain.
93
	ContractCall(ctx context.Context, contract common.Address, data []byte, pending bool) ([]byte, error)
94 95 96

	// PendingAccountNonce retrieves the current pending nonce associated with an
	// account.
97
	PendingAccountNonce(ctx context.Context, account common.Address) (uint64, error)
98 99 100

	// SuggestGasPrice retrieves the currently suggested gas price to allow a timely
	// execution of a transaction.
101
	SuggestGasPrice(ctx context.Context) (*big.Int, error)
102 103 104 105 106 107

	// EstimateGasLimit 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.
108
	EstimateGasLimit(ctx context.Context, sender common.Address, contract *common.Address, value *big.Int, data []byte) (*big.Int, error)
109 110

	// SendTransaction injects the transaction into the pending pool for execution.
111
	SendTransaction(ctx context.Context, tx *types.Transaction) error
112
}