Skip to content

Commit

Permalink
Clean
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksondoherty committed Dec 2, 2024
0 parents commit e8db67e
Show file tree
Hide file tree
Showing 124 changed files with 25,625 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DEVNET_RPC=
MAINNET_RPC=
10 changes: 10 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

.anchor
.DS_Store
target
node_modules
dist
build
test-ledger

migrations
38 changes: 38 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"airbnb-typescript/base",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["tsconfig.json"]
},
"plugins": ["@typescript-eslint"],
"rules": {
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal"],
"pathGroups": [
{
"pattern": "src/**",
"group": "internal"
}
],
"pathGroupsExcludedImportTypes": ["builtin"],
"newlines-between": "always"
}
],
"@typescript-eslint/explicit-function-return-type": "error",
"import/prefer-default-export": "off",
"@typescript-eslint/no-unused-vars": "warn"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

.anchor
.DS_Store
**/*.rs.bk
node_modules
test-ledger
.yarn

.env
/build
/target
8 changes: 8 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

.anchor
.DS_Store
target
node_modules
dist
build
test-ledger
36 changes: 36 additions & 0 deletions Anchor.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[toolchain]

[features]
seeds = false
skip-lint = false

[programs.localnet]
holder_metadata_plugin = "3DkEmKWuBJbza9ur1BnVVhXrzkuiMCqBuKHdoDBdLpxZ"
ai_aliens = "48MKwUN9uxxGrFCzXAV4kF5RPMVUyruLyYnapNynNtd4"
toolkit = "5HgftVXMq36xbvsuAd1wANdQnVTm9Zw7EQuXmke5Uqqw"

[registry]
url = "https://api.apr.dev"

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

[test]
startup_wait = 100000

[test.validator]
url = "https://api.mainnet-beta.solana.com"

[[test.validator.clone]]
address = "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb"

[scripts]
test = "yarn run vitest"

[workspace]
members = [
"holder-metadata-plugin/program",
"ai-aliens/program",
"toolkit/program",
]
Loading

0 comments on commit e8db67e

Please sign in to comment.