├── .gitignore ├── LICENSE ├── README.md ├── applySchema.js ├── index.js ├── ledgerInfo.js ├── package.json ├── run.md └── schema ├── CONSTANTS.js ├── index.js ├── ledgers.js └── transactions.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .DS_Store 3 | /Google.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/README.md -------------------------------------------------------------------------------- /applySchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/applySchema.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/index.js -------------------------------------------------------------------------------- /ledgerInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/ledgerInfo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/package.json -------------------------------------------------------------------------------- /run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/run.md -------------------------------------------------------------------------------- /schema/CONSTANTS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/schema/CONSTANTS.js -------------------------------------------------------------------------------- /schema/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/schema/index.js -------------------------------------------------------------------------------- /schema/ledgers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/schema/ledgers.js -------------------------------------------------------------------------------- /schema/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WietseWind/fetch-xrpl-transactions/HEAD/schema/transactions.js --------------------------------------------------------------------------------