Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1111188
Start to add protocol definition
barnjamin Jun 18, 2024
e6fbd9b
replace helper function to use protocol from sdk
barnjamin Jun 18, 2024
539b7d5
replace postVaa with method that takes signer and no guardian args
barnjamin Jun 19, 2024
a9d4a2f
replacing more ix with tx
barnjamin Jun 19, 2024
4b8e21a
replace more execute fns
barnjamin Jun 19, 2024
6c2d364
re-enable a test
barnjamin Jun 19, 2024
0b9c764
replace sdk signer with subclass && provide unwrap to get keypair, up…
barnjamin Jun 20, 2024
200f5bd
settle order in test
barnjamin Jun 20, 2024
f3b2601
remove unnecessary solana address creation
barnjamin Jun 20, 2024
b8c15da
more port
barnjamin Jun 20, 2024
4c0dfe2
partial settleOrder
barnjamin Jun 20, 2024
2e481c2
Add prepare order ix to settle order
barnjamin Jun 20, 2024
ac625b5
no need for blockhash before signer
barnjamin Jun 20, 2024
3026ec7
Refactor how vaas are posted
barnjamin Jun 21, 2024
e6f3d3b
cleanup
barnjamin Jun 21, 2024
c2af1f9
start to add token router
barnjamin Jun 21, 2024
b55c9fb
adding prepare order
barnjamin Jun 21, 2024
13707de
add utils for creating order request
barnjamin Jun 22, 2024
07ca3ba
refactor addresseses
barnjamin Jun 24, 2024
b447009
update spots where we post the vaa to the newer style
barnjamin Jun 24, 2024
11930ba
more address type consolidation
barnjamin Jun 24, 2024
be7f6f3
update testnet fork test
barnjamin Jun 24, 2024
f1bc1a7
more const changes, move types out of index file for matching engine …
barnjamin Jun 25, 2024
a544b5f
re-use existing CCTP serde, actually deserialize created VAA to corre…
barnjamin Jun 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions solana/Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ cluster = "Localnet"
wallet = "ts/tests/keys/pFCBP4bhqdSsrWUVTgqhPsLrfEdChBK17vgFM7TxjxQ.json"

[scripts]
test-local = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --bail --exit ts/tests/0[0-9]*.ts"
test-upgrade-fork = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --bail --exit ts/tests/1[0-9]*.ts"
test-local = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --bail --full-trace --exit ts/tests/01*.ts"
# test-local = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --bail --full-trace --exit ts/tests/0[0-9]*.ts"
test-upgrade-fork = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --bail --full-trace --exit ts/tests/1[0-9]*.ts"

[test]
startup_wait = 20000
Expand Down
Loading