gitlab.com/aquachain/aquachain@v1.17.16-rc3.0.20221018032414-e3ddf1e1c055/interfaces.go (about) 1 // Copyright 2018 The aquachain Authors 2 // This file is part of the aquachain library. 3 // 4 // The aquachain 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 aquachain 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 aquachain library. If not, see <http://www.gnu.org/licenses/>. 16 17 // Package aquachain defines interfaces for interacting with Aquachain. 18 package aquachain 19 20 import ( 21 "context" 22 "errors" 23 "math/big" 24 25 "gitlab.com/aquachain/aquachain/common" 26 "gitlab.com/aquachain/aquachain/core/types" 27 ) 28 29 const Logo = ` _ _ 30 __ _ __ _ _ _ __ _ ___| |__ __ _(_)_ __ 31 / _ '|/ _' | | | |/ _' |/ __| '_ \ / _' | | '_ \ 32 | (_| | (_| | |_| | (_| | (__| | | | (_| | | | | | 33 \__,_|\__, |\__,_|\__,_|\___|_| |_|\__,_|_|_| |_| 34 |_|` + "Update Often! https://gitlab.com/aquachain/aquachain\n\n" 35 36 // NotFound is returned by API methods if the requested item does not exist. 37 var NotFound = errors.New("not found") 38 39 // TODO: move subscription to package event 40 41 // Subscription represents an event subscription where events are 42 // delivered on a data channel. 43 type Subscription interface { 44 // Unsubscribe cancels the sending of events to the data channel 45 // and closes the error channel. 46 Unsubscribe() 47 // Err returns the subscription error channel. The error channel receives 48 // a value if there is an issue with the subscription (e.g. the network connection 49 // delivering the events has been closed). Only one value will ever be sent. 50 // The error channel is closed by Unsubscribe. 51 Err() <-chan error 52 } 53 54 // ChainReader provides access to the blockchain. The methods in this interface access raw 55 // data from either the canonical chain (when requesting by block number) or any 56 // blockchain fork that was previously downloaded and processed by the node. The block 57 // number argument can be nil to select the latest canonical block. Reading block headers 58 // should be preferred over full blocks whenever possible. 59 // 60 // The returned error is NotFound if the requested item does not exist. 61 type ChainReader interface { 62 BlockByHash(ctx context.Context, hash common.Hash) (*types.Block, error) 63 BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error) 64 HeaderByHash(ctx context.Context, hash common.Hash) (*types.Header, error) 65 HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error) 66 TransactionCount(ctx context.Context, blockHash common.Hash) (uint, error) 67 TransactionInBlock(ctx context.Context, blockHash common.Hash, index uint) (*types.Transaction, error) 68 69 // This method subscribes to notifications about changes of the head block of 70 // the canonical chain. 71 SubscribeNewHead(ctx context.Context, ch chan<- *types.Header) (Subscription, error) 72 } 73 74 // TransactionReader provides access to past transactions and their receipts. 75 // Implementations may impose arbitrary restrictions on the transactions and receipts that 76 // can be retrieved. Historic transactions may not be available. 77 // 78 // Avoid relying on this interface if possible. Contract logs (through the LogFilterer 79 // interface) are more reliable and usually safer in the presence of chain 80 // reorganisations. 81 // 82 // The returned error is NotFound if the requested item does not exist. 83 type TransactionReader interface { 84 // TransactionByHash checks the pool of pending transactions in addition to the 85 // blockchain. The isPending return value indicates whether the transaction has been 86 // mined yet. Note that the transaction may not be part of the canonical chain even if 87 // it's not pending. 88 TransactionByHash(ctx context.Context, txHash common.Hash) (tx *types.Transaction, isPending bool, err error) 89 // TransactionReceipt returns the receipt of a mined transaction. Note that the 90 // transaction may not be included in the current canonical chain even if a receipt 91 // exists. 92 TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error) 93 } 94 95 // ChainStateReader wraps access to the state trie of the canonical blockchain. Note that 96 // implementations of the interface may be unable to return state values for old blocks. 97 // In many cases, using CallContract can be preferable to reading raw contract storage. 98 type ChainStateReader interface { 99 BalanceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (*big.Int, error) 100 StorageAt(ctx context.Context, account common.Address, key common.Hash, blockNumber *big.Int) ([]byte, error) 101 CodeAt(ctx context.Context, account common.Address, blockNumber *big.Int) ([]byte, error) 102 NonceAt(ctx context.Context, account common.Address, blockNumber *big.Int) (uint64, error) 103 } 104 105 // SyncProgress gives progress indications when the node is synchronising with 106 // the Aquachain network. 107 type SyncProgress struct { 108 StartingBlock uint64 // Block number where sync began 109 CurrentBlock uint64 // Current block number where sync is at 110 HighestBlock uint64 // Highest alleged block number in the chain 111 PulledStates uint64 // Number of state trie entries already downloaded 112 KnownStates uint64 // Total number of state trie entries known about 113 } 114 115 // ChainSyncReader wraps access to the node's current sync status. If there's no 116 // sync currently running, it returns nil. 117 type ChainSyncReader interface { 118 SyncProgress(ctx context.Context) (*SyncProgress, error) 119 } 120 121 // CallMsg contains parameters for contract calls. 122 type CallMsg struct { 123 From common.Address // the sender of the 'transaction' 124 To *common.Address // the destination contract (nil for contract creation) 125 Gas uint64 // if 0, the call executes with near-infinite gas 126 GasPrice *big.Int // wei <-> gas exchange ratio 127 Value *big.Int // amount of wei sent along with the call 128 Data []byte // input data, usually an ABI-encoded contract method invocation 129 } 130 131 // A ContractCaller provides contract calls, essentially transactions that are executed by 132 // the EVM but not mined into the blockchain. ContractCall is a low-level method to 133 // execute such calls. For applications which are structured around specific contracts, 134 // the abigen tool provides a nicer, properly typed way to perform calls. 135 type ContractCaller interface { 136 CallContract(ctx context.Context, call CallMsg, blockNumber *big.Int) ([]byte, error) 137 } 138 139 // FilterQuery contains options for contract log filtering. 140 type FilterQuery struct { 141 FromBlock *big.Int // beginning of the queried range, nil means genesis block 142 ToBlock *big.Int // end of the range, nil means latest block 143 Addresses []common.Address // restricts matches to events created by specific contracts 144 145 // The Topic list restricts matches to particular event topics. Each event has a list 146 // of topics. Topics matches a prefix of that list. An empty element slice matches any 147 // topic. Non-empty elements represent an alternative that matches any of the 148 // contained topics. 149 // 150 // Examples: 151 // {} or nil matches any topic list 152 // {{A}} matches topic A in first position 153 // {{}, {B}} matches any topic in first position, B in second position 154 // {{A}}, {B}} matches topic A in first position, B in second position 155 // {{A, B}}, {C, D}} matches topic (A OR B) in first position, (C OR D) in second position 156 Topics [][]common.Hash 157 } 158 159 // LogFilterer provides access to contract log events using a one-off query or continuous 160 // event subscription. 161 // 162 // Logs received through a streaming query subscription may have Removed set to true, 163 // indicating that the log was reverted due to a chain reorganisation. 164 type LogFilterer interface { 165 FilterLogs(ctx context.Context, q FilterQuery) ([]types.Log, error) 166 SubscribeFilterLogs(ctx context.Context, q FilterQuery, ch chan<- types.Log) (Subscription, error) 167 } 168 169 // TransactionSender wraps transaction sending. The SendTransaction method injects a 170 // signed transaction into the pending transaction pool for execution. If the transaction 171 // was a contract creation, the TransactionReceipt method can be used to retrieve the 172 // contract address after the transaction has been mined. 173 // 174 // The transaction must be signed and have a valid nonce to be included. Consumers of the 175 // API can use package accounts to maintain local private keys and need can retrieve the 176 // next available nonce using PendingNonceAt. 177 type TransactionSender interface { 178 SendTransaction(ctx context.Context, tx *types.Transaction) error 179 } 180 181 // GasPricer wraps the gas price oracle, which monitors the blockchain to determine the 182 // optimal gas price given current fee market conditions. 183 type GasPricer interface { 184 SuggestGasPrice(ctx context.Context) (*big.Int, error) 185 } 186 187 // A PendingStateReader provides access to the pending state, which is the result of all 188 // known executable transactions which have not yet been included in the blockchain. It is 189 // commonly used to display the result of ’unconfirmed’ actions (e.g. wallet value 190 // transfers) initiated by the user. The PendingNonceAt operation is a good way to 191 // retrieve the next available transaction nonce for a specific account. 192 type PendingStateReader interface { 193 PendingBalance(ctx context.Context, account common.Address) (*big.Int, error) 194 PendingStorage(ctx context.Context, account common.Address, key common.Hash) ([]byte, error) 195 PendingCode(ctx context.Context, account common.Address) ([]byte, error) 196 PendingNonce(ctx context.Context, account common.Address) (uint64, error) 197 PendingTransactionCount(ctx context.Context) (uint, error) 198 } 199 200 // PendingContractCaller can be used to perform calls against the pending state. 201 type PendingContractCaller interface { 202 PendingCallContract(ctx context.Context, call CallMsg) ([]byte, error) 203 } 204 205 // GasEstimator wraps EstimateGas, which tries to estimate the gas needed to execute a 206 // specific transaction based on the pending state. There is no guarantee that this is the 207 // true gas limit requirement as other transactions may be added or removed by miners, but 208 // it should provide a basis for setting a reasonable default. 209 type GasEstimator interface { 210 EstimateGas(ctx context.Context, call CallMsg) (uint64, error) 211 } 212 213 // A PendingStateEventer provides access to real time notifications about changes to the 214 // pending state. 215 type PendingStateEventer interface { 216 SubscribePendingTransactions(ctx context.Context, ch chan<- *types.Transaction) (Subscription, error) 217 }