Skip to content

Commit d305893

Browse files
committed
init
0 parents  commit d305893

14 files changed

+4102
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
.anchor
3+
.DS_Store
4+
target
5+
**/*.rs.bk
6+
node_modules
7+
test-ledger
8+
.yarn

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
.anchor
3+
.DS_Store
4+
target
5+
node_modules
6+
dist
7+
build
8+
test-ledger

Anchor.toml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[features]
2+
seeds = false
3+
skip-lint = false
4+
[programs.localnet]
5+
solquad = "5sFUqUTjAMJARrEafMX8f4J1LagdUQ9Y8TR8HwGNHkU8"
6+
7+
[programs.devnet]
8+
solquad = "5sFUqUTjAMJARrEafMX8f4J1LagdUQ9Y8TR8HwGNHkU8"
9+
10+
[registry]
11+
url = "https://api.apr.dev"
12+
13+
[provider.localnet]
14+
cluster = "Localnet"
15+
wallet = "/home/agathokako/.config/solana/id.json"
16+
17+
[provider.devnet]
18+
cluster = "Localnet"
19+
wallet = "/home/agathokako/.config/solana/id.json"
20+
21+
[scripts]
22+
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"

0 commit comments

Comments
 (0)