api.go 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454
  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. package ethapi
  17. import (
  18. "bytes"
  19. "context"
  20. "errors"
  21. "fmt"
  22. "math/big"
  23. "strings"
  24. "time"
  25. "github.com/davecgh/go-spew/spew"
  26. "github.com/ethereum/go-ethereum/accounts"
  27. "github.com/ethereum/go-ethereum/accounts/abi"
  28. "github.com/ethereum/go-ethereum/accounts/keystore"
  29. "github.com/ethereum/go-ethereum/accounts/scwallet"
  30. "github.com/ethereum/go-ethereum/common"
  31. "github.com/ethereum/go-ethereum/common/gopool"
  32. "github.com/ethereum/go-ethereum/common/hexutil"
  33. "github.com/ethereum/go-ethereum/common/math"
  34. "github.com/ethereum/go-ethereum/consensus"
  35. "github.com/ethereum/go-ethereum/consensus/clique"
  36. "github.com/ethereum/go-ethereum/consensus/ethash"
  37. "github.com/ethereum/go-ethereum/core"
  38. "github.com/ethereum/go-ethereum/core/rawdb"
  39. "github.com/ethereum/go-ethereum/core/state"
  40. "github.com/ethereum/go-ethereum/core/types"
  41. "github.com/ethereum/go-ethereum/core/vm"
  42. "github.com/ethereum/go-ethereum/crypto"
  43. "github.com/ethereum/go-ethereum/log"
  44. "github.com/ethereum/go-ethereum/p2p"
  45. "github.com/ethereum/go-ethereum/params"
  46. "github.com/ethereum/go-ethereum/rlp"
  47. "github.com/ethereum/go-ethereum/rpc"
  48. "github.com/tyler-smith/go-bip39"
  49. )
  50. const UnHealthyTimeout = 5 * time.Second
  51. // PublicEthereumAPI provides an API to access Ethereum related information.
  52. // It offers only methods that operate on public data that is freely available to anyone.
  53. type PublicEthereumAPI struct {
  54. b Backend
  55. }
  56. // NewPublicEthereumAPI creates a new Ethereum protocol API.
  57. func NewPublicEthereumAPI(b Backend) *PublicEthereumAPI {
  58. return &PublicEthereumAPI{b}
  59. }
  60. // GasPrice returns a suggestion for a gas price.
  61. func (s *PublicEthereumAPI) GasPrice(ctx context.Context) (*hexutil.Big, error) {
  62. price, err := s.b.SuggestPrice(ctx)
  63. return (*hexutil.Big)(price), err
  64. }
  65. // Syncing returns false in case the node is currently not syncing with the network. It can be up to date or has not
  66. // yet received the latest block headers from its pears. In case it is synchronizing:
  67. // - startingBlock: block number this node started to synchronise from
  68. // - currentBlock: block number this node is currently importing
  69. // - highestBlock: block number of the highest block header this node has received from peers
  70. // - pulledStates: number of state entries processed until now
  71. // - knownStates: number of known state entries that still need to be pulled
  72. func (s *PublicEthereumAPI) Syncing() (interface{}, error) {
  73. progress := s.b.Downloader().Progress()
  74. // Return not syncing if the synchronisation already completed
  75. if progress.CurrentBlock >= progress.HighestBlock {
  76. return false, nil
  77. }
  78. // Otherwise gather the block sync stats
  79. return map[string]interface{}{
  80. "startingBlock": hexutil.Uint64(progress.StartingBlock),
  81. "currentBlock": hexutil.Uint64(progress.CurrentBlock),
  82. "highestBlock": hexutil.Uint64(progress.HighestBlock),
  83. "pulledStates": hexutil.Uint64(progress.PulledStates),
  84. "knownStates": hexutil.Uint64(progress.KnownStates),
  85. }, nil
  86. }
  87. // PublicTxPoolAPI offers and API for the transaction pool. It only operates on data that is non confidential.
  88. type PublicTxPoolAPI struct {
  89. b Backend
  90. }
  91. // NewPublicTxPoolAPI creates a new tx pool service that gives information about the transaction pool.
  92. func NewPublicTxPoolAPI(b Backend) *PublicTxPoolAPI {
  93. return &PublicTxPoolAPI{b}
  94. }
  95. // Content returns the transactions contained within the transaction pool.
  96. func (s *PublicTxPoolAPI) Content() map[string]map[string]map[string]*RPCTransaction {
  97. content := map[string]map[string]map[string]*RPCTransaction{
  98. "pending": make(map[string]map[string]*RPCTransaction),
  99. "queued": make(map[string]map[string]*RPCTransaction),
  100. }
  101. pending, queue := s.b.TxPoolContent()
  102. // Flatten the pending transactions
  103. for account, txs := range pending {
  104. dump := make(map[string]*RPCTransaction)
  105. for _, tx := range txs {
  106. dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
  107. }
  108. content["pending"][account.Hex()] = dump
  109. }
  110. // Flatten the queued transactions
  111. for account, txs := range queue {
  112. dump := make(map[string]*RPCTransaction)
  113. for _, tx := range txs {
  114. dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
  115. }
  116. content["queued"][account.Hex()] = dump
  117. }
  118. return content
  119. }
  120. // Status returns the number of pending and queued transaction in the pool.
  121. func (s *PublicTxPoolAPI) Status() map[string]hexutil.Uint {
  122. pending, queue := s.b.Stats()
  123. return map[string]hexutil.Uint{
  124. "pending": hexutil.Uint(pending),
  125. "queued": hexutil.Uint(queue),
  126. }
  127. }
  128. // Inspect retrieves the content of the transaction pool and flattens it into an
  129. // easily inspectable list.
  130. func (s *PublicTxPoolAPI) Inspect() map[string]map[string]map[string]string {
  131. content := map[string]map[string]map[string]string{
  132. "pending": make(map[string]map[string]string),
  133. "queued": make(map[string]map[string]string),
  134. }
  135. pending, queue := s.b.TxPoolContent()
  136. // Define a formatter to flatten a transaction into a string
  137. var format = func(tx *types.Transaction) string {
  138. if to := tx.To(); to != nil {
  139. return fmt.Sprintf("%s: %v wei + %v gas × %v wei", tx.To().Hex(), tx.Value(), tx.Gas(), tx.GasPrice())
  140. }
  141. return fmt.Sprintf("contract creation: %v wei + %v gas × %v wei", tx.Value(), tx.Gas(), tx.GasPrice())
  142. }
  143. // Flatten the pending transactions
  144. for account, txs := range pending {
  145. dump := make(map[string]string)
  146. for _, tx := range txs {
  147. dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
  148. }
  149. content["pending"][account.Hex()] = dump
  150. }
  151. // Flatten the queued transactions
  152. for account, txs := range queue {
  153. dump := make(map[string]string)
  154. for _, tx := range txs {
  155. dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
  156. }
  157. content["queued"][account.Hex()] = dump
  158. }
  159. return content
  160. }
  161. // PublicAccountAPI provides an API to access accounts managed by this node.
  162. // It offers only methods that can retrieve accounts.
  163. type PublicAccountAPI struct {
  164. am *accounts.Manager
  165. }
  166. // NewPublicAccountAPI creates a new PublicAccountAPI.
  167. func NewPublicAccountAPI(am *accounts.Manager) *PublicAccountAPI {
  168. return &PublicAccountAPI{am: am}
  169. }
  170. // Accounts returns the collection of accounts this node manages
  171. func (s *PublicAccountAPI) Accounts() []common.Address {
  172. return s.am.Accounts()
  173. }
  174. // PrivateAccountAPI provides an API to access accounts managed by this node.
  175. // It offers methods to create, (un)lock en list accounts. Some methods accept
  176. // passwords and are therefore considered private by default.
  177. type PrivateAccountAPI struct {
  178. am *accounts.Manager
  179. nonceLock *AddrLocker
  180. b Backend
  181. }
  182. // NewPrivateAccountAPI create a new PrivateAccountAPI.
  183. func NewPrivateAccountAPI(b Backend, nonceLock *AddrLocker) *PrivateAccountAPI {
  184. return &PrivateAccountAPI{
  185. am: b.AccountManager(),
  186. nonceLock: nonceLock,
  187. b: b,
  188. }
  189. }
  190. // listAccounts will return a list of addresses for accounts this node manages.
  191. func (s *PrivateAccountAPI) ListAccounts() []common.Address {
  192. return s.am.Accounts()
  193. }
  194. // rawWallet is a JSON representation of an accounts.Wallet interface, with its
  195. // data contents extracted into plain fields.
  196. type rawWallet struct {
  197. URL string `json:"url"`
  198. Status string `json:"status"`
  199. Failure string `json:"failure,omitempty"`
  200. Accounts []accounts.Account `json:"accounts,omitempty"`
  201. }
  202. // ListWallets will return a list of wallets this node manages.
  203. func (s *PrivateAccountAPI) ListWallets() []rawWallet {
  204. wallets := make([]rawWallet, 0) // return [] instead of nil if empty
  205. for _, wallet := range s.am.Wallets() {
  206. status, failure := wallet.Status()
  207. raw := rawWallet{
  208. URL: wallet.URL().String(),
  209. Status: status,
  210. Accounts: wallet.Accounts(),
  211. }
  212. if failure != nil {
  213. raw.Failure = failure.Error()
  214. }
  215. wallets = append(wallets, raw)
  216. }
  217. return wallets
  218. }
  219. // OpenWallet initiates a hardware wallet opening procedure, establishing a USB
  220. // connection and attempting to authenticate via the provided passphrase. Note,
  221. // the method may return an extra challenge requiring a second open (e.g. the
  222. // Trezor PIN matrix challenge).
  223. func (s *PrivateAccountAPI) OpenWallet(url string, passphrase *string) error {
  224. wallet, err := s.am.Wallet(url)
  225. if err != nil {
  226. return err
  227. }
  228. pass := ""
  229. if passphrase != nil {
  230. pass = *passphrase
  231. }
  232. return wallet.Open(pass)
  233. }
  234. // DeriveAccount requests a HD wallet to derive a new account, optionally pinning
  235. // it for later reuse.
  236. func (s *PrivateAccountAPI) DeriveAccount(url string, path string, pin *bool) (accounts.Account, error) {
  237. wallet, err := s.am.Wallet(url)
  238. if err != nil {
  239. return accounts.Account{}, err
  240. }
  241. derivPath, err := accounts.ParseDerivationPath(path)
  242. if err != nil {
  243. return accounts.Account{}, err
  244. }
  245. if pin == nil {
  246. pin = new(bool)
  247. }
  248. return wallet.Derive(derivPath, *pin)
  249. }
  250. // NewAccount will create a new account and returns the address for the new account.
  251. func (s *PrivateAccountAPI) NewAccount(password string) (common.Address, error) {
  252. ks, err := fetchKeystore(s.am)
  253. if err != nil {
  254. return common.Address{}, err
  255. }
  256. acc, err := ks.NewAccount(password)
  257. if err == nil {
  258. log.Info("Your new key was generated", "address", acc.Address)
  259. log.Warn("Please backup your key file!", "path", acc.URL.Path)
  260. log.Warn("Please remember your password!")
  261. return acc.Address, nil
  262. }
  263. return common.Address{}, err
  264. }
  265. // fetchKeystore retrieves the encrypted keystore from the account manager.
  266. func fetchKeystore(am *accounts.Manager) (*keystore.KeyStore, error) {
  267. if ks := am.Backends(keystore.KeyStoreType); len(ks) > 0 {
  268. return ks[0].(*keystore.KeyStore), nil
  269. }
  270. return nil, errors.New("local keystore not used")
  271. }
  272. // ImportRawKey stores the given hex encoded ECDSA key into the key directory,
  273. // encrypting it with the passphrase.
  274. func (s *PrivateAccountAPI) ImportRawKey(privkey string, password string) (common.Address, error) {
  275. key, err := crypto.HexToECDSA(privkey)
  276. if err != nil {
  277. return common.Address{}, err
  278. }
  279. ks, err := fetchKeystore(s.am)
  280. if err != nil {
  281. return common.Address{}, err
  282. }
  283. acc, err := ks.ImportECDSA(key, password)
  284. return acc.Address, err
  285. }
  286. // UnlockAccount will unlock the account associated with the given address with
  287. // the given password for duration seconds. If duration is nil it will use a
  288. // default of 300 seconds. It returns an indication if the account was unlocked.
  289. func (s *PrivateAccountAPI) UnlockAccount(ctx context.Context, addr common.Address, password string, duration *uint64) (bool, error) {
  290. // When the API is exposed by external RPC(http, ws etc), unless the user
  291. // explicitly specifies to allow the insecure account unlocking, otherwise
  292. // it is disabled.
  293. if s.b.ExtRPCEnabled() && !s.b.AccountManager().Config().InsecureUnlockAllowed {
  294. return false, errors.New("account unlock with HTTP access is forbidden")
  295. }
  296. const max = uint64(time.Duration(math.MaxInt64) / time.Second)
  297. var d time.Duration
  298. if duration == nil {
  299. d = 300 * time.Second
  300. } else if *duration > max {
  301. return false, errors.New("unlock duration too large")
  302. } else {
  303. d = time.Duration(*duration) * time.Second
  304. }
  305. ks, err := fetchKeystore(s.am)
  306. if err != nil {
  307. return false, err
  308. }
  309. err = ks.TimedUnlock(accounts.Account{Address: addr}, password, d)
  310. if err != nil {
  311. log.Warn("Failed account unlock attempt", "address", addr, "err", err)
  312. }
  313. return err == nil, err
  314. }
  315. // LockAccount will lock the account associated with the given address when it's unlocked.
  316. func (s *PrivateAccountAPI) LockAccount(addr common.Address) bool {
  317. if ks, err := fetchKeystore(s.am); err == nil {
  318. return ks.Lock(addr) == nil
  319. }
  320. return false
  321. }
  322. // signTransaction sets defaults and signs the given transaction
  323. // NOTE: the caller needs to ensure that the nonceLock is held, if applicable,
  324. // and release it after the transaction has been submitted to the tx pool
  325. func (s *PrivateAccountAPI) signTransaction(ctx context.Context, args *SendTxArgs, passwd string) (*types.Transaction, error) {
  326. // Look up the wallet containing the requested signer
  327. account := accounts.Account{Address: args.From}
  328. wallet, err := s.am.Find(account)
  329. if err != nil {
  330. return nil, err
  331. }
  332. // Set some sanity defaults and terminate on failure
  333. if err := args.setDefaults(ctx, s.b); err != nil {
  334. return nil, err
  335. }
  336. // Assemble the transaction and sign with the wallet
  337. tx := args.toTransaction()
  338. return wallet.SignTxWithPassphrase(account, passwd, tx, s.b.ChainConfig().ChainID)
  339. }
  340. // SendTransaction will create a transaction from the given arguments and
  341. // tries to sign it with the key associated with args.From. If the given passwd isn't
  342. // able to decrypt the key it fails.
  343. func (s *PrivateAccountAPI) SendTransaction(ctx context.Context, args SendTxArgs, passwd string) (common.Hash, error) {
  344. if args.Nonce == nil {
  345. // Hold the addresse's mutex around signing to prevent concurrent assignment of
  346. // the same nonce to multiple accounts.
  347. s.nonceLock.LockAddr(args.From)
  348. defer s.nonceLock.UnlockAddr(args.From)
  349. }
  350. signed, err := s.signTransaction(ctx, &args, passwd)
  351. if err != nil {
  352. log.Warn("Failed transaction send attempt", "from", args.From, "to", args.To, "value", args.Value.ToInt(), "err", err)
  353. return common.Hash{}, err
  354. }
  355. return SubmitTransaction(ctx, s.b, signed)
  356. }
  357. // SignTransaction will create a transaction from the given arguments and
  358. // tries to sign it with the key associated with args.From. If the given passwd isn't
  359. // able to decrypt the key it fails. The transaction is returned in RLP-form, not broadcast
  360. // to other nodes
  361. func (s *PrivateAccountAPI) SignTransaction(ctx context.Context, args SendTxArgs, passwd string) (*SignTransactionResult, error) {
  362. // No need to obtain the noncelock mutex, since we won't be sending this
  363. // tx into the transaction pool, but right back to the user
  364. if args.Gas == nil {
  365. return nil, fmt.Errorf("gas not specified")
  366. }
  367. if args.GasPrice == nil {
  368. return nil, fmt.Errorf("gasPrice not specified")
  369. }
  370. if args.Nonce == nil {
  371. return nil, fmt.Errorf("nonce not specified")
  372. }
  373. // Before actually sign the transaction, ensure the transaction fee is reasonable.
  374. if err := checkTxFee(args.GasPrice.ToInt(), uint64(*args.Gas), s.b.RPCTxFeeCap()); err != nil {
  375. return nil, err
  376. }
  377. signed, err := s.signTransaction(ctx, &args, passwd)
  378. if err != nil {
  379. log.Warn("Failed transaction sign attempt", "from", args.From, "to", args.To, "value", args.Value.ToInt(), "err", err)
  380. return nil, err
  381. }
  382. data, err := signed.MarshalBinary()
  383. if err != nil {
  384. return nil, err
  385. }
  386. return &SignTransactionResult{data, signed}, nil
  387. }
  388. // Sign calculates an Ethereum ECDSA signature for:
  389. // keccack256("\x19Ethereum Signed Message:\n" + len(message) + message))
  390. //
  391. // Note, the produced signature conforms to the secp256k1 curve R, S and V values,
  392. // where the V value will be 27 or 28 for legacy reasons.
  393. //
  394. // The key used to calculate the signature is decrypted with the given password.
  395. //
  396. // https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_sign
  397. func (s *PrivateAccountAPI) Sign(ctx context.Context, data hexutil.Bytes, addr common.Address, passwd string) (hexutil.Bytes, error) {
  398. // Look up the wallet containing the requested signer
  399. account := accounts.Account{Address: addr}
  400. wallet, err := s.b.AccountManager().Find(account)
  401. if err != nil {
  402. return nil, err
  403. }
  404. // Assemble sign the data with the wallet
  405. signature, err := wallet.SignTextWithPassphrase(account, passwd, data)
  406. if err != nil {
  407. log.Warn("Failed data sign attempt", "address", addr, "err", err)
  408. return nil, err
  409. }
  410. signature[crypto.RecoveryIDOffset] += 27 // Transform V from 0/1 to 27/28 according to the yellow paper
  411. return signature, nil
  412. }
  413. // EcRecover returns the address for the account that was used to create the signature.
  414. // Note, this function is compatible with eth_sign and personal_sign. As such it recovers
  415. // the address of:
  416. // hash = keccak256("\x19Ethereum Signed Message:\n"${message length}${message})
  417. // addr = ecrecover(hash, signature)
  418. //
  419. // Note, the signature must conform to the secp256k1 curve R, S and V values, where
  420. // the V value must be 27 or 28 for legacy reasons.
  421. //
  422. // https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_ecRecover
  423. func (s *PrivateAccountAPI) EcRecover(ctx context.Context, data, sig hexutil.Bytes) (common.Address, error) {
  424. if len(sig) != crypto.SignatureLength {
  425. return common.Address{}, fmt.Errorf("signature must be %d bytes long", crypto.SignatureLength)
  426. }
  427. if sig[crypto.RecoveryIDOffset] != 27 && sig[crypto.RecoveryIDOffset] != 28 {
  428. return common.Address{}, fmt.Errorf("invalid Ethereum signature (V is not 27 or 28)")
  429. }
  430. sig[crypto.RecoveryIDOffset] -= 27 // Transform yellow paper V from 27/28 to 0/1
  431. rpk, err := crypto.SigToPub(accounts.TextHash(data), sig)
  432. if err != nil {
  433. return common.Address{}, err
  434. }
  435. return crypto.PubkeyToAddress(*rpk), nil
  436. }
  437. // SignAndSendTransaction was renamed to SendTransaction. This method is deprecated
  438. // and will be removed in the future. It primary goal is to give clients time to update.
  439. func (s *PrivateAccountAPI) SignAndSendTransaction(ctx context.Context, args SendTxArgs, passwd string) (common.Hash, error) {
  440. return s.SendTransaction(ctx, args, passwd)
  441. }
  442. // InitializeWallet initializes a new wallet at the provided URL, by generating and returning a new private key.
  443. func (s *PrivateAccountAPI) InitializeWallet(ctx context.Context, url string) (string, error) {
  444. wallet, err := s.am.Wallet(url)
  445. if err != nil {
  446. return "", err
  447. }
  448. entropy, err := bip39.NewEntropy(256)
  449. if err != nil {
  450. return "", err
  451. }
  452. mnemonic, err := bip39.NewMnemonic(entropy)
  453. if err != nil {
  454. return "", err
  455. }
  456. seed := bip39.NewSeed(mnemonic, "")
  457. switch wallet := wallet.(type) {
  458. case *scwallet.Wallet:
  459. return mnemonic, wallet.Initialize(seed)
  460. default:
  461. return "", fmt.Errorf("specified wallet does not support initialization")
  462. }
  463. }
  464. // Unpair deletes a pairing between wallet and geth.
  465. func (s *PrivateAccountAPI) Unpair(ctx context.Context, url string, pin string) error {
  466. wallet, err := s.am.Wallet(url)
  467. if err != nil {
  468. return err
  469. }
  470. switch wallet := wallet.(type) {
  471. case *scwallet.Wallet:
  472. return wallet.Unpair([]byte(pin))
  473. default:
  474. return fmt.Errorf("specified wallet does not support pairing")
  475. }
  476. }
  477. // PublicBlockChainAPI provides an API to access the Ethereum blockchain.
  478. // It offers only methods that operate on public data that is freely available to anyone.
  479. type PublicBlockChainAPI struct {
  480. b Backend
  481. }
  482. // NewPublicBlockChainAPI creates a new Ethereum blockchain API.
  483. func NewPublicBlockChainAPI(b Backend) *PublicBlockChainAPI {
  484. return &PublicBlockChainAPI{b}
  485. }
  486. // ChainId is the EIP-155 replay-protection chain id for the current ethereum chain config.
  487. func (api *PublicBlockChainAPI) ChainId() (*hexutil.Big, error) {
  488. // if current block is at or past the EIP-155 replay-protection fork block, return chainID from config
  489. if config := api.b.ChainConfig(); config.IsEIP155(api.b.CurrentBlock().Number()) {
  490. return (*hexutil.Big)(config.ChainID), nil
  491. }
  492. return nil, fmt.Errorf("chain not synced beyond EIP-155 replay-protection fork block")
  493. }
  494. // BlockNumber returns the block number of the chain head.
  495. func (s *PublicBlockChainAPI) BlockNumber() hexutil.Uint64 {
  496. header, _ := s.b.HeaderByNumber(context.Background(), rpc.LatestBlockNumber) // latest header should always be available
  497. return hexutil.Uint64(header.Number.Uint64())
  498. }
  499. // GetBalance returns the amount of wei for the given address in the state of the
  500. // given block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta
  501. // block numbers are also allowed.
  502. func (s *PublicBlockChainAPI) GetBalance(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Big, error) {
  503. state, _, err := s.b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  504. if state == nil || err != nil {
  505. return nil, err
  506. }
  507. return (*hexutil.Big)(state.GetBalance(address)), state.Error()
  508. }
  509. // Result structs for GetProof
  510. type AccountResult struct {
  511. Address common.Address `json:"address"`
  512. AccountProof []string `json:"accountProof"`
  513. Balance *hexutil.Big `json:"balance"`
  514. CodeHash common.Hash `json:"codeHash"`
  515. Nonce hexutil.Uint64 `json:"nonce"`
  516. StorageHash common.Hash `json:"storageHash"`
  517. StorageProof []StorageResult `json:"storageProof"`
  518. }
  519. type StorageResult struct {
  520. Key string `json:"key"`
  521. Value *hexutil.Big `json:"value"`
  522. Proof []string `json:"proof"`
  523. }
  524. // GetProof returns the Merkle-proof for a given account and optionally some storage keys.
  525. func (s *PublicBlockChainAPI) GetProof(ctx context.Context, address common.Address, storageKeys []string, blockNrOrHash rpc.BlockNumberOrHash) (*AccountResult, error) {
  526. state, _, err := s.b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  527. if state == nil || err != nil {
  528. return nil, err
  529. }
  530. storageTrie := state.StorageTrie(address)
  531. storageHash := types.EmptyRootHash
  532. codeHash := state.GetCodeHash(address)
  533. storageProof := make([]StorageResult, len(storageKeys))
  534. // if we have a storageTrie, (which means the account exists), we can update the storagehash
  535. if storageTrie != nil {
  536. storageHash = storageTrie.Hash()
  537. } else {
  538. // no storageTrie means the account does not exist, so the codeHash is the hash of an empty bytearray.
  539. codeHash = crypto.Keccak256Hash(nil)
  540. }
  541. // create the proof for the storageKeys
  542. for i, key := range storageKeys {
  543. if storageTrie != nil {
  544. proof, storageError := state.GetStorageProof(address, common.HexToHash(key))
  545. if storageError != nil {
  546. return nil, storageError
  547. }
  548. storageProof[i] = StorageResult{key, (*hexutil.Big)(state.GetState(address, common.HexToHash(key)).Big()), toHexSlice(proof)}
  549. } else {
  550. storageProof[i] = StorageResult{key, &hexutil.Big{}, []string{}}
  551. }
  552. }
  553. // create the accountProof
  554. accountProof, proofErr := state.GetProof(address)
  555. if proofErr != nil {
  556. return nil, proofErr
  557. }
  558. return &AccountResult{
  559. Address: address,
  560. AccountProof: toHexSlice(accountProof),
  561. Balance: (*hexutil.Big)(state.GetBalance(address)),
  562. CodeHash: codeHash,
  563. Nonce: hexutil.Uint64(state.GetNonce(address)),
  564. StorageHash: storageHash,
  565. StorageProof: storageProof,
  566. }, state.Error()
  567. }
  568. // GetHeaderByNumber returns the requested canonical block header.
  569. // * When blockNr is -1 the chain head is returned.
  570. // * When blockNr is -2 the pending chain head is returned.
  571. func (s *PublicBlockChainAPI) GetHeaderByNumber(ctx context.Context, number rpc.BlockNumber) (map[string]interface{}, error) {
  572. header, err := s.b.HeaderByNumber(ctx, number)
  573. if header != nil && err == nil {
  574. response := s.rpcMarshalHeader(ctx, header)
  575. if number == rpc.PendingBlockNumber {
  576. // Pending header need to nil out a few fields
  577. for _, field := range []string{"hash", "nonce", "miner"} {
  578. response[field] = nil
  579. }
  580. }
  581. return response, err
  582. }
  583. return nil, err
  584. }
  585. // GetHeaderByHash returns the requested header by hash.
  586. func (s *PublicBlockChainAPI) GetHeaderByHash(ctx context.Context, hash common.Hash) map[string]interface{} {
  587. header, _ := s.b.HeaderByHash(ctx, hash)
  588. if header != nil {
  589. return s.rpcMarshalHeader(ctx, header)
  590. }
  591. return nil
  592. }
  593. // GetBlockByNumber returns the requested canonical block.
  594. // * When blockNr is -1 the chain head is returned.
  595. // * When blockNr is -2 the pending chain head is returned.
  596. // * When fullTx is true all transactions in the block are returned, otherwise
  597. // only the transaction hash is returned.
  598. func (s *PublicBlockChainAPI) GetBlockByNumber(ctx context.Context, number rpc.BlockNumber, fullTx bool) (map[string]interface{}, error) {
  599. block, err := s.b.BlockByNumber(ctx, number)
  600. if block != nil && err == nil {
  601. response, err := s.rpcMarshalBlock(ctx, block, true, fullTx)
  602. if err == nil && number == rpc.PendingBlockNumber {
  603. // Pending blocks need to nil out a few fields
  604. for _, field := range []string{"hash", "nonce", "miner"} {
  605. response[field] = nil
  606. }
  607. }
  608. return response, err
  609. }
  610. return nil, err
  611. }
  612. // GetBlockByHash returns the requested block. When fullTx is true all transactions in the block are returned in full
  613. // detail, otherwise only the transaction hash is returned.
  614. func (s *PublicBlockChainAPI) GetBlockByHash(ctx context.Context, hash common.Hash, fullTx bool) (map[string]interface{}, error) {
  615. block, err := s.b.BlockByHash(ctx, hash)
  616. if block != nil {
  617. return s.rpcMarshalBlock(ctx, block, true, fullTx)
  618. }
  619. return nil, err
  620. }
  621. func (s *PublicBlockChainAPI) Health() bool {
  622. if rpc.RpcServingTimer != nil {
  623. return rpc.RpcServingTimer.Percentile(0.75) < float64(UnHealthyTimeout)
  624. }
  625. return true
  626. }
  627. // GetUncleByBlockNumberAndIndex returns the uncle block for the given block hash and index. When fullTx is true
  628. // all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
  629. func (s *PublicBlockChainAPI) GetUncleByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) (map[string]interface{}, error) {
  630. block, err := s.b.BlockByNumber(ctx, blockNr)
  631. if block != nil {
  632. uncles := block.Uncles()
  633. if index >= hexutil.Uint(len(uncles)) {
  634. log.Debug("Requested uncle not found", "number", blockNr, "hash", block.Hash(), "index", index)
  635. return nil, nil
  636. }
  637. block = types.NewBlockWithHeader(uncles[index])
  638. return s.rpcMarshalBlock(ctx, block, false, false)
  639. }
  640. return nil, err
  641. }
  642. // GetUncleByBlockHashAndIndex returns the uncle block for the given block hash and index. When fullTx is true
  643. // all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
  644. func (s *PublicBlockChainAPI) GetUncleByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) (map[string]interface{}, error) {
  645. block, err := s.b.BlockByHash(ctx, blockHash)
  646. if block != nil {
  647. uncles := block.Uncles()
  648. if index >= hexutil.Uint(len(uncles)) {
  649. log.Debug("Requested uncle not found", "number", block.Number(), "hash", blockHash, "index", index)
  650. return nil, nil
  651. }
  652. block = types.NewBlockWithHeader(uncles[index])
  653. return s.rpcMarshalBlock(ctx, block, false, false)
  654. }
  655. return nil, err
  656. }
  657. // GetUncleCountByBlockNumber returns number of uncles in the block for the given block number
  658. func (s *PublicBlockChainAPI) GetUncleCountByBlockNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
  659. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  660. n := hexutil.Uint(len(block.Uncles()))
  661. return &n
  662. }
  663. return nil
  664. }
  665. // GetUncleCountByBlockHash returns number of uncles in the block for the given block hash
  666. func (s *PublicBlockChainAPI) GetUncleCountByBlockHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
  667. if block, _ := s.b.BlockByHash(ctx, blockHash); block != nil {
  668. n := hexutil.Uint(len(block.Uncles()))
  669. return &n
  670. }
  671. return nil
  672. }
  673. // GetCode returns the code stored at the given address in the state for the given block number.
  674. func (s *PublicBlockChainAPI) GetCode(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (hexutil.Bytes, error) {
  675. state, _, err := s.b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  676. if state == nil || err != nil {
  677. return nil, err
  678. }
  679. code := state.GetCode(address)
  680. return code, state.Error()
  681. }
  682. // GetStorageAt returns the storage from the state at the given address, key and
  683. // block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta block
  684. // numbers are also allowed.
  685. func (s *PublicBlockChainAPI) GetStorageAt(ctx context.Context, address common.Address, key string, blockNrOrHash rpc.BlockNumberOrHash) (hexutil.Bytes, error) {
  686. state, _, err := s.b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  687. if state == nil || err != nil {
  688. return nil, err
  689. }
  690. res := state.GetState(address, common.HexToHash(key))
  691. return res[:], state.Error()
  692. }
  693. // CallArgs represents the arguments for a call.
  694. type CallArgs struct {
  695. From *common.Address `json:"from"`
  696. To *common.Address `json:"to"`
  697. Gas *hexutil.Uint64 `json:"gas"`
  698. GasPrice *hexutil.Big `json:"gasPrice"`
  699. Value *hexutil.Big `json:"value"`
  700. Data *hexutil.Bytes `json:"data"`
  701. AccessList *types.AccessList `json:"accessList"`
  702. }
  703. // ToMessage converts CallArgs to the Message type used by the core evm
  704. func (args *CallArgs) ToMessage(globalGasCap uint64) types.Message {
  705. // Set sender address or use zero address if none specified.
  706. var addr common.Address
  707. if args.From != nil {
  708. addr = *args.From
  709. }
  710. // Set default gas & gas price if none were set
  711. gas := globalGasCap
  712. if gas == 0 {
  713. gas = uint64(math.MaxUint64 / 2)
  714. }
  715. if args.Gas != nil {
  716. gas = uint64(*args.Gas)
  717. }
  718. if globalGasCap != 0 && globalGasCap < gas {
  719. log.Debug("Caller gas above allowance, capping", "requested", gas, "cap", globalGasCap)
  720. gas = globalGasCap
  721. }
  722. gasPrice := new(big.Int)
  723. if args.GasPrice != nil {
  724. gasPrice = args.GasPrice.ToInt()
  725. }
  726. value := new(big.Int)
  727. if args.Value != nil {
  728. value = args.Value.ToInt()
  729. }
  730. var data []byte
  731. if args.Data != nil {
  732. data = *args.Data
  733. }
  734. var accessList types.AccessList
  735. if args.AccessList != nil {
  736. accessList = *args.AccessList
  737. }
  738. msg := types.NewMessage(addr, args.To, 0, value, gas, gasPrice, data, accessList, false)
  739. return msg
  740. }
  741. // OverrideAccount indicates the overriding fields of account during the execution
  742. // of a message call.
  743. // Note, state and stateDiff can't be specified at the same time. If state is
  744. // set, message execution will only use the data in the given state. Otherwise
  745. // if statDiff is set, all diff will be applied first and then execute the call
  746. // message.
  747. type OverrideAccount struct {
  748. Nonce *hexutil.Uint64 `json:"nonce"`
  749. Code *hexutil.Bytes `json:"code"`
  750. Balance **hexutil.Big `json:"balance"`
  751. State *map[common.Hash]common.Hash `json:"state"`
  752. StateDiff *map[common.Hash]common.Hash `json:"stateDiff"`
  753. }
  754. // StateOverride is the collection of overridden accounts.
  755. type StateOverride map[common.Address]OverrideAccount
  756. // Apply overrides the fields of specified accounts into the given state.
  757. func (diff *StateOverride) Apply(state *state.StateDB) error {
  758. if diff == nil {
  759. return nil
  760. }
  761. for addr, account := range *diff {
  762. // Override account nonce.
  763. if account.Nonce != nil {
  764. state.SetNonce(addr, uint64(*account.Nonce))
  765. }
  766. // Override account(contract) code.
  767. if account.Code != nil {
  768. state.SetCode(addr, *account.Code)
  769. }
  770. // Override account balance.
  771. if account.Balance != nil {
  772. state.SetBalance(addr, (*big.Int)(*account.Balance))
  773. }
  774. if account.State != nil && account.StateDiff != nil {
  775. return fmt.Errorf("account %s has both 'state' and 'stateDiff'", addr.Hex())
  776. }
  777. // Replace entire state if caller requires.
  778. if account.State != nil {
  779. state.SetStorage(addr, *account.State)
  780. }
  781. // Apply state diff into specified accounts.
  782. if account.StateDiff != nil {
  783. for key, value := range *account.StateDiff {
  784. state.SetState(addr, key, value)
  785. }
  786. }
  787. }
  788. return nil
  789. }
  790. func DoCall(ctx context.Context, b Backend, args CallArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides *StateOverride, vmCfg vm.Config, timeout time.Duration, globalGasCap uint64) (*core.ExecutionResult, error) {
  791. defer func(start time.Time) { log.Debug("Executing EVM call finished", "runtime", time.Since(start)) }(time.Now())
  792. state, header, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  793. if state == nil || err != nil {
  794. return nil, err
  795. }
  796. if err := overrides.Apply(state); err != nil {
  797. return nil, err
  798. }
  799. // Setup context so it may be cancelled the call has completed
  800. // or, in case of unmetered gas, setup a context with a timeout.
  801. var cancel context.CancelFunc
  802. if timeout > 0 {
  803. ctx, cancel = context.WithTimeout(ctx, timeout)
  804. } else {
  805. ctx, cancel = context.WithCancel(ctx)
  806. }
  807. // Make sure the context is cancelled when the call has completed
  808. // this makes sure resources are cleaned up.
  809. defer cancel()
  810. // Get a new instance of the EVM.
  811. msg := args.ToMessage(globalGasCap)
  812. evm, vmError, err := b.GetEVM(ctx, msg, state, header, nil)
  813. if err != nil {
  814. return nil, err
  815. }
  816. // Wait for the context to be done and cancel the evm. Even if the
  817. // EVM has finished, cancelling may be done (repeatedly)
  818. gopool.Submit(func() {
  819. <-ctx.Done()
  820. evm.Cancel()
  821. })
  822. // Execute the message.
  823. gp := new(core.GasPool).AddGas(math.MaxUint64)
  824. result, err := core.ApplyMessage(evm, msg, gp)
  825. if err := vmError(); err != nil {
  826. return nil, err
  827. }
  828. // If the timer caused an abort, return an appropriate error message
  829. if evm.Cancelled() {
  830. return nil, fmt.Errorf("execution aborted (timeout = %v)", timeout)
  831. }
  832. if err != nil {
  833. return result, fmt.Errorf("err: %w (supplied gas %d)", err, msg.Gas())
  834. }
  835. return result, nil
  836. }
  837. func newRevertError(result *core.ExecutionResult) *revertError {
  838. reason, errUnpack := abi.UnpackRevert(result.Revert())
  839. err := errors.New("execution reverted")
  840. if errUnpack == nil {
  841. err = fmt.Errorf("execution reverted: %v", reason)
  842. }
  843. return &revertError{
  844. error: err,
  845. reason: hexutil.Encode(result.Revert()),
  846. }
  847. }
  848. // revertError is an API error that encompassas an EVM revertal with JSON error
  849. // code and a binary data blob.
  850. type revertError struct {
  851. error
  852. reason string // revert reason hex encoded
  853. }
  854. // ErrorCode returns the JSON error code for a revertal.
  855. // See: https://github.com/ethereum/wiki/wiki/JSON-RPC-Error-Codes-Improvement-Proposal
  856. func (e *revertError) ErrorCode() int {
  857. return 3
  858. }
  859. // ErrorData returns the hex encoded revert reason.
  860. func (e *revertError) ErrorData() interface{} {
  861. return e.reason
  862. }
  863. // Call executes the given transaction on the state for the given block number.
  864. //
  865. // Additionally, the caller can specify a batch of contract for fields overriding.
  866. //
  867. // Note, this function doesn't make and changes in the state/blockchain and is
  868. // useful to execute and retrieve values.
  869. func (s *PublicBlockChainAPI) Call(ctx context.Context, args CallArgs, blockNrOrHash rpc.BlockNumberOrHash, overrides *StateOverride) (hexutil.Bytes, error) {
  870. result, err := DoCall(ctx, s.b, args, blockNrOrHash, overrides, vm.Config{}, 5*time.Second, s.b.RPCGasCap())
  871. if err != nil {
  872. return nil, err
  873. }
  874. // If the result contains a revert reason, try to unpack and return it.
  875. if len(result.Revert()) > 0 {
  876. return nil, newRevertError(result)
  877. }
  878. return result.Return(), result.Err
  879. }
  880. func DoEstimateGas(ctx context.Context, b Backend, args CallArgs, blockNrOrHash rpc.BlockNumberOrHash, gasCap uint64) (hexutil.Uint64, error) {
  881. // Binary search the gas requirement, as it may be higher than the amount used
  882. var (
  883. lo uint64 = params.TxGas - 1
  884. hi uint64
  885. cap uint64
  886. )
  887. // Use zero address if sender unspecified.
  888. if args.From == nil {
  889. args.From = new(common.Address)
  890. }
  891. // Determine the highest gas limit can be used during the estimation.
  892. if args.Gas != nil && uint64(*args.Gas) >= params.TxGas {
  893. hi = uint64(*args.Gas)
  894. } else {
  895. // Retrieve the block to act as the gas ceiling
  896. block, err := b.BlockByNumberOrHash(ctx, blockNrOrHash)
  897. if err != nil {
  898. return 0, err
  899. }
  900. if block == nil {
  901. return 0, errors.New("block not found")
  902. }
  903. hi = block.GasLimit()
  904. }
  905. // Recap the highest gas limit with account's available balance.
  906. if args.GasPrice != nil && args.GasPrice.ToInt().BitLen() != 0 {
  907. state, _, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  908. if err != nil {
  909. return 0, err
  910. }
  911. balance := state.GetBalance(*args.From) // from can't be nil
  912. available := new(big.Int).Set(balance)
  913. if args.Value != nil {
  914. if args.Value.ToInt().Cmp(available) >= 0 {
  915. return 0, errors.New("insufficient funds for transfer")
  916. }
  917. available.Sub(available, args.Value.ToInt())
  918. }
  919. allowance := new(big.Int).Div(available, args.GasPrice.ToInt())
  920. // If the allowance is larger than maximum uint64, skip checking
  921. if allowance.IsUint64() && hi > allowance.Uint64() {
  922. transfer := args.Value
  923. if transfer == nil {
  924. transfer = new(hexutil.Big)
  925. }
  926. log.Warn("Gas estimation capped by limited funds", "original", hi, "balance", balance,
  927. "sent", transfer.ToInt(), "gasprice", args.GasPrice.ToInt(), "fundable", allowance)
  928. hi = allowance.Uint64()
  929. }
  930. }
  931. // Recap the highest gas allowance with specified gascap.
  932. if gasCap != 0 && hi > gasCap {
  933. log.Debug("Caller gas above allowance, capping", "requested", hi, "cap", gasCap)
  934. hi = gasCap
  935. }
  936. cap = hi
  937. // Create a helper to check if a gas allowance results in an executable transaction
  938. executable := func(gas uint64) (bool, *core.ExecutionResult, error) {
  939. args.Gas = (*hexutil.Uint64)(&gas)
  940. result, err := DoCall(ctx, b, args, blockNrOrHash, nil, vm.Config{}, 0, gasCap)
  941. if err != nil {
  942. if errors.Is(err, core.ErrIntrinsicGas) {
  943. return true, nil, nil // Special case, raise gas limit
  944. }
  945. return true, nil, err // Bail out
  946. }
  947. return result.Failed(), result, nil
  948. }
  949. // Execute the binary search and hone in on an executable gas limit
  950. for lo+1 < hi {
  951. mid := (hi + lo) / 2
  952. failed, _, err := executable(mid)
  953. // If the error is not nil(consensus error), it means the provided message
  954. // call or transaction will never be accepted no matter how much gas it is
  955. // assigned. Return the error directly, don't struggle any more.
  956. if err != nil {
  957. return 0, err
  958. }
  959. if failed {
  960. lo = mid
  961. } else {
  962. hi = mid
  963. }
  964. }
  965. // Reject the transaction as invalid if it still fails at the highest allowance
  966. if hi == cap {
  967. failed, result, err := executable(hi)
  968. if err != nil {
  969. return 0, err
  970. }
  971. if failed {
  972. if result != nil && result.Err != vm.ErrOutOfGas {
  973. if len(result.Revert()) > 0 {
  974. return 0, newRevertError(result)
  975. }
  976. return 0, result.Err
  977. }
  978. // Otherwise, the specified gas cap is too low
  979. return 0, fmt.Errorf("gas required exceeds allowance (%d)", cap)
  980. }
  981. }
  982. return hexutil.Uint64(hi), nil
  983. }
  984. // EstimateGas returns an estimate of the amount of gas needed to execute the
  985. // given transaction against the current pending block.
  986. func (s *PublicBlockChainAPI) EstimateGas(ctx context.Context, args CallArgs, blockNrOrHash *rpc.BlockNumberOrHash) (hexutil.Uint64, error) {
  987. bNrOrHash := rpc.BlockNumberOrHashWithNumber(rpc.PendingBlockNumber)
  988. if blockNrOrHash != nil {
  989. bNrOrHash = *blockNrOrHash
  990. }
  991. return DoEstimateGas(ctx, s.b, args, bNrOrHash, s.b.RPCGasCap())
  992. }
  993. // GetDiffAccounts returns changed accounts in a specific block number.
  994. func (s *PublicBlockChainAPI) GetDiffAccounts(ctx context.Context, blockNr rpc.BlockNumber) ([]common.Address, error) {
  995. if s.b.Chain() == nil {
  996. return nil, fmt.Errorf("blockchain not support get diff accounts")
  997. }
  998. header, err := s.b.HeaderByNumber(ctx, blockNr)
  999. if err != nil {
  1000. return nil, fmt.Errorf("block not found for block number (%d): %v", blockNr, err)
  1001. }
  1002. return s.b.Chain().GetDiffAccounts(header.Hash())
  1003. }
  1004. func (s *PublicBlockChainAPI) needToReplay(ctx context.Context, block *types.Block, accounts []common.Address) (bool, error) {
  1005. receipts, err := s.b.GetReceipts(ctx, block.Hash())
  1006. if err != nil || len(receipts) != len(block.Transactions()) {
  1007. return false, fmt.Errorf("receipt incorrect for block number (%d): %v", block.NumberU64(), err)
  1008. }
  1009. accountSet := make(map[common.Address]struct{}, len(accounts))
  1010. for _, account := range accounts {
  1011. accountSet[account] = struct{}{}
  1012. }
  1013. spendValueMap := make(map[common.Address]int64, len(accounts))
  1014. receiveValueMap := make(map[common.Address]int64, len(accounts))
  1015. signer := types.MakeSigner(s.b.ChainConfig(), block.Number())
  1016. for index, tx := range block.Transactions() {
  1017. receipt := receipts[index]
  1018. from, err := types.Sender(signer, tx)
  1019. if err != nil {
  1020. return false, fmt.Errorf("get sender for tx failed: %v", err)
  1021. }
  1022. if _, exists := accountSet[from]; exists {
  1023. spendValueMap[from] += int64(receipt.GasUsed) * tx.GasPrice().Int64()
  1024. if receipt.Status == types.ReceiptStatusSuccessful {
  1025. spendValueMap[from] += tx.Value().Int64()
  1026. }
  1027. }
  1028. if tx.To() == nil {
  1029. continue
  1030. }
  1031. if _, exists := accountSet[*tx.To()]; exists && receipt.Status == types.ReceiptStatusSuccessful {
  1032. receiveValueMap[*tx.To()] += tx.Value().Int64()
  1033. }
  1034. }
  1035. parent, err := s.b.BlockByHash(ctx, block.ParentHash())
  1036. if err != nil {
  1037. return false, fmt.Errorf("block not found for block number (%d): %v", block.NumberU64()-1, err)
  1038. }
  1039. parentState, err := s.b.Chain().StateAt(parent.Root())
  1040. if err != nil {
  1041. return false, fmt.Errorf("statedb not found for block number (%d): %v", block.NumberU64()-1, err)
  1042. }
  1043. currentState, err := s.b.Chain().StateAt(block.Root())
  1044. if err != nil {
  1045. return false, fmt.Errorf("statedb not found for block number (%d): %v", block.NumberU64(), err)
  1046. }
  1047. for _, account := range accounts {
  1048. parentBalance := parentState.GetBalance(account).Int64()
  1049. currentBalance := currentState.GetBalance(account).Int64()
  1050. if receiveValueMap[account]-spendValueMap[account] != currentBalance-parentBalance {
  1051. return true, nil
  1052. }
  1053. }
  1054. return false, nil
  1055. }
  1056. // GetDiffAccountsWithScope returns detailed changes of some interested accounts in a specific block number.
  1057. func (s *PublicBlockChainAPI) GetDiffAccountsWithScope(ctx context.Context, blockNr rpc.BlockNumber, accounts []common.Address) (*types.DiffAccountsInBlock, error) {
  1058. if s.b.Chain() == nil {
  1059. return nil, fmt.Errorf("blockchain not support get diff accounts")
  1060. }
  1061. block, err := s.b.BlockByNumber(ctx, blockNr)
  1062. if err != nil {
  1063. return nil, fmt.Errorf("block not found for block number (%d): %v", blockNr, err)
  1064. }
  1065. result := &types.DiffAccountsInBlock{
  1066. Number: uint64(blockNr),
  1067. BlockHash: block.Hash(),
  1068. Transactions: make([]types.DiffAccountsInTx, 0),
  1069. }
  1070. if needReplay, err := s.needToReplay(ctx, block, accounts); err != nil {
  1071. return nil, err
  1072. } else if !needReplay {
  1073. return result, nil
  1074. }
  1075. parent, err := s.b.BlockByHash(ctx, block.ParentHash())
  1076. if err != nil {
  1077. return nil, fmt.Errorf("block not found for block number (%d): %v", blockNr-1, err)
  1078. }
  1079. statedb, err := s.b.Chain().StateAt(parent.Root())
  1080. if err != nil {
  1081. return nil, fmt.Errorf("state not found for block number (%d): %v", blockNr-1, err)
  1082. }
  1083. accountSet := make(map[common.Address]struct{}, len(accounts))
  1084. for _, account := range accounts {
  1085. accountSet[account] = struct{}{}
  1086. }
  1087. // Recompute transactions.
  1088. signer := types.MakeSigner(s.b.ChainConfig(), block.Number())
  1089. for _, tx := range block.Transactions() {
  1090. // Skip data empty tx and to is one of the interested accounts tx.
  1091. skip := false
  1092. if len(tx.Data()) == 0 {
  1093. skip = true
  1094. } else if to := tx.To(); to != nil {
  1095. if _, exists := accountSet[*to]; exists {
  1096. skip = true
  1097. }
  1098. }
  1099. diffTx := types.DiffAccountsInTx{
  1100. TxHash: tx.Hash(),
  1101. Accounts: make(map[common.Address]*big.Int, len(accounts)),
  1102. }
  1103. if !skip {
  1104. // Record account balance
  1105. for _, account := range accounts {
  1106. diffTx.Accounts[account] = statedb.GetBalance(account)
  1107. }
  1108. }
  1109. // Apply transaction
  1110. msg, _ := tx.AsMessage(signer)
  1111. txContext := core.NewEVMTxContext(msg)
  1112. context := core.NewEVMBlockContext(block.Header(), s.b.Chain(), nil)
  1113. vmenv := vm.NewEVM(context, txContext, statedb, s.b.ChainConfig(), vm.Config{})
  1114. if posa, ok := s.b.Engine().(consensus.PoSA); ok {
  1115. if isSystem, _ := posa.IsSystemTransaction(tx, block.Header()); isSystem {
  1116. balance := statedb.GetBalance(consensus.SystemAddress)
  1117. if balance.Cmp(common.Big0) > 0 {
  1118. statedb.SetBalance(consensus.SystemAddress, big.NewInt(0))
  1119. statedb.AddBalance(block.Header().Coinbase, balance)
  1120. }
  1121. }
  1122. }
  1123. if _, err := core.ApplyMessage(vmenv, msg, new(core.GasPool).AddGas(tx.Gas())); err != nil {
  1124. return nil, fmt.Errorf("transaction %#x failed: %v", tx.Hash(), err)
  1125. }
  1126. statedb.Finalise(vmenv.ChainConfig().IsEIP158(block.Number()))
  1127. if !skip {
  1128. // Compute account balance diff.
  1129. for _, account := range accounts {
  1130. diffTx.Accounts[account] = new(big.Int).Sub(statedb.GetBalance(account), diffTx.Accounts[account])
  1131. if diffTx.Accounts[account].Cmp(big.NewInt(0)) == 0 {
  1132. delete(diffTx.Accounts, account)
  1133. }
  1134. }
  1135. if len(diffTx.Accounts) != 0 {
  1136. result.Transactions = append(result.Transactions, diffTx)
  1137. }
  1138. }
  1139. }
  1140. return result, nil
  1141. }
  1142. // ExecutionResult groups all structured logs emitted by the EVM
  1143. // while replaying a transaction in debug mode as well as transaction
  1144. // execution status, the amount of gas used and the return value
  1145. type ExecutionResult struct {
  1146. Gas uint64 `json:"gas"`
  1147. Failed bool `json:"failed"`
  1148. ReturnValue string `json:"returnValue"`
  1149. StructLogs []StructLogRes `json:"structLogs"`
  1150. }
  1151. // StructLogRes stores a structured log emitted by the EVM while replaying a
  1152. // transaction in debug mode
  1153. type StructLogRes struct {
  1154. Pc uint64 `json:"pc"`
  1155. Op string `json:"op"`
  1156. Gas uint64 `json:"gas"`
  1157. GasCost uint64 `json:"gasCost"`
  1158. Depth int `json:"depth"`
  1159. Error error `json:"error,omitempty"`
  1160. Stack *[]string `json:"stack,omitempty"`
  1161. Memory *[]string `json:"memory,omitempty"`
  1162. Storage *map[string]string `json:"storage,omitempty"`
  1163. }
  1164. // FormatLogs formats EVM returned structured logs for json output
  1165. func FormatLogs(logs []vm.StructLog) []StructLogRes {
  1166. formatted := make([]StructLogRes, len(logs))
  1167. for index, trace := range logs {
  1168. formatted[index] = StructLogRes{
  1169. Pc: trace.Pc,
  1170. Op: trace.Op.String(),
  1171. Gas: trace.Gas,
  1172. GasCost: trace.GasCost,
  1173. Depth: trace.Depth,
  1174. Error: trace.Err,
  1175. }
  1176. if trace.Stack != nil {
  1177. stack := make([]string, len(trace.Stack))
  1178. for i, stackValue := range trace.Stack {
  1179. stack[i] = stackValue.Hex()
  1180. }
  1181. formatted[index].Stack = &stack
  1182. }
  1183. if trace.Memory != nil {
  1184. memory := make([]string, 0, (len(trace.Memory)+31)/32)
  1185. for i := 0; i+32 <= len(trace.Memory); i += 32 {
  1186. memory = append(memory, fmt.Sprintf("%x", trace.Memory[i:i+32]))
  1187. }
  1188. formatted[index].Memory = &memory
  1189. }
  1190. if trace.Storage != nil {
  1191. storage := make(map[string]string)
  1192. for i, storageValue := range trace.Storage {
  1193. storage[fmt.Sprintf("%x", i)] = fmt.Sprintf("%x", storageValue)
  1194. }
  1195. formatted[index].Storage = &storage
  1196. }
  1197. }
  1198. return formatted
  1199. }
  1200. // RPCMarshalHeader converts the given header to the RPC output .
  1201. func RPCMarshalHeader(head *types.Header) map[string]interface{} {
  1202. return map[string]interface{}{
  1203. "number": (*hexutil.Big)(head.Number),
  1204. "hash": head.Hash(),
  1205. "parentHash": head.ParentHash,
  1206. "nonce": head.Nonce,
  1207. "mixHash": head.MixDigest,
  1208. "sha3Uncles": head.UncleHash,
  1209. "logsBloom": head.Bloom,
  1210. "stateRoot": head.Root,
  1211. "miner": head.Coinbase,
  1212. "difficulty": (*hexutil.Big)(head.Difficulty),
  1213. "extraData": hexutil.Bytes(head.Extra),
  1214. "size": hexutil.Uint64(head.Size()),
  1215. "gasLimit": hexutil.Uint64(head.GasLimit),
  1216. "gasUsed": hexutil.Uint64(head.GasUsed),
  1217. "timestamp": hexutil.Uint64(head.Time),
  1218. "transactionsRoot": head.TxHash,
  1219. "receiptsRoot": head.ReceiptHash,
  1220. }
  1221. }
  1222. // RPCMarshalBlock converts the given block to the RPC output which depends on fullTx. If inclTx is true transactions are
  1223. // returned. When fullTx is true the returned block contains full transaction details, otherwise it will only contain
  1224. // transaction hashes.
  1225. func RPCMarshalBlock(block *types.Block, inclTx bool, fullTx bool) (map[string]interface{}, error) {
  1226. fields := RPCMarshalHeader(block.Header())
  1227. fields["size"] = hexutil.Uint64(block.Size())
  1228. if inclTx {
  1229. formatTx := func(tx *types.Transaction) (interface{}, error) {
  1230. return tx.Hash(), nil
  1231. }
  1232. if fullTx {
  1233. formatTx = func(tx *types.Transaction) (interface{}, error) {
  1234. return newRPCTransactionFromBlockHash(block, tx.Hash()), nil
  1235. }
  1236. }
  1237. txs := block.Transactions()
  1238. transactions := make([]interface{}, len(txs))
  1239. var err error
  1240. for i, tx := range txs {
  1241. if transactions[i], err = formatTx(tx); err != nil {
  1242. return nil, err
  1243. }
  1244. }
  1245. fields["transactions"] = transactions
  1246. }
  1247. uncles := block.Uncles()
  1248. uncleHashes := make([]common.Hash, len(uncles))
  1249. for i, uncle := range uncles {
  1250. uncleHashes[i] = uncle.Hash()
  1251. }
  1252. fields["uncles"] = uncleHashes
  1253. return fields, nil
  1254. }
  1255. // rpcMarshalHeader uses the generalized output filler, then adds the total difficulty field, which requires
  1256. // a `PublicBlockchainAPI`.
  1257. func (s *PublicBlockChainAPI) rpcMarshalHeader(ctx context.Context, header *types.Header) map[string]interface{} {
  1258. fields := RPCMarshalHeader(header)
  1259. fields["totalDifficulty"] = (*hexutil.Big)(s.b.GetTd(ctx, header.Hash()))
  1260. return fields
  1261. }
  1262. // rpcMarshalBlock uses the generalized output filler, then adds the total difficulty field, which requires
  1263. // a `PublicBlockchainAPI`.
  1264. func (s *PublicBlockChainAPI) rpcMarshalBlock(ctx context.Context, b *types.Block, inclTx bool, fullTx bool) (map[string]interface{}, error) {
  1265. fields, err := RPCMarshalBlock(b, inclTx, fullTx)
  1266. if err != nil {
  1267. return nil, err
  1268. }
  1269. if inclTx {
  1270. fields["totalDifficulty"] = (*hexutil.Big)(s.b.GetTd(ctx, b.Hash()))
  1271. }
  1272. return fields, err
  1273. }
  1274. // RPCTransaction represents a transaction that will serialize to the RPC representation of a transaction
  1275. type RPCTransaction struct {
  1276. BlockHash *common.Hash `json:"blockHash"`
  1277. BlockNumber *hexutil.Big `json:"blockNumber"`
  1278. From common.Address `json:"from"`
  1279. Gas hexutil.Uint64 `json:"gas"`
  1280. GasPrice *hexutil.Big `json:"gasPrice"`
  1281. Hash common.Hash `json:"hash"`
  1282. Input hexutil.Bytes `json:"input"`
  1283. Nonce hexutil.Uint64 `json:"nonce"`
  1284. To *common.Address `json:"to"`
  1285. TransactionIndex *hexutil.Uint64 `json:"transactionIndex"`
  1286. Value *hexutil.Big `json:"value"`
  1287. Type hexutil.Uint64 `json:"type"`
  1288. Accesses *types.AccessList `json:"accessList,omitempty"`
  1289. ChainID *hexutil.Big `json:"chainId,omitempty"`
  1290. V *hexutil.Big `json:"v"`
  1291. R *hexutil.Big `json:"r"`
  1292. S *hexutil.Big `json:"s"`
  1293. }
  1294. // newRPCTransaction returns a transaction that will serialize to the RPC
  1295. // representation, with the given location metadata set (if available).
  1296. func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber uint64, index uint64) *RPCTransaction {
  1297. // Determine the signer. For replay-protected transactions, use the most permissive
  1298. // signer, because we assume that signers are backwards-compatible with old
  1299. // transactions. For non-protected transactions, the homestead signer signer is used
  1300. // because the return value of ChainId is zero for those transactions.
  1301. var signer types.Signer
  1302. if tx.Protected() {
  1303. signer = types.LatestSignerForChainID(tx.ChainId())
  1304. } else {
  1305. signer = types.HomesteadSigner{}
  1306. }
  1307. from, _ := types.Sender(signer, tx)
  1308. v, r, s := tx.RawSignatureValues()
  1309. result := &RPCTransaction{
  1310. Type: hexutil.Uint64(tx.Type()),
  1311. From: from,
  1312. Gas: hexutil.Uint64(tx.Gas()),
  1313. GasPrice: (*hexutil.Big)(tx.GasPrice()),
  1314. Hash: tx.Hash(),
  1315. Input: hexutil.Bytes(tx.Data()),
  1316. Nonce: hexutil.Uint64(tx.Nonce()),
  1317. To: tx.To(),
  1318. Value: (*hexutil.Big)(tx.Value()),
  1319. V: (*hexutil.Big)(v),
  1320. R: (*hexutil.Big)(r),
  1321. S: (*hexutil.Big)(s),
  1322. }
  1323. if blockHash != (common.Hash{}) {
  1324. result.BlockHash = &blockHash
  1325. result.BlockNumber = (*hexutil.Big)(new(big.Int).SetUint64(blockNumber))
  1326. result.TransactionIndex = (*hexutil.Uint64)(&index)
  1327. }
  1328. if tx.Type() == types.AccessListTxType {
  1329. al := tx.AccessList()
  1330. result.Accesses = &al
  1331. result.ChainID = (*hexutil.Big)(tx.ChainId())
  1332. }
  1333. return result
  1334. }
  1335. // newRPCPendingTransaction returns a pending transaction that will serialize to the RPC representation
  1336. func newRPCPendingTransaction(tx *types.Transaction) *RPCTransaction {
  1337. return newRPCTransaction(tx, common.Hash{}, 0, 0)
  1338. }
  1339. // newRPCTransactionsFromBlockIndex returns transactions that will serialize to the RPC representation.
  1340. func newRPCTransactionsFromBlockIndex(b *types.Block) []*RPCTransaction {
  1341. txs := b.Transactions()
  1342. result := make([]*RPCTransaction, 0, len(txs))
  1343. for idx, tx := range txs {
  1344. result = append(result, newRPCTransaction(tx, b.Hash(), b.NumberU64(), uint64(idx)))
  1345. }
  1346. return result
  1347. }
  1348. // newRPCTransactionFromBlockIndex returns a transaction that will serialize to the RPC representation.
  1349. func newRPCTransactionFromBlockIndex(b *types.Block, index uint64) *RPCTransaction {
  1350. txs := b.Transactions()
  1351. if index >= uint64(len(txs)) {
  1352. return nil
  1353. }
  1354. return newRPCTransaction(txs[index], b.Hash(), b.NumberU64(), index)
  1355. }
  1356. // newRPCRawTransactionFromBlockIndex returns the bytes of a transaction given a block and a transaction index.
  1357. func newRPCRawTransactionFromBlockIndex(b *types.Block, index uint64) hexutil.Bytes {
  1358. txs := b.Transactions()
  1359. if index >= uint64(len(txs)) {
  1360. return nil
  1361. }
  1362. blob, _ := txs[index].MarshalBinary()
  1363. return blob
  1364. }
  1365. // newRPCTransactionFromBlockHash returns a transaction that will serialize to the RPC representation.
  1366. func newRPCTransactionFromBlockHash(b *types.Block, hash common.Hash) *RPCTransaction {
  1367. for idx, tx := range b.Transactions() {
  1368. if tx.Hash() == hash {
  1369. return newRPCTransactionFromBlockIndex(b, uint64(idx))
  1370. }
  1371. }
  1372. return nil
  1373. }
  1374. // accessListResult returns an optional accesslist
  1375. // Its the result of the `debug_createAccessList` RPC call.
  1376. // It contains an error if the transaction itself failed.
  1377. type accessListResult struct {
  1378. Accesslist *types.AccessList `json:"accessList"`
  1379. Error string `json:"error,omitempty"`
  1380. GasUsed hexutil.Uint64 `json:"gasUsed"`
  1381. }
  1382. // CreateAccessList creates a EIP-2930 type AccessList for the given transaction.
  1383. // Reexec and BlockNrOrHash can be specified to create the accessList on top of a certain state.
  1384. func (s *PublicBlockChainAPI) CreateAccessList(ctx context.Context, args SendTxArgs, blockNrOrHash *rpc.BlockNumberOrHash) (*accessListResult, error) {
  1385. bNrOrHash := rpc.BlockNumberOrHashWithNumber(rpc.PendingBlockNumber)
  1386. if blockNrOrHash != nil {
  1387. bNrOrHash = *blockNrOrHash
  1388. }
  1389. acl, gasUsed, vmerr, err := AccessList(ctx, s.b, bNrOrHash, args)
  1390. if err != nil {
  1391. return nil, err
  1392. }
  1393. result := &accessListResult{Accesslist: &acl, GasUsed: hexutil.Uint64(gasUsed)}
  1394. if vmerr != nil {
  1395. result.Error = vmerr.Error()
  1396. }
  1397. return result, nil
  1398. }
  1399. // AccessList creates an access list for the given transaction.
  1400. // If the accesslist creation fails an error is returned.
  1401. // If the transaction itself fails, an vmErr is returned.
  1402. func AccessList(ctx context.Context, b Backend, blockNrOrHash rpc.BlockNumberOrHash, args SendTxArgs) (acl types.AccessList, gasUsed uint64, vmErr error, err error) {
  1403. // Retrieve the execution context
  1404. db, header, err := b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  1405. if db == nil || err != nil {
  1406. return nil, 0, nil, err
  1407. }
  1408. // If the gas amount is not set, extract this as it will depend on access
  1409. // lists and we'll need to reestimate every time
  1410. nogas := args.Gas == nil
  1411. // Ensure any missing fields are filled, extract the recipient and input data
  1412. if err := args.setDefaults(ctx, b); err != nil {
  1413. return nil, 0, nil, err
  1414. }
  1415. var to common.Address
  1416. if args.To != nil {
  1417. to = *args.To
  1418. } else {
  1419. to = crypto.CreateAddress(args.From, uint64(*args.Nonce))
  1420. }
  1421. var input []byte
  1422. if args.Input != nil {
  1423. input = *args.Input
  1424. } else if args.Data != nil {
  1425. input = *args.Data
  1426. }
  1427. // Retrieve the precompiles since they don't need to be added to the access list
  1428. precompiles := vm.ActivePrecompiles(b.ChainConfig().Rules(header.Number))
  1429. // Create an initial tracer
  1430. prevTracer := vm.NewAccessListTracer(nil, args.From, to, precompiles)
  1431. if args.AccessList != nil {
  1432. prevTracer = vm.NewAccessListTracer(*args.AccessList, args.From, to, precompiles)
  1433. }
  1434. for {
  1435. // Retrieve the current access list to expand
  1436. accessList := prevTracer.AccessList()
  1437. log.Trace("Creating access list", "input", accessList)
  1438. // If no gas amount was specified, each unique access list needs it's own
  1439. // gas calculation. This is quite expensive, but we need to be accurate
  1440. // and it's convered by the sender only anyway.
  1441. if nogas {
  1442. args.Gas = nil
  1443. if err := args.setDefaults(ctx, b); err != nil {
  1444. return nil, 0, nil, err // shouldn't happen, just in case
  1445. }
  1446. }
  1447. // Copy the original db so we don't modify it
  1448. statedb := db.Copy()
  1449. msg := types.NewMessage(args.From, args.To, uint64(*args.Nonce), args.Value.ToInt(), uint64(*args.Gas), args.GasPrice.ToInt(), input, accessList, false)
  1450. // Apply the transaction with the access list tracer
  1451. tracer := vm.NewAccessListTracer(accessList, args.From, to, precompiles)
  1452. config := vm.Config{Tracer: tracer, Debug: true}
  1453. vmenv, _, err := b.GetEVM(ctx, msg, statedb, header, &config)
  1454. if err != nil {
  1455. return nil, 0, nil, err
  1456. }
  1457. res, err := core.ApplyMessage(vmenv, msg, new(core.GasPool).AddGas(msg.Gas()))
  1458. if err != nil {
  1459. return nil, 0, nil, fmt.Errorf("failed to apply transaction: %v err: %v", args.toTransaction().Hash(), err)
  1460. }
  1461. if tracer.Equal(prevTracer) {
  1462. return accessList, res.UsedGas, res.Err, nil
  1463. }
  1464. prevTracer = tracer
  1465. }
  1466. }
  1467. // PublicTransactionPoolAPI exposes methods for the RPC interface
  1468. type PublicTransactionPoolAPI struct {
  1469. b Backend
  1470. nonceLock *AddrLocker
  1471. signer types.Signer
  1472. }
  1473. // NewPublicTransactionPoolAPI creates a new RPC service with methods specific for the transaction pool.
  1474. func NewPublicTransactionPoolAPI(b Backend, nonceLock *AddrLocker) *PublicTransactionPoolAPI {
  1475. // The signer used by the API should always be the 'latest' known one because we expect
  1476. // signers to be backwards-compatible with old transactions.
  1477. signer := types.LatestSigner(b.ChainConfig())
  1478. return &PublicTransactionPoolAPI{b, nonceLock, signer}
  1479. }
  1480. // GetBlockTransactionCountByNumber returns the number of transactions in the block with the given block number.
  1481. func (s *PublicTransactionPoolAPI) GetBlockTransactionCountByNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
  1482. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1483. n := hexutil.Uint(len(block.Transactions()))
  1484. return &n
  1485. }
  1486. return nil
  1487. }
  1488. // GetBlockTransactionCountByHash returns the number of transactions in the block with the given hash.
  1489. func (s *PublicTransactionPoolAPI) GetBlockTransactionCountByHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
  1490. if block, _ := s.b.BlockByHash(ctx, blockHash); block != nil {
  1491. n := hexutil.Uint(len(block.Transactions()))
  1492. return &n
  1493. }
  1494. return nil
  1495. }
  1496. // GetTransactionsByBlockNumber returns all the transactions for the given block number.
  1497. func (s *PublicTransactionPoolAPI) GetTransactionsByBlockNumber(ctx context.Context, blockNr rpc.BlockNumber) []*RPCTransaction {
  1498. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1499. return newRPCTransactionsFromBlockIndex(block)
  1500. }
  1501. return nil
  1502. }
  1503. // GetTransactionByBlockNumberAndIndex returns the transaction for the given block number and index.
  1504. func (s *PublicTransactionPoolAPI) GetTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) *RPCTransaction {
  1505. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1506. return newRPCTransactionFromBlockIndex(block, uint64(index))
  1507. }
  1508. return nil
  1509. }
  1510. // GetTransactionByBlockHashAndIndex returns the transaction for the given block hash and index.
  1511. func (s *PublicTransactionPoolAPI) GetTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) *RPCTransaction {
  1512. if block, _ := s.b.BlockByHash(ctx, blockHash); block != nil {
  1513. return newRPCTransactionFromBlockIndex(block, uint64(index))
  1514. }
  1515. return nil
  1516. }
  1517. // GetRawTransactionByBlockNumberAndIndex returns the bytes of the transaction for the given block number and index.
  1518. func (s *PublicTransactionPoolAPI) GetRawTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) hexutil.Bytes {
  1519. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1520. return newRPCRawTransactionFromBlockIndex(block, uint64(index))
  1521. }
  1522. return nil
  1523. }
  1524. // GetRawTransactionByBlockHashAndIndex returns the bytes of the transaction for the given block hash and index.
  1525. func (s *PublicTransactionPoolAPI) GetRawTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) hexutil.Bytes {
  1526. if block, _ := s.b.BlockByHash(ctx, blockHash); block != nil {
  1527. return newRPCRawTransactionFromBlockIndex(block, uint64(index))
  1528. }
  1529. return nil
  1530. }
  1531. // GetTransactionCount returns the number of transactions the given address has sent for the given block number
  1532. func (s *PublicTransactionPoolAPI) GetTransactionCount(ctx context.Context, address common.Address, blockNrOrHash rpc.BlockNumberOrHash) (*hexutil.Uint64, error) {
  1533. // Ask transaction pool for the nonce which includes pending transactions
  1534. if blockNr, ok := blockNrOrHash.Number(); ok && blockNr == rpc.PendingBlockNumber {
  1535. nonce, err := s.b.GetPoolNonce(ctx, address)
  1536. if err != nil {
  1537. return nil, err
  1538. }
  1539. return (*hexutil.Uint64)(&nonce), nil
  1540. }
  1541. // Resolve block number and use its state to ask for the nonce
  1542. state, _, err := s.b.StateAndHeaderByNumberOrHash(ctx, blockNrOrHash)
  1543. if state == nil || err != nil {
  1544. return nil, err
  1545. }
  1546. nonce := state.GetNonce(address)
  1547. return (*hexutil.Uint64)(&nonce), state.Error()
  1548. }
  1549. // GetTransactionByHash returns the transaction for the given hash
  1550. func (s *PublicTransactionPoolAPI) GetTransactionByHash(ctx context.Context, hash common.Hash) (*RPCTransaction, error) {
  1551. // Try to return an already finalized transaction
  1552. tx, blockHash, blockNumber, index, err := s.b.GetTransaction(ctx, hash)
  1553. if err != nil {
  1554. return nil, err
  1555. }
  1556. if tx != nil {
  1557. return newRPCTransaction(tx, blockHash, blockNumber, index), nil
  1558. }
  1559. // No finalized transaction, try to retrieve it from the pool
  1560. if tx := s.b.GetPoolTransaction(hash); tx != nil {
  1561. return newRPCPendingTransaction(tx), nil
  1562. }
  1563. // Transaction unknown, return as such
  1564. return nil, nil
  1565. }
  1566. // GetRawTransactionByHash returns the bytes of the transaction for the given hash.
  1567. func (s *PublicTransactionPoolAPI) GetRawTransactionByHash(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) {
  1568. // Retrieve a finalized transaction, or a pooled otherwise
  1569. tx, _, _, _, err := s.b.GetTransaction(ctx, hash)
  1570. if err != nil {
  1571. return nil, err
  1572. }
  1573. if tx == nil {
  1574. if tx = s.b.GetPoolTransaction(hash); tx == nil {
  1575. // Transaction not found anywhere, abort
  1576. return nil, nil
  1577. }
  1578. }
  1579. // Serialize to RLP and return
  1580. return tx.MarshalBinary()
  1581. }
  1582. // GetTransactionReceipt returns the transaction receipt for the given transaction hash.
  1583. func (s *PublicTransactionPoolAPI) GetTransactionReceiptsByBlockNumber(ctx context.Context, blockNr rpc.BlockNumber) ([]map[string]interface{}, error) {
  1584. blockNumber := uint64(blockNr.Int64())
  1585. blockHash := rawdb.ReadCanonicalHash(s.b.ChainDb(), blockNumber)
  1586. receipts, err := s.b.GetReceipts(ctx, blockHash)
  1587. if err != nil {
  1588. return nil, err
  1589. }
  1590. block, err := s.b.BlockByHash(ctx, blockHash)
  1591. if err != nil {
  1592. return nil, err
  1593. }
  1594. txs := block.Transactions()
  1595. if len(txs) != len(receipts) {
  1596. return nil, fmt.Errorf("txs length doesn't equal to receipts' length")
  1597. }
  1598. txReceipts := make([]map[string]interface{}, 0, len(txs))
  1599. for idx, receipt := range receipts {
  1600. tx := txs[idx]
  1601. var signer types.Signer = types.FrontierSigner{}
  1602. if tx.Protected() {
  1603. signer = types.NewEIP155Signer(tx.ChainId())
  1604. }
  1605. from, _ := types.Sender(signer, tx)
  1606. fields := map[string]interface{}{
  1607. "blockHash": blockHash,
  1608. "blockNumber": hexutil.Uint64(blockNumber),
  1609. "transactionHash": tx.Hash(),
  1610. "transactionIndex": hexutil.Uint64(idx),
  1611. "from": from,
  1612. "to": tx.To(),
  1613. "gasUsed": hexutil.Uint64(receipt.GasUsed),
  1614. "cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
  1615. "contractAddress": nil,
  1616. "logs": receipt.Logs,
  1617. "logsBloom": receipt.Bloom,
  1618. }
  1619. // Assign receipt status or post state.
  1620. if len(receipt.PostState) > 0 {
  1621. fields["root"] = hexutil.Bytes(receipt.PostState)
  1622. } else {
  1623. fields["status"] = hexutil.Uint(receipt.Status)
  1624. }
  1625. if receipt.Logs == nil {
  1626. fields["logs"] = [][]*types.Log{}
  1627. }
  1628. // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation
  1629. if receipt.ContractAddress != (common.Address{}) {
  1630. fields["contractAddress"] = receipt.ContractAddress
  1631. }
  1632. txReceipts = append(txReceipts, fields)
  1633. }
  1634. return txReceipts, nil
  1635. }
  1636. // GetTransactionDataAndReceipt returns the original transaction data and transaction receipt for the given transaction hash.
  1637. func (s *PublicTransactionPoolAPI) GetTransactionDataAndReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) {
  1638. tx, blockHash, blockNumber, index := rawdb.ReadTransaction(s.b.ChainDb(), hash)
  1639. if tx == nil {
  1640. return nil, nil
  1641. }
  1642. receipts, err := s.b.GetReceipts(ctx, blockHash)
  1643. if err != nil {
  1644. return nil, err
  1645. }
  1646. if len(receipts) <= int(index) {
  1647. return nil, nil
  1648. }
  1649. receipt := receipts[index]
  1650. var signer types.Signer = types.FrontierSigner{}
  1651. if tx.Protected() {
  1652. signer = types.NewEIP155Signer(tx.ChainId())
  1653. }
  1654. from, _ := types.Sender(signer, tx)
  1655. rpcTransaction := newRPCTransaction(tx, blockHash, blockNumber, index)
  1656. txData := map[string]interface{}{
  1657. "blockHash": rpcTransaction.BlockHash.String(),
  1658. "blockNumber": rpcTransaction.BlockNumber.String(),
  1659. "from": rpcTransaction.From.String(),
  1660. "gas": rpcTransaction.Gas.String(),
  1661. "gasPrice": rpcTransaction.GasPrice.String(),
  1662. "hash": rpcTransaction.Hash.String(),
  1663. "input": rpcTransaction.Input.String(),
  1664. "nonce": rpcTransaction.Nonce.String(),
  1665. "to": rpcTransaction.To.String(),
  1666. "transactionIndex": rpcTransaction.TransactionIndex.String(),
  1667. "value": rpcTransaction.Value.String(),
  1668. "v": rpcTransaction.V.String(),
  1669. "r": rpcTransaction.R.String(),
  1670. "s": rpcTransaction.S.String(),
  1671. }
  1672. fields := map[string]interface{}{
  1673. "blockHash": blockHash,
  1674. "blockNumber": hexutil.Uint64(blockNumber),
  1675. "transactionHash": hash,
  1676. "transactionIndex": hexutil.Uint64(index),
  1677. "from": from,
  1678. "to": tx.To(),
  1679. "gasUsed": hexutil.Uint64(receipt.GasUsed),
  1680. "cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
  1681. "contractAddress": nil,
  1682. "logs": receipt.Logs,
  1683. "logsBloom": receipt.Bloom,
  1684. }
  1685. // Assign receipt status or post state.
  1686. if len(receipt.PostState) > 0 {
  1687. fields["root"] = hexutil.Bytes(receipt.PostState)
  1688. } else {
  1689. fields["status"] = hexutil.Uint(receipt.Status)
  1690. }
  1691. if receipt.Logs == nil {
  1692. fields["logs"] = [][]*types.Log{}
  1693. }
  1694. // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation
  1695. if receipt.ContractAddress != (common.Address{}) {
  1696. fields["contractAddress"] = receipt.ContractAddress
  1697. }
  1698. result := map[string]interface{}{
  1699. "txData": txData,
  1700. "receipt": fields,
  1701. }
  1702. return result, nil
  1703. }
  1704. // GetTransactionReceipt returns the transaction receipt for the given transaction hash.
  1705. func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) {
  1706. tx, blockHash, blockNumber, index, err := s.b.GetTransaction(ctx, hash)
  1707. if err != nil {
  1708. return nil, nil
  1709. }
  1710. receipts, err := s.b.GetReceipts(ctx, blockHash)
  1711. if err != nil {
  1712. return nil, err
  1713. }
  1714. if len(receipts) <= int(index) {
  1715. return nil, nil
  1716. }
  1717. receipt := receipts[index]
  1718. // Derive the sender.
  1719. bigblock := new(big.Int).SetUint64(blockNumber)
  1720. signer := types.MakeSigner(s.b.ChainConfig(), bigblock)
  1721. from, _ := types.Sender(signer, tx)
  1722. fields := map[string]interface{}{
  1723. "blockHash": blockHash,
  1724. "blockNumber": hexutil.Uint64(blockNumber),
  1725. "transactionHash": hash,
  1726. "transactionIndex": hexutil.Uint64(index),
  1727. "from": from,
  1728. "to": tx.To(),
  1729. "gasUsed": hexutil.Uint64(receipt.GasUsed),
  1730. "cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
  1731. "contractAddress": nil,
  1732. "logs": receipt.Logs,
  1733. "logsBloom": receipt.Bloom,
  1734. "type": hexutil.Uint(tx.Type()),
  1735. }
  1736. // Assign receipt status or post state.
  1737. if len(receipt.PostState) > 0 {
  1738. fields["root"] = hexutil.Bytes(receipt.PostState)
  1739. } else {
  1740. fields["status"] = hexutil.Uint(receipt.Status)
  1741. }
  1742. if receipt.Logs == nil {
  1743. fields["logs"] = [][]*types.Log{}
  1744. }
  1745. // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation
  1746. if receipt.ContractAddress != (common.Address{}) {
  1747. fields["contractAddress"] = receipt.ContractAddress
  1748. }
  1749. return fields, nil
  1750. }
  1751. // sign is a helper function that signs a transaction with the private key of the given address.
  1752. func (s *PublicTransactionPoolAPI) sign(addr common.Address, tx *types.Transaction) (*types.Transaction, error) {
  1753. // Look up the wallet containing the requested signer
  1754. account := accounts.Account{Address: addr}
  1755. wallet, err := s.b.AccountManager().Find(account)
  1756. if err != nil {
  1757. return nil, err
  1758. }
  1759. // Request the wallet to sign the transaction
  1760. return wallet.SignTx(account, tx, s.b.ChainConfig().ChainID)
  1761. }
  1762. // SendTxArgs represents the arguments to sumbit a new transaction into the transaction pool.
  1763. type SendTxArgs struct {
  1764. From common.Address `json:"from"`
  1765. To *common.Address `json:"to"`
  1766. Gas *hexutil.Uint64 `json:"gas"`
  1767. GasPrice *hexutil.Big `json:"gasPrice"`
  1768. Value *hexutil.Big `json:"value"`
  1769. Nonce *hexutil.Uint64 `json:"nonce"`
  1770. // We accept "data" and "input" for backwards-compatibility reasons. "input" is the
  1771. // newer name and should be preferred by clients.
  1772. Data *hexutil.Bytes `json:"data"`
  1773. Input *hexutil.Bytes `json:"input"`
  1774. // For non-legacy transactions
  1775. AccessList *types.AccessList `json:"accessList,omitempty"`
  1776. ChainID *hexutil.Big `json:"chainId,omitempty"`
  1777. }
  1778. // setDefaults fills in default values for unspecified tx fields.
  1779. func (args *SendTxArgs) setDefaults(ctx context.Context, b Backend) error {
  1780. if args.GasPrice == nil {
  1781. price, err := b.SuggestPrice(ctx)
  1782. if err != nil {
  1783. return err
  1784. }
  1785. args.GasPrice = (*hexutil.Big)(price)
  1786. }
  1787. if args.Value == nil {
  1788. args.Value = new(hexutil.Big)
  1789. }
  1790. if args.Nonce == nil {
  1791. nonce, err := b.GetPoolNonce(ctx, args.From)
  1792. if err != nil {
  1793. return err
  1794. }
  1795. args.Nonce = (*hexutil.Uint64)(&nonce)
  1796. }
  1797. if args.Data != nil && args.Input != nil && !bytes.Equal(*args.Data, *args.Input) {
  1798. return errors.New(`both "data" and "input" are set and not equal. Please use "input" to pass transaction call data`)
  1799. }
  1800. if args.To == nil {
  1801. // Contract creation
  1802. var input []byte
  1803. if args.Data != nil {
  1804. input = *args.Data
  1805. } else if args.Input != nil {
  1806. input = *args.Input
  1807. }
  1808. if len(input) == 0 {
  1809. return errors.New(`contract creation without any data provided`)
  1810. }
  1811. }
  1812. // Estimate the gas usage if necessary.
  1813. if args.Gas == nil {
  1814. // For backwards-compatibility reason, we try both input and data
  1815. // but input is preferred.
  1816. input := args.Input
  1817. if input == nil {
  1818. input = args.Data
  1819. }
  1820. callArgs := CallArgs{
  1821. From: &args.From, // From shouldn't be nil
  1822. To: args.To,
  1823. GasPrice: args.GasPrice,
  1824. Value: args.Value,
  1825. Data: input,
  1826. AccessList: args.AccessList,
  1827. }
  1828. pendingBlockNr := rpc.BlockNumberOrHashWithNumber(rpc.PendingBlockNumber)
  1829. estimated, err := DoEstimateGas(ctx, b, callArgs, pendingBlockNr, b.RPCGasCap())
  1830. if err != nil {
  1831. return err
  1832. }
  1833. args.Gas = &estimated
  1834. log.Trace("Estimate gas usage automatically", "gas", args.Gas)
  1835. }
  1836. if args.ChainID == nil {
  1837. id := (*hexutil.Big)(b.ChainConfig().ChainID)
  1838. args.ChainID = id
  1839. }
  1840. return nil
  1841. }
  1842. // toTransaction converts the arguments to a transaction.
  1843. // This assumes that setDefaults has been called.
  1844. func (args *SendTxArgs) toTransaction() *types.Transaction {
  1845. var input []byte
  1846. if args.Input != nil {
  1847. input = *args.Input
  1848. } else if args.Data != nil {
  1849. input = *args.Data
  1850. }
  1851. var data types.TxData
  1852. if args.AccessList == nil {
  1853. data = &types.LegacyTx{
  1854. To: args.To,
  1855. Nonce: uint64(*args.Nonce),
  1856. Gas: uint64(*args.Gas),
  1857. GasPrice: (*big.Int)(args.GasPrice),
  1858. Value: (*big.Int)(args.Value),
  1859. Data: input,
  1860. }
  1861. } else {
  1862. data = &types.AccessListTx{
  1863. To: args.To,
  1864. ChainID: (*big.Int)(args.ChainID),
  1865. Nonce: uint64(*args.Nonce),
  1866. Gas: uint64(*args.Gas),
  1867. GasPrice: (*big.Int)(args.GasPrice),
  1868. Value: (*big.Int)(args.Value),
  1869. Data: input,
  1870. AccessList: *args.AccessList,
  1871. }
  1872. }
  1873. return types.NewTx(data)
  1874. }
  1875. // SubmitTransaction is a helper function that submits tx to txPool and logs a message.
  1876. func SubmitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (common.Hash, error) {
  1877. // If the transaction fee cap is already specified, ensure the
  1878. // fee of the given transaction is _reasonable_.
  1879. if err := checkTxFee(tx.GasPrice(), tx.Gas(), b.RPCTxFeeCap()); err != nil {
  1880. return common.Hash{}, err
  1881. }
  1882. if !b.UnprotectedAllowed() && !tx.Protected() {
  1883. // Ensure only eip155 signed transactions are submitted if EIP155Required is set.
  1884. return common.Hash{}, errors.New("only replay-protected (EIP-155) transactions allowed over RPC")
  1885. }
  1886. if err := b.SendTx(ctx, tx); err != nil {
  1887. return common.Hash{}, err
  1888. }
  1889. // Print a log with full tx details for manual investigations and interventions
  1890. signer := types.MakeSigner(b.ChainConfig(), b.CurrentBlock().Number())
  1891. from, err := types.Sender(signer, tx)
  1892. if err != nil {
  1893. return common.Hash{}, err
  1894. }
  1895. if tx.To() == nil {
  1896. addr := crypto.CreateAddress(from, tx.Nonce())
  1897. log.Info("Submitted contract creation", "hash", tx.Hash().Hex(), "from", from, "nonce", tx.Nonce(), "contract", addr.Hex(), "value", tx.Value())
  1898. } else {
  1899. log.Info("Submitted transaction", "hash", tx.Hash().Hex(), "from", from, "nonce", tx.Nonce(), "recipient", tx.To(), "value", tx.Value())
  1900. }
  1901. return tx.Hash(), nil
  1902. }
  1903. // SendTransaction creates a transaction for the given argument, sign it and submit it to the
  1904. // transaction pool.
  1905. func (s *PublicTransactionPoolAPI) SendTransaction(ctx context.Context, args SendTxArgs) (common.Hash, error) {
  1906. // Look up the wallet containing the requested signer
  1907. account := accounts.Account{Address: args.From}
  1908. wallet, err := s.b.AccountManager().Find(account)
  1909. if err != nil {
  1910. return common.Hash{}, err
  1911. }
  1912. if args.Nonce == nil {
  1913. // Hold the addresse's mutex around signing to prevent concurrent assignment of
  1914. // the same nonce to multiple accounts.
  1915. s.nonceLock.LockAddr(args.From)
  1916. defer s.nonceLock.UnlockAddr(args.From)
  1917. }
  1918. // Set some sanity defaults and terminate on failure
  1919. if err := args.setDefaults(ctx, s.b); err != nil {
  1920. return common.Hash{}, err
  1921. }
  1922. // Assemble the transaction and sign with the wallet
  1923. tx := args.toTransaction()
  1924. signed, err := wallet.SignTx(account, tx, s.b.ChainConfig().ChainID)
  1925. if err != nil {
  1926. return common.Hash{}, err
  1927. }
  1928. return SubmitTransaction(ctx, s.b, signed)
  1929. }
  1930. // FillTransaction fills the defaults (nonce, gas, gasPrice) on a given unsigned transaction,
  1931. // and returns it to the caller for further processing (signing + broadcast)
  1932. func (s *PublicTransactionPoolAPI) FillTransaction(ctx context.Context, args SendTxArgs) (*SignTransactionResult, error) {
  1933. // Set some sanity defaults and terminate on failure
  1934. if err := args.setDefaults(ctx, s.b); err != nil {
  1935. return nil, err
  1936. }
  1937. // Assemble the transaction and obtain rlp
  1938. tx := args.toTransaction()
  1939. data, err := tx.MarshalBinary()
  1940. if err != nil {
  1941. return nil, err
  1942. }
  1943. return &SignTransactionResult{data, tx}, nil
  1944. }
  1945. // SendRawTransaction will add the signed transaction to the transaction pool.
  1946. // The sender is responsible for signing the transaction and using the correct nonce.
  1947. func (s *PublicTransactionPoolAPI) SendRawTransaction(ctx context.Context, input hexutil.Bytes) (common.Hash, error) {
  1948. tx := new(types.Transaction)
  1949. if err := tx.UnmarshalBinary(input); err != nil {
  1950. return common.Hash{}, err
  1951. }
  1952. return SubmitTransaction(ctx, s.b, tx)
  1953. }
  1954. // Sign calculates an ECDSA signature for:
  1955. // keccack256("\x19Ethereum Signed Message:\n" + len(message) + message).
  1956. //
  1957. // Note, the produced signature conforms to the secp256k1 curve R, S and V values,
  1958. // where the V value will be 27 or 28 for legacy reasons.
  1959. //
  1960. // The account associated with addr must be unlocked.
  1961. //
  1962. // https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign
  1963. func (s *PublicTransactionPoolAPI) Sign(addr common.Address, data hexutil.Bytes) (hexutil.Bytes, error) {
  1964. // Look up the wallet containing the requested signer
  1965. account := accounts.Account{Address: addr}
  1966. wallet, err := s.b.AccountManager().Find(account)
  1967. if err != nil {
  1968. return nil, err
  1969. }
  1970. // Sign the requested hash with the wallet
  1971. signature, err := wallet.SignText(account, data)
  1972. if err == nil {
  1973. signature[64] += 27 // Transform V from 0/1 to 27/28 according to the yellow paper
  1974. }
  1975. return signature, err
  1976. }
  1977. // SignTransactionResult represents a RLP encoded signed transaction.
  1978. type SignTransactionResult struct {
  1979. Raw hexutil.Bytes `json:"raw"`
  1980. Tx *types.Transaction `json:"tx"`
  1981. }
  1982. // SignTransaction will sign the given transaction with the from account.
  1983. // The node needs to have the private key of the account corresponding with
  1984. // the given from address and it needs to be unlocked.
  1985. func (s *PublicTransactionPoolAPI) SignTransaction(ctx context.Context, args SendTxArgs) (*SignTransactionResult, error) {
  1986. if args.Gas == nil {
  1987. return nil, fmt.Errorf("gas not specified")
  1988. }
  1989. if args.GasPrice == nil {
  1990. return nil, fmt.Errorf("gasPrice not specified")
  1991. }
  1992. if args.Nonce == nil {
  1993. return nil, fmt.Errorf("nonce not specified")
  1994. }
  1995. if err := args.setDefaults(ctx, s.b); err != nil {
  1996. return nil, err
  1997. }
  1998. // Before actually sign the transaction, ensure the transaction fee is reasonable.
  1999. if err := checkTxFee(args.GasPrice.ToInt(), uint64(*args.Gas), s.b.RPCTxFeeCap()); err != nil {
  2000. return nil, err
  2001. }
  2002. tx, err := s.sign(args.From, args.toTransaction())
  2003. if err != nil {
  2004. return nil, err
  2005. }
  2006. data, err := tx.MarshalBinary()
  2007. if err != nil {
  2008. return nil, err
  2009. }
  2010. return &SignTransactionResult{data, tx}, nil
  2011. }
  2012. // PendingTransactions returns the transactions that are in the transaction pool
  2013. // and have a from address that is one of the accounts this node manages.
  2014. func (s *PublicTransactionPoolAPI) PendingTransactions() ([]*RPCTransaction, error) {
  2015. pending, err := s.b.GetPoolTransactions()
  2016. if err != nil {
  2017. return nil, err
  2018. }
  2019. accounts := make(map[common.Address]struct{})
  2020. for _, wallet := range s.b.AccountManager().Wallets() {
  2021. for _, account := range wallet.Accounts() {
  2022. accounts[account.Address] = struct{}{}
  2023. }
  2024. }
  2025. transactions := make([]*RPCTransaction, 0, len(pending))
  2026. for _, tx := range pending {
  2027. from, _ := types.Sender(s.signer, tx)
  2028. if _, exists := accounts[from]; exists {
  2029. transactions = append(transactions, newRPCPendingTransaction(tx))
  2030. }
  2031. }
  2032. return transactions, nil
  2033. }
  2034. // Resend accepts an existing transaction and a new gas price and limit. It will remove
  2035. // the given transaction from the pool and reinsert it with the new gas price and limit.
  2036. func (s *PublicTransactionPoolAPI) Resend(ctx context.Context, sendArgs SendTxArgs, gasPrice *hexutil.Big, gasLimit *hexutil.Uint64) (common.Hash, error) {
  2037. if sendArgs.Nonce == nil {
  2038. return common.Hash{}, fmt.Errorf("missing transaction nonce in transaction spec")
  2039. }
  2040. if err := sendArgs.setDefaults(ctx, s.b); err != nil {
  2041. return common.Hash{}, err
  2042. }
  2043. matchTx := sendArgs.toTransaction()
  2044. // Before replacing the old transaction, ensure the _new_ transaction fee is reasonable.
  2045. var price = matchTx.GasPrice()
  2046. if gasPrice != nil {
  2047. price = gasPrice.ToInt()
  2048. }
  2049. var gas = matchTx.Gas()
  2050. if gasLimit != nil {
  2051. gas = uint64(*gasLimit)
  2052. }
  2053. if err := checkTxFee(price, gas, s.b.RPCTxFeeCap()); err != nil {
  2054. return common.Hash{}, err
  2055. }
  2056. // Iterate the pending list for replacement
  2057. pending, err := s.b.GetPoolTransactions()
  2058. if err != nil {
  2059. return common.Hash{}, err
  2060. }
  2061. for _, p := range pending {
  2062. wantSigHash := s.signer.Hash(matchTx)
  2063. pFrom, err := types.Sender(s.signer, p)
  2064. if err == nil && pFrom == sendArgs.From && s.signer.Hash(p) == wantSigHash {
  2065. // Match. Re-sign and send the transaction.
  2066. if gasPrice != nil && (*big.Int)(gasPrice).Sign() != 0 {
  2067. sendArgs.GasPrice = gasPrice
  2068. }
  2069. if gasLimit != nil && *gasLimit != 0 {
  2070. sendArgs.Gas = gasLimit
  2071. }
  2072. signedTx, err := s.sign(sendArgs.From, sendArgs.toTransaction())
  2073. if err != nil {
  2074. return common.Hash{}, err
  2075. }
  2076. if err = s.b.SendTx(ctx, signedTx); err != nil {
  2077. return common.Hash{}, err
  2078. }
  2079. return signedTx.Hash(), nil
  2080. }
  2081. }
  2082. return common.Hash{}, fmt.Errorf("transaction %#x not found", matchTx.Hash())
  2083. }
  2084. // PublicDebugAPI is the collection of Ethereum APIs exposed over the public
  2085. // debugging endpoint.
  2086. type PublicDebugAPI struct {
  2087. b Backend
  2088. }
  2089. // NewPublicDebugAPI creates a new API definition for the public debug methods
  2090. // of the Ethereum service.
  2091. func NewPublicDebugAPI(b Backend) *PublicDebugAPI {
  2092. return &PublicDebugAPI{b: b}
  2093. }
  2094. // GetBlockRlp retrieves the RLP encoded for of a single block.
  2095. func (api *PublicDebugAPI) GetBlockRlp(ctx context.Context, number uint64) (string, error) {
  2096. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  2097. if block == nil {
  2098. return "", fmt.Errorf("block #%d not found", number)
  2099. }
  2100. encoded, err := rlp.EncodeToBytes(block)
  2101. if err != nil {
  2102. return "", err
  2103. }
  2104. return fmt.Sprintf("%x", encoded), nil
  2105. }
  2106. // TestSignCliqueBlock fetches the given block number, and attempts to sign it as a clique header with the
  2107. // given address, returning the address of the recovered signature
  2108. //
  2109. // This is a temporary method to debug the externalsigner integration,
  2110. // TODO: Remove this method when the integration is mature
  2111. func (api *PublicDebugAPI) TestSignCliqueBlock(ctx context.Context, address common.Address, number uint64) (common.Address, error) {
  2112. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  2113. if block == nil {
  2114. return common.Address{}, fmt.Errorf("block #%d not found", number)
  2115. }
  2116. header := block.Header()
  2117. header.Extra = make([]byte, 32+65)
  2118. encoded := clique.CliqueRLP(header)
  2119. // Look up the wallet containing the requested signer
  2120. account := accounts.Account{Address: address}
  2121. wallet, err := api.b.AccountManager().Find(account)
  2122. if err != nil {
  2123. return common.Address{}, err
  2124. }
  2125. signature, err := wallet.SignData(account, accounts.MimetypeClique, encoded)
  2126. if err != nil {
  2127. return common.Address{}, err
  2128. }
  2129. sealHash := clique.SealHash(header).Bytes()
  2130. log.Info("test signing of clique block",
  2131. "Sealhash", fmt.Sprintf("%x", sealHash),
  2132. "signature", fmt.Sprintf("%x", signature))
  2133. pubkey, err := crypto.Ecrecover(sealHash, signature)
  2134. if err != nil {
  2135. return common.Address{}, err
  2136. }
  2137. var signer common.Address
  2138. copy(signer[:], crypto.Keccak256(pubkey[1:])[12:])
  2139. return signer, nil
  2140. }
  2141. // PrintBlock retrieves a block and returns its pretty printed form.
  2142. func (api *PublicDebugAPI) PrintBlock(ctx context.Context, number uint64) (string, error) {
  2143. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  2144. if block == nil {
  2145. return "", fmt.Errorf("block #%d not found", number)
  2146. }
  2147. return spew.Sdump(block), nil
  2148. }
  2149. // SeedHash retrieves the seed hash of a block.
  2150. func (api *PublicDebugAPI) SeedHash(ctx context.Context, number uint64) (string, error) {
  2151. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  2152. if block == nil {
  2153. return "", fmt.Errorf("block #%d not found", number)
  2154. }
  2155. return fmt.Sprintf("0x%x", ethash.SeedHash(number)), nil
  2156. }
  2157. // PrivateDebugAPI is the collection of Ethereum APIs exposed over the private
  2158. // debugging endpoint.
  2159. type PrivateDebugAPI struct {
  2160. b Backend
  2161. }
  2162. // NewPrivateDebugAPI creates a new API definition for the private debug methods
  2163. // of the Ethereum service.
  2164. func NewPrivateDebugAPI(b Backend) *PrivateDebugAPI {
  2165. return &PrivateDebugAPI{b: b}
  2166. }
  2167. // ChaindbProperty returns leveldb properties of the key-value database.
  2168. func (api *PrivateDebugAPI) ChaindbProperty(property string) (string, error) {
  2169. if property == "" {
  2170. property = "leveldb.stats"
  2171. } else if !strings.HasPrefix(property, "leveldb.") {
  2172. property = "leveldb." + property
  2173. }
  2174. return api.b.ChainDb().Stat(property)
  2175. }
  2176. // ChaindbCompact flattens the entire key-value database into a single level,
  2177. // removing all unused slots and merging all keys.
  2178. func (api *PrivateDebugAPI) ChaindbCompact() error {
  2179. for b := byte(0); b < 255; b++ {
  2180. log.Info("Compacting chain database", "range", fmt.Sprintf("0x%0.2X-0x%0.2X", b, b+1))
  2181. if err := api.b.ChainDb().Compact([]byte{b}, []byte{b + 1}); err != nil {
  2182. log.Error("Database compaction failed", "err", err)
  2183. return err
  2184. }
  2185. }
  2186. return nil
  2187. }
  2188. // SetHead rewinds the head of the blockchain to a previous block.
  2189. func (api *PrivateDebugAPI) SetHead(number hexutil.Uint64) {
  2190. api.b.SetHead(uint64(number))
  2191. }
  2192. // PublicNetAPI offers network related RPC methods
  2193. type PublicNetAPI struct {
  2194. net *p2p.Server
  2195. networkVersion uint64
  2196. }
  2197. // NewPublicNetAPI creates a new net API instance.
  2198. func NewPublicNetAPI(net *p2p.Server, networkVersion uint64) *PublicNetAPI {
  2199. return &PublicNetAPI{net, networkVersion}
  2200. }
  2201. // Listening returns an indication if the node is listening for network connections.
  2202. func (s *PublicNetAPI) Listening() bool {
  2203. return true // always listening
  2204. }
  2205. // PeerCount returns the number of connected peers
  2206. func (s *PublicNetAPI) PeerCount() hexutil.Uint {
  2207. return hexutil.Uint(s.net.PeerCount())
  2208. }
  2209. // Version returns the current ethereum protocol version.
  2210. func (s *PublicNetAPI) Version() string {
  2211. return fmt.Sprintf("%d", s.networkVersion)
  2212. }
  2213. // checkTxFee is an internal function used to check whether the fee of
  2214. // the given transaction is _reasonable_(under the cap).
  2215. func checkTxFee(gasPrice *big.Int, gas uint64, cap float64) error {
  2216. // Short circuit if there is no cap for transaction fee at all.
  2217. if cap == 0 {
  2218. return nil
  2219. }
  2220. feeEth := new(big.Float).Quo(new(big.Float).SetInt(new(big.Int).Mul(gasPrice, new(big.Int).SetUint64(gas))), new(big.Float).SetInt(big.NewInt(params.Ether)))
  2221. feeFloat, _ := feeEth.Float64()
  2222. if feeFloat > cap {
  2223. return fmt.Errorf("tx fee (%.2f ether) exceeds the configured cap (%.2f ether)", feeFloat, cap)
  2224. }
  2225. return nil
  2226. }
  2227. // toHexSlice creates a slice of hex-strings based on []byte.
  2228. func toHexSlice(b [][]byte) []string {
  2229. r := make([]string, len(b))
  2230. for i := range b {
  2231. r[i] = hexutil.Encode(b[i])
  2232. }
  2233. return r
  2234. }