├── .circleci └── config.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── dependency-review.yml │ └── yarn_upgrade.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── main.claimThirdParty.sample copy.yaml ├── main.claimsAndTransfers.sample.yaml └── main.claimsCheckOnly.sample.yaml ├── e2e-test ├── accountant.ts └── client.ts ├── package.json ├── src ├── accountant.ts ├── actions │ └── start.ts ├── client.ts ├── index.ts ├── types.ts └── utils.ts ├── test ├── accountant.ts └── mocks.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | test 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/yarn_upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.github/workflows/yarn_upgrade.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/README.md -------------------------------------------------------------------------------- /config/main.claimThirdParty.sample copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/config/main.claimThirdParty.sample copy.yaml -------------------------------------------------------------------------------- /config/main.claimsAndTransfers.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/config/main.claimsAndTransfers.sample.yaml -------------------------------------------------------------------------------- /config/main.claimsCheckOnly.sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/config/main.claimsCheckOnly.sample.yaml -------------------------------------------------------------------------------- /e2e-test/accountant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/e2e-test/accountant.ts -------------------------------------------------------------------------------- /e2e-test/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/e2e-test/client.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/package.json -------------------------------------------------------------------------------- /src/accountant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/accountant.ts -------------------------------------------------------------------------------- /src/actions/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/actions/start.ts -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/accountant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/test/accountant.ts -------------------------------------------------------------------------------- /test/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/test/mocks.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3f/polkadot-payouts/HEAD/yarn.lock --------------------------------------------------------------------------------