Go to file
Sayantan Karmakar 40279d883b
add dev setup guide to README.md
2022-04-05 22:38:06 +05:30
cli instance command done 2022-03-31 23:27:33 +05:30
ts createAccounts for dex half done 2022-04-05 22:30:37 +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