Go to file
Sayantan Karmakar 167107f31b
Merge pull request #2 from project-serum/feat/crank
FEAT: Cranks and minor improvements
2022-06-22 17:48:36 +05:30
.github/workflows added readme and metadata for cargo publish 2022-05-30 21:30:06 +05:30
cli add --version to CLI, bump to v1.0.3 2022-06-14 18:01:23 +05:30
ts added getters, docs, tests, and isEqual for coin 2022-06-22 17:46:48 +05:30
.DS_Store add typedocs 2022-05-17 21:15:50 +05:30
.gitignore createAccounts for dex half done 2022-04-05 22:30:37 +05:30
README.md add dev setup guide to README.md 2022-04-05 22:38:06 +05:30

README.md

Serum DevTools 🛠️

A developer tooling suite for building on Serum.

Dev Setup

  1. Get a local validator running
solana-test-validator -r
  1. Init serum-dev-tools CLI in the /cli directory
cd cli && cargo run -- init
  1. Deploy serum-dex on localnet using the CLI
cd cli && cargo run -- deploy l
  1. Install node packages and update dexAddress in /ts/tests/dev.spec.ts to the deployed program ID.
cd ts && yarn install
  1. Run tests
cd ts && yarn test