Skip to content

Commit

Permalink
Merge branch 'tomas/split-transfer-tx' (#3297)
Browse files Browse the repository at this point in the history
* up/tomas/split-transfer-tx:
  retry tx submission on shielding
  fixup! apps_lib: update for split-up transfer tx
  fixup! apps_lib: update for split-up transfer tx
  update hermes
  ShieldingTransfer for IBC messages
  fixup! sdk: update for split-up transfer tx
  fixup! tests: update for split-up transfer tx
  changelog: add #3297
  sdk/tx: fix the display of insufficient funds for non-native token
  wasm_for_tests: update Cargo.lock
  wasm/tx_ibc: update the shielded transfer
  benches: update for split-up transfer tx
  encoding_spec: update for split-up transfer tx
  tests: update for split-up transfer tx
  node/bench_utils: update for split-up transfer tx
  apps: update for split-up transfer tx
  apps_lib: update for split-up transfer tx
  light_sdk: update for split-up transfer tx
  namada/protocol: rm dead code
  namada: update ibc path imports
  sdk: update for split-up transfer tx
  wasm: add shielded, shielding and unshielding transfer
  wasm/tx_transparent_transfer: remove the shielded section
  wasm: rename `tx_transfer` to `tx_transparent_transfer`
  move most of core IBC types into IBC crate
  replace the single `Transfer` struct with 4 distinct ones
  • Loading branch information
Fraccaman committed Jun 3, 2024
2 parents 055f8a1 + 21c9d36 commit 5b9addc
Show file tree
Hide file tree
Showing 62 changed files with 2,798 additions and 1,810 deletions.
6 changes: 6 additions & 0 deletions .changelog/unreleased/improvements/3297-split-transfer-tx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- The transfer command has been split into:
- `transfer` (shielded transfer)
- `transparent-transfer`
- `shield` (from transparent to shielded)
- `unshield` (from shielded to transparent)
([\#3297](https://github.com/anoma/namada/pull/3297))
2 changes: 1 addition & 1 deletion .github/workflows/scripts/hermes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.2-namada-beta10-rc
1.8.2-namada-beta11-rc
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion crates/apps/src/bin/namada/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ fn handle_command(cmd: cli::cmds::Namada, raw_sub_cmd: String) -> Result<()> {
}
cli::cmds::Namada::Client(_)
| cli::cmds::Namada::TxCustom(_)
| cli::cmds::Namada::TxTransfer(_)
| cli::cmds::Namada::TxTransparentTransfer(_)
| cli::cmds::Namada::TxShieldedTransfer(_)
| cli::cmds::Namada::TxShieldingTransfer(_)
| cli::cmds::Namada::TxUnshieldingTransfer(_)
| cli::cmds::Namada::TxIbcTransfer(_)
| cli::cmds::Namada::TxUpdateAccount(_)
| cli::cmds::Namada::TxRevealPk(_)
Expand Down
Loading

0 comments on commit 5b9addc

Please sign in to comment.