openethereum/js/src/jsonrpc
Tomasz Drwięga cbcc369a2d UI server refactoring (#5580)
* Full API in Authenticated WS server.

* Replacing UI server with Hyper.

* Solving CLI, RPCs and tests.

* Porting signer tests.

* Fixing origin recognition for dapps/rpc.

* Fixing tests. Adding parity-rpc-client to test.

* Dapps exposed as RPC method.

* JS code to support new connection scheme.

* Fixing dapps tests.

* Updating allowed origins/hosts to support web3.site.

* Fixing tests, fixing UI.

* Fixing tests.

* Removing invalid tests.

* Fixing merge.

* 404 fallback for UI

* Improve ContentFetcher constructor readability.

* Naming.

* Update .gitlab-ci.yml

fix CI lint error

* Fixing tests and linting issues.

* Fixing new tests.

* UI hosts.

* Submodules fix.
2017-05-24 12:24:07 +02:00
..
interfaces UI server refactoring (#5580) 2017-05-24 12:24:07 +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 Updating documentation for RPCs (#5392) 2017-04-08 11:28:04 +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.