Skip to content

Commit 9a5ef85

Browse files
committed
Initial commit
1 parent 8139019 commit 9a5ef85

File tree

20 files changed

+6368
-0
lines changed

20 files changed

+6368
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[toolchain]
2+
3+
[features]
4+
resolution = true
5+
skip-lint = false
6+
7+
[programs.localnet]
8+
cnft_candy_machine = "5FjsgRt8fkWv22pyksKcVBkieh1J15qEv7WfSP4CNLyx"
9+
10+
[registry]
11+
url = "https://api.apr.dev"
12+
13+
[provider]
14+
cluster = "Localnet"
15+
wallet = "~/.config/solana/id.json"
16+
17+
[scripts]
18+
test = "pnpm ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
19+
20+
[test.validator]
21+
url = "https://api.mainnet-beta.solana.com"
22+
23+
[[test.validator.clone]]
24+
address = "cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK"
25+
26+
[[test.validator.clone]]
27+
address = "BGUMAp9Gq7iTEuizy4pqaxsTyUCBK68MDfK752saRPUY"
28+
29+
[[test.validator.clone]]
30+
address = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV"
31+
32+
[[test.validator.clone]]
33+
address = "metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[workspace]
2+
members = [
3+
"programs/*"
4+
]
5+
resolver = "2"
6+
7+
[profile.release]
8+
overflow-checks = true
9+
lto = "fat"
10+
codegen-units = 1
11+
[profile.release.build-override]
12+
opt-level = 3
13+
incremental = false
14+
codegen-units = 1
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"license": "ISC",
3+
"scripts": {
4+
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
5+
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check"
6+
},
7+
"dependencies": {
8+
"@coral-xyz/anchor": "^0.30.1",
9+
"@metaplex-foundation/js": "^0.20.1",
10+
"@metaplex-foundation/mpl-bubblegum": "^4.2.0",
11+
"@metaplex-foundation/umi": "^0.9.2",
12+
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
13+
"@solana/spl-account-compression": "^0.2.1",
14+
"@solana/web3.js": "^1.95.2"
15+
},
16+
"devDependencies": {
17+
"@types/bn.js": "^5.1.0",
18+
"@types/chai": "^4.3.0",
19+
"@types/mocha": "^9.0.0",
20+
"chai": "^4.3.4",
21+
"mocha": "^9.0.3",
22+
"prettier": "^2.6.2",
23+
"ts-mocha": "^10.0.0",
24+
"typescript": "^4.3.5"
25+
}
26+
}

0 commit comments

Comments
 (0)