├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── README.md ├── jest.config.js ├── package.json ├── shell ├── src ├── fees.ts ├── index.js ├── instructions.js ├── instructions.test.js ├── layout.js ├── market.test.js ├── market.ts ├── markets.json ├── queue.ts ├── slab.test.js ├── slab.ts ├── token-instructions.js ├── token-mints.json └── tokens_and_markets.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/package.json -------------------------------------------------------------------------------- /shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/shell -------------------------------------------------------------------------------- /src/fees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/fees.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/index.js -------------------------------------------------------------------------------- /src/instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/instructions.js -------------------------------------------------------------------------------- /src/instructions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/instructions.test.js -------------------------------------------------------------------------------- /src/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/layout.js -------------------------------------------------------------------------------- /src/market.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/market.test.js -------------------------------------------------------------------------------- /src/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/market.ts -------------------------------------------------------------------------------- /src/markets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/markets.json -------------------------------------------------------------------------------- /src/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/queue.ts -------------------------------------------------------------------------------- /src/slab.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/slab.test.js -------------------------------------------------------------------------------- /src/slab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/slab.ts -------------------------------------------------------------------------------- /src/token-instructions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/token-instructions.js -------------------------------------------------------------------------------- /src/token-mints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/token-mints.json -------------------------------------------------------------------------------- /src/tokens_and_markets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/src/tokens_and_markets.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-serum/serum-js/HEAD/yarn.lock --------------------------------------------------------------------------------