r4bbit
6c2bdb1b20
feat: add --label option to wallet account new sub command
...
Following the work done in
https://github.com/logos-blockchain/lssa/pull/292 and the comment on
extending the work
https://github.com/logos-blockchain/lssa/pull/292#pullrequestreview-3672282664 ,
this commit introduces a new `--label` option to the `wallet account
new` sub command.
**Usage**:
```
wallet account new public --label "Public test account"
wallet account new private --label "Private test account"
```
Labels have to be unique across all accounts in the wallet storage.
The commit also adds tests, which make use of the `WalletSubCommand`
trait functions (hence the change to make it a `pub trait`).
2026-02-18 12:30:17 +01:00
r4bbit
76af23f386
fix(sequencer_rpc): add AMM program id
...
This adds the AMM program ID to the `get_program_ids` RPC endpoints,
as it's currently missing while still being predeployed.
2026-02-17 14:55:46 +01:00
jonesmarvin8
f8dfcac17a
Merge branch 'main' into marvin/private_keys
2026-02-16 19:55:09 -05:00
jonesmarvin8
25084b5669
fix config file
2026-02-16 19:48:43 -05:00
Sergio Chouhy
32c36af126
fmt, clippy
2026-02-16 15:56:28 -03:00
jonesmarvin8
6a89ca0a7f
Merge branch 'main' into marvin/private_keys
2026-02-16 08:02:37 -05:00
Daniil Polyakov
8b16318c38
fix: use base58 encoding for account in Explorer & some formatting chores
2026-02-14 00:23:34 +03:00
jonesmarvin8
943efd1433
Merge branch 'main' into marvin/private_keys
2026-02-12 10:33:00 -05:00
Daniil Polyakov
975cfb9ec6
feat: fully integrate Sequencer, Indexer and Explorer with Bedrock
2026-02-12 16:31:13 +03:00
jonesmarvin8
d40232abcc
Merge branch 'main' into marvin/refactor-amm-program
2026-02-11 19:05:16 -05:00
jonesmarvin8
9e52d41090
minor fixes from merging main
...
ipk -> vpk
IncomingViewingPublicKey -> ViewingPublicKey
2026-02-11 12:11:35 -05:00
jonesmarvin8
6a399ac36c
Merge branch 'main' into marvin/private_keys
2026-02-11 11:49:57 -05:00
jonesmarvin8
0930e4dd86
Merge branch 'main' into marvin/refactor-amm-program
2026-02-10 20:28:13 -05:00
jonesmarvin8
f891f57cab
Merge branch 'main' into marvin/public_keys
2026-02-10 09:19:45 -05:00
Daniil Polyakov
9909f02803
refactor: split token program into crates
2026-02-06 00:08:43 +03:00
Sergio Chouhy
2fc1ec0fdc
Merge branch 'main' into schouhy/add-wallet-ffi-tests
2026-02-04 20:48:36 -03:00
Sergio Chouhy
5ac9953488
add ffi get account test
2026-02-04 11:36:10 -03:00
Sergio Chouhy
50b253fa00
move ffi tests to integration tests
2026-02-03 19:07:13 -03:00
fryorcraken
a5240925fc
Merge pull request #292 from logos-blockchain/fryorcraken/labels
...
add `wallet account label` feature
2026-02-02 14:30:33 +11:00
fryorcraken
636a3daedc
add wallet account label feature
...
- can add a label to own account via `wallet` CLI
- labels are displayed with `wallet account get` command
- labels are displayed with `wallet account list` command
- labels are persisted.
2026-01-28 15:19:09 +11:00
jonesmarvin8
19a53ed44e
Merge branch 'main' into marvin/refactor-amm-program
2026-01-27 18:28:36 -05:00
jonesmarvin8
819bb1b7f3
Merge branch 'main' into marvin/private_keys
2026-01-27 16:30:11 -05:00
Pravdyvy
c0e879edae
fix: suggestions fix 1
2026-01-27 09:46:31 +02:00
jonesmarvin8
9a92aa1553
updates and fmt
2026-01-26 18:38:41 -05:00
jonesmarvin8
2367bf343b
refactor AMM
2026-01-23 16:30:54 -05:00
Daniil Polyakov
652be426ae
refactor: split token program into crates
2026-01-23 00:53:21 +03:00
Václav Pavlín
a8f41838ac
bug(wallet): conflicting flag -h for transaction info
2026-01-22 09:29:54 +01:00
jonesmarvin8
2c9219bb0f
relabel ipk to vpk
2026-01-21 17:58:45 -05:00
jonesmarvin8
c6aa0c41b6
update tests
2026-01-21 17:27:23 -05:00
Daniil Polyakov
fb62143398
Merge pull request #259 from logos-blockchain/arjentix/multi-chain-calls-in-private-tx
...
Implement private multi chain calls
2026-01-21 16:55:49 +03:00
Daniil Polyakov
173945a170
Merge pull request #289 from logos-blockchain/fryorcraken/wallet-acc-ls-rm-commas
...
Remove trailing commas on `wallet account ls` output
2026-01-20 03:35:31 +03:00
Daniil Polyakov
4e46dbbdf4
feat: implement private multi chain calls in wallet (nssa)
2026-01-17 02:28:31 +03:00
fryorcraken
b8821693a8
Return keys for uninitialized accounts too
2026-01-16 11:31:11 +11:00
fryorcraken
9267cb59af
Return keys for public accounts
2026-01-16 11:31:11 +11:00
fryorcraken
562ab63735
Move the feature to get --keys
2026-01-16 11:31:10 +11:00
fryorcraken
6484e0121c
Remove trailing commas on wallet account ls output
...
The trailing commas is inconvenient:
1. For users trying to select an account id by double-clicking it in a terminal: the comma gets included in the selection
2. For dev parsing the `wallet account list` output: the commas needs to be handled
2026-01-16 11:30:11 +11:00
fryorcraken
f4978c1bde
add wallet account keys command to display ipk/npk
...
ipk and npk are needed to receive funds from an external account on a private account.
They are currently only displayed at account creation (`wallet account new private`). With this command, it is now possible to print them at any time.
2026-01-16 11:29:49 +11:00
Daniil Polyakov
78e593285d
Merge pull request #281 from logos-blockchain/chore/use-flag-instead-of-key
...
chore(wallet): use --all instead of fake option name all
2026-01-14 00:59:39 +03:00
Daniil Polyakov
2fcde81301
Merge pull request #262 from logos-blockchain/arjentix/refactor-integration-tests
...
Big integration tests refactor
2026-01-13 00:32:04 +03:00
Václav Pavlín
040dc9eff7
chore(wallet): use --all instead of fake option name all
2026-01-08 10:03:11 +01:00
fryorcraken
76839dd59a
add wallet account list --long option
...
Display account details in the `account list` output when using the `-l|--long` option.
2026-01-07 16:10:38 +11: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
2d1ee4b279
Merge branch 'main' into Pravdyvy/amm-wallet-integration
2025-12-26 23:07:48 +03:00
Daniil Polyakov
48d1d0e858
fix: adjust to a new token vec instruction
2025-12-26 20:56:34 +03:00
Daniil Polyakov
bece9a9108
Merge branch 'main' into Pravdyvy/token-burn-mint-wallet-update
2025-12-26 13:38:34 +03:00
Daniil Polyakov
9d37a88069
fix: proper type for token program instruction
2025-12-26 00:24:55 +03:00
Pravdyvy
639c282c61
fix: suggestions fix 2
2025-12-22 19:34:47 +02:00
Pravdyvy
22f6d92ca6
Merge branch 'main' into Pravdyvy/amm-wallet-integration
2025-12-22 05:00:50 +02:00
Pravdyvy
4f15237446
fix: suggestions fix
2025-12-22 04:42:32 +02:00
Pravdyvy
e351279278
fix: merge ci fix
2025-12-22 04:14:54 +02:00