api.go 59 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687
  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/keystore"
  28. "github.com/ethereum/go-ethereum/accounts/scwallet"
  29. "github.com/ethereum/go-ethereum/common"
  30. "github.com/ethereum/go-ethereum/common/hexutil"
  31. "github.com/ethereum/go-ethereum/common/math"
  32. "github.com/ethereum/go-ethereum/consensus/clique"
  33. "github.com/ethereum/go-ethereum/consensus/ethash"
  34. "github.com/ethereum/go-ethereum/core"
  35. "github.com/ethereum/go-ethereum/core/rawdb"
  36. "github.com/ethereum/go-ethereum/core/types"
  37. "github.com/ethereum/go-ethereum/core/vm"
  38. "github.com/ethereum/go-ethereum/crypto"
  39. "github.com/ethereum/go-ethereum/log"
  40. "github.com/ethereum/go-ethereum/p2p"
  41. "github.com/ethereum/go-ethereum/params"
  42. "github.com/ethereum/go-ethereum/rlp"
  43. "github.com/ethereum/go-ethereum/rpc"
  44. "github.com/tyler-smith/go-bip39"
  45. )
  46. const (
  47. defaultGasPrice = params.GWei
  48. )
  49. // PublicEthereumAPI provides an API to access Ethereum related information.
  50. // It offers only methods that operate on public data that is freely available to anyone.
  51. type PublicEthereumAPI struct {
  52. b Backend
  53. }
  54. // NewPublicEthereumAPI creates a new Ethereum protocol API.
  55. func NewPublicEthereumAPI(b Backend) *PublicEthereumAPI {
  56. return &PublicEthereumAPI{b}
  57. }
  58. // GasPrice returns a suggestion for a gas price.
  59. func (s *PublicEthereumAPI) GasPrice(ctx context.Context) (*hexutil.Big, error) {
  60. price, err := s.b.SuggestPrice(ctx)
  61. return (*hexutil.Big)(price), err
  62. }
  63. // ProtocolVersion returns the current Ethereum protocol version this node supports
  64. func (s *PublicEthereumAPI) ProtocolVersion() hexutil.Uint {
  65. return hexutil.Uint(s.b.ProtocolVersion())
  66. }
  67. // Syncing returns false in case the node is currently not syncing with the network. It can be up to date or has not
  68. // yet received the latest block headers from its pears. In case it is synchronizing:
  69. // - startingBlock: block number this node started to synchronise from
  70. // - currentBlock: block number this node is currently importing
  71. // - highestBlock: block number of the highest block header this node has received from peers
  72. // - pulledStates: number of state entries processed until now
  73. // - knownStates: number of known state entries that still need to be pulled
  74. func (s *PublicEthereumAPI) Syncing() (interface{}, error) {
  75. progress := s.b.Downloader().Progress()
  76. // Return not syncing if the synchronisation already completed
  77. if progress.CurrentBlock >= progress.HighestBlock {
  78. return false, nil
  79. }
  80. // Otherwise gather the block sync stats
  81. return map[string]interface{}{
  82. "startingBlock": hexutil.Uint64(progress.StartingBlock),
  83. "currentBlock": hexutil.Uint64(progress.CurrentBlock),
  84. "highestBlock": hexutil.Uint64(progress.HighestBlock),
  85. "pulledStates": hexutil.Uint64(progress.PulledStates),
  86. "knownStates": hexutil.Uint64(progress.KnownStates),
  87. }, nil
  88. }
  89. // PublicTxPoolAPI offers and API for the transaction pool. It only operates on data that is non confidential.
  90. type PublicTxPoolAPI struct {
  91. b Backend
  92. }
  93. // NewPublicTxPoolAPI creates a new tx pool service that gives information about the transaction pool.
  94. func NewPublicTxPoolAPI(b Backend) *PublicTxPoolAPI {
  95. return &PublicTxPoolAPI{b}
  96. }
  97. // Content returns the transactions contained within the transaction pool.
  98. func (s *PublicTxPoolAPI) Content() map[string]map[string]map[string]*RPCTransaction {
  99. content := map[string]map[string]map[string]*RPCTransaction{
  100. "pending": make(map[string]map[string]*RPCTransaction),
  101. "queued": make(map[string]map[string]*RPCTransaction),
  102. }
  103. pending, queue := s.b.TxPoolContent()
  104. // Flatten the pending transactions
  105. for account, txs := range pending {
  106. dump := make(map[string]*RPCTransaction)
  107. for _, tx := range txs {
  108. dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
  109. }
  110. content["pending"][account.Hex()] = dump
  111. }
  112. // Flatten the queued transactions
  113. for account, txs := range queue {
  114. dump := make(map[string]*RPCTransaction)
  115. for _, tx := range txs {
  116. dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
  117. }
  118. content["queued"][account.Hex()] = dump
  119. }
  120. return content
  121. }
  122. // Status returns the number of pending and queued transaction in the pool.
  123. func (s *PublicTxPoolAPI) Status() map[string]hexutil.Uint {
  124. pending, queue := s.b.Stats()
  125. return map[string]hexutil.Uint{
  126. "pending": hexutil.Uint(pending),
  127. "queued": hexutil.Uint(queue),
  128. }
  129. }
  130. // Inspect retrieves the content of the transaction pool and flattens it into an
  131. // easily inspectable list.
  132. func (s *PublicTxPoolAPI) Inspect() map[string]map[string]map[string]string {
  133. content := map[string]map[string]map[string]string{
  134. "pending": make(map[string]map[string]string),
  135. "queued": make(map[string]map[string]string),
  136. }
  137. pending, queue := s.b.TxPoolContent()
  138. // Define a formatter to flatten a transaction into a string
  139. var format = func(tx *types.Transaction) string {
  140. if to := tx.To(); to != nil {
  141. return fmt.Sprintf("%s: %v wei + %v gas × %v wei", tx.To().Hex(), tx.Value(), tx.Gas(), tx.GasPrice())
  142. }
  143. return fmt.Sprintf("contract creation: %v wei + %v gas × %v wei", tx.Value(), tx.Gas(), tx.GasPrice())
  144. }
  145. // Flatten the pending transactions
  146. for account, txs := range pending {
  147. dump := make(map[string]string)
  148. for _, tx := range txs {
  149. dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
  150. }
  151. content["pending"][account.Hex()] = dump
  152. }
  153. // Flatten the queued transactions
  154. for account, txs := range queue {
  155. dump := make(map[string]string)
  156. for _, tx := range txs {
  157. dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
  158. }
  159. content["queued"][account.Hex()] = dump
  160. }
  161. return content
  162. }
  163. // PublicAccountAPI provides an API to access accounts managed by this node.
  164. // It offers only methods that can retrieve accounts.
  165. type PublicAccountAPI struct {
  166. am *accounts.Manager
  167. }
  168. // NewPublicAccountAPI creates a new PublicAccountAPI.
  169. func NewPublicAccountAPI(am *accounts.Manager) *PublicAccountAPI {
  170. return &PublicAccountAPI{am: am}
  171. }
  172. // Accounts returns the collection of accounts this node manages
  173. func (s *PublicAccountAPI) Accounts() []common.Address {
  174. addresses := make([]common.Address, 0) // return [] instead of nil if empty
  175. for _, wallet := range s.am.Wallets() {
  176. for _, account := range wallet.Accounts() {
  177. addresses = append(addresses, account.Address)
  178. }
  179. }
  180. return addresses
  181. }
  182. // PrivateAccountAPI provides an API to access accounts managed by this node.
  183. // It offers methods to create, (un)lock en list accounts. Some methods accept
  184. // passwords and are therefore considered private by default.
  185. type PrivateAccountAPI struct {
  186. am *accounts.Manager
  187. nonceLock *AddrLocker
  188. b Backend
  189. }
  190. // NewPrivateAccountAPI create a new PrivateAccountAPI.
  191. func NewPrivateAccountAPI(b Backend, nonceLock *AddrLocker) *PrivateAccountAPI {
  192. return &PrivateAccountAPI{
  193. am: b.AccountManager(),
  194. nonceLock: nonceLock,
  195. b: b,
  196. }
  197. }
  198. // listAccounts will return a list of addresses for accounts this node manages.
  199. func (s *PrivateAccountAPI) ListAccounts() []common.Address {
  200. addresses := make([]common.Address, 0) // return [] instead of nil if empty
  201. for _, wallet := range s.am.Wallets() {
  202. for _, account := range wallet.Accounts() {
  203. addresses = append(addresses, account.Address)
  204. }
  205. }
  206. return addresses
  207. }
  208. // rawWallet is a JSON representation of an accounts.Wallet interface, with its
  209. // data contents extracted into plain fields.
  210. type rawWallet struct {
  211. URL string `json:"url"`
  212. Status string `json:"status"`
  213. Failure string `json:"failure,omitempty"`
  214. Accounts []accounts.Account `json:"accounts,omitempty"`
  215. }
  216. // ListWallets will return a list of wallets this node manages.
  217. func (s *PrivateAccountAPI) ListWallets() []rawWallet {
  218. wallets := make([]rawWallet, 0) // return [] instead of nil if empty
  219. for _, wallet := range s.am.Wallets() {
  220. status, failure := wallet.Status()
  221. raw := rawWallet{
  222. URL: wallet.URL().String(),
  223. Status: status,
  224. Accounts: wallet.Accounts(),
  225. }
  226. if failure != nil {
  227. raw.Failure = failure.Error()
  228. }
  229. wallets = append(wallets, raw)
  230. }
  231. return wallets
  232. }
  233. // OpenWallet initiates a hardware wallet opening procedure, establishing a USB
  234. // connection and attempting to authenticate via the provided passphrase. Note,
  235. // the method may return an extra challenge requiring a second open (e.g. the
  236. // Trezor PIN matrix challenge).
  237. func (s *PrivateAccountAPI) OpenWallet(url string, passphrase *string) error {
  238. wallet, err := s.am.Wallet(url)
  239. if err != nil {
  240. return err
  241. }
  242. pass := ""
  243. if passphrase != nil {
  244. pass = *passphrase
  245. }
  246. return wallet.Open(pass)
  247. }
  248. // DeriveAccount requests a HD wallet to derive a new account, optionally pinning
  249. // it for later reuse.
  250. func (s *PrivateAccountAPI) DeriveAccount(url string, path string, pin *bool) (accounts.Account, error) {
  251. wallet, err := s.am.Wallet(url)
  252. if err != nil {
  253. return accounts.Account{}, err
  254. }
  255. derivPath, err := accounts.ParseDerivationPath(path)
  256. if err != nil {
  257. return accounts.Account{}, err
  258. }
  259. if pin == nil {
  260. pin = new(bool)
  261. }
  262. return wallet.Derive(derivPath, *pin)
  263. }
  264. // NewAccount will create a new account and returns the address for the new account.
  265. func (s *PrivateAccountAPI) NewAccount(password string) (common.Address, error) {
  266. acc, err := fetchKeystore(s.am).NewAccount(password)
  267. if err == nil {
  268. log.Info("Your new key was generated", "address", acc.Address)
  269. log.Warn("Please backup your key file!", "path", acc.URL.Path)
  270. log.Warn("Please remember your password!")
  271. return acc.Address, nil
  272. }
  273. return common.Address{}, err
  274. }
  275. // fetchKeystore retrives the encrypted keystore from the account manager.
  276. func fetchKeystore(am *accounts.Manager) *keystore.KeyStore {
  277. return am.Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore)
  278. }
  279. // ImportRawKey stores the given hex encoded ECDSA key into the key directory,
  280. // encrypting it with the passphrase.
  281. func (s *PrivateAccountAPI) ImportRawKey(privkey string, password string) (common.Address, error) {
  282. key, err := crypto.HexToECDSA(privkey)
  283. if err != nil {
  284. return common.Address{}, err
  285. }
  286. acc, err := fetchKeystore(s.am).ImportECDSA(key, password)
  287. return acc.Address, err
  288. }
  289. // UnlockAccount will unlock the account associated with the given address with
  290. // the given password for duration seconds. If duration is nil it will use a
  291. // default of 300 seconds. It returns an indication if the account was unlocked.
  292. func (s *PrivateAccountAPI) UnlockAccount(ctx context.Context, addr common.Address, password string, duration *uint64) (bool, error) {
  293. // When the API is exposed by external RPC(http, ws etc), unless the user
  294. // explicitly specifies to allow the insecure account unlocking, otherwise
  295. // it is disabled.
  296. if s.b.ExtRPCEnabled() && !s.b.AccountManager().Config().InsecureUnlockAllowed {
  297. return false, errors.New("account unlock with HTTP access is forbidden")
  298. }
  299. const max = uint64(time.Duration(math.MaxInt64) / time.Second)
  300. var d time.Duration
  301. if duration == nil {
  302. d = 300 * time.Second
  303. } else if *duration > max {
  304. return false, errors.New("unlock duration too large")
  305. } else {
  306. d = time.Duration(*duration) * time.Second
  307. }
  308. err := fetchKeystore(s.am).TimedUnlock(accounts.Account{Address: addr}, password, d)
  309. if err != nil {
  310. log.Warn("Failed account unlock attempt", "address", addr, "err", err)
  311. }
  312. return err == nil, err
  313. }
  314. // LockAccount will lock the account associated with the given address when it's unlocked.
  315. func (s *PrivateAccountAPI) LockAccount(addr common.Address) bool {
  316. return fetchKeystore(s.am).Lock(addr) == nil
  317. }
  318. // signTransaction sets defaults and signs the given transaction
  319. // NOTE: the caller needs to ensure that the nonceLock is held, if applicable,
  320. // and release it after the transaction has been submitted to the tx pool
  321. func (s *PrivateAccountAPI) signTransaction(ctx context.Context, args *SendTxArgs, passwd string) (*types.Transaction, error) {
  322. // Look up the wallet containing the requested signer
  323. account := accounts.Account{Address: args.From}
  324. wallet, err := s.am.Find(account)
  325. if err != nil {
  326. return nil, err
  327. }
  328. // Set some sanity defaults and terminate on failure
  329. if err := args.setDefaults(ctx, s.b); err != nil {
  330. return nil, err
  331. }
  332. // Assemble the transaction and sign with the wallet
  333. tx := args.toTransaction()
  334. return wallet.SignTxWithPassphrase(account, passwd, tx, s.b.ChainConfig().ChainID)
  335. }
  336. // SendTransaction will create a transaction from the given arguments and
  337. // tries to sign it with the key associated with args.To. If the given passwd isn't
  338. // able to decrypt the key it fails.
  339. func (s *PrivateAccountAPI) SendTransaction(ctx context.Context, args SendTxArgs, passwd string) (common.Hash, error) {
  340. if args.Nonce == nil {
  341. // Hold the addresse's mutex around signing to prevent concurrent assignment of
  342. // the same nonce to multiple accounts.
  343. s.nonceLock.LockAddr(args.From)
  344. defer s.nonceLock.UnlockAddr(args.From)
  345. }
  346. signed, err := s.signTransaction(ctx, &args, passwd)
  347. if err != nil {
  348. log.Warn("Failed transaction send attempt", "from", args.From, "to", args.To, "value", args.Value.ToInt(), "err", err)
  349. return common.Hash{}, err
  350. }
  351. return SubmitTransaction(ctx, s.b, signed)
  352. }
  353. // SignTransaction will create a transaction from the given arguments and
  354. // tries to sign it with the key associated with args.To. If the given passwd isn't
  355. // able to decrypt the key it fails. The transaction is returned in RLP-form, not broadcast
  356. // to other nodes
  357. func (s *PrivateAccountAPI) SignTransaction(ctx context.Context, args SendTxArgs, passwd string) (*SignTransactionResult, error) {
  358. // No need to obtain the noncelock mutex, since we won't be sending this
  359. // tx into the transaction pool, but right back to the user
  360. if args.Gas == nil {
  361. return nil, fmt.Errorf("gas not specified")
  362. }
  363. if args.GasPrice == nil {
  364. return nil, fmt.Errorf("gasPrice not specified")
  365. }
  366. if args.Nonce == nil {
  367. return nil, fmt.Errorf("nonce not specified")
  368. }
  369. signed, err := s.signTransaction(ctx, &args, passwd)
  370. if err != nil {
  371. log.Warn("Failed transaction sign attempt", "from", args.From, "to", args.To, "value", args.Value.ToInt(), "err", err)
  372. return nil, err
  373. }
  374. data, err := rlp.EncodeToBytes(signed)
  375. if err != nil {
  376. return nil, err
  377. }
  378. return &SignTransactionResult{data, signed}, nil
  379. }
  380. // Sign calculates an Ethereum ECDSA signature for:
  381. // keccack256("\x19Ethereum Signed Message:\n" + len(message) + message))
  382. //
  383. // Note, the produced signature conforms to the secp256k1 curve R, S and V values,
  384. // where the V value will be 27 or 28 for legacy reasons.
  385. //
  386. // The key used to calculate the signature is decrypted with the given password.
  387. //
  388. // https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_sign
  389. func (s *PrivateAccountAPI) Sign(ctx context.Context, data hexutil.Bytes, addr common.Address, passwd string) (hexutil.Bytes, error) {
  390. // Look up the wallet containing the requested signer
  391. account := accounts.Account{Address: addr}
  392. wallet, err := s.b.AccountManager().Find(account)
  393. if err != nil {
  394. return nil, err
  395. }
  396. // Assemble sign the data with the wallet
  397. signature, err := wallet.SignTextWithPassphrase(account, passwd, data)
  398. if err != nil {
  399. log.Warn("Failed data sign attempt", "address", addr, "err", err)
  400. return nil, err
  401. }
  402. signature[64] += 27 // Transform V from 0/1 to 27/28 according to the yellow paper
  403. return signature, nil
  404. }
  405. // EcRecover returns the address for the account that was used to create the signature.
  406. // Note, this function is compatible with eth_sign and personal_sign. As such it recovers
  407. // the address of:
  408. // hash = keccak256("\x19Ethereum Signed Message:\n"${message length}${message})
  409. // addr = ecrecover(hash, signature)
  410. //
  411. // Note, the signature must conform to the secp256k1 curve R, S and V values, where
  412. // the V value must be 27 or 28 for legacy reasons.
  413. //
  414. // https://github.com/ethereum/go-ethereum/wiki/Management-APIs#personal_ecRecover
  415. func (s *PrivateAccountAPI) EcRecover(ctx context.Context, data, sig hexutil.Bytes) (common.Address, error) {
  416. if len(sig) != 65 {
  417. return common.Address{}, fmt.Errorf("signature must be 65 bytes long")
  418. }
  419. if sig[64] != 27 && sig[64] != 28 {
  420. return common.Address{}, fmt.Errorf("invalid Ethereum signature (V is not 27 or 28)")
  421. }
  422. sig[64] -= 27 // Transform yellow paper V from 27/28 to 0/1
  423. rpk, err := crypto.SigToPub(accounts.TextHash(data), sig)
  424. if err != nil {
  425. return common.Address{}, err
  426. }
  427. return crypto.PubkeyToAddress(*rpk), nil
  428. }
  429. // SignAndSendTransaction was renamed to SendTransaction. This method is deprecated
  430. // and will be removed in the future. It primary goal is to give clients time to update.
  431. func (s *PrivateAccountAPI) SignAndSendTransaction(ctx context.Context, args SendTxArgs, passwd string) (common.Hash, error) {
  432. return s.SendTransaction(ctx, args, passwd)
  433. }
  434. // InitializeWallet initializes a new wallet at the provided URL, by generating and returning a new private key.
  435. func (s *PrivateAccountAPI) InitializeWallet(ctx context.Context, url string) (string, error) {
  436. wallet, err := s.am.Wallet(url)
  437. if err != nil {
  438. return "", err
  439. }
  440. entropy, err := bip39.NewEntropy(256)
  441. if err != nil {
  442. return "", err
  443. }
  444. mnemonic, err := bip39.NewMnemonic(entropy)
  445. if err != nil {
  446. return "", err
  447. }
  448. seed := bip39.NewSeed(mnemonic, "")
  449. switch wallet := wallet.(type) {
  450. case *scwallet.Wallet:
  451. return mnemonic, wallet.Initialize(seed)
  452. default:
  453. return "", fmt.Errorf("Specified wallet does not support initialization")
  454. }
  455. }
  456. // Unpair deletes a pairing between wallet and geth.
  457. func (s *PrivateAccountAPI) Unpair(ctx context.Context, url string, pin string) error {
  458. wallet, err := s.am.Wallet(url)
  459. if err != nil {
  460. return err
  461. }
  462. switch wallet := wallet.(type) {
  463. case *scwallet.Wallet:
  464. return wallet.Unpair([]byte(pin))
  465. default:
  466. return fmt.Errorf("Specified wallet does not support pairing")
  467. }
  468. }
  469. // PublicBlockChainAPI provides an API to access the Ethereum blockchain.
  470. // It offers only methods that operate on public data that is freely available to anyone.
  471. type PublicBlockChainAPI struct {
  472. b Backend
  473. }
  474. // NewPublicBlockChainAPI creates a new Ethereum blockchain API.
  475. func NewPublicBlockChainAPI(b Backend) *PublicBlockChainAPI {
  476. return &PublicBlockChainAPI{b}
  477. }
  478. // ChainId returns the chainID value for transaction replay protection.
  479. func (s *PublicBlockChainAPI) ChainId() *hexutil.Big {
  480. return (*hexutil.Big)(s.b.ChainConfig().ChainID)
  481. }
  482. // BlockNumber returns the block number of the chain head.
  483. func (s *PublicBlockChainAPI) BlockNumber() hexutil.Uint64 {
  484. header, _ := s.b.HeaderByNumber(context.Background(), rpc.LatestBlockNumber) // latest header should always be available
  485. return hexutil.Uint64(header.Number.Uint64())
  486. }
  487. // GetBalance returns the amount of wei for the given address in the state of the
  488. // given block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta
  489. // block numbers are also allowed.
  490. func (s *PublicBlockChainAPI) GetBalance(ctx context.Context, address common.Address, blockNr rpc.BlockNumber) (*hexutil.Big, error) {
  491. state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr)
  492. if state == nil || err != nil {
  493. return nil, err
  494. }
  495. return (*hexutil.Big)(state.GetBalance(address)), state.Error()
  496. }
  497. // Result structs for GetProof
  498. type AccountResult struct {
  499. Address common.Address `json:"address"`
  500. AccountProof []string `json:"accountProof"`
  501. Balance *hexutil.Big `json:"balance"`
  502. CodeHash common.Hash `json:"codeHash"`
  503. Nonce hexutil.Uint64 `json:"nonce"`
  504. StorageHash common.Hash `json:"storageHash"`
  505. StorageProof []StorageResult `json:"storageProof"`
  506. }
  507. type StorageResult struct {
  508. Key string `json:"key"`
  509. Value *hexutil.Big `json:"value"`
  510. Proof []string `json:"proof"`
  511. }
  512. // GetProof returns the Merkle-proof for a given account and optionally some storage keys.
  513. func (s *PublicBlockChainAPI) GetProof(ctx context.Context, address common.Address, storageKeys []string, blockNr rpc.BlockNumber) (*AccountResult, error) {
  514. state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr)
  515. if state == nil || err != nil {
  516. return nil, err
  517. }
  518. storageTrie := state.StorageTrie(address)
  519. storageHash := types.EmptyRootHash
  520. codeHash := state.GetCodeHash(address)
  521. storageProof := make([]StorageResult, len(storageKeys))
  522. // if we have a storageTrie, (which means the account exists), we can update the storagehash
  523. if storageTrie != nil {
  524. storageHash = storageTrie.Hash()
  525. } else {
  526. // no storageTrie means the account does not exist, so the codeHash is the hash of an empty bytearray.
  527. codeHash = crypto.Keccak256Hash(nil)
  528. }
  529. // create the proof for the storageKeys
  530. for i, key := range storageKeys {
  531. if storageTrie != nil {
  532. proof, storageError := state.GetStorageProof(address, common.HexToHash(key))
  533. if storageError != nil {
  534. return nil, storageError
  535. }
  536. storageProof[i] = StorageResult{key, (*hexutil.Big)(state.GetState(address, common.HexToHash(key)).Big()), common.ToHexArray(proof)}
  537. } else {
  538. storageProof[i] = StorageResult{key, &hexutil.Big{}, []string{}}
  539. }
  540. }
  541. // create the accountProof
  542. accountProof, proofErr := state.GetProof(address)
  543. if proofErr != nil {
  544. return nil, proofErr
  545. }
  546. return &AccountResult{
  547. Address: address,
  548. AccountProof: common.ToHexArray(accountProof),
  549. Balance: (*hexutil.Big)(state.GetBalance(address)),
  550. CodeHash: codeHash,
  551. Nonce: hexutil.Uint64(state.GetNonce(address)),
  552. StorageHash: storageHash,
  553. StorageProof: storageProof,
  554. }, state.Error()
  555. }
  556. // GetBlockByNumber returns the requested block. When blockNr is -1 the chain head is returned. When fullTx is true all
  557. // transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
  558. func (s *PublicBlockChainAPI) GetBlockByNumber(ctx context.Context, blockNr rpc.BlockNumber, fullTx bool) (map[string]interface{}, error) {
  559. block, err := s.b.BlockByNumber(ctx, blockNr)
  560. if block != nil {
  561. response, err := s.rpcOutputBlock(block, true, fullTx)
  562. if err == nil && blockNr == rpc.PendingBlockNumber {
  563. // Pending blocks need to nil out a few fields
  564. for _, field := range []string{"hash", "nonce", "miner"} {
  565. response[field] = nil
  566. }
  567. }
  568. return response, err
  569. }
  570. return nil, err
  571. }
  572. // GetBlockByHash returns the requested block. When fullTx is true all transactions in the block are returned in full
  573. // detail, otherwise only the transaction hash is returned.
  574. func (s *PublicBlockChainAPI) GetBlockByHash(ctx context.Context, blockHash common.Hash, fullTx bool) (map[string]interface{}, error) {
  575. block, err := s.b.GetBlock(ctx, blockHash)
  576. if block != nil {
  577. return s.rpcOutputBlock(block, true, fullTx)
  578. }
  579. return nil, err
  580. }
  581. // GetUncleByBlockNumberAndIndex returns the uncle block for the given block hash and index. When fullTx is true
  582. // all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
  583. func (s *PublicBlockChainAPI) GetUncleByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) (map[string]interface{}, error) {
  584. block, err := s.b.BlockByNumber(ctx, blockNr)
  585. if block != nil {
  586. uncles := block.Uncles()
  587. if index >= hexutil.Uint(len(uncles)) {
  588. log.Debug("Requested uncle not found", "number", blockNr, "hash", block.Hash(), "index", index)
  589. return nil, nil
  590. }
  591. block = types.NewBlockWithHeader(uncles[index])
  592. return s.rpcOutputBlock(block, false, false)
  593. }
  594. return nil, err
  595. }
  596. // GetUncleByBlockHashAndIndex returns the uncle block for the given block hash and index. When fullTx is true
  597. // all transactions in the block are returned in full detail, otherwise only the transaction hash is returned.
  598. func (s *PublicBlockChainAPI) GetUncleByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) (map[string]interface{}, error) {
  599. block, err := s.b.GetBlock(ctx, blockHash)
  600. if block != nil {
  601. uncles := block.Uncles()
  602. if index >= hexutil.Uint(len(uncles)) {
  603. log.Debug("Requested uncle not found", "number", block.Number(), "hash", blockHash, "index", index)
  604. return nil, nil
  605. }
  606. block = types.NewBlockWithHeader(uncles[index])
  607. return s.rpcOutputBlock(block, false, false)
  608. }
  609. return nil, err
  610. }
  611. // GetUncleCountByBlockNumber returns number of uncles in the block for the given block number
  612. func (s *PublicBlockChainAPI) GetUncleCountByBlockNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
  613. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  614. n := hexutil.Uint(len(block.Uncles()))
  615. return &n
  616. }
  617. return nil
  618. }
  619. // GetUncleCountByBlockHash returns number of uncles in the block for the given block hash
  620. func (s *PublicBlockChainAPI) GetUncleCountByBlockHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
  621. if block, _ := s.b.GetBlock(ctx, blockHash); block != nil {
  622. n := hexutil.Uint(len(block.Uncles()))
  623. return &n
  624. }
  625. return nil
  626. }
  627. // GetCode returns the code stored at the given address in the state for the given block number.
  628. func (s *PublicBlockChainAPI) GetCode(ctx context.Context, address common.Address, blockNr rpc.BlockNumber) (hexutil.Bytes, error) {
  629. state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr)
  630. if state == nil || err != nil {
  631. return nil, err
  632. }
  633. code := state.GetCode(address)
  634. return code, state.Error()
  635. }
  636. // GetStorageAt returns the storage from the state at the given address, key and
  637. // block number. The rpc.LatestBlockNumber and rpc.PendingBlockNumber meta block
  638. // numbers are also allowed.
  639. func (s *PublicBlockChainAPI) GetStorageAt(ctx context.Context, address common.Address, key string, blockNr rpc.BlockNumber) (hexutil.Bytes, error) {
  640. state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr)
  641. if state == nil || err != nil {
  642. return nil, err
  643. }
  644. res := state.GetState(address, common.HexToHash(key))
  645. return res[:], state.Error()
  646. }
  647. // CallArgs represents the arguments for a call.
  648. type CallArgs struct {
  649. From *common.Address `json:"from"`
  650. To *common.Address `json:"to"`
  651. Gas *hexutil.Uint64 `json:"gas"`
  652. GasPrice *hexutil.Big `json:"gasPrice"`
  653. Value *hexutil.Big `json:"value"`
  654. Data *hexutil.Bytes `json:"data"`
  655. }
  656. func DoCall(ctx context.Context, b Backend, args CallArgs, blockNr rpc.BlockNumber, vmCfg vm.Config, timeout time.Duration, globalGasCap *big.Int) ([]byte, uint64, bool, error) {
  657. defer func(start time.Time) { log.Debug("Executing EVM call finished", "runtime", time.Since(start)) }(time.Now())
  658. state, header, err := b.StateAndHeaderByNumber(ctx, blockNr)
  659. if state == nil || err != nil {
  660. return nil, 0, false, err
  661. }
  662. // Set sender address or use a default if none specified
  663. var addr common.Address
  664. if args.From == nil {
  665. if wallets := b.AccountManager().Wallets(); len(wallets) > 0 {
  666. if accounts := wallets[0].Accounts(); len(accounts) > 0 {
  667. addr = accounts[0].Address
  668. }
  669. }
  670. } else {
  671. addr = *args.From
  672. }
  673. // Set default gas & gas price if none were set
  674. gas := uint64(math.MaxUint64 / 2)
  675. if args.Gas != nil {
  676. gas = uint64(*args.Gas)
  677. }
  678. if globalGasCap != nil && globalGasCap.Uint64() < gas {
  679. log.Warn("Caller gas above allowance, capping", "requested", gas, "cap", globalGasCap)
  680. gas = globalGasCap.Uint64()
  681. }
  682. gasPrice := new(big.Int).SetUint64(defaultGasPrice)
  683. if args.GasPrice != nil {
  684. gasPrice = args.GasPrice.ToInt()
  685. }
  686. value := new(big.Int)
  687. if args.Value != nil {
  688. value = args.Value.ToInt()
  689. }
  690. var data []byte
  691. if args.Data != nil {
  692. data = []byte(*args.Data)
  693. }
  694. // Create new call message
  695. msg := types.NewMessage(addr, args.To, 0, value, gas, gasPrice, data, false)
  696. // Setup context so it may be cancelled the call has completed
  697. // or, in case of unmetered gas, setup a context with a timeout.
  698. var cancel context.CancelFunc
  699. if timeout > 0 {
  700. ctx, cancel = context.WithTimeout(ctx, timeout)
  701. } else {
  702. ctx, cancel = context.WithCancel(ctx)
  703. }
  704. // Make sure the context is cancelled when the call has completed
  705. // this makes sure resources are cleaned up.
  706. defer cancel()
  707. // Get a new instance of the EVM.
  708. evm, vmError, err := b.GetEVM(ctx, msg, state, header)
  709. if err != nil {
  710. return nil, 0, false, err
  711. }
  712. // Wait for the context to be done and cancel the evm. Even if the
  713. // EVM has finished, cancelling may be done (repeatedly)
  714. go func() {
  715. <-ctx.Done()
  716. evm.Cancel()
  717. }()
  718. // Setup the gas pool (also for unmetered requests)
  719. // and apply the message.
  720. gp := new(core.GasPool).AddGas(math.MaxUint64)
  721. res, gas, failed, err := core.ApplyMessage(evm, msg, gp)
  722. if err := vmError(); err != nil {
  723. return nil, 0, false, err
  724. }
  725. // If the timer caused an abort, return an appropriate error message
  726. if evm.Cancelled() {
  727. return nil, 0, false, fmt.Errorf("execution aborted (timeout = %v)", timeout)
  728. }
  729. return res, gas, failed, err
  730. }
  731. // Call executes the given transaction on the state for the given block number.
  732. // It doesn't make and changes in the state/blockchain and is useful to execute and retrieve values.
  733. func (s *PublicBlockChainAPI) Call(ctx context.Context, args CallArgs, blockNr rpc.BlockNumber) (hexutil.Bytes, error) {
  734. result, _, _, err := DoCall(ctx, s.b, args, blockNr, vm.Config{}, 5*time.Second, s.b.RPCGasCap())
  735. return (hexutil.Bytes)(result), err
  736. }
  737. func DoEstimateGas(ctx context.Context, b Backend, args CallArgs, blockNr rpc.BlockNumber, gasCap *big.Int) (hexutil.Uint64, error) {
  738. // Binary search the gas requirement, as it may be higher than the amount used
  739. var (
  740. lo uint64 = params.TxGas - 1
  741. hi uint64
  742. cap uint64
  743. )
  744. if args.Gas != nil && uint64(*args.Gas) >= params.TxGas {
  745. hi = uint64(*args.Gas)
  746. } else {
  747. // Retrieve the block to act as the gas ceiling
  748. block, err := b.BlockByNumber(ctx, blockNr)
  749. if err != nil {
  750. return 0, err
  751. }
  752. hi = block.GasLimit()
  753. }
  754. if gasCap != nil && hi > gasCap.Uint64() {
  755. log.Warn("Caller gas above allowance, capping", "requested", hi, "cap", gasCap)
  756. hi = gasCap.Uint64()
  757. }
  758. cap = hi
  759. // Create a helper to check if a gas allowance results in an executable transaction
  760. executable := func(gas uint64) bool {
  761. args.Gas = (*hexutil.Uint64)(&gas)
  762. _, _, failed, err := DoCall(ctx, b, args, rpc.PendingBlockNumber, vm.Config{}, 0, gasCap)
  763. if err != nil || failed {
  764. return false
  765. }
  766. return true
  767. }
  768. // Execute the binary search and hone in on an executable gas limit
  769. for lo+1 < hi {
  770. mid := (hi + lo) / 2
  771. if !executable(mid) {
  772. lo = mid
  773. } else {
  774. hi = mid
  775. }
  776. }
  777. // Reject the transaction as invalid if it still fails at the highest allowance
  778. if hi == cap {
  779. if !executable(hi) {
  780. return 0, fmt.Errorf("gas required exceeds allowance (%d) or always failing transaction", cap)
  781. }
  782. }
  783. return hexutil.Uint64(hi), nil
  784. }
  785. // EstimateGas returns an estimate of the amount of gas needed to execute the
  786. // given transaction against the current pending block.
  787. func (s *PublicBlockChainAPI) EstimateGas(ctx context.Context, args CallArgs) (hexutil.Uint64, error) {
  788. return DoEstimateGas(ctx, s.b, args, rpc.PendingBlockNumber, s.b.RPCGasCap())
  789. }
  790. // ExecutionResult groups all structured logs emitted by the EVM
  791. // while replaying a transaction in debug mode as well as transaction
  792. // execution status, the amount of gas used and the return value
  793. type ExecutionResult struct {
  794. Gas uint64 `json:"gas"`
  795. Failed bool `json:"failed"`
  796. ReturnValue string `json:"returnValue"`
  797. StructLogs []StructLogRes `json:"structLogs"`
  798. }
  799. // StructLogRes stores a structured log emitted by the EVM while replaying a
  800. // transaction in debug mode
  801. type StructLogRes struct {
  802. Pc uint64 `json:"pc"`
  803. Op string `json:"op"`
  804. Gas uint64 `json:"gas"`
  805. GasCost uint64 `json:"gasCost"`
  806. Depth int `json:"depth"`
  807. Error error `json:"error,omitempty"`
  808. Stack *[]string `json:"stack,omitempty"`
  809. Memory *[]string `json:"memory,omitempty"`
  810. Storage *map[string]string `json:"storage,omitempty"`
  811. }
  812. // FormatLogs formats EVM returned structured logs for json output
  813. func FormatLogs(logs []vm.StructLog) []StructLogRes {
  814. formatted := make([]StructLogRes, len(logs))
  815. for index, trace := range logs {
  816. formatted[index] = StructLogRes{
  817. Pc: trace.Pc,
  818. Op: trace.Op.String(),
  819. Gas: trace.Gas,
  820. GasCost: trace.GasCost,
  821. Depth: trace.Depth,
  822. Error: trace.Err,
  823. }
  824. if trace.Stack != nil {
  825. stack := make([]string, len(trace.Stack))
  826. for i, stackValue := range trace.Stack {
  827. stack[i] = fmt.Sprintf("%x", math.PaddedBigBytes(stackValue, 32))
  828. }
  829. formatted[index].Stack = &stack
  830. }
  831. if trace.Memory != nil {
  832. memory := make([]string, 0, (len(trace.Memory)+31)/32)
  833. for i := 0; i+32 <= len(trace.Memory); i += 32 {
  834. memory = append(memory, fmt.Sprintf("%x", trace.Memory[i:i+32]))
  835. }
  836. formatted[index].Memory = &memory
  837. }
  838. if trace.Storage != nil {
  839. storage := make(map[string]string)
  840. for i, storageValue := range trace.Storage {
  841. storage[fmt.Sprintf("%x", i)] = fmt.Sprintf("%x", storageValue)
  842. }
  843. formatted[index].Storage = &storage
  844. }
  845. }
  846. return formatted
  847. }
  848. // RPCMarshalBlock converts the given block to the RPC output which depends on fullTx. If inclTx is true transactions are
  849. // returned. When fullTx is true the returned block contains full transaction details, otherwise it will only contain
  850. // transaction hashes.
  851. func RPCMarshalBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]interface{}, error) {
  852. head := b.Header() // copies the header once
  853. fields := map[string]interface{}{
  854. "number": (*hexutil.Big)(head.Number),
  855. "hash": b.Hash(),
  856. "parentHash": head.ParentHash,
  857. "nonce": head.Nonce,
  858. "mixHash": head.MixDigest,
  859. "sha3Uncles": head.UncleHash,
  860. "logsBloom": head.Bloom,
  861. "stateRoot": head.Root,
  862. "miner": head.Coinbase,
  863. "difficulty": (*hexutil.Big)(head.Difficulty),
  864. "extraData": hexutil.Bytes(head.Extra),
  865. "size": hexutil.Uint64(b.Size()),
  866. "gasLimit": hexutil.Uint64(head.GasLimit),
  867. "gasUsed": hexutil.Uint64(head.GasUsed),
  868. "timestamp": hexutil.Uint64(head.Time),
  869. "transactionsRoot": head.TxHash,
  870. "receiptsRoot": head.ReceiptHash,
  871. }
  872. if inclTx {
  873. formatTx := func(tx *types.Transaction) (interface{}, error) {
  874. return tx.Hash(), nil
  875. }
  876. if fullTx {
  877. formatTx = func(tx *types.Transaction) (interface{}, error) {
  878. return newRPCTransactionFromBlockHash(b, tx.Hash()), nil
  879. }
  880. }
  881. txs := b.Transactions()
  882. transactions := make([]interface{}, len(txs))
  883. var err error
  884. for i, tx := range txs {
  885. if transactions[i], err = formatTx(tx); err != nil {
  886. return nil, err
  887. }
  888. }
  889. fields["transactions"] = transactions
  890. }
  891. uncles := b.Uncles()
  892. uncleHashes := make([]common.Hash, len(uncles))
  893. for i, uncle := range uncles {
  894. uncleHashes[i] = uncle.Hash()
  895. }
  896. fields["uncles"] = uncleHashes
  897. return fields, nil
  898. }
  899. // rpcOutputBlock uses the generalized output filler, then adds the total difficulty field, which requires
  900. // a `PublicBlockchainAPI`.
  901. func (s *PublicBlockChainAPI) rpcOutputBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]interface{}, error) {
  902. fields, err := RPCMarshalBlock(b, inclTx, fullTx)
  903. if err != nil {
  904. return nil, err
  905. }
  906. fields["totalDifficulty"] = (*hexutil.Big)(s.b.GetTd(b.Hash()))
  907. return fields, err
  908. }
  909. // RPCTransaction represents a transaction that will serialize to the RPC representation of a transaction
  910. type RPCTransaction struct {
  911. BlockHash common.Hash `json:"blockHash"`
  912. BlockNumber *hexutil.Big `json:"blockNumber"`
  913. From common.Address `json:"from"`
  914. Gas hexutil.Uint64 `json:"gas"`
  915. GasPrice *hexutil.Big `json:"gasPrice"`
  916. Hash common.Hash `json:"hash"`
  917. Input hexutil.Bytes `json:"input"`
  918. Nonce hexutil.Uint64 `json:"nonce"`
  919. To *common.Address `json:"to"`
  920. TransactionIndex hexutil.Uint `json:"transactionIndex"`
  921. Value *hexutil.Big `json:"value"`
  922. V *hexutil.Big `json:"v"`
  923. R *hexutil.Big `json:"r"`
  924. S *hexutil.Big `json:"s"`
  925. }
  926. // newRPCTransaction returns a transaction that will serialize to the RPC
  927. // representation, with the given location metadata set (if available).
  928. func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber uint64, index uint64) *RPCTransaction {
  929. var signer types.Signer = types.FrontierSigner{}
  930. if tx.Protected() {
  931. signer = types.NewEIP155Signer(tx.ChainId())
  932. }
  933. from, _ := types.Sender(signer, tx)
  934. v, r, s := tx.RawSignatureValues()
  935. result := &RPCTransaction{
  936. From: from,
  937. Gas: hexutil.Uint64(tx.Gas()),
  938. GasPrice: (*hexutil.Big)(tx.GasPrice()),
  939. Hash: tx.Hash(),
  940. Input: hexutil.Bytes(tx.Data()),
  941. Nonce: hexutil.Uint64(tx.Nonce()),
  942. To: tx.To(),
  943. Value: (*hexutil.Big)(tx.Value()),
  944. V: (*hexutil.Big)(v),
  945. R: (*hexutil.Big)(r),
  946. S: (*hexutil.Big)(s),
  947. }
  948. if blockHash != (common.Hash{}) {
  949. result.BlockHash = blockHash
  950. result.BlockNumber = (*hexutil.Big)(new(big.Int).SetUint64(blockNumber))
  951. result.TransactionIndex = hexutil.Uint(index)
  952. }
  953. return result
  954. }
  955. // newRPCPendingTransaction returns a pending transaction that will serialize to the RPC representation
  956. func newRPCPendingTransaction(tx *types.Transaction) *RPCTransaction {
  957. return newRPCTransaction(tx, common.Hash{}, 0, 0)
  958. }
  959. // newRPCTransactionFromBlockIndex returns a transaction that will serialize to the RPC representation.
  960. func newRPCTransactionFromBlockIndex(b *types.Block, index uint64) *RPCTransaction {
  961. txs := b.Transactions()
  962. if index >= uint64(len(txs)) {
  963. return nil
  964. }
  965. return newRPCTransaction(txs[index], b.Hash(), b.NumberU64(), index)
  966. }
  967. // newRPCRawTransactionFromBlockIndex returns the bytes of a transaction given a block and a transaction index.
  968. func newRPCRawTransactionFromBlockIndex(b *types.Block, index uint64) hexutil.Bytes {
  969. txs := b.Transactions()
  970. if index >= uint64(len(txs)) {
  971. return nil
  972. }
  973. blob, _ := rlp.EncodeToBytes(txs[index])
  974. return blob
  975. }
  976. // newRPCTransactionFromBlockHash returns a transaction that will serialize to the RPC representation.
  977. func newRPCTransactionFromBlockHash(b *types.Block, hash common.Hash) *RPCTransaction {
  978. for idx, tx := range b.Transactions() {
  979. if tx.Hash() == hash {
  980. return newRPCTransactionFromBlockIndex(b, uint64(idx))
  981. }
  982. }
  983. return nil
  984. }
  985. // PublicTransactionPoolAPI exposes methods for the RPC interface
  986. type PublicTransactionPoolAPI struct {
  987. b Backend
  988. nonceLock *AddrLocker
  989. }
  990. // NewPublicTransactionPoolAPI creates a new RPC service with methods specific for the transaction pool.
  991. func NewPublicTransactionPoolAPI(b Backend, nonceLock *AddrLocker) *PublicTransactionPoolAPI {
  992. return &PublicTransactionPoolAPI{b, nonceLock}
  993. }
  994. // GetBlockTransactionCountByNumber returns the number of transactions in the block with the given block number.
  995. func (s *PublicTransactionPoolAPI) GetBlockTransactionCountByNumber(ctx context.Context, blockNr rpc.BlockNumber) *hexutil.Uint {
  996. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  997. n := hexutil.Uint(len(block.Transactions()))
  998. return &n
  999. }
  1000. return nil
  1001. }
  1002. // GetBlockTransactionCountByHash returns the number of transactions in the block with the given hash.
  1003. func (s *PublicTransactionPoolAPI) GetBlockTransactionCountByHash(ctx context.Context, blockHash common.Hash) *hexutil.Uint {
  1004. if block, _ := s.b.GetBlock(ctx, blockHash); block != nil {
  1005. n := hexutil.Uint(len(block.Transactions()))
  1006. return &n
  1007. }
  1008. return nil
  1009. }
  1010. // GetTransactionByBlockNumberAndIndex returns the transaction for the given block number and index.
  1011. func (s *PublicTransactionPoolAPI) GetTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) *RPCTransaction {
  1012. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1013. return newRPCTransactionFromBlockIndex(block, uint64(index))
  1014. }
  1015. return nil
  1016. }
  1017. // GetTransactionByBlockHashAndIndex returns the transaction for the given block hash and index.
  1018. func (s *PublicTransactionPoolAPI) GetTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) *RPCTransaction {
  1019. if block, _ := s.b.GetBlock(ctx, blockHash); block != nil {
  1020. return newRPCTransactionFromBlockIndex(block, uint64(index))
  1021. }
  1022. return nil
  1023. }
  1024. // GetRawTransactionByBlockNumberAndIndex returns the bytes of the transaction for the given block number and index.
  1025. func (s *PublicTransactionPoolAPI) GetRawTransactionByBlockNumberAndIndex(ctx context.Context, blockNr rpc.BlockNumber, index hexutil.Uint) hexutil.Bytes {
  1026. if block, _ := s.b.BlockByNumber(ctx, blockNr); block != nil {
  1027. return newRPCRawTransactionFromBlockIndex(block, uint64(index))
  1028. }
  1029. return nil
  1030. }
  1031. // GetRawTransactionByBlockHashAndIndex returns the bytes of the transaction for the given block hash and index.
  1032. func (s *PublicTransactionPoolAPI) GetRawTransactionByBlockHashAndIndex(ctx context.Context, blockHash common.Hash, index hexutil.Uint) hexutil.Bytes {
  1033. if block, _ := s.b.GetBlock(ctx, blockHash); block != nil {
  1034. return newRPCRawTransactionFromBlockIndex(block, uint64(index))
  1035. }
  1036. return nil
  1037. }
  1038. // GetTransactionCount returns the number of transactions the given address has sent for the given block number
  1039. func (s *PublicTransactionPoolAPI) GetTransactionCount(ctx context.Context, address common.Address, blockNr rpc.BlockNumber) (*hexutil.Uint64, error) {
  1040. // Ask transaction pool for the nonce which includes pending transactions
  1041. if blockNr == rpc.PendingBlockNumber {
  1042. nonce, err := s.b.GetPoolNonce(ctx, address)
  1043. if err != nil {
  1044. return nil, err
  1045. }
  1046. return (*hexutil.Uint64)(&nonce), nil
  1047. }
  1048. // Resolve block number and use its state to ask for the nonce
  1049. state, _, err := s.b.StateAndHeaderByNumber(ctx, blockNr)
  1050. if state == nil || err != nil {
  1051. return nil, err
  1052. }
  1053. nonce := state.GetNonce(address)
  1054. return (*hexutil.Uint64)(&nonce), state.Error()
  1055. }
  1056. // GetTransactionByHash returns the transaction for the given hash
  1057. func (s *PublicTransactionPoolAPI) GetTransactionByHash(ctx context.Context, hash common.Hash) (*RPCTransaction, error) {
  1058. // Try to return an already finalized transaction
  1059. tx, blockHash, blockNumber, index, err := s.b.GetTransaction(ctx, hash)
  1060. if err != nil {
  1061. return nil, err
  1062. }
  1063. if tx != nil {
  1064. return newRPCTransaction(tx, blockHash, blockNumber, index), nil
  1065. }
  1066. // No finalized transaction, try to retrieve it from the pool
  1067. if tx := s.b.GetPoolTransaction(hash); tx != nil {
  1068. return newRPCPendingTransaction(tx), nil
  1069. }
  1070. // Transaction unknown, return as such
  1071. return nil, nil
  1072. }
  1073. // GetRawTransactionByHash returns the bytes of the transaction for the given hash.
  1074. func (s *PublicTransactionPoolAPI) GetRawTransactionByHash(ctx context.Context, hash common.Hash) (hexutil.Bytes, error) {
  1075. // Retrieve a finalized transaction, or a pooled otherwise
  1076. tx, _, _, _, err := s.b.GetTransaction(ctx, hash)
  1077. if err != nil {
  1078. return nil, err
  1079. }
  1080. if tx == nil {
  1081. if tx = s.b.GetPoolTransaction(hash); tx == nil {
  1082. // Transaction not found anywhere, abort
  1083. return nil, nil
  1084. }
  1085. }
  1086. // Serialize to RLP and return
  1087. return rlp.EncodeToBytes(tx)
  1088. }
  1089. // GetTransactionReceipt returns the transaction receipt for the given transaction hash.
  1090. func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, hash common.Hash) (map[string]interface{}, error) {
  1091. tx, blockHash, blockNumber, index := rawdb.ReadTransaction(s.b.ChainDb(), hash)
  1092. if tx == nil {
  1093. return nil, nil
  1094. }
  1095. receipts, err := s.b.GetReceipts(ctx, blockHash)
  1096. if err != nil {
  1097. return nil, err
  1098. }
  1099. if len(receipts) <= int(index) {
  1100. return nil, nil
  1101. }
  1102. receipt := receipts[index]
  1103. var signer types.Signer = types.FrontierSigner{}
  1104. if tx.Protected() {
  1105. signer = types.NewEIP155Signer(tx.ChainId())
  1106. }
  1107. from, _ := types.Sender(signer, tx)
  1108. fields := map[string]interface{}{
  1109. "blockHash": blockHash,
  1110. "blockNumber": hexutil.Uint64(blockNumber),
  1111. "transactionHash": hash,
  1112. "transactionIndex": hexutil.Uint64(index),
  1113. "from": from,
  1114. "to": tx.To(),
  1115. "gasUsed": hexutil.Uint64(receipt.GasUsed),
  1116. "cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
  1117. "contractAddress": nil,
  1118. "logs": receipt.Logs,
  1119. "logsBloom": receipt.Bloom,
  1120. }
  1121. // Assign receipt status or post state.
  1122. if len(receipt.PostState) > 0 {
  1123. fields["root"] = hexutil.Bytes(receipt.PostState)
  1124. } else {
  1125. fields["status"] = hexutil.Uint(receipt.Status)
  1126. }
  1127. if receipt.Logs == nil {
  1128. fields["logs"] = [][]*types.Log{}
  1129. }
  1130. // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation
  1131. if receipt.ContractAddress != (common.Address{}) {
  1132. fields["contractAddress"] = receipt.ContractAddress
  1133. }
  1134. return fields, nil
  1135. }
  1136. // sign is a helper function that signs a transaction with the private key of the given address.
  1137. func (s *PublicTransactionPoolAPI) sign(addr common.Address, tx *types.Transaction) (*types.Transaction, error) {
  1138. // Look up the wallet containing the requested signer
  1139. account := accounts.Account{Address: addr}
  1140. wallet, err := s.b.AccountManager().Find(account)
  1141. if err != nil {
  1142. return nil, err
  1143. }
  1144. // Request the wallet to sign the transaction
  1145. return wallet.SignTx(account, tx, s.b.ChainConfig().ChainID)
  1146. }
  1147. // SendTxArgs represents the arguments to sumbit a new transaction into the transaction pool.
  1148. type SendTxArgs struct {
  1149. From common.Address `json:"from"`
  1150. To *common.Address `json:"to"`
  1151. Gas *hexutil.Uint64 `json:"gas"`
  1152. GasPrice *hexutil.Big `json:"gasPrice"`
  1153. Value *hexutil.Big `json:"value"`
  1154. Nonce *hexutil.Uint64 `json:"nonce"`
  1155. // We accept "data" and "input" for backwards-compatibility reasons. "input" is the
  1156. // newer name and should be preferred by clients.
  1157. Data *hexutil.Bytes `json:"data"`
  1158. Input *hexutil.Bytes `json:"input"`
  1159. }
  1160. // setDefaults is a helper function that fills in default values for unspecified tx fields.
  1161. func (args *SendTxArgs) setDefaults(ctx context.Context, b Backend) error {
  1162. if args.GasPrice == nil {
  1163. price, err := b.SuggestPrice(ctx)
  1164. if err != nil {
  1165. return err
  1166. }
  1167. args.GasPrice = (*hexutil.Big)(price)
  1168. }
  1169. if args.Value == nil {
  1170. args.Value = new(hexutil.Big)
  1171. }
  1172. if args.Nonce == nil {
  1173. nonce, err := b.GetPoolNonce(ctx, args.From)
  1174. if err != nil {
  1175. return err
  1176. }
  1177. args.Nonce = (*hexutil.Uint64)(&nonce)
  1178. }
  1179. if args.Data != nil && args.Input != nil && !bytes.Equal(*args.Data, *args.Input) {
  1180. return errors.New(`Both "data" and "input" are set and not equal. Please use "input" to pass transaction call data.`)
  1181. }
  1182. if args.To == nil {
  1183. // Contract creation
  1184. var input []byte
  1185. if args.Data != nil {
  1186. input = *args.Data
  1187. } else if args.Input != nil {
  1188. input = *args.Input
  1189. }
  1190. if len(input) == 0 {
  1191. return errors.New(`contract creation without any data provided`)
  1192. }
  1193. }
  1194. // Estimate the gas usage if necessary.
  1195. if args.Gas == nil {
  1196. // For backwards-compatibility reason, we try both input and data
  1197. // but input is preferred.
  1198. input := args.Input
  1199. if input == nil {
  1200. input = args.Data
  1201. }
  1202. callArgs := CallArgs{
  1203. From: &args.From, // From shouldn't be nil
  1204. To: args.To,
  1205. GasPrice: args.GasPrice,
  1206. Value: args.Value,
  1207. Data: input,
  1208. }
  1209. estimated, err := DoEstimateGas(ctx, b, callArgs, rpc.PendingBlockNumber, b.RPCGasCap())
  1210. if err != nil {
  1211. return err
  1212. }
  1213. args.Gas = &estimated
  1214. log.Trace("Estimate gas usage automatically", "gas", args.Gas)
  1215. }
  1216. return nil
  1217. }
  1218. func (args *SendTxArgs) toTransaction() *types.Transaction {
  1219. var input []byte
  1220. if args.Input != nil {
  1221. input = *args.Input
  1222. } else if args.Data != nil {
  1223. input = *args.Data
  1224. }
  1225. if args.To == nil {
  1226. return types.NewContractCreation(uint64(*args.Nonce), (*big.Int)(args.Value), uint64(*args.Gas), (*big.Int)(args.GasPrice), input)
  1227. }
  1228. return types.NewTransaction(uint64(*args.Nonce), *args.To, (*big.Int)(args.Value), uint64(*args.Gas), (*big.Int)(args.GasPrice), input)
  1229. }
  1230. // SubmitTransaction is a helper function that submits tx to txPool and logs a message.
  1231. func SubmitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (common.Hash, error) {
  1232. if err := b.SendTx(ctx, tx); err != nil {
  1233. return common.Hash{}, err
  1234. }
  1235. if tx.To() == nil {
  1236. signer := types.MakeSigner(b.ChainConfig(), b.CurrentBlock().Number())
  1237. from, err := types.Sender(signer, tx)
  1238. if err != nil {
  1239. return common.Hash{}, err
  1240. }
  1241. addr := crypto.CreateAddress(from, tx.Nonce())
  1242. log.Info("Submitted contract creation", "fullhash", tx.Hash().Hex(), "contract", addr.Hex())
  1243. } else {
  1244. log.Info("Submitted transaction", "fullhash", tx.Hash().Hex(), "recipient", tx.To())
  1245. }
  1246. return tx.Hash(), nil
  1247. }
  1248. // SendTransaction creates a transaction for the given argument, sign it and submit it to the
  1249. // transaction pool.
  1250. func (s *PublicTransactionPoolAPI) SendTransaction(ctx context.Context, args SendTxArgs) (common.Hash, error) {
  1251. // Look up the wallet containing the requested signer
  1252. account := accounts.Account{Address: args.From}
  1253. wallet, err := s.b.AccountManager().Find(account)
  1254. if err != nil {
  1255. return common.Hash{}, err
  1256. }
  1257. if args.Nonce == nil {
  1258. // Hold the addresse's mutex around signing to prevent concurrent assignment of
  1259. // the same nonce to multiple accounts.
  1260. s.nonceLock.LockAddr(args.From)
  1261. defer s.nonceLock.UnlockAddr(args.From)
  1262. }
  1263. // Set some sanity defaults and terminate on failure
  1264. if err := args.setDefaults(ctx, s.b); err != nil {
  1265. return common.Hash{}, err
  1266. }
  1267. // Assemble the transaction and sign with the wallet
  1268. tx := args.toTransaction()
  1269. signed, err := wallet.SignTx(account, tx, s.b.ChainConfig().ChainID)
  1270. if err != nil {
  1271. return common.Hash{}, err
  1272. }
  1273. return SubmitTransaction(ctx, s.b, signed)
  1274. }
  1275. // SendRawTransaction will add the signed transaction to the transaction pool.
  1276. // The sender is responsible for signing the transaction and using the correct nonce.
  1277. func (s *PublicTransactionPoolAPI) SendRawTransaction(ctx context.Context, encodedTx hexutil.Bytes) (common.Hash, error) {
  1278. tx := new(types.Transaction)
  1279. if err := rlp.DecodeBytes(encodedTx, tx); err != nil {
  1280. return common.Hash{}, err
  1281. }
  1282. return SubmitTransaction(ctx, s.b, tx)
  1283. }
  1284. // Sign calculates an ECDSA signature for:
  1285. // keccack256("\x19Ethereum Signed Message:\n" + len(message) + message).
  1286. //
  1287. // Note, the produced signature conforms to the secp256k1 curve R, S and V values,
  1288. // where the V value will be 27 or 28 for legacy reasons.
  1289. //
  1290. // The account associated with addr must be unlocked.
  1291. //
  1292. // https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign
  1293. func (s *PublicTransactionPoolAPI) Sign(addr common.Address, data hexutil.Bytes) (hexutil.Bytes, error) {
  1294. // Look up the wallet containing the requested signer
  1295. account := accounts.Account{Address: addr}
  1296. wallet, err := s.b.AccountManager().Find(account)
  1297. if err != nil {
  1298. return nil, err
  1299. }
  1300. // Sign the requested hash with the wallet
  1301. signature, err := wallet.SignText(account, data)
  1302. if err == nil {
  1303. signature[64] += 27 // Transform V from 0/1 to 27/28 according to the yellow paper
  1304. }
  1305. return signature, err
  1306. }
  1307. // SignTransactionResult represents a RLP encoded signed transaction.
  1308. type SignTransactionResult struct {
  1309. Raw hexutil.Bytes `json:"raw"`
  1310. Tx *types.Transaction `json:"tx"`
  1311. }
  1312. // SignTransaction will sign the given transaction with the from account.
  1313. // The node needs to have the private key of the account corresponding with
  1314. // the given from address and it needs to be unlocked.
  1315. func (s *PublicTransactionPoolAPI) SignTransaction(ctx context.Context, args SendTxArgs) (*SignTransactionResult, error) {
  1316. if args.Gas == nil {
  1317. return nil, fmt.Errorf("gas not specified")
  1318. }
  1319. if args.GasPrice == nil {
  1320. return nil, fmt.Errorf("gasPrice not specified")
  1321. }
  1322. if args.Nonce == nil {
  1323. return nil, fmt.Errorf("nonce not specified")
  1324. }
  1325. if err := args.setDefaults(ctx, s.b); err != nil {
  1326. return nil, err
  1327. }
  1328. tx, err := s.sign(args.From, args.toTransaction())
  1329. if err != nil {
  1330. return nil, err
  1331. }
  1332. data, err := rlp.EncodeToBytes(tx)
  1333. if err != nil {
  1334. return nil, err
  1335. }
  1336. return &SignTransactionResult{data, tx}, nil
  1337. }
  1338. // PendingTransactions returns the transactions that are in the transaction pool
  1339. // and have a from address that is one of the accounts this node manages.
  1340. func (s *PublicTransactionPoolAPI) PendingTransactions() ([]*RPCTransaction, error) {
  1341. pending, err := s.b.GetPoolTransactions()
  1342. if err != nil {
  1343. return nil, err
  1344. }
  1345. accounts := make(map[common.Address]struct{})
  1346. for _, wallet := range s.b.AccountManager().Wallets() {
  1347. for _, account := range wallet.Accounts() {
  1348. accounts[account.Address] = struct{}{}
  1349. }
  1350. }
  1351. transactions := make([]*RPCTransaction, 0, len(pending))
  1352. for _, tx := range pending {
  1353. var signer types.Signer = types.HomesteadSigner{}
  1354. if tx.Protected() {
  1355. signer = types.NewEIP155Signer(tx.ChainId())
  1356. }
  1357. from, _ := types.Sender(signer, tx)
  1358. if _, exists := accounts[from]; exists {
  1359. transactions = append(transactions, newRPCPendingTransaction(tx))
  1360. }
  1361. }
  1362. return transactions, nil
  1363. }
  1364. // Resend accepts an existing transaction and a new gas price and limit. It will remove
  1365. // the given transaction from the pool and reinsert it with the new gas price and limit.
  1366. func (s *PublicTransactionPoolAPI) Resend(ctx context.Context, sendArgs SendTxArgs, gasPrice *hexutil.Big, gasLimit *hexutil.Uint64) (common.Hash, error) {
  1367. if sendArgs.Nonce == nil {
  1368. return common.Hash{}, fmt.Errorf("missing transaction nonce in transaction spec")
  1369. }
  1370. if err := sendArgs.setDefaults(ctx, s.b); err != nil {
  1371. return common.Hash{}, err
  1372. }
  1373. matchTx := sendArgs.toTransaction()
  1374. pending, err := s.b.GetPoolTransactions()
  1375. if err != nil {
  1376. return common.Hash{}, err
  1377. }
  1378. for _, p := range pending {
  1379. var signer types.Signer = types.HomesteadSigner{}
  1380. if p.Protected() {
  1381. signer = types.NewEIP155Signer(p.ChainId())
  1382. }
  1383. wantSigHash := signer.Hash(matchTx)
  1384. if pFrom, err := types.Sender(signer, p); err == nil && pFrom == sendArgs.From && signer.Hash(p) == wantSigHash {
  1385. // Match. Re-sign and send the transaction.
  1386. if gasPrice != nil && (*big.Int)(gasPrice).Sign() != 0 {
  1387. sendArgs.GasPrice = gasPrice
  1388. }
  1389. if gasLimit != nil && *gasLimit != 0 {
  1390. sendArgs.Gas = gasLimit
  1391. }
  1392. signedTx, err := s.sign(sendArgs.From, sendArgs.toTransaction())
  1393. if err != nil {
  1394. return common.Hash{}, err
  1395. }
  1396. if err = s.b.SendTx(ctx, signedTx); err != nil {
  1397. return common.Hash{}, err
  1398. }
  1399. return signedTx.Hash(), nil
  1400. }
  1401. }
  1402. return common.Hash{}, fmt.Errorf("Transaction %#x not found", matchTx.Hash())
  1403. }
  1404. // PublicDebugAPI is the collection of Ethereum APIs exposed over the public
  1405. // debugging endpoint.
  1406. type PublicDebugAPI struct {
  1407. b Backend
  1408. }
  1409. // NewPublicDebugAPI creates a new API definition for the public debug methods
  1410. // of the Ethereum service.
  1411. func NewPublicDebugAPI(b Backend) *PublicDebugAPI {
  1412. return &PublicDebugAPI{b: b}
  1413. }
  1414. // GetBlockRlp retrieves the RLP encoded for of a single block.
  1415. func (api *PublicDebugAPI) GetBlockRlp(ctx context.Context, number uint64) (string, error) {
  1416. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  1417. if block == nil {
  1418. return "", fmt.Errorf("block #%d not found", number)
  1419. }
  1420. encoded, err := rlp.EncodeToBytes(block)
  1421. if err != nil {
  1422. return "", err
  1423. }
  1424. return fmt.Sprintf("%x", encoded), nil
  1425. }
  1426. // TestSignCliqueBlock fetches the given block number, and attempts to sign it as a clique header with the
  1427. // given address, returning the address of the recovered signature
  1428. //
  1429. // This is a temporary method to debug the externalsigner integration,
  1430. // TODO: Remove this method when the integration is mature
  1431. func (api *PublicDebugAPI) TestSignCliqueBlock(ctx context.Context, address common.Address, number uint64) (common.Address, error) {
  1432. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  1433. if block == nil {
  1434. return common.Address{}, fmt.Errorf("block #%d not found", number)
  1435. }
  1436. header := block.Header()
  1437. header.Extra = make([]byte, 32+65)
  1438. encoded := clique.CliqueRLP(header)
  1439. // Look up the wallet containing the requested signer
  1440. account := accounts.Account{Address: address}
  1441. wallet, err := api.b.AccountManager().Find(account)
  1442. if err != nil {
  1443. return common.Address{}, err
  1444. }
  1445. signature, err := wallet.SignData(account, accounts.MimetypeClique, encoded)
  1446. if err != nil {
  1447. return common.Address{}, err
  1448. }
  1449. sealHash := clique.SealHash(header).Bytes()
  1450. log.Info("test signing of clique block",
  1451. "Sealhash", fmt.Sprintf("%x", sealHash),
  1452. "signature", fmt.Sprintf("%x", signature))
  1453. pubkey, err := crypto.Ecrecover(sealHash, signature)
  1454. if err != nil {
  1455. return common.Address{}, err
  1456. }
  1457. var signer common.Address
  1458. copy(signer[:], crypto.Keccak256(pubkey[1:])[12:])
  1459. return signer, nil
  1460. }
  1461. // PrintBlock retrieves a block and returns its pretty printed form.
  1462. func (api *PublicDebugAPI) PrintBlock(ctx context.Context, number uint64) (string, error) {
  1463. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  1464. if block == nil {
  1465. return "", fmt.Errorf("block #%d not found", number)
  1466. }
  1467. return spew.Sdump(block), nil
  1468. }
  1469. // SeedHash retrieves the seed hash of a block.
  1470. func (api *PublicDebugAPI) SeedHash(ctx context.Context, number uint64) (string, error) {
  1471. block, _ := api.b.BlockByNumber(ctx, rpc.BlockNumber(number))
  1472. if block == nil {
  1473. return "", fmt.Errorf("block #%d not found", number)
  1474. }
  1475. return fmt.Sprintf("0x%x", ethash.SeedHash(number)), nil
  1476. }
  1477. // PrivateDebugAPI is the collection of Ethereum APIs exposed over the private
  1478. // debugging endpoint.
  1479. type PrivateDebugAPI struct {
  1480. b Backend
  1481. }
  1482. // NewPrivateDebugAPI creates a new API definition for the private debug methods
  1483. // of the Ethereum service.
  1484. func NewPrivateDebugAPI(b Backend) *PrivateDebugAPI {
  1485. return &PrivateDebugAPI{b: b}
  1486. }
  1487. // ChaindbProperty returns leveldb properties of the key-value database.
  1488. func (api *PrivateDebugAPI) ChaindbProperty(property string) (string, error) {
  1489. if property == "" {
  1490. property = "leveldb.stats"
  1491. } else if !strings.HasPrefix(property, "leveldb.") {
  1492. property = "leveldb." + property
  1493. }
  1494. return api.b.ChainDb().Stat(property)
  1495. }
  1496. // ChaindbCompact flattens the entire key-value database into a single level,
  1497. // removing all unused slots and merging all keys.
  1498. func (api *PrivateDebugAPI) ChaindbCompact() error {
  1499. for b := byte(0); b < 255; b++ {
  1500. log.Info("Compacting chain database", "range", fmt.Sprintf("0x%0.2X-0x%0.2X", b, b+1))
  1501. if err := api.b.ChainDb().Compact([]byte{b}, []byte{b + 1}); err != nil {
  1502. log.Error("Database compaction failed", "err", err)
  1503. return err
  1504. }
  1505. }
  1506. return nil
  1507. }
  1508. // SetHead rewinds the head of the blockchain to a previous block.
  1509. func (api *PrivateDebugAPI) SetHead(number hexutil.Uint64) {
  1510. api.b.SetHead(uint64(number))
  1511. }
  1512. // PublicNetAPI offers network related RPC methods
  1513. type PublicNetAPI struct {
  1514. net *p2p.Server
  1515. networkVersion uint64
  1516. }
  1517. // NewPublicNetAPI creates a new net API instance.
  1518. func NewPublicNetAPI(net *p2p.Server, networkVersion uint64) *PublicNetAPI {
  1519. return &PublicNetAPI{net, networkVersion}
  1520. }
  1521. // Listening returns an indication if the node is listening for network connections.
  1522. func (s *PublicNetAPI) Listening() bool {
  1523. return true // always listening
  1524. }
  1525. // PeerCount returns the number of connected peers
  1526. func (s *PublicNetAPI) PeerCount() hexutil.Uint {
  1527. return hexutil.Uint(s.net.PeerCount())
  1528. }
  1529. // Version returns the current ethereum protocol version.
  1530. func (s *PublicNetAPI) Version() string {
  1531. return fmt.Sprintf("%d", s.networkVersion)
  1532. }