-
Notifications
You must be signed in to change notification settings - Fork 0
/
Anchor.toml
32 lines (25 loc) · 1.17 KB
/
Anchor.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[toolchain]
[features]
resolution = true
skip-lint = true
[programs.localnet]
over_under = "6qUeZY7njik5mb5Q3MCGkdyt8NSvyLtAxsDnErhVm6dV"
[programs.devnet]
over_under = "6qUeZY7njik5mb5Q3MCGkdyt8NSvyLtAxsDnErhVm6dV"
[registry]
url = "https://api.apr.dev"
[provider]
cluster = "devnet"
wallet = "~/.config/solana/id.json"
[scripts]
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/single_player.ts"
global = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/init_global.ts"
round = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/init_round.ts"
bet = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/place_bet.ts"
multibet = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/multiplayer.ts"
play = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/play_round.ts"
assess = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/assess_winners.ts"
payout = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/payout.ts"
close = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/close_round.ts"
start = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/start.ts"
finish = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/finish.ts"