Commit Graph
2324 Commits
Author SHA1 Message Date
jonesmarvin8 deccbc3ac0 initialize changes 2026-04-20 17:33:55 -04:00
Daniil Polyakov c6f8890473 Merge pull request #433 from logos-blockchain/arjentix/descriptive-invalid-program-behavior-error
feat: introduce more descriptive error messages for public execution
v0.2.0-rc2
2026-04-16 02:51:21 +03:00
Moudy 3bc371fbc0 Merge pull request #448 from logos-blockchain/schouhy/fix-deny
Fix deny by updating `rustls-webpki` and `multihash`
2026-04-15 20:38:58 +02:00
Sergio Chouhy db46dcc481 ignore rand deny 2026-04-15 14:25:19 -03:00
Sergio Chouhy a6194ad447 fix deny by updating rustls-webpki and multihash 2026-04-15 14:08:35 -03:00
Daniil Polyakov 699e91363e feat: introduce more descriptive error messages for public execution 2026-04-13 21:25:18 +03:00
Daniil Polyakov 190c811f10 Merge pull request #439 from logos-blockchain/pr/enable-indexer-tests
chore(ci): enable indexer integration tests with new docker image
2026-04-13 21:00:42 +03:00
Petar Radovic 910d23821a rm cfgsync config 2026-04-13 12:56:45 +02:00
Petar Radovic c15c6f09de settings 2026-04-13 12:49:37 +02:00
Petar Radovic 6cb2713356 port mappingS 2026-04-13 12:41:14 +02:00
Petar Radovic e9878b5e9d user config 2026-04-13 12:30:55 +02:00
Petar Radovic 4d71492b4a user config 2026-04-13 12:30:40 +02:00
Petar Radovic 97653a938a sed fix 2026-04-13 12:16:29 +02:00
Petar Radovic e6ebad31f9 config file 2026-04-13 11:47:33 +02:00
Petar Radovic 078c4726e4 simplify run script 2026-04-13 11:46:29 +02:00
Moudy 7a29b45cf4 Merge pull request #440 from logos-blockchain/schouhy/fix-main 2026-04-10 23:14:14 +02:00
Sergio Chouhy 9d2c37ff08 fix function parameters 2026-04-10 17:15:23 -03:00
Sergio Chouhy a0cba55035 Merge pull request #435 from logos-blockchain/schouhy/fix-genesis-nullifiers
fix: Add init nullifiers for preconfigured accounts on genesis
2026-04-10 16:37:25 -03:00
Petar Radovic 9dc5c32354 clear debug stuff 2026-04-09 19:43:33 +02:00
Petar Radovic 7266433d51 debug 2026-04-09 18:07:04 +02:00
Petar Radovic 427e1cea45 debug 2026-04-09 17:10:40 +02:00
Petar Radovic d96e7aed68 debug 2026-04-09 15:45:54 +02:00
Petar Radovic 35b7712b12 debugging 2026-04-09 15:04:15 +02:00
Petar Radovic e6ad1d3eea resubmit interval 2026-04-09 14:35:51 +02:00
Petar Radovic a8202603b6 reduce coefficient 2026-04-09 14:29:36 +02:00
Petar Radovic 0eb389b62c increase timeout 2026-04-09 13:51:53 +02:00
Petar Radovic b7ba2daa97 use newer image 2026-04-09 13:18:54 +02:00
Petar Radovic 359619ad14 new version 2026-04-08 23:33:12 +02:00
Petar Radovic 7af703f198 debug 2026-04-08 22:30:21 +02:00
Petar Radovic 74039f5cca debug 2026-04-08 21:59:15 +02:00
Petar Radovic 4d9ed77e14 debug 2026-04-08 21:07:03 +02:00
Petar Radovic 817cf35fff debug 2026-04-08 20:37:51 +02:00
Petar Radovic ab40aedf34 debug logs 2026-04-08 20:10:09 +02:00
Petar Radovic 5ba939d156 print logs 2026-04-08 19:40:26 +02:00
Petar Radovic c2690236e9 dump logs 2026-04-08 19:12:04 +02:00
Petar Radovic 63206faeea tag commits 2026-04-08 18:39:47 +02:00
Petar Radovic a2f752ac2f chore(ci): enable indexer integration tests 2026-04-08 18:33:35 +02:00
fryorcraken 7473c2f7a9 Merge pull request #392 from logos-blockchain/account-label
feat: add --account-label as alternative to --account-id
2026-04-08 22:39:34 +10:00
fryorcraken c0a3bee924 clippy 2026-04-08 15:01:22 +10:00
fryorcraken 45c3834da9 format 2026-04-08 14:54:31 +10:00
fryorcraken bb461fac2a revert some changes 2026-04-08 14:54:31 +10:00
fryorcraken ba3c72ae50 revert changes and add tests 2026-04-08 14:54:31 +10:00
fryorcraken 9f292f9b78 fix tests 2026-04-08 14:54:31 +10:00
fryorcrakenandClaude Opus 4.6 0dc8409efc feat: add --account-label as alternative to --account-id across all wallet subcommands
Allow users to identify accounts by their human-readable label instead of the
full `Privacy/base58` account ID. This makes the CLI much more ergonomic for
users who have labeled their accounts.

- [x] Add `resolve_account_label()` in `helperfunctions.rs` that looks up a label,
  determines account privacy (public/private), and returns the full `Privacy/id` string
- [x] Add `--account-label` (or `--from-label`, `--to-label`, `--definition-label`,
  `--holder-label`, `--user-holding-*-label`) as mutually exclusive alternative to
  every `--account-id`-style flag across all subcommands:
  - `account get`, `account label`
  - `auth-transfer init`, `auth-transfer send`
  - `token new`, `token send`, `token burn`, `token mint`
  - `pinata claim`
  - `amm new`, `amm swap`, `amm add-liquidity`, `amm remove-liquidity`
- [x] Update zsh completion script with `_wallet_account_labels()` helper
- [x] Add bash completion script with `_wallet_get_account_labels()` helper

1. Start a local sequencer
2. Create accounts and label them: `wallet account new public --label alice`
3. Use labels in commands: `wallet account get --account-label alice`
4. Verify mutual exclusivity: `wallet account get --account-id <id> --account-label alice` should error
5. Test shell completions: `wallet account get --account-label <TAB>` should list labels

None

None

- [x] Complete PR description
- [x] Implement the core functionality
- [ ] Add/update tests
- [x] Add/update documentation and inline comments

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 14:53:27 +10:00
Sergio Chouhy 5c3ee030a6 add test. Add --all-features to CI tests so that tests under the mock feature are also run 2026-04-07 21:26:45 -03:00
Sergio Chouhy 3ed6288a65 Merge pull request #431 from logos-blockchain/schouhy/fix-slow-tests-because-of-program-id-computation
Avoid computing program ids to speed up tests
2026-04-07 21:10:02 -03:00
Daniil Polyakov 35d8df0d03 Merge pull request #438 from logos-blockchain/arjentix/fix-docker-builds-on-tags2
fix: use just sha without ref_name
v0.2.0-rc1
2026-04-08 00:07:28 +03:00
Daniil Polyakov e4200e4b56 fix: use just sha without ref_name 2026-04-07 23:59:36 +03:00
Daniil Polyakov 7c1e5503c1 Merge pull request #437 from logos-blockchain/arjentix/fix-docker-builds-on-tags
fix: fix docker builds on tags
2026-04-07 23:48:12 +03:00
Sergio Chouhy 99bedb970d Merge branch 'main' into schouhy/fix-slow-tests-because-of-program-id-computation 2026-04-07 17:39:01 -03:00