Skip to content

Commit d78dfef

Browse files
author
tilo-14
committed
Add comprehensive program examples for compressed account operations
- Add 5 Anchor examples: create, update, close, reinit, burn - Add 5 Native examples: create, update, close, reinit, burn - Include full test coverage with Rust and TypeScript tests - Add detailed setup and testing instructions in each README
1 parent 3a9ff76 commit d78dfef

123 files changed

Lines changed: 110897 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

anchor-program-burn/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.anchor
2+
.DS_Store
3+
target
4+
**/*.rs.bk
5+
node_modules
6+
test-ledger
7+
.yarn
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.anchor
2+
.DS_Store
3+
target
4+
node_modules
5+
dist
6+
build
7+
test-ledger

anchor-program-burn/Anchor.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[toolchain]
2+
3+
[features]
4+
resolution = true
5+
skip-lint = false
6+
7+
[programs.localnet]
8+
anchor_program_burn = "3VjoDzKqub6USAHbj2chMZb8396SdmmhcdosaoqPN9Rr"
9+
10+
[registry]
11+
url = "https://api.apr.dev"
12+
13+
[provider]
14+
cluster = "localnet"
15+
wallet = "~/.config/solana/id.json"

0 commit comments

Comments
 (0)