2015-12-16 03:58:01 -06:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2023-05-02 03:57:07 -05:00
|
|
|
// Package web3ext contains geth specific web3.js extensions.
|
2016-04-15 10:36:01 -05:00
|
|
|
package web3ext
|
2015-12-16 03:58:01 -06:00
|
|
|
|
2016-04-15 10:36:01 -05:00
|
|
|
var Modules = map[string]string{
|
all: remove `personal` RPC namespace (#30704)
This PR is a first step towards removing account management from geth,
and contains a lot of the user-facing changes.
With this PR, the `personal` namespace disappears. **Note**: `personal`
namespace has been deprecated for quite some time (since
https://github.com/ethereum/go-ethereum/pull/26390 1 year and 8 months
ago), and users who have wanted to use it has been forced to used the
flag `--rpc.enabledeprecatedpersonal`. So I think it's fairly
non-controversial to drop it at this point.
Specifically, this means:
- Account/wallet listing
-`personal.getListAccounts`
-`personal.listAccounts`
-`personal.getListWallets`
-`personal.listWallets`
- Lock/unlock
-`personal.lockAccount`
-`personal.openWallet`
-`personal.unlockAccount`
- Sign ops
-`personal.sign`
-`personal.sendTransaction`
-`personal.signTransaction`
- Imports / inits
-`personal.deriveAccount`
-`personal.importRawKey`
-`personal.initializeWallet`
-`personal.newAccount`
-`personal.unpair`
- Other:
-`personal.ecRecover`
The underlying keystores and account managent code is still in place,
which means that `geth --dev` still works as expected, so that e.g. the
example below still works:
```
> eth.sendTransaction({data:"0x6060", value: 1, from:eth.accounts[0]})
```
Also, `ethkey` and `clef` are untouched.
With the removal of `personal`, as far as I know we have no more API
methods which contain credentials, and if we want to implement
logging-capabilities of RPC ingress payload, it would be possible after
this.
---------
Co-authored-by: Felix Lange <fjl@twurst.com>
2024-10-31 13:53:35 -05:00
|
|
|
"admin": AdminJs,
|
|
|
|
"clique": CliqueJs,
|
|
|
|
"debug": DebugJs,
|
|
|
|
"eth": EthJs,
|
|
|
|
"miner": MinerJs,
|
|
|
|
"net": NetJs,
|
|
|
|
"rpc": RpcJs,
|
|
|
|
"txpool": TxpoolJs,
|
|
|
|
"dev": DevJs,
|
2016-04-15 10:36:01 -05:00
|
|
|
}
|
2015-12-16 03:58:01 -06:00
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const CliqueJs = `
|
2017-04-10 05:24:12 -05:00
|
|
|
web3._extend({
|
2017-09-11 02:33:18 -05:00
|
|
|
property: 'clique',
|
|
|
|
methods: [
|
2017-04-10 05:24:12 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getSnapshot',
|
|
|
|
call: 'clique_getSnapshot',
|
|
|
|
params: 1,
|
2020-03-18 08:23:16 -05:00
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
2017-04-10 05:24:12 -05:00
|
|
|
}),
|
2017-04-12 07:37:10 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getSnapshotAtHash',
|
|
|
|
call: 'clique_getSnapshotAtHash',
|
|
|
|
params: 1
|
|
|
|
}),
|
2017-09-11 02:33:18 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getSigners',
|
|
|
|
call: 'clique_getSigners',
|
|
|
|
params: 1,
|
2020-03-18 08:23:16 -05:00
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2017-04-12 07:37:10 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getSignersAtHash',
|
|
|
|
call: 'clique_getSignersAtHash',
|
|
|
|
params: 1
|
|
|
|
}),
|
2017-04-10 05:24:12 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'propose',
|
|
|
|
call: 'clique_propose',
|
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'discard',
|
|
|
|
call: 'clique_discard',
|
|
|
|
params: 1
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2019-11-19 11:22:04 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'status',
|
|
|
|
call: 'clique_status',
|
|
|
|
params: 0
|
|
|
|
}),
|
2021-07-13 06:40:22 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getSigner',
|
|
|
|
call: 'clique_getSigner',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [null]
|
|
|
|
}),
|
2017-09-11 02:33:18 -05:00
|
|
|
],
|
|
|
|
properties: [
|
2017-04-10 05:24:12 -05:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'proposals',
|
|
|
|
getter: 'clique_proposals'
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const AdminJs = `
|
2015-12-16 03:58:01 -06:00
|
|
|
web3._extend({
|
|
|
|
property: 'admin',
|
2017-09-11 02:33:18 -05:00
|
|
|
methods: [
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'addPeer',
|
|
|
|
call: 'admin_addPeer',
|
|
|
|
params: 1
|
|
|
|
}),
|
2016-06-24 15:27:55 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'removePeer',
|
|
|
|
call: 'admin_removePeer',
|
|
|
|
params: 1
|
|
|
|
}),
|
2018-02-25 14:39:29 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'addTrustedPeer',
|
|
|
|
call: 'admin_addTrustedPeer',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'removeTrustedPeer',
|
|
|
|
call: 'admin_removeTrustedPeer',
|
|
|
|
params: 1
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'exportChain',
|
|
|
|
call: 'admin_exportChain',
|
2019-12-17 05:10:15 -06:00
|
|
|
params: 3,
|
|
|
|
inputFormatter: [null, null, null]
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'importChain',
|
|
|
|
call: 'admin_importChain',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'sleepBlocks',
|
|
|
|
call: 'admin_sleepBlocks',
|
|
|
|
params: 2
|
|
|
|
}),
|
2021-03-23 04:41:23 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'startHTTP',
|
|
|
|
call: 'admin_startHTTP',
|
|
|
|
params: 5,
|
|
|
|
inputFormatter: [null, null, null, null, null]
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'stopHTTP',
|
|
|
|
call: 'admin_stopHTTP'
|
|
|
|
}),
|
|
|
|
// This method is deprecated.
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'startRPC',
|
|
|
|
call: 'admin_startRPC',
|
2021-03-23 04:41:23 -05:00
|
|
|
params: 5,
|
|
|
|
inputFormatter: [null, null, null, null, null]
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
2021-03-23 04:41:23 -05:00
|
|
|
// This method is deprecated.
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'stopRPC',
|
2016-03-14 03:38:54 -05:00
|
|
|
call: 'admin_stopRPC'
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'startWS',
|
|
|
|
call: 'admin_startWS',
|
2016-03-14 03:38:54 -05:00
|
|
|
params: 4,
|
|
|
|
inputFormatter: [null, null, null, null]
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'stopWS',
|
2016-03-14 03:38:54 -05:00
|
|
|
call: 'admin_stopWS'
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
],
|
2017-09-11 02:33:18 -05:00
|
|
|
properties: [
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'nodeInfo',
|
|
|
|
getter: 'admin_nodeInfo'
|
|
|
|
}),
|
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'peers',
|
|
|
|
getter: 'admin_peers'
|
|
|
|
}),
|
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'datadir',
|
|
|
|
getter: 'admin_datadir'
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const DebugJs = `
|
2015-12-16 03:58:01 -06:00
|
|
|
web3._extend({
|
|
|
|
property: 'debug',
|
2017-09-11 02:33:18 -05:00
|
|
|
methods: [
|
2019-11-29 04:46:12 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'accountRange',
|
|
|
|
call: 'debug_accountRange',
|
2020-06-11 08:41:43 -05:00
|
|
|
params: 6,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputDefaultBlockNumberFormatter, null, null, null, null, null],
|
2019-11-29 04:46:12 -06:00
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'printBlock',
|
|
|
|
call: 'debug_printBlock',
|
2020-10-13 06:24:08 -05:00
|
|
|
params: 1,
|
|
|
|
outputFormatter: console.log
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
2021-10-01 03:45:47 -05:00
|
|
|
new web3._extend.Method({
|
2022-08-25 03:41:37 -05:00
|
|
|
name: 'getRawHeader',
|
|
|
|
call: 'debug_getRawHeader',
|
2021-10-01 03:45:47 -05:00
|
|
|
params: 1
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
2022-08-25 03:41:37 -05:00
|
|
|
name: 'getRawBlock',
|
|
|
|
call: 'debug_getRawBlock',
|
2015-12-16 03:58:01 -06:00
|
|
|
params: 1
|
|
|
|
}),
|
2022-05-14 15:33:41 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getRawReceipts',
|
|
|
|
call: 'debug_getRawReceipts',
|
|
|
|
params: 1
|
|
|
|
}),
|
2022-08-25 03:41:37 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getRawTransaction',
|
|
|
|
call: 'debug_getRawTransaction',
|
|
|
|
params: 1
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setHead',
|
|
|
|
call: 'debug_setHead',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'seedHash',
|
|
|
|
call: 'debug_seedHash',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'dumpBlock',
|
|
|
|
call: 'debug_dumpBlock',
|
2020-10-13 06:24:08 -05:00
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
2016-02-20 07:36:34 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'chaindbProperty',
|
|
|
|
call: 'debug_chaindbProperty',
|
|
|
|
outputFormatter: console.log
|
|
|
|
}),
|
2016-10-20 07:36:48 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'chaindbCompact',
|
|
|
|
call: 'debug_chaindbCompact',
|
|
|
|
}),
|
2016-01-26 07:39:21 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'verbosity',
|
|
|
|
call: 'debug_verbosity',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'vmodule',
|
|
|
|
call: 'debug_vmodule',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'backtraceAt',
|
|
|
|
call: 'debug_backtraceAt',
|
|
|
|
params: 1,
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'stacks',
|
|
|
|
call: 'debug_stacks',
|
2021-09-20 08:29:07 -05:00
|
|
|
params: 1,
|
|
|
|
inputFormatter: [null],
|
2016-01-26 07:39:21 -06:00
|
|
|
outputFormatter: console.log
|
|
|
|
}),
|
2017-09-11 02:33:18 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'freeOSMemory',
|
|
|
|
call: 'debug_freeOSMemory',
|
|
|
|
params: 0,
|
|
|
|
}),
|
2017-09-11 05:29:47 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setGCPercent',
|
|
|
|
call: 'debug_setGCPercent',
|
|
|
|
params: 1,
|
|
|
|
}),
|
2016-02-20 08:42:22 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'memStats',
|
|
|
|
call: 'debug_memStats',
|
|
|
|
params: 0,
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'gcStats',
|
|
|
|
call: 'debug_gcStats',
|
|
|
|
params: 0,
|
|
|
|
}),
|
2016-01-26 07:39:21 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'cpuProfile',
|
|
|
|
call: 'debug_cpuProfile',
|
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'startCPUProfile',
|
|
|
|
call: 'debug_startCPUProfile',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'stopCPUProfile',
|
|
|
|
call: 'debug_stopCPUProfile',
|
|
|
|
params: 0
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
2016-05-06 03:24:16 -05:00
|
|
|
name: 'goTrace',
|
|
|
|
call: 'debug_goTrace',
|
2016-01-26 07:39:21 -06:00
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
2016-05-06 04:15:05 -05:00
|
|
|
name: 'startGoTrace',
|
|
|
|
call: 'debug_startGoTrace',
|
2016-01-26 07:39:21 -06:00
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
2016-05-06 04:15:05 -05:00
|
|
|
name: 'stopGoTrace',
|
|
|
|
call: 'debug_stopGoTrace',
|
2016-01-26 07:39:21 -06:00
|
|
|
params: 0
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'blockProfile',
|
|
|
|
call: 'debug_blockProfile',
|
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setBlockProfileRate',
|
|
|
|
call: 'debug_setBlockProfileRate',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'writeBlockProfile',
|
|
|
|
call: 'debug_writeBlockProfile',
|
|
|
|
params: 1
|
|
|
|
}),
|
2018-03-02 17:52:21 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'mutexProfile',
|
|
|
|
call: 'debug_mutexProfile',
|
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
2018-06-13 07:10:20 -05:00
|
|
|
name: 'setMutexProfileFraction',
|
|
|
|
call: 'debug_setMutexProfileFraction',
|
2018-03-02 17:52:21 -06:00
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'writeMutexProfile',
|
|
|
|
call: 'debug_writeMutexProfile',
|
|
|
|
params: 1
|
|
|
|
}),
|
2016-01-26 07:39:21 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'writeMemProfile',
|
|
|
|
call: 'debug_writeMemProfile',
|
|
|
|
params: 1
|
|
|
|
}),
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 05:56:11 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceBlock',
|
|
|
|
call: 'debug_traceBlock',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null]
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceBlockFromFile',
|
|
|
|
call: 'debug_traceBlockFromFile',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null]
|
|
|
|
}),
|
2018-10-04 10:15:37 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceBadBlock',
|
|
|
|
call: 'debug_traceBadBlock',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [null]
|
|
|
|
}),
|
2018-10-15 05:28:44 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'standardTraceBadBlockToFile',
|
|
|
|
call: 'debug_standardTraceBadBlockToFile',
|
|
|
|
params: 2,
|
2018-12-10 04:32:40 -06:00
|
|
|
inputFormatter: [null, null]
|
2018-10-15 05:28:44 -05:00
|
|
|
}),
|
2021-09-28 05:53:11 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'intermediateRoots',
|
|
|
|
call: 'debug_intermediateRoots',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null]
|
|
|
|
}),
|
2018-10-15 05:28:44 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'standardTraceBlockToFile',
|
|
|
|
call: 'debug_standardTraceBlockToFile',
|
|
|
|
params: 2,
|
2018-12-10 04:32:40 -06:00
|
|
|
inputFormatter: [null, null]
|
2018-10-15 05:28:44 -05:00
|
|
|
}),
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 05:56:11 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceBlockByNumber',
|
|
|
|
call: 'debug_traceBlockByNumber',
|
|
|
|
params: 2,
|
2020-10-13 06:24:08 -05:00
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter, null]
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 05:56:11 -06:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceBlockByHash',
|
|
|
|
call: 'debug_traceBlockByHash',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null]
|
|
|
|
}),
|
2016-01-28 12:21:05 -06:00
|
|
|
new web3._extend.Method({
|
2016-02-03 16:47:58 -06:00
|
|
|
name: 'traceTransaction',
|
|
|
|
call: 'debug_traceTransaction',
|
2016-08-22 09:03:30 -05:00
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null]
|
2017-01-17 05:19:50 -06:00
|
|
|
}),
|
2020-09-07 03:52:01 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'traceCall',
|
|
|
|
call: 'debug_traceCall',
|
|
|
|
params: 3,
|
|
|
|
inputFormatter: [null, null, null]
|
|
|
|
}),
|
2017-01-17 05:19:50 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'preimage',
|
|
|
|
call: 'debug_preimage',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [null]
|
2017-02-13 14:44:06 -06:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getBadBlocks',
|
|
|
|
call: 'debug_getBadBlocks',
|
|
|
|
params: 0,
|
|
|
|
}),
|
2017-04-19 05:09:04 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'storageRangeAt',
|
|
|
|
call: 'debug_storageRangeAt',
|
|
|
|
params: 5,
|
|
|
|
}),
|
2017-11-20 09:18:50 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getModifiedAccountsByNumber',
|
|
|
|
call: 'debug_getModifiedAccountsByNumber',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, null],
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getModifiedAccountsByHash',
|
|
|
|
call: 'debug_getModifiedAccountsByHash',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter:[null, null],
|
|
|
|
}),
|
2019-11-13 16:47:03 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'freezeClient',
|
|
|
|
call: 'debug_freezeClient',
|
|
|
|
params: 1,
|
|
|
|
}),
|
2021-10-05 01:13:00 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getAccessibleState',
|
|
|
|
call: 'debug_getAccessibleState',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter:[web3._extend.formatters.inputBlockNumberFormatter, web3._extend.formatters.inputBlockNumberFormatter],
|
|
|
|
}),
|
2022-04-27 01:37:48 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'dbGet',
|
|
|
|
call: 'debug_dbGet',
|
|
|
|
params: 1
|
|
|
|
}),
|
2022-05-18 09:27:17 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'dbAncient',
|
|
|
|
call: 'debug_dbAncient',
|
|
|
|
params: 2
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'dbAncients',
|
|
|
|
call: 'debug_dbAncients',
|
|
|
|
params: 0
|
|
|
|
}),
|
core,eth: add `debug_setTrieFlushInterval` to change trie flush frequency (#24785)
This PR makes it possible to modify the flush interval time via RPC. On one extreme, `0s`, it would act as an archive node. If set to `1h`, means that after one hour of effective block processing time, the trie would be flushed. If one block takes 200ms, this means that a flush would occur every `5*3600=18000` blocks -- however, if the memory size of the cached states grows too large, it will flush sooner.
Essentially, this makes it possible to configure the node to be more or less "archive:ish", and without restarting the node while reconfiguring it.
2022-12-09 06:40:17 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setTrieFlushInterval',
|
|
|
|
call: 'debug_setTrieFlushInterval',
|
|
|
|
params: 1
|
|
|
|
}),
|
2023-06-06 07:41:44 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getTrieFlushInterval',
|
|
|
|
call: 'debug_getTrieFlushInterval',
|
|
|
|
params: 0
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
],
|
2016-03-01 11:22:26 -06:00
|
|
|
properties: []
|
2015-12-16 03:58:01 -06:00
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const EthJs = `
|
2016-05-11 03:49:44 -05:00
|
|
|
web3._extend({
|
|
|
|
property: 'eth',
|
2017-09-11 02:33:18 -05:00
|
|
|
methods: [
|
2018-09-29 15:07:02 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'chainId',
|
|
|
|
call: 'eth_chainId',
|
|
|
|
params: 0
|
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'sign',
|
|
|
|
call: 'eth_sign',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputAddressFormatter, null]
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'resend',
|
|
|
|
call: 'eth_resend',
|
|
|
|
params: 3,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputTransactionFormatter, web3._extend.utils.fromDecimal, web3._extend.utils.fromDecimal]
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'signTransaction',
|
|
|
|
call: 'eth_signTransaction',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputTransactionFormatter]
|
|
|
|
}),
|
2020-09-23 06:08:40 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'estimateGas',
|
|
|
|
call: 'eth_estimateGas',
|
2023-08-07 09:03:57 -05:00
|
|
|
params: 3,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputCallFormatter, web3._extend.formatters.inputBlockNumberFormatter, null],
|
2020-09-23 06:08:40 -05:00
|
|
|
outputFormatter: web3._extend.utils.toDecimal
|
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'submitTransaction',
|
|
|
|
call: 'eth_submitTransaction',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputTransactionFormatter]
|
2016-10-06 17:38:00 -05:00
|
|
|
}),
|
2019-08-08 03:22:10 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'fillTransaction',
|
|
|
|
call: 'eth_fillTransaction',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputTransactionFormatter]
|
|
|
|
}),
|
2019-07-23 08:52:24 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getHeaderByNumber',
|
|
|
|
call: 'eth_getHeaderByNumber',
|
2020-10-13 06:24:08 -05:00
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter]
|
2019-07-23 08:52:24 -05:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getHeaderByHash',
|
|
|
|
call: 'eth_getHeaderByHash',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getBlockByNumber',
|
|
|
|
call: 'eth_getBlockByNumber',
|
2020-09-28 07:28:38 -05:00
|
|
|
params: 2,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter, function (val) { return !!val; }]
|
2019-07-23 08:52:24 -05:00
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getBlockByHash',
|
|
|
|
call: 'eth_getBlockByHash',
|
2020-09-28 07:28:38 -05:00
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, function (val) { return !!val; }]
|
2019-07-23 08:52:24 -05:00
|
|
|
}),
|
2016-10-06 17:38:00 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getRawTransaction',
|
|
|
|
call: 'eth_getRawTransactionByHash',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getRawTransactionFromBlock',
|
|
|
|
call: function(args) {
|
|
|
|
return (web3._extend.utils.isString(args[0]) && args[0].indexOf('0x') === 0) ? 'eth_getRawTransactionByBlockHashAndIndex' : 'eth_getRawTransactionByBlockNumberAndIndex';
|
|
|
|
},
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputBlockNumberFormatter, web3._extend.utils.toHex]
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2018-11-08 06:18:38 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getProof',
|
|
|
|
call: 'eth_getProof',
|
|
|
|
params: 3,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputAddressFormatter, null, web3._extend.formatters.inputBlockNumberFormatter]
|
|
|
|
}),
|
2021-04-07 09:54:31 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'createAccessList',
|
|
|
|
call: 'eth_createAccessList',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, web3._extend.formatters.inputBlockNumberFormatter],
|
|
|
|
}),
|
2021-06-28 09:16:32 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'feeHistory',
|
|
|
|
call: 'eth_feeHistory',
|
|
|
|
params: 3,
|
|
|
|
inputFormatter: [null, web3._extend.formatters.inputBlockNumberFormatter, null]
|
|
|
|
}),
|
2022-01-27 03:56:04 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getLogs',
|
|
|
|
call: 'eth_getLogs',
|
|
|
|
params: 1,
|
|
|
|
}),
|
2022-11-28 04:03:20 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'call',
|
|
|
|
call: 'eth_call',
|
2023-05-02 03:28:43 -05:00
|
|
|
params: 4,
|
|
|
|
inputFormatter: [web3._extend.formatters.inputCallFormatter, web3._extend.formatters.inputDefaultBlockNumberFormatter, null, null],
|
2022-11-28 04:03:20 -06:00
|
|
|
}),
|
2024-09-06 04:31:00 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'simulateV1',
|
|
|
|
call: 'eth_simulateV1',
|
|
|
|
params: 2,
|
|
|
|
inputFormatter: [null, web3._extend.formatters.inputDefaultBlockNumberFormatter],
|
|
|
|
}),
|
2023-08-15 07:35:48 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'getBlockReceipts',
|
|
|
|
call: 'eth_getBlockReceipts',
|
|
|
|
params: 1,
|
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
],
|
2017-09-11 02:33:18 -05:00
|
|
|
properties: [
|
2016-05-11 03:49:44 -05:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'pendingTransactions',
|
|
|
|
getter: 'eth_pendingTransactions',
|
|
|
|
outputFormatter: function(txs) {
|
|
|
|
var formatted = [];
|
|
|
|
for (var i = 0; i < txs.length; i++) {
|
|
|
|
formatted.push(web3._extend.formatters.outputTransactionFormatter(txs[i]));
|
|
|
|
formatted[i].blockHash = null;
|
|
|
|
}
|
|
|
|
return formatted;
|
|
|
|
}
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
core, eth, internal, les: RPC methods and fields for EIP 1559 (#22964)
* internal/ethapi: add baseFee to RPCMarshalHeader
* internal/ethapi: add FeeCap, Tip and correct GasPrice to EIP-1559 RPCTransaction results
* core,eth,les,internal: add support for tip estimation in gas price oracle
* internal/ethapi,eth/gasprice: don't suggest tip larger than fee cap
* core/types,internal: use correct eip1559 terminology for json marshalling
* eth, internal/ethapi: fix rebase problems
* internal/ethapi: fix rpc name of basefee
* internal/ethapi: address review concerns
* core, eth, internal, les: simplify gasprice oracle (#25)
* core, eth, internal, les: simplify gasprice oracle
* eth/gasprice: fix typo
* internal/ethapi: minor tweak in tx args
* internal/ethapi: calculate basefee for pending block
* internal/ethapi: fix panic
* internal/ethapi, eth/tracers: simplify txargs ToMessage
* internal/ethapi: remove unused param
* core, eth, internal: fix regressions wrt effective gas price in the evm
* eth/gasprice: drop weird debug println
* internal/jsre/deps: hack in 1559 gas conversions into embedded web3
* internal/jsre/deps: hack basFee to decimal conversion
* internal/ethapi: init feecap and tipcap for legacy txs too
* eth, graphql, internal, les: fix gas price suggestion on all combos
* internal/jsre/deps: handle decimal tipcap and feecap
* eth, internal: minor review fixes
* graphql, internal: export max fee cap RPC endpoint
* internal/ethapi: fix crash in transaction_args
* internal/ethapi: minor refactor to make the code safer
Co-authored-by: Ryan Schneider <ryanleeschneider@gmail.com>
Co-authored-by: lightclient@protonmail.com <lightclient@protonmail.com>
Co-authored-by: gary rong <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-06-02 08:13:10 -05:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'maxPriorityFeePerGas',
|
|
|
|
getter: 'eth_maxPriorityFeePerGas',
|
|
|
|
outputFormatter: web3._extend.utils.toBigNumber
|
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const MinerJs = `
|
2015-12-16 03:58:01 -06:00
|
|
|
web3._extend({
|
|
|
|
property: 'miner',
|
2017-09-11 02:33:18 -05:00
|
|
|
methods: [
|
2015-12-16 03:58:01 -06:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setExtra',
|
|
|
|
call: 'miner_setExtra',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setGasPrice',
|
|
|
|
call: 'miner_setGasPrice',
|
|
|
|
params: 1,
|
2016-05-11 03:49:44 -05:00
|
|
|
inputFormatter: [web3._extend.utils.fromDecimal]
|
2015-12-16 03:58:01 -06:00
|
|
|
}),
|
2021-07-06 03:35:39 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setGasLimit',
|
|
|
|
call: 'miner_setGasLimit',
|
|
|
|
params: 1,
|
|
|
|
inputFormatter: [web3._extend.utils.fromDecimal]
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
],
|
2016-03-01 11:22:26 -06:00
|
|
|
properties: []
|
2015-12-16 03:58:01 -06:00
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const NetJs = `
|
2016-05-11 03:49:44 -05:00
|
|
|
web3._extend({
|
|
|
|
property: 'net',
|
|
|
|
methods: [],
|
2017-09-11 02:33:18 -05:00
|
|
|
properties: [
|
2016-05-11 03:49:44 -05:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'version',
|
|
|
|
getter: 'net_version'
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const RpcJs = `
|
2016-05-11 03:49:44 -05:00
|
|
|
web3._extend({
|
|
|
|
property: 'rpc',
|
|
|
|
methods: [],
|
2017-09-11 02:33:18 -05:00
|
|
|
properties: [
|
2016-05-11 03:49:44 -05:00
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'modules',
|
|
|
|
getter: 'rpc_modules'
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2016-05-11 03:49:44 -05:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
|
|
|
|
2019-02-14 08:38:07 -06:00
|
|
|
const TxpoolJs = `
|
2016-05-11 03:49:44 -05:00
|
|
|
web3._extend({
|
|
|
|
property: 'txpool',
|
|
|
|
methods: [],
|
|
|
|
properties:
|
|
|
|
[
|
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'content',
|
|
|
|
getter: 'txpool_content'
|
|
|
|
}),
|
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'inspect',
|
|
|
|
getter: 'txpool_inspect'
|
|
|
|
}),
|
|
|
|
new web3._extend.Property({
|
|
|
|
name: 'status',
|
|
|
|
getter: 'txpool_status',
|
|
|
|
outputFormatter: function(status) {
|
|
|
|
status.pending = web3._extend.utils.toDecimal(status.pending);
|
|
|
|
status.queued = web3._extend.utils.toDecimal(status.queued);
|
|
|
|
return status;
|
|
|
|
}
|
2017-09-11 02:33:18 -05:00
|
|
|
}),
|
2021-07-13 05:40:58 -05:00
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'contentFrom',
|
|
|
|
call: 'txpool_contentFrom',
|
|
|
|
params: 1,
|
|
|
|
}),
|
2015-12-16 03:58:01 -06:00
|
|
|
]
|
|
|
|
});
|
|
|
|
`
|
2018-12-21 23:04:03 -06:00
|
|
|
|
2023-07-06 03:42:34 -05:00
|
|
|
const DevJs = `
|
|
|
|
web3._extend({
|
|
|
|
property: 'dev',
|
|
|
|
methods:
|
|
|
|
[
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'addWithdrawal',
|
|
|
|
call: 'dev_addWithdrawal',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
new web3._extend.Method({
|
|
|
|
name: 'setFeeRecipient',
|
|
|
|
call: 'dev_setFeeRecipient',
|
|
|
|
params: 1
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
});
|
|
|
|
`
|