├── .gitignore ├── README.md ├── package.json ├── src ├── artifacts │ ├── ChildERC20.json │ ├── ChildToken.json │ ├── DAI.json │ ├── FillOrder.json │ └── IERC20.json ├── constants.ts ├── errors │ ├── api_error.ts │ ├── index.ts │ └── schema_error.ts ├── index.ts ├── sportx.ts ├── types │ ├── internal.ts │ └── relayer.ts └── utils │ ├── convert.ts │ ├── misc.ts │ ├── networks.ts │ ├── signing.ts │ └── validation.ts ├── test ├── DAI.json └── sportx.test.ts ├── tsconfig.cjs.dist.json ├── tsconfig.esm.dist.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/package.json -------------------------------------------------------------------------------- /src/artifacts/ChildERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/artifacts/ChildERC20.json -------------------------------------------------------------------------------- /src/artifacts/ChildToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/artifacts/ChildToken.json -------------------------------------------------------------------------------- /src/artifacts/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/artifacts/DAI.json -------------------------------------------------------------------------------- /src/artifacts/FillOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/artifacts/FillOrder.json -------------------------------------------------------------------------------- /src/artifacts/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/artifacts/IERC20.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/errors/api_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/errors/api_error.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/errors/schema_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/errors/schema_error.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/sportx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/sportx.ts -------------------------------------------------------------------------------- /src/types/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/types/internal.ts -------------------------------------------------------------------------------- /src/types/relayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/types/relayer.ts -------------------------------------------------------------------------------- /src/utils/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/utils/convert.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /src/utils/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/utils/networks.ts -------------------------------------------------------------------------------- /src/utils/signing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/utils/signing.ts -------------------------------------------------------------------------------- /src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/src/utils/validation.ts -------------------------------------------------------------------------------- /test/DAI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/test/DAI.json -------------------------------------------------------------------------------- /test/sportx.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/test/sportx.test.ts -------------------------------------------------------------------------------- /tsconfig.cjs.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/tsconfig.cjs.dist.json -------------------------------------------------------------------------------- /tsconfig.esm.dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/tsconfig.esm.dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sx-bet/sportx-js/HEAD/tslint.json --------------------------------------------------------------------------------