Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/disconnect nft and simplify #43

Merged
merged 16 commits into from
Jan 4, 2024
Merged
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ relayer.json
*/**/*.pem
*/**/kubeconfig*

# distribution directory
*/**/dist/

# env files
.env.*
.yarn
Expand All @@ -22,3 +25,7 @@ relayer.json
!.yarn/sdks
!.yarn/versions
!.yarn/cache

#solana recover files
recover*.json

8 changes: 5 additions & 3 deletions Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ skip-lint = false
url = "https://api.apr.dev"

[programs.devnet]
bounty = "sAnDqRELfCjpWCTrV8f3yX5nT9bPzq81u5eP3KbvamY"
bounty = "BoUNtye7MsbG3rWSXxgXTyWt2Q7veUrKwWeDJo7BED3e"

[programs.mainnet]
bounty = "sAnDqRELfCjpWCTrV8f3yX5nT9bPzq81u5eP3KbvamY"
bounty = "BoUNtye7MsbG3rWSXxgXTyWt2Q7veUrKwWeDJo7BED3e"

[programs.localnet]
bounty = "sAnDqRELfCjpWCTrV8f3yX5nT9bPzq81u5eP3KbvamY"
bounty = "BoUNtye7MsbG3rWSXxgXTyWt2Q7veUrKwWeDJo7BED3e"

[provider]
cluster = "localnet"
wallet = "~/.config/solana/id.json"

[scripts]
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
build_sdk = "cd sdk-ts && yarn build"
test_alt = "rm -rf test-ledger && solana-test-validator --reset -q"
Loading
Loading