* add api info to ns-debug.md
* fix typo
* Apply suggestions from code review
Co-authored-by: Sina Mahmoodi <1591639+s1na@users.noreply.github.com>
Co-authored-by: Sina Mahmoodi <1591639+s1na@users.noreply.github.com>
* initial commit for gettign started pages
* update to sepolia testnet
* back to goerli, start console section
* finish web3js section
* finish 1st draft
* fix whitespace in css, + linux notes, tidy for PR
* simplify py hex -> decimal
* turn note into an alert box
* reduce spacing a bit
* minor fixes
Co-authored-by: Sina Mahmoodi <itz.s1na@gmail.com>
After looking into the newest geth version and installed geth on my windows os, i found the location of data directory is on :
%LOCALAPPDATA%\Ethereum
not
%APPDATA%\Ethereum
Running this command results in the response:
```
{"jsonrpc":"2.0","id":1,"error":{"code":-32602,"message":"too many arguments, want at most 1"}}
```
Also there are other newHeads subscription examples in this page, which don't have the {} param.
* Fixes debug_traceCall example
- Closes double quote, fixing syntax error on debug.traceCall example
- Uses double quotes on call object, to make it easier to paste to raw RPC requests
* nitpick: fixes length of `from` address on debug_traceCall example
* Update abigen documentation
it looks like `make abigen` has been removed and is included under `make devtools`
* Update native-bindings.md
replace `make` with suggestion
* eth_createAccessList added to docs
Added `eth_createAccessList` method to documentation
* Update ns-eth.md
Added example usage (via RPC call) of eth_createAccessList.
Added example usage (in form of pseudo code) to demonstrate how it may be used.
Added reference and link to relevant EIP which will give more technical direction and rationale.
Moved eth_createAccessList documentation to follow eth_call
* [DOCS] updated eth_createAccessList example
* [DOCS] fix nit picks
Co-authored-by: Marius van der Wijden <m.vanderwijden@live.de>
clique_getSnapshot in RPC changed from `{"method": "clique_getSnapsnot", "params": [blockNumber]}` to `{"method": "clique_getSnapshot", "params": [blockNumber]}`