├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── api ├── index.js ├── index.test.js └── v1 │ ├── account_history.json │ ├── chain.json │ └── index.js ├── bin ├── 1-update-eosio.sh ├── 2-extract-abi.js └── 3-update-eosio-json.sh ├── index.js ├── index.test.js ├── package.json └── schema ├── chain_types.json ├── eosio.json └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | types.eos 4 | bin/eosio.* 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/README.md -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | v1: require('./v1') 3 | } 4 | -------------------------------------------------------------------------------- /api/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/api/index.test.js -------------------------------------------------------------------------------- /api/v1/account_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/api/v1/account_history.json -------------------------------------------------------------------------------- /api/v1/chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/api/v1/chain.json -------------------------------------------------------------------------------- /api/v1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/api/v1/index.js -------------------------------------------------------------------------------- /bin/1-update-eosio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/bin/1-update-eosio.sh -------------------------------------------------------------------------------- /bin/2-extract-abi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/bin/2-extract-abi.js -------------------------------------------------------------------------------- /bin/3-update-eosio-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/bin/3-update-eosio-json.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/package.json -------------------------------------------------------------------------------- /schema/chain_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/schema/chain_types.json -------------------------------------------------------------------------------- /schema/eosio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/schema/eosio.json -------------------------------------------------------------------------------- /schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosjs-json/HEAD/schema/index.js --------------------------------------------------------------------------------