forked from mesh-protocol/liquidity-locker-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnchor.toml
33 lines (24 loc) · 845 Bytes
/
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
32
33
[toolchain]
[features]
seeds = false
skip-lint = false
[programs.localnet]
liquidity_locker = "LockgYZzP9P4AqsXU9jhLvnt88kefqJFeao7QKQRkCf"
[programs.devnet]
liquidity_locker = "LockgYZzP9P4AqsXU9jhLvnt88kefqJFeao7QKQRkCf"
[programs.mainnet]
liquidity_locker = "LockgYZzP9P4AqsXU9jhLvnt88kefqJFeao7QKQRkCf"
[registry]
url = "https://api.apr.dev"
[provider]
#cluster = "Localnet"
#wallet = "/home/bilal/.config/solana/id.json"
#cluster = "devnet"
#wallet = "./deployer.json"
cluster = "mainnet"
wallet = "./deployer.json"
[scripts]
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
program-lockPosition = "yarn run ts-node ./tasks/instructions/lockPosition.ts"
program-unlockPosition = "yarn run ts-node ./tasks/instructions/unlockPosition.ts"
program-claimFees = "yarn run ts-node ./tasks/instructions/claimFees.ts"