Skip to content

Commit 1cf58c7

Browse files
authored
readme,eth: remove references to eth.wiki (ethereum#25086)
1 parent f74bb3a commit 1cf58c7

File tree

2 files changed

+3
-17
lines changed

2 files changed

+3
-17
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ directory.
4242
| `abigen` | Source code generator to convert Ethereum contract definitions into easy to use, compile-time type-safe Go packages. It operates on plain [Ethereum contract ABIs](https://docs.soliditylang.org/en/develop/abi-spec.html) with expanded functionality if the contract bytecode is also available. However, it also accepts Solidity source files, making development much more streamlined. Please see our [Native DApps](https://geth.ethereum.org/docs/dapp/native-bindings) page for details. |
4343
| `bootnode` | Stripped down version of our Ethereum client implementation that only takes part in the network node discovery protocol, but does not run any of the higher level application protocols. It can be used as a lightweight bootstrap node to aid in finding peers in private networks. |
4444
| `evm` | Developer utility version of the EVM (Ethereum Virtual Machine) that is capable of running bytecode snippets within a configurable environment and execution mode. Its purpose is to allow isolated, fine-grained debugging of EVM opcodes (e.g. `evm --code 60ff60ff --debug run`). |
45-
| `rlpdump` | Developer utility tool to convert binary RLP ([Recursive Length Prefix](https://eth.wiki/en/fundamentals/rlp)) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user-friendlier hierarchical representation (e.g. `rlpdump --hex CE0183FFFFFFC4C304050583616263`). |
45+
| `rlpdump` | Developer utility tool to convert binary RLP ([Recursive Length Prefix](https://ethereum.org/en/developers/docs/data-structures-and-encoding/rlp)) dumps (data encoding used by the Ethereum protocol both network as well as consensus wise) to user-friendlier hierarchical representation (e.g. `rlpdump --hex CE0183FFFFFFC4C304050583616263`). |
4646
| `puppeth` | a CLI wizard that aids in creating a new Ethereum network. |
4747

4848
## Running `geth`
@@ -188,7 +188,7 @@ accessible from the outside.
188188

189189
As a developer, sooner rather than later you'll want to start interacting with `geth` and the
190190
Ethereum network via your own programs and not manually through the console. To aid
191-
this, `geth` has built-in support for a JSON-RPC based APIs ([standard APIs](https://eth.wiki/json-rpc/API)
191+
this, `geth` has built-in support for a JSON-RPC based APIs ([standard APIs](https://ethereum.github.io/execution-apis/api-documentation/)
192192
and [`geth` specific APIs](https://geth.ethereum.org/docs/rpc/server)).
193193
These can be exposed via HTTP, WebSockets and IPC (UNIX sockets on UNIX based
194194
platforms, and named pipes on Windows).
@@ -297,7 +297,7 @@ $ bootnode --genkey=boot.key
297297
$ bootnode --nodekey=boot.key
298298
```
299299

300-
With the bootnode online, it will display an [`enode` URL](https://eth.wiki/en/fundamentals/enode-url-format)
300+
With the bootnode online, it will display an [`enode` URL](https://ethereum.org/en/developers/docs/networking-layer/network-addresses/#enode)
301301
that other nodes can use to connect to it and exchange peer information. Make sure to
302302
replace the displayed IP address information (most probably `[::]`) with your externally
303303
accessible IP to get the actual `enode` URL.

eth/filters/api.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ func (api *PublicFilterAPI) timeoutLoop(timeout time.Duration) {
101101
//
102102
// It is part of the filter package because this filter can be used through the
103103
// `eth_getFilterChanges` polling method that is also used for log filters.
104-
//
105-
// https://eth.wiki/json-rpc/API#eth_newpendingtransactionfilter
106104
func (api *PublicFilterAPI) NewPendingTransactionFilter() rpc.ID {
107105
var (
108106
pendingTxs = make(chan []common.Hash)
@@ -171,8 +169,6 @@ func (api *PublicFilterAPI) NewPendingTransactions(ctx context.Context) (*rpc.Su
171169

172170
// NewBlockFilter creates a filter that fetches blocks that are imported into the chain.
173171
// It is part of the filter package since polling goes with eth_getFilterChanges.
174-
//
175-
// https://eth.wiki/json-rpc/API#eth_newblockfilter
176172
func (api *PublicFilterAPI) NewBlockFilter() rpc.ID {
177173
var (
178174
headers = make(chan *types.Header)
@@ -288,8 +284,6 @@ type FilterCriteria ethereum.FilterQuery
288284
// again but with the removed property set to true.
289285
//
290286
// In case "fromBlock" > "toBlock" an error is returned.
291-
//
292-
// https://eth.wiki/json-rpc/API#eth_newfilter
293287
func (api *PublicFilterAPI) NewFilter(crit FilterCriteria) (rpc.ID, error) {
294288
logs := make(chan []*types.Log)
295289
logsSub, err := api.events.SubscribeLogs(ethereum.FilterQuery(crit), logs)
@@ -323,8 +317,6 @@ func (api *PublicFilterAPI) NewFilter(crit FilterCriteria) (rpc.ID, error) {
323317
}
324318

325319
// GetLogs returns logs matching the given argument that are stored within the state.
326-
//
327-
// https://eth.wiki/json-rpc/API#eth_getlogs
328320
func (api *PublicFilterAPI) GetLogs(ctx context.Context, crit FilterCriteria) ([]*types.Log, error) {
329321
var filter *Filter
330322
if crit.BlockHash != nil {
@@ -352,8 +344,6 @@ func (api *PublicFilterAPI) GetLogs(ctx context.Context, crit FilterCriteria) ([
352344
}
353345

354346
// UninstallFilter removes the filter with the given filter id.
355-
//
356-
// https://eth.wiki/json-rpc/API#eth_uninstallfilter
357347
func (api *PublicFilterAPI) UninstallFilter(id rpc.ID) bool {
358348
api.filtersMu.Lock()
359349
f, found := api.filters[id]
@@ -370,8 +360,6 @@ func (api *PublicFilterAPI) UninstallFilter(id rpc.ID) bool {
370360

371361
// GetFilterLogs returns the logs for the filter with the given id.
372362
// If the filter could not be found an empty array of logs is returned.
373-
//
374-
// https://eth.wiki/json-rpc/API#eth_getfilterlogs
375363
func (api *PublicFilterAPI) GetFilterLogs(ctx context.Context, id rpc.ID) ([]*types.Log, error) {
376364
api.filtersMu.Lock()
377365
f, found := api.filters[id]
@@ -411,8 +399,6 @@ func (api *PublicFilterAPI) GetFilterLogs(ctx context.Context, id rpc.ID) ([]*ty
411399
//
412400
// For pending transaction and block filters the result is []common.Hash.
413401
// (pending)Log filters return []Log.
414-
//
415-
// https://eth.wiki/json-rpc/API#eth_getfilterchanges
416402
func (api *PublicFilterAPI) GetFilterChanges(id rpc.ID) (interface{}, error) {
417403
api.filtersMu.Lock()
418404
defer api.filtersMu.Unlock()

0 commit comments

Comments
 (0)