r4bbit
fdd00c1060
feat(programs): add Associated Token Account program with wallet CLI and tutorial
...
Introduce the ATA program, which derives deterministic per-token holding
accounts from (owner, token_definition) via SHA256, eliminating the need
to manually create and track holding account IDs.
Program (programs/associated_token_account/):
- Create, Transfer, and Burn instructions with PDA-based authorization
- Deterministic address derivation: SHA256(owner || definition) → seed → AccountId
- Idempotent Create (no-op if ATA already exists)
Wallet CLI (`wallet ata`):
- `address` — derive ATA address locally (no network call)
- `create` — initialize an ATA on-chain
- `send` — transfer tokens from owner's ATA to a recipient
- `burn` — burn tokens from owner's ATA
- `list` — query ATAs across multiple token definitions
Usage:
wallet deploy-program artifacts/program_methods/associated_token_account.bin
wallet ata address --owner <ID> --token-definition <DEF_ID>
wallet ata create --owner Public/<ID> --token-definition <DEF_ID>
wallet ata send --from Public/<ID> --token-definition <DEF_ID> --to <RECIPIENT> --amount 100
wallet ata burn --holder Public/<ID> --token-definition <DEF_ID> --amount 50
wallet ata list --owner <ID> --token-definition <DEF1> <DEF2>
Includes tutorial: docs/LEZ testnet v0.1 tutorials/associated-token-accounts.md
2026-03-23 13:58:29 +01:00
Daniil Polyakov
05c2c3a56d
fix: encode transactions with borsh in sequencer rpc
2026-03-20 00:48:04 +03:00
Daniil Polyakov
be94e133fa
feat: refactor sequencer RPC server-side
2026-03-20 00:41:05 +03:00
Daniil Polyakov
bffc711470
refactor: move sequencer_ directories into sequencer
2026-03-20 00:36:07 +03:00
Daniil Polyakov
3b0e842a42
feat: update dependencies
2026-03-17 21:25:30 +03:00
Daniil Polyakov
147fff957a
feat: add cargo clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
6e79ce0941
feat: add style clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
90412f9590
feat: add suspicious clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
5bf4495709
feat: add perf clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
3e1cc2e58e
feat: add complexity clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
222e68ac0b
feat: add correctness clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
aa462b66eb
feat: add nursery clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
e3b93b6e9a
feat: add restriction clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
efe8393ba0
feat: add pedantic clippy lints
2026-03-17 21:25:30 +03:00
Daniil Polyakov
756f2f4135
feat: add workspace lints to every crate
2026-03-17 15:13:44 +03:00
Daniil Polyakov
803708ea1e
fix: set wallet-ffi default features to false in workspace to fix tps test
2026-02-26 16:25:24 +03:00
Daniil Polyakov
437e5addb4
feat: use human-readable byte sizes and durations
2026-02-26 16:25:24 +03:00
Daniil Polyakov
8b5524901c
feat: configurable block size limit
2026-02-26 16:21:43 +03:00
Pravdyvy
6f979786e7
feat: tip polling
2026-02-20 17:13:59 +03:00
Sergio Chouhy
177235a2c7
add prove feature
2026-02-16 12:28:31 -03:00
Daniil Polyakov
975cfb9ec6
feat: fully integrate Sequencer, Indexer and Explorer with Bedrock
2026-02-12 16:31:13 +03:00
jonesmarvin8
0930e4dd86
Merge branch 'main' into marvin/refactor-amm-program
2026-02-10 20:28:13 -05:00
jonesmarvin8
19a53ed44e
Merge branch 'main' into marvin/refactor-amm-program
2026-01-27 18:28:36 -05:00
Daniil Polyakov
2288a725d2
feat: implement indexer service skeleton
2026-01-26 23:31:28 +03:00
Sergio Chouhy
ded6e8123d
Merge branch 'main' into schouhy/adapt-sequencer-to-bedrock
2026-01-26 11:38:42 -03:00
jonesmarvin8
15d78527fe
fixed fmt
2026-01-23 16:35:18 -05:00
Daniil Polyakov
652be426ae
refactor: split token program into crates
2026-01-23 00:53:21 +03:00
Pravdyvy
66d01d69d7
fix: dep fix
2026-01-20 10:26:22 +02:00
Sergio Chouhy
ccce2213da
sequencer posts blocks to bedrock
2026-01-14 23:25:18 -03:00
Daniil Polyakov
529ca9a643
feat: introduce parallel integration tests, wallet without global vars and etc
2026-01-14 23:25:18 -03:00
Pravdyvy
af19d7ad93
Merge branch 'main' into Pravdyvy/indexer-client
2026-01-13 11:18:10 +02:00
Pravdyvy
3473602efc
fix: try new branch of client
2026-01-09 17:06:13 +02:00
Pravdyvy
f400684d59
fix: fmt
2026-01-08 09:10:45 +02:00
Pravdyvy
f817279d33
fix: client as dependency
2026-01-08 09:10:00 +02:00
Pravdyvy
1a033af5f2
fix: adapting http client
2026-01-07 16:29:37 +02:00
Pravdyvy
149b00d2a3
init: initial structure
2026-01-06 15:09:03 +02:00
Daniil Polyakov
7296088005
feat: introduce parallel integration tests, wallet without global vars and etc
2025-12-31 04:30:22 +03:00
Daniil Polyakov
dc38b8ea2d
feat: add artifacts of program_methods and remove no_docker feature
2025-12-19 18:30:40 +03:00
Daniil Polyakov
87f45b8215
feat: move all crates into workspace
2025-12-19 18:30:40 +03:00
Daniil Polyakov
bbc02f0cf3
fix: add bindgen-runtime feature of rocksdb
2025-12-17 01:10:25 +03:00
Moudy
e52e7d9ee9
Merge pull request #227 from fryorcraken/chore/rocksdb
...
Upgrade rocksdb
2025-12-16 11:53:16 +01:00
Sergio Chouhy
8c92a58bbc
add program deployment examples
2025-12-11 20:59:37 -03:00
fryorcraken
ad7f773632
chore: upgrade rocksdb
...
To avoid issues with gcc 14+
2025-12-08 18:09:01 +11:00
Daniil Polyakov
6b26811229
feat: implement multiple blocks polling
2025-12-04 14:55:45 +03:00
Oleksandr Pravdyvyi
b3e4b9a8ca
Merge branch 'Pravdyvy/test-suite-proc-macro' into Pravdyvy/cli-refactor
2025-10-28 14:41:34 +02:00
Oleksandr Pravdyvyi
bf25c92b30
fix: suggestions fix
2025-10-28 10:41:40 +02:00
Oleksandr Pravdyvyi
a12d3cc354
Merge branch 'Pravdyvy/test-suite-proc-macro' into Pravdyvy/cli-refactor
2025-10-24 09:11:46 +03:00
Oleksandr Pravdyvyi
13232200c0
Merge branch 'Pravdyvy/usability-updates' into Pravdyvy/test-suite-proc-macro
2025-10-24 09:08:46 +03:00
Oleksandr Pravdyvyi
4e36ae4679
fix; first refactor
2025-10-23 17:33:25 +03:00
Oleksandr Pravdyvyi
d7089eac96
fix: taplo fmt
2025-10-22 16:28:19 +03:00