Skip to content

Commit 2202a7a

Browse files
committed
WIP: Initial Implementation of Fanout Wallet
1 parent a1b2934 commit 2202a7a

30 files changed

+7048
-9
lines changed

.gitignore

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Generated by Cargo
2-
# will have compiled files and executables
3-
/target/
4-
5-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7-
Cargo.lock
8-
9-
# These are backup files generated by rustfmt
1+
.vscode/settings.json
2+
.anchor
3+
.DS_Store
4+
target
105
**/*.rs.bk
6+
./node_modules
7+
node_modules
8+
test-ledger
9+
.parcel-cache
10+
.env

Anchor.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[programs.localnet]
2+
fanout = "Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS"
3+
4+
[registry]
5+
url = "https://anchor.projectserum.com"
6+
7+
[provider]
8+
cluster = "localnet"
9+
wallet = "/Users/nprince/.config/solana/id.json"
10+
11+
[scripts]
12+
test = "ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"

0 commit comments

Comments
 (0)