Pravdyvy
8a806899e4
Merge branch 'main' into Pravdyvy/hardcoded-initial-state
2026-03-26 17:53:05 +02:00
r4bbit
0ed91e869e
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-26 13:19:29 +01:00
Pravdyvy
9c90930bd6
Merge branch 'main' into Pravdyvy/hardcoded-initial-state
2026-03-20 14:55:42 +02:00
Daniil Polyakov
3913446cd2
fix: some wallet default config fixes after rebase
2026-03-20 01:21:50 +03:00
Daniil Polyakov
05c2c3a56d
fix: encode transactions with borsh in sequencer rpc
2026-03-20 00:48:04 +03:00
Daniil Polyakov
7b20a83379
fix: fixes after rebase & address comments
2026-03-20 00:48:04 +03:00
Daniil Polyakov
325960d696
feat: remove override_rust_log from wallet config
2026-03-20 00:48:04 +03:00
Daniil Polyakov
b631ef02c6
fix: final fixes & polishing
2026-03-20 00:47:37 +03:00
Daniil Polyakov
9d87e3b046
fix: fix lints
2026-03-20 00:41:05 +03:00
Daniil Polyakov
b254ebb185
feat: refactor sequencer RPC client-side
2026-03-20 00:41:05 +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
Pravdyvy
dc3650edd7
Merge branch 'main' into Pravdyvy/hardcoded-initial-state
2026-03-19 19:02:19 +02:00
Pravdyvy
afa0a63c95
fix: suggestions fix 2
2026-03-19 18:01:15 +02:00
jonesmarvin8
4fdefd3557
fix typo
2026-03-18 16:53:07 -04:00
jonesmarvin8
ce729f112d
Merge branch 'main' into marvin/bip-32-comp
2026-03-18 16:47:39 -04:00
jonesmarvin8
5d9980cf63
lint fixes
2026-03-18 13:10:36 -04:00
Pravdyvy
a0ab6ad92d
fix: lint fix
2026-03-18 18:32:05 +02:00
Pravdyvy
5ab7d40727
Merge branch 'main' into Pravdyvy/hardcoded-initial-state
2026-03-18 18:18:52 +02:00
jonesmarvin8
0bcb626adc
lint fixes
2026-03-18 10:28:52 -04:00
jonesmarvin8
ba8fdf4f29
fix conflicts from merging main
2026-03-17 19:16:09 -04:00
jonesmarvin8
8dd5037e28
Merge branch 'main' into marvin/nonce
2026-03-17 16:45:08 -04:00
Daniil Polyakov
d79ac3f9a8
fix: formatting
2026-03-17 21:25:30 +03:00
Daniil Polyakov
252848a145
feat: update rust to 1.94.0
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
jonesmarvin8
b44e066e84
fix constructor
2026-03-17 09:29:00 -04:00
Daniil Polyakov
756f2f4135
feat: add workspace lints to every crate
2026-03-17 15:13:44 +03:00
jonesmarvin8
dd64f0b1f8
Merge branch 'main' into marvin/nonce
2026-03-16 11:22:24 -04:00
Pravdyvy
6e756ac371
Merge branch 'main' into Pravdyvy/hardcoded-initial-state
2026-03-16 15:20:48 +02:00
Pravdyvy
a9a0c386ad
fix: integartion tests fix
2026-03-16 15:15:35 +02:00
Pravdyvy
02953999aa
feat: general initial state
2026-03-13 18:23:39 +02:00
fryorcraken
e20860ea97
fix: use base58 encoding for program_owner instead of hex
...
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 14:04:17 +11:00
fryorcraken
546c3d0986
fix: remove unused bytemuck dep and apply nightly fmt
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-13 13:46:20 +11:00
fryorcraken
339c0dc048
Prefer hex string to vector of number for stdout
2026-03-13 13:46:19 +11:00
Daniil Polyakov
3256e3d470
Merge pull request #381 from logos-blockchain/weboko/pinata-auth-transfer
...
feat: ensure pinata recipient initialized
2026-03-10 22:29:40 +03:00
jonesmarvin8
b1747548b2
fix nullifer typo
2026-03-09 12:23:57 -04:00
jonesmarvin8
a5119dc3f3
fix wallet configs
2026-03-09 11:50:37 -04:00
jonesmarvin8
1cfc710024
Merge branch 'main' into marvin/bip-32-comp
2026-03-09 05:23:24 -04:00
Pravdyvy
fa406e7a86
fix: removed redundant logging
2026-03-05 15:20:22 +02:00
Pravdyvy
cb57baaa36
fix: integartion test on claiming path for token updated
2026-03-05 14:13:13 +02:00
Pravdyvy
e3764e1911
fix: shared secret receiver fix
2026-03-05 12:35:18 +02:00
Sasha
ddecae8c40
feat: ensure pinata recipient initialized
2026-03-03 23:21:18 +01:00
jonesmarvin8
7daf32611a
add necessary typo back in
2026-03-02 16:42:32 -05:00
jonesmarvin8
d863b763d1
Merge branch 'main' into marvin/nonce
2026-03-02 10:49:07 -05:00
jonesmarvin8
ab41bff5cc
update config files
2026-02-27 18:30:54 -05:00
jonesmarvin8
b9324bf03b
Merge branch 'main' into marvin/bip-32-comp
2026-02-26 12:41:50 -05:00
Daniil Polyakov
529dfce413
fix: ensure wallet data is fully synced with fs
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