openethereum/js/src/jsonrpc
Tomasz Drwięga 73644adf69
Rename network_id to chain_id where applicable.
2017-08-21 14:23:10 +02:00
..
interfaces Rename network_id to chain_id where applicable. 2017-08-21 14:23:10 +02:00
.gitignore JSON-RPC interfaces with documentation (#4276) 2017-01-24 22:02:52 +01:00
README.md Extended JS interface -> Markdown generator (#4275) 2017-01-24 16:05:21 +01:00
helpers.js Full JSON-RPC docs + sync tests. (#4335) 2017-02-01 10:58:09 +01:00
index.js Fix whitespace (#4299) 2017-01-25 18:51:41 +01:00
index.spec.js Perform a sync between Rust and JS when generating markdown instead of in spec tests (#4408) 2017-02-02 17:24:15 +01:00
types.js Rename network_id to chain_id where applicable. 2017-08-21 14:23:10 +02:00

README.md

jsonrpc

JSON file of all ethereum's rpc methods supported by parity

interfaces

interfaces.md contains the auto-generated list of interfaces exposed, along with their relevant documentation

contributing

  1. Clone the repo
  2. Branch
  3. Add the missing interfaces only into src/interfaces/*.js
  4. Parameters (array) & Returns take objects of type
    • { type: [Array|Boolean|Object|String|...], desc: 'some description', example: 100|'0xff'|{ ... } }
    • Types are built-in JS types or those defined in src/types.js (e.g. BlockNumber, Quantity, etc.)
    • If a formatter is required, add it as format: 'string-type'
  5. Run the lint & tests, npm run lint && npm run test
  6. Generate via npm run build which outputs index.js & index.json.
  7. (optional) Generate docs via npm run build:markdown which outputs md files to ./docs.
  8. Check-in and make a PR.