├── .gitignore ├── .npmignore ├── .npmrc.template ├── .nvmrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __mocks__ └── eosjs.js ├── package.json ├── scripts ├── build-docs.sh ├── functions.sh ├── publish-edge.sh ├── publish-latest.sh └── rm-build.js ├── src ├── index.ts ├── testHelpers │ └── dockerUtils.ts ├── v1.7 │ ├── errors.ts │ ├── handlers │ │ └── massiveeos │ │ │ ├── MassiveEosActionHandler.test.ts │ │ │ ├── MassiveEosActionHandler.ts │ │ │ └── index.ts │ ├── index.ts │ ├── interfaces.ts │ ├── readers │ │ ├── mongo │ │ │ ├── MongoActionReader.test.ts │ │ │ ├── MongoActionReader.ts │ │ │ ├── MongoBlock.test.ts │ │ │ ├── MongoBlock.ts │ │ │ └── index.ts │ │ ├── nodeos │ │ │ ├── NodeosActionReader.test.ts │ │ │ ├── NodeosActionReader.ts │ │ │ ├── NodeosBlock.test.ts │ │ │ ├── NodeosBlock.ts │ │ │ └── index.ts │ │ └── state-history │ │ │ ├── StateHistoryPostgresAbiProvider.test.ts │ │ │ ├── StateHistoryPostgresAbiProvider.ts │ │ │ ├── StateHistoryPostgresActionReader.test.ts │ │ │ ├── StateHistoryPostgresActionReader.ts │ │ │ ├── StateHistoryPostgresBlock.test.ts │ │ │ ├── StateHistoryPostgresBlock.ts │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ ├── testHelpers │ │ ├── TestActionHandler.ts │ │ ├── actionTraces.ts │ │ ├── blockStates.ts │ │ ├── fillpg-schema-1.7.sql │ │ ├── fillpgTestDataLoader.ts │ │ ├── mongoMock.ts │ │ ├── mongoObjectMocks.ts │ │ └── nodeosRawBlock.ts │ └── utils.ts └── v1.8 │ ├── index.ts │ ├── readers │ └── state-history │ │ ├── StateHistoryPostgresAbiProvider.test.ts │ │ ├── StateHistoryPostgresAbiProvider.ts │ │ ├── StateHistoryPostgresActionReader.test.ts │ │ ├── StateHistoryPostgresActionReader.ts │ │ ├── StateHistoryPostgresBlock.test.ts │ │ ├── StateHistoryPostgresBlock.ts │ │ ├── index.ts │ │ └── interfaces.ts │ └── testHelpers │ ├── fillpg-schema-1.8.sql │ └── fillpgTestDataLoader.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc.template: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN} 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/eosjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/__mocks__/eosjs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/scripts/build-docs.sh -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/publish-edge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/scripts/publish-edge.sh -------------------------------------------------------------------------------- /scripts/publish-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/scripts/publish-latest.sh -------------------------------------------------------------------------------- /scripts/rm-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/scripts/rm-build.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/testHelpers/dockerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/testHelpers/dockerUtils.ts -------------------------------------------------------------------------------- /src/v1.7/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/errors.ts -------------------------------------------------------------------------------- /src/v1.7/handlers/massiveeos/MassiveEosActionHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/handlers/massiveeos/MassiveEosActionHandler.test.ts -------------------------------------------------------------------------------- /src/v1.7/handlers/massiveeos/MassiveEosActionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/handlers/massiveeos/MassiveEosActionHandler.ts -------------------------------------------------------------------------------- /src/v1.7/handlers/massiveeos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/handlers/massiveeos/index.ts -------------------------------------------------------------------------------- /src/v1.7/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/index.ts -------------------------------------------------------------------------------- /src/v1.7/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/interfaces.ts -------------------------------------------------------------------------------- /src/v1.7/readers/mongo/MongoActionReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/mongo/MongoActionReader.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/mongo/MongoActionReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/mongo/MongoActionReader.ts -------------------------------------------------------------------------------- /src/v1.7/readers/mongo/MongoBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/mongo/MongoBlock.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/mongo/MongoBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/mongo/MongoBlock.ts -------------------------------------------------------------------------------- /src/v1.7/readers/mongo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/mongo/index.ts -------------------------------------------------------------------------------- /src/v1.7/readers/nodeos/NodeosActionReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/nodeos/NodeosActionReader.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/nodeos/NodeosActionReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/nodeos/NodeosActionReader.ts -------------------------------------------------------------------------------- /src/v1.7/readers/nodeos/NodeosBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/nodeos/NodeosBlock.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/nodeos/NodeosBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/nodeos/NodeosBlock.ts -------------------------------------------------------------------------------- /src/v1.7/readers/nodeos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/nodeos/index.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresAbiProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresAbiProvider.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresAbiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresAbiProvider.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresActionReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresActionReader.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresActionReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresActionReader.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresBlock.test.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/StateHistoryPostgresBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/StateHistoryPostgresBlock.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/index.ts -------------------------------------------------------------------------------- /src/v1.7/readers/state-history/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/readers/state-history/interfaces.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/TestActionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/TestActionHandler.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/actionTraces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/actionTraces.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/blockStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/blockStates.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/fillpg-schema-1.7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/fillpg-schema-1.7.sql -------------------------------------------------------------------------------- /src/v1.7/testHelpers/fillpgTestDataLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/fillpgTestDataLoader.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/mongoMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/mongoMock.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/mongoObjectMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/mongoObjectMocks.ts -------------------------------------------------------------------------------- /src/v1.7/testHelpers/nodeosRawBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/testHelpers/nodeosRawBlock.ts -------------------------------------------------------------------------------- /src/v1.7/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.7/utils.ts -------------------------------------------------------------------------------- /src/v1.8/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/index.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresAbiProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresAbiProvider.test.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresAbiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresAbiProvider.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresActionReader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresActionReader.test.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresActionReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresActionReader.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresBlock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresBlock.test.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/StateHistoryPostgresBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/StateHistoryPostgresBlock.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/index.ts -------------------------------------------------------------------------------- /src/v1.8/readers/state-history/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/readers/state-history/interfaces.ts -------------------------------------------------------------------------------- /src/v1.8/testHelpers/fillpg-schema-1.8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/testHelpers/fillpg-schema-1.8.sql -------------------------------------------------------------------------------- /src/v1.8/testHelpers/fillpgTestDataLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/src/v1.8/testHelpers/fillpgTestDataLoader.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/demux-js-eos/HEAD/yarn.lock --------------------------------------------------------------------------------