3 unstable releases
0.4.2 | Apr 27, 2022 |
---|---|
0.4.1 | Apr 27, 2022 |
0.1.1 | Apr 18, 2022 |
#4 in #instantly
30KB
505 lines
Swap
Swap provides a convenient API to the Serum DEX for performing instantly settled token swaps directly on the order book.
Developing
This program requires building the Serum DEX from source, which is done using git submodules.
Install Submodules
Pull the source
git submodule init
git submodule update
Build the DEX
Build it
cd deps/serum-dex/dex/ && cargo build-bpf && cd ../../../
Build
Anchor is used for developoment, and it's recommended workflow is used here. To get started, see the guide.
anchor build --verifiable
The --verifiable
flag should be used before deploying so that your build artifacts
can be deterministically generated with docker.
Test
anchor test
Verify
To verify the program deployed on Solana matches your local source code, install
docker, cd programs/swap
, and run
anchor verify <program-id | write-buffer>
A list of build artifacts can be found under releases.
Run the Test
Run the test
anchor test
Dependencies
~26–36MB
~599K SLoC