diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b56996..504e2d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,6 +156,7 @@ file(GLOB_RECURSE LIB_SRC ${CMAKE_CURRENT_SOURCE_DIR}/app/src/memo.c ${CMAKE_CURRENT_SOURCE_DIR}/app/src/plan/swap.c ${CMAKE_CURRENT_SOURCE_DIR}/app/src/c_api/rust.c + ${CMAKE_CURRENT_SOURCE_DIR}/app/src/plan/ics20_withdrawal.c ) add_library(app_lib STATIC ${LIB_SRC}) diff --git a/app/rust/src/lib.rs b/app/rust/src/lib.rs index 0d7e4ee..7cba860 100644 --- a/app/rust/src/lib.rs +++ b/app/rust/src/lib.rs @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. ********************************************************************************/ -#![no_std] +// #![no_std] #![no_builtins] #![allow(dead_code)] #![deny(unused_crate_dependencies)] @@ -43,14 +43,14 @@ pub(crate) use utils::prf::{expand_fq, expand_fr}; fn debug(_msg: &str) {} -#[cfg(all(not(test), not(feature = "clippy"), not(feature = "fuzzing")))] -use core::panic::PanicInfo; +// #[cfg(all(not(test), not(feature = "clippy"), not(feature = "fuzzing")))] +// use core::panic::PanicInfo; -#[cfg(all(not(test), not(feature = "clippy"), not(feature = "fuzzing")))] -#[panic_handler] -fn panic(_info: &PanicInfo) -> ! { - loop {} -} +// #[cfg(all(not(test), not(feature = "clippy"), not(feature = "fuzzing")))] +// #[panic_handler] +// fn panic(_info: &PanicInfo) -> ! { +// loop {} +// } extern "C" { fn check_app_canary(); @@ -59,12 +59,13 @@ extern "C" { fn zemu_log_stack(s: *const u8); } -pub(crate) fn canary() { - #[cfg(not(any(test, fuzzing)))] - unsafe { - check_app_canary(); - } -} +// pub(crate) fn canary() { +// let var_name = #[cfg(not(any(test, fuzzing)))] +// unsafe { +// check_app_canary(); +// }; +// var_name +// } #[cfg(not(any(test, fuzzing)))] pub fn is_expert_mode() -> bool { diff --git a/app/src/parser.c b/app/src/parser.c index 4ece7bf..9b508cf 100644 --- a/app/src/parser.c +++ b/app/src/parser.c @@ -30,6 +30,7 @@ #include "tx_metadata.h" #include "memo.h" #include "swap.h" +#include "ics20_withdrawal.h" static uint8_t action_idx = 0; @@ -90,6 +91,9 @@ parser_error_t parser_getNumItems(const parser_context_t *ctx, uint8_t *num_item case penumbra_core_transaction_v1_ActionPlan_swap_tag: CHECK_ERROR(swap_getNumItems(ctx, &action_num_items)); break; + case penumbra_core_transaction_v1_ActionPlan_ics20_withdrawal_tag: + CHECK_ERROR(ics20_withdrawal_getNumItems(ctx, &action_num_items)); + break; default: return parser_unexpected_error; } @@ -159,6 +163,10 @@ parser_error_t parser_getItem(const parser_context_t *ctx, uint8_t displayIdx, c CHECK_ERROR(swap_getItem(ctx, &ctx->tx_obj->actions_plan[action_idx].action.swap, 0, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount)) break; + case penumbra_core_transaction_v1_ActionPlan_ics20_withdrawal_tag: + CHECK_ERROR(ics20_withdrawal_getItem(ctx, &ctx->tx_obj->actions_plan[action_idx].action.ics20_withdrawal, 0, outKey, outKeyLen, + outVal, outValLen, pageIdx, pageCount)) + break; default: return parser_unexpected_error; } diff --git a/app/src/parser_impl.c b/app/src/parser_impl.c index 934a750..f58231f 100644 --- a/app/src/parser_impl.c +++ b/app/src/parser_impl.c @@ -36,6 +36,30 @@ static bool decode_detection_data(pb_istream_t *stream, const pb_field_t *field, static uint16_t actions_qty = 0; static uint16_t detection_data_qty = 0; + +void print_buffer(bytes_t *buffer, const char *title) { +#if defined(LEDGER_SPECIFIC) + ZEMU_LOGF(50, "%s\n", title); + char print[1000] = {0}; + array_to_hexstr(print, sizeof(print), buffer->ptr, buffer->len); + ZEMU_LOGF(1000, "%s\n", print); +#else + printf("%s %d: ", title, buffer->len); + for (uint16_t i = 0; i < buffer->len; i++) { + printf("%02x", buffer->ptr[i]); + } + printf("\n"); +#endif +} + +void print_string(const char *str) { +#if defined(LEDGER_SPECIFIC) + ZEMU_LOGF(100, "%s\n", str); +#else + printf("%s\n", str); +#endif +} + bool decode_action(pb_istream_t *stream, const pb_field_t *field, void **arg) { if (arg == NULL || *arg == NULL) { return false; diff --git a/app/src/plan/ics20_withdrawal.c b/app/src/plan/ics20_withdrawal.c index 5c02897..edbcfc7 100644 --- a/app/src/plan/ics20_withdrawal.c +++ b/app/src/plan/ics20_withdrawal.c @@ -13,6 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. ********************************************************************************/ +#include "ics20_withdrawal.h" #include "parser_impl.h" #include "parser_interface.h" @@ -21,6 +22,8 @@ #include "pb_decode.h" #include "protobuf/penumbra/core/transaction/v1/transaction.pb.h" #include "zxformat.h" +#include "ui_utils.h" +#include "note.h" parser_error_t decode_ics20_withdrawal_plan(const bytes_t *data, ics20_withdrawal_plan_t *withdrawal) { penumbra_core_component_ibc_v1_Ics20Withdrawal withdrawal_plan = penumbra_core_component_ibc_v1_Ics20Withdrawal_init_default; @@ -59,3 +62,87 @@ parser_error_t decode_ics20_withdrawal_plan(const bytes_t *data, ics20_withdrawa return parser_ok; } + + +parser_error_t ics20_withdrawal_getNumItems(const parser_context_t *ctx, uint8_t *num_items) { + UNUSED(ctx); + *num_items = 1; + return parser_ok; +} + +parser_error_t ics20_withdrawal_getItem(const parser_context_t *ctx, const ics20_withdrawal_plan_t *ics20_withdrawal, + uint8_t displayIdx, char *outKey, uint16_t outKeyLen, + char *outVal, uint16_t outValLen, uint8_t pageIdx, + uint8_t *pageCount) { + + parser_error_t err = parser_no_data; + if (ics20_withdrawal == NULL || outKey == NULL || outVal == NULL || outKeyLen == 0 || outValLen == 0) { + return err; + } + + + if (displayIdx != 0) { + return parser_no_data; + } + + char bufferUI[SWAP_DISPLAY_MAX_LEN] = {0}; + + snprintf(outKey, outKeyLen, "Action"); + CHECK_ERROR(ics20_withdrawal_printValue(ctx, ics20_withdrawal, bufferUI, sizeof(bufferUI))); + pageString(outVal, outValLen, bufferUI, pageIdx, pageCount); + + return parser_ok; + +} + +parser_error_t ics20_withdrawal_printValue(const parser_context_t *ctx, const ics20_withdrawal_plan_t *ics20_withdrawal, char *outVal, uint16_t outValLen) { + if (ctx == NULL || ics20_withdrawal == NULL || outVal == NULL) { + return parser_no_data; + } + + if (outValLen < OUTPUT_DISPLAY_MAX_LEN) { + return parser_unexpected_buffer_end; + } + + MEMZERO(outVal, outValLen); + + // example: Output 100 USDC to penumbra1k0zzug62gpz60sejdvu9q7mq… + + // add action title + uint16_t written_value = snprintf(outVal, outValLen, "ICS20Withdrawal "); + + // add "channel" + snprintf(outVal + written_value, outValLen - written_value, "Channel "); + written_value = strlen(outVal); + + MEMCPY(outVal + written_value, ics20_withdrawal->source_channel.ptr, ics20_withdrawal->source_channel.len); + written_value += ics20_withdrawal->source_channel.len; + + snprintf(outVal + written_value, outValLen - written_value, " Amount "); + written_value = strlen(outVal); + + value_t ics20_withdrawal_value = {0}; + ics20_withdrawal_value.amount.hi = ics20_withdrawal->amount.hi; + ics20_withdrawal_value.amount.lo = ics20_withdrawal->amount.lo; + ics20_withdrawal_value.asset_id.inner.ptr = ics20_withdrawal->denom.inner.ptr; + ics20_withdrawal_value.asset_id.inner.len = ics20_withdrawal->denom.inner.len; + CHECK_ERROR(printValue(ctx, &ics20_withdrawal_value, &ctx->tx_obj->parameters_plan.chain_id, outVal + written_value, outValLen - written_value)); + written_value = strlen(outVal); + + snprintf(outVal + written_value, outValLen - written_value, "To "); + written_value = strlen(outVal); + + // snprintf(outVal + written_value, outValLen - written_value, " Output Asset "); + // written_value = strlen(outVal); + + // CHECK_ERROR(printAssetIdFromValue(ctx, &input_value, &ctx->tx_obj->parameters_plan.chain_id, outVal + written_value, outValLen - written_value)); + // written_value = strlen(outVal); + + // snprintf(outVal + written_value, outValLen - written_value, " Claim Fee "); + // written_value = strlen(outVal); + + // CHECK_ERROR(printValue(ctx, &swap->swap_plaintext.claim_fee, &ctx->tx_obj->parameters_plan.chain_id, outVal + written_value, outValLen - written_value)); + // written_value = strlen(outVal); + + return parser_ok; +} diff --git a/app/src/plan/ics20_withdrawal.h b/app/src/plan/ics20_withdrawal.h index 6a9b6e3..3bcf248 100644 --- a/app/src/plan/ics20_withdrawal.h +++ b/app/src/plan/ics20_withdrawal.h @@ -31,6 +31,13 @@ extern "C" { #endif parser_error_t decode_ics20_withdrawal_plan(const bytes_t *data, ics20_withdrawal_plan_t *withdrawal); +parser_error_t ics20_withdrawal_getNumItems(const parser_context_t *ctx, uint8_t *num_items); +parser_error_t ics20_withdrawal_getItem(const parser_context_t *ctx, const ics20_withdrawal_plan_t *ics20_withdrawal, + uint8_t displayIdx, char *outKey, uint16_t outKeyLen, + char *outVal, uint16_t outValLen, uint8_t pageIdx, + uint8_t *pageCount); + +parser_error_t ics20_withdrawal_printValue(const parser_context_t *ctx, const ics20_withdrawal_plan_t *ics20_withdrawal, char *outVal, uint16_t outValLen); #ifdef __cplusplus } diff --git a/app/src/plan/swap.c b/app/src/plan/swap.c index 6a3a345..607b089 100644 --- a/app/src/plan/swap.c +++ b/app/src/plan/swap.c @@ -93,7 +93,6 @@ parser_error_t decode_swap_plan(const bytes_t *data, swap_plan_t *swap) { return parser_ok; } - parser_error_t swap_getNumItems(const parser_context_t *ctx, uint8_t *num_items) { UNUSED(ctx); *num_items = 1; diff --git a/tests/testcases.json b/tests/testcases.json index eb0152a..f94aeb0 100644 --- a/tests/testcases.json +++ b/tests/testcases.json @@ -1,920 +1,52 @@ [ { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08df80dca0c3e6d3c8051a0022020a002a520a50ff024572caaf165841bb6185f4896be4b66b1bb3e4bf5752b7910d40027b913132f777b18677c57cb559ae63452c074590febb5fbbe8eb141c908d4fa9ca0d029f8575b601001a207c20aeb65a94dbc03220094ad33c01f3ab1a4de6d46e760bcb360923c178b5b0cc41eb896c22508c526712209be349bf35d1136e4849686378676cdfdd1a626134c70b52c70c5ca14d01a8031a20dcdf266511f85e31694c20ac3c84a30c10f478b370cdfaea9d7503e8606e110722205c5c8303a4726320a0af64877c6235b1d0e56db87253ac5099781fc5bff4be0b1231122163776d6975636f6172656a6a7a6e7179676d726e6c65687a6475722d39323730381a0c0a0a08ddcc8f9f8fe4ec82032a92030aed020a520a503fbc7342fc8fa689e1fb87f7a07d04793f0ee9bafa371247484a2d035515cc7e42de4c30ea90d62b72ca5e5bf7393facbbd50ae80867b20c17420867476626a0ee4856892bfc7f3d95aff07802e568bf12960220342020686a6f4f4c6a2051654a336158204c5432485471414720316b34373033207120203636203520643358392039337120756d654220204c59723933333074207874677476203638207452535a202076433263206152202053332038782038333372325a33795220684139203754364e2020206e346f6464202020392046206220203756744d35466820456476736235322063756533716d20532038336f7a4320585220474b64764320532020542071345a3062747843794651546c6839537320332071696f2030206e203038206c305375203959304739313968323145454b6c6a5563702039207a666630322045753520777930466f612020332052494f4d3461205856206e362055734a6257202035365278122035eb7e8008814c0252ec1b8ab82cc6e6aece5a8eefe112390c5973d7be50d446", + "blob": "0a9c02c20c98020a0a08c1cdf3f082faf8cb0b120c0a0a31336354394e6c3236351a8f0170656e756d627261316d7976646130326d337261346675796736763077676b6d7136383434743575356768323230736171663563747a71737968683473346c7033737276777865386734356632666a6465683539386168777a6635376e6d6334793535716567656374686b72707871637232657a726872326b347333796d323239347270777a79377a7a747464656322520a50b9a0fa468b69696e8c79fa78a961e4cb446c469c17914e276f79bb01c50567ccbc3fdf93755e63f49c82b873ed0599e42b7688cad2819253040a3df42b1bcfe960ac8f5cfe81c2a52ccd258445650a202a0b08b3e0fa1c10c2f0ea83013a096368616e6e656c2d30121a120a70656e756d6272612d311a0c0a0a08d09282a6ea89cb84092aea030ac5030a520a5030da32c5fdc3e025471ee3a71c38c93c9c3b32dc01897248783cb2eca406b5c3f98f8d9af8e64654777d3608e28c23da71e39b84f7c46e28b58b2dc6c9ed7534a4e0c527fa10f53785d96293c117400512ee0234534620316d2020206334206a44204461383651334273316a633739324c4b3952716b356a7a4a6c6a3854364c4179326c347151204e69687146474372323461466f6b41485920317a20422035334864204f3949376236747a654965533079446453386f347a693866566554316a4439382047466c20204c374231542036766b6b374a4a6c423752584351463771375120694c464655305177583731327871466d70373620204d38324457557344506a20644a203374386767622073333037313230613659526d4e204a20336c6c45445a5232762062202061534b523068634161204179204c304a794c63203220334b3361504b4a6d34703836516f31473641205946502043333133204168726c6c312047326271672056376e7720204266203739626d20206e6d43663830586538414c316f524f7520206938462037362020536b512058432020656c20386979727130204536636c6631452048683933417379204f3436384820207a2037313312204348bac62f1197d76b048f94c1b8098877db41b01e2b2af54460b64efead6620", "index": 0, - "output": [ - "0 | Chain ID : cwmiucoarejjznqygmrnlehzdur-92708", - "1 | Fee [1/3] : 217777111109461597 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : Sub-account #76", - "3 | Memo Text [1/8] : 4 hjoOLj QeJ3aX LT2HTqAG 1k4703 q 6", - "3 | Memo Text [2/8] : 6 5 d3X9 93q umeB LYr9330t xtgtv 68 t", - "3 | Memo Text [3/8] : RSZ vC2c aR S3 8x 833r2Z3yR hA9 7T6N", - "3 | Memo Text [4/8] : n4odd 9 F b 7VtM5Fh Edvsb52 cue3", - "3 | Memo Text [5/8] : qm S 83ozC XR GKdvC S T q4Z0btxCyFQTl", - "3 | Memo Text [6/8] : h9Ss 3 qio 0 n 08 l0Su 9Y0G919h21EEKlj", - "3 | Memo Text [7/8] : Ucp 9 zff02 Eu5 wy0Foa 3 RIOM4a XV n6", - "3 | Memo Text [8/8] : UsJbW 56Rx", - "4 | Action [1/7] : Swap Input 401188927443501151 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : cwmiucoarejjznqygmrnlehzdur-92708", - "1 | Fee [1/3] : 217777111109461597 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : Sub-account #76", - "3 | Memo Text [1/8] : 4 hjoOLj QeJ3aX LT2HTqAG 1k4703 q 6", - "3 | Memo Text [2/8] : 6 5 d3X9 93q umeB LYr9330t xtgtv 68 t", - "3 | Memo Text [3/8] : RSZ vC2c aR S3 8x 833r2Z3yR hA9 7T6N", - "3 | Memo Text [4/8] : n4odd 9 F b 7VtM5Fh Edvsb52 cue3", - "3 | Memo Text [5/8] : qm S 83ozC XR GKdvC S T q4Z0btxCyFQTl", - "3 | Memo Text [6/8] : h9Ss 3 qio 0 n 08 l0Su 9Y0G919h21EEKlj", - "3 | Memo Text [7/8] : Ucp 9 zff02 Eu5 wy0Foa 3 RIOM4a XV n6", - "3 | Memo Text [8/8] : UsJbW 56Rx", - "4 | Action [1/7] : Swap Input 401188927443501151 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08ebcfbdd1b3a38ca90522020a002a520a50dfacfd712fd676cbffd6cdfbb6da9d9dfbffcf6e8ca418febc2a0d7886905ad689016169c61ca01c54c1e265fd0a1cf2419aaedafd821c67609c2344e53e89a2ff41e207cc41a83cd1e862e122ba5f433220353867e6b6f2b609305f8f54a9736ddf11d0200fb4cf99d0f63e5145ebb8860e1220de059d91c9d2a343c6d85e33e14e0d92e072bf7d7d47886f772d3038fca019031a205bc6296afcb916a9051b8016031070306054ea2a1b82ba82dc589b259d0a5f0422208e2fa14b85ed89be88d5bd45daa9cc18ec4e0db5a27303b0efec4834756ff90b12370895a62412236168647376756f796175636f6b6579687577666167777576626979696e2d39323936341a0c0a0a089fb9eebda0f3a0fc01", - "index": 1, - "output": [ - "0 | Chain ID : ahdsvuoyaucokeyhuwfagwuvbiyin-92964", - "1 | Expiry Height : 594709", - "2 | Fee [1/3] : 142008085840108703 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Action [1/7] : Swap Input 383422911289976811 passet19", - "3 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "3 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "3 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "3 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "3 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "3 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : ahdsvuoyaucokeyhuwfagwuvbiyin-92964", - "1 | Expiry Height : 594709", - "2 | Fee [1/3] : 142008085840108703 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Action [1/7] : Swap Input 383422911289976811 passet19", - "3 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "3 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "3 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "3 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "3 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "3 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08d7a8cbc5acdeebed071a0022020a002a520a503d1dc912644171fd7633742156ebef4d0cc6c5c7ae5444b710eda62c924fd7df0547fe8fd2982bf7d8373c18f89d7c23994a3f0c51b66427a3052e124700566129a756fa0781d9e3aae6ea4e949e9b863220524c03f7d42cfbb18d6ca0f553736cfeb464e51c48ced618f91baa2cd63475d41220924c6bfc3f82198f4b05644ca3aef8fc4b368a22b4da9f9d495ae8f2150d86011a20adf6072b5b24e1eec11e515b754c48dc26e593c276c485854f502e19c0d956022220517914eda46be0480998846e4d8b2870031e43cbca27945cdce5f1a45a6ce104121e08f7db31120a70656e756d6272612d311a0c0a0a08feecd3e8ece3f6f806", - "index": 2, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 814583", - "2 | Fee : 500421958951.040638 penumbra", - "3 | Action [1/3] : Swap Input 566238535937.610839 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 814583", - "2 | Fee : 500421958951.040638 penumbra", - "3 | Action [1/3] : Swap Input 566238535937.610839 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08d191c1dbfa88c4e80622020a002a520a50b6d3898dae89a713e6b1e722d7fcc8c54ac71f7a4c7990d65edc6f72ec82193e909e765095ad3bb47033238513760fd0e427e34d51b65273230da80137530b9b3be9302a035c42df8223fb98a0819c4a32204cc4c64e9e9bf491918483f290c940dcdeba7915983d5297af9d7b56f31503e2122015823c8b4e2574296ed1365b5265063c67aecc6e8708c3583258af935351ad011a20480672c960dc49d3c311b7428dfbd139d306d859c81931fdf4fcd7c1cf3a7d012220cb29db8968a1bfe4bf5bf2946f6a27408cb5f1c2334f616b806dacc9ed2a3002123e122e7a627572727a6762677566647a66737665716d696a796c7372762d343130373832343030363134313233333234391a0c0a0a08be84d7fe85b792b409", - "index": 3, - "output": [ - "0 | Chain ID [1/2] : zburrzgbgufdzfsveqmijylsrv-41078240061", - "0 | Chain ID [2/2] : 41233249", - "1 | Fee [1/3] : 677872800149914174 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 491191734365079761 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : zburrzgbgufdzfsveqmijylsrv-41078240061", - "0 | Chain ID [2/2] : 41233249", - "1 | Fee [1/3] : 677872800149914174 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 491191734365079761 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08abecf7f1cae887cf0922020a002a520a50b655560a85f06b1873938f93e7ccbe482a9d3b11d444a097e262f804a4bb57a716540fb179930c6c738755d9eede34f47636edaa5cdb3ed769b362ac633c46ebae492bf1751c5deda2621b6f6bc454e03220be6bad2357e171b15dc7ce8e74fd7f9138b2aa7ae32e3085cc103bfb549395a21220610319beb82711507854b8cbcf78488300165aa88185c3a69761d615d917e3001a20cc331209b1f8b0e3376a8fa0eadaf9154e031e26cdd72e4a2ec7c53c14fdd2042220ababf7c411bfca7dd178719871014c02f33e42ddbcf9626239cafbd9e61b7105121a120a70656e756d6272612d311a0c0a0a08ed8ae6c7e5abf4c109", - "index": 4, "output": [ "0 | Chain ID : penumbra-1", - "1 | Fee : 685621771440.325997 penumbra", - "2 | Action [1/3] : Swap Input 693025772503.168555 penumbr", - "2 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "2 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Fee : 685621771440.325997 penumbra", - "2 | Action [1/3] : Swap Input 693025772503.168555 penumbr", - "2 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "2 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a0881b28af1cdbd8dac0a22020a002a520a50f2333f33d21b6783ff1d4722f1231a419b4b169c94b2cda77f72fc08933de95bd707ea016f1990c803e8b31b09297d9c939c1e24a085fcbe3b9cc2bbcd8a22e2eb14720fb4086d53995a8c81e5c4942b3220d35e777eec65f47db54e73e558d988e3ce9ae49781da9dbecb6d7d3029394537122037630cdb52a35ba971efc86bc681b475369214fd6b359888af9ef24be66552021a203fccc61dd05cd2eee6d08ab5b7fb8019b70f116074ca137d54cf498aa3158c0c2220b3e7024cb0d0b5de85b5722f53d54dcaa7feecc5d377f07a4ac546143f71e711124f08a5ff1e123c6979666f7963776a76676e6672697271706d716b6870677a6e66686a7564782d373037303237303331353835353035373338333030383137393339361a0b0a0908b3c089f4e8e08572", - "index": 5, - "output": [ - "0 | Chain ID [1/2] : iyfoycwjvgnfrirqpmqkhpgznfhjudx-707027", - "0 | Chain ID [2/2] : 0315855057383008179396", - "1 | Expiry Height : 507813", - "2 | Fee [1/3] : 64201611618181171 passet1984fctenw8m2f", - "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", - "2 | Fee [3/3] : qxmanqm", - "3 | Action [1/7] : Swap Input 745405029785180417 passet19", - "3 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "3 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "3 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "3 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "3 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "3 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : iyfoycwjvgnfrirqpmqkhpgznfhjudx-707027", - "0 | Chain ID [2/2] : 0315855057383008179396", - "1 | Expiry Height : 507813", - "2 | Fee [1/3] : 64201611618181171 passet1984fctenw8m2f", - "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", - "2 | Fee [3/3] : qxmanqm", - "3 | Action [1/7] : Swap Input 745405029785180417 passet19", - "3 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "3 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "3 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "3 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "3 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "3 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08f4e5cea3cffb9ea00522020a002a520a50f2f2fc573c4108e66d4af3af593e3a5746340dd82400df7ea2e52b54c69c5f27e8a8edabd2ff055209b1e7c3668f0588ceed9971a4e31339e80b0e095fb58b12310b4ca6b0dbdc956358737daea75c64322032abc806f2738084e8d5ef6e2bde1b8f13c05dd91ee1e1baf7e8ba5ecdc7107b1220956847d591b251cf44ac0dc9636d4abf5421089520c07d2962ced2dbc1764f041a20823287e977ffbd5a61826a3668f304c9755a485e19d46218d1f84f664530be012220b7b0a774182449c2b17a5ee9c35215120fb8e4fad97662014b6b56e727937803121e088daf1c120a70656e756d6272612d311a0c0a0a0882ec9ff1ad8fafc602", - "index": 6, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 464781", - "2 | Fee : 183728920714.540546 penumbra", - "3 | Action [1/3] : Swap Input 378438557623.366388 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 464781", - "2 | Fee : 183728920714.540546 penumbra", - "3 | Action [1/3] : Swap Input 378438557623.366388 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08c6accba4f9d8efca0322020a002a520a50c829c45bb344f7def3261d3e6d65a92ff929f92911728ee840b022e7c4348bcc1ce470b207e10aaa344f46fca63f7995dc8532a50e36064208544b8ccafba8967d74428064693f55ff09a0b38fbb010732203d5d482c1f021901928c1350b9031258f02fbc316e801da9de3844397e5c674112200badd6a2ce5a1055ad01541068d794cd8e66ed7fdc3496b6d3205d42ad6808021a203d91699c6984e82363c9e56aae560e22b9160eb0ff24ee2a2b29dab54f20931222202d043522039a08fb75e4cc32b86e9cf209c88f930656e504a01d52ee484a9300121e0888d32b120a70656e756d6272612d311a0c0a0a08b895bf9bbf96e5b305", - "index": 7, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 715144", - "2 | Fee : 389443393395.08396 penumbra", - "3 | Action [1/3] : Swap Input 258322318044.091974 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 715144", - "2 | Fee : 389443393395.08396 penumbra", - "3 | Action [1/3] : Swap Input 258322318044.091974 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a088d9d809ba7eab7f30522020a002a520a500f0b7f44e8814645e90dcaf1a8b1d35f794483fd067037a4c9ad0a104c12b0dc4fa351bd73ea6b3a3b7fd8af874e987a3e5d4f6420a53d66bd022b6c97048fad6430718940efc32fbf5d7e9f36105f123220325d45fde301625f40bb511cabc4f931722c6cb6013d576049cb6df1677af6d51220aca7b41e9f8969049f8459c847f904557b04ecaa0d30c8b9908981137cb1ef011a20e14edc51951c73e3035546b2810efc20befcc564fc063b88e3cb5472bc65f00022206a8f87b6c5dedca4e81aaaab3152577b4b1c795c938299fcf16b5a2b57512b05121e0880b625120a70656e756d6272612d311a0c0a0a08e7d79082b79adbaf04", - "index": 8, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 613120", - "2 | Fee : 315090154316.639207 penumbra", - "3 | Action [1/3] : Swap Input 425272760049.077901 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 613120", - "2 | Fee : 315090154316.639207 penumbra", - "3 | Action [1/3] : Swap Input 425272760049.077901 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08cdf4afdf80fadcdf0922020a002a520a502e3baeb78f74a7439640c268ed9f3a920cbde238b4548eefb3dc32bac026c4b788681b5b435e5c4694623dbc58304ccd78f15ef238e7d311271b1b1b45466c0d3996a0c7313aaf9d49735cd0ca2d7a2a3220f2739cffe058642b93207d8fcb4408f1bc4c612cff9253b3bc2273e940283fe112204d7658187579f3371b6cd0e5c1ec76dd407101d0912052d0c418fe395209e8011a20dd4ce7b1d230d3d6473da66914f2d27206d0459880792c657bbb5ca90ed979072220acf12db60c2a7c01308bbad6c8c8578e5b820aa010372c0e9e18987cb892b207121e0885d037120a70656e756d6272612d311a0c0a0a0884a4b8af84c788d004", - "index": 9, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 911365", - "2 | Fee : 333303997512.159748 penumbra", - "3 | Action [1/3] : Swap Input 702407404283.492941 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 911365", - "2 | Fee : 333303997512.159748 penumbra", - "3 | Action [1/3] : Swap Input 702407404283.492941 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08cac3c5ec91abd1df0d22020a002a520a50b165317dd5459c96b315f9ef7ccc2a7c172096846af30e864836f1b75a20efbd67f340a5fb5ce10f6a33e97bdcd16bbc696c25176aa8f821461b67b8906d961cc2441e7f4154f61a841278d22ba25a38322002fbbf9a9844e4a0bae48660ad79d2fc3b777fc4591c8e2b1d66c212379018c112201ad6a4730848573416a4b33db76a757f932fd2ac0a862c1884184487a3530b041a201af620194c220cbe1bafec0db9ee15645dae42f3882e47678eb7ac661b3dc30422209d0dd2b2dbb97951bfff9bebb6cdd363f686d8195c9ff0498d75b01d5a1a430f121d08d943120a70656e756d6272612d311a0c0a0a08bfc9d6f3ffbbccd7032a9d030af8020a520a50413fa68e4d120f2641a27e1a0c32cbdca40c79daf518d38c936a5a4347707d16a2457744a6a62edcad75b80573734be46d72c90784add8f700a87daa57d16191fa2fe1b3218a7c72fc9e853532b7695e12a10241747074367a50204a6758203220204e50716f2078596b6d36484c342071475153375334324a6d3466595445564730416c674f2020717a6f4f206e33574e363566483572342020434b506b595520593120356b53346e4520654136414e56333946433557567a385a20307647697a207320205a73314c67204e37746b6c205274744b79555320202039612055683232636b36206520397051514f364f4c2035204c35716a3845207332727320206f79303661203820363841207120343957627646664d35354e6e7556676e203074764b205737753020742038726b7877703020533144352065345420313661732049674668453745494876672035682064396c795369394a5570743720587a364d68204c6874784c786d5520722020205230612012208108d9bac02434dd8651fa85933a8bc0f413e6ca01b5ab2042b0c1d48dcee7e3", - "index": 10, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 8665", - "2 | Fee : 265485741154.739391 penumbra", - "3 | Memo Sender Address : Sub-account #89", - "4 | Memo Text [1/8] : Atpt6zP JgX 2 NPqo xYkm6HL4 qGQS7S42J", - "4 | Memo Text [2/8] : m4fYTEVG0AlgO qzoO n3WN65fH5r4 CKPkY", - "4 | Memo Text [3/8] : U Y1 5kS4nE eA6ANV39FC5WVz8Z 0vGiz s ", - "4 | Memo Text [4/8] : Zs1Lg N7tkl RttKyUS 9a Uh22ck6 e 9pQ", - "4 | Memo Text [5/8] : QO6OL 5 L5qj8E s2rs oy06a 8 68A q 49W", - "4 | Memo Text [6/8] : bvFfM55NnuVgn 0tvK W7u0 t 8rkxwp0 S1D5", - "4 | Memo Text [7/8] : e4T 16as IgFhE7EIHvg 5h d9lySi9JUpt7 ", - "4 | Memo Text [8/8] : Xz6Mh LhtxLxmU r R0a ", - "5 | Action [1/3] : Swap Input 990586692095.27137 penumbra", - "5 | Action [2/3] : Output Asset penumbra Claim Fee 0 pen", - "5 | Action [3/3] : umbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 8665", - "2 | Fee : 265485741154.739391 penumbra", - "3 | Memo Sender Address : Sub-account #89", - "4 | Memo Text [1/8] : Atpt6zP JgX 2 NPqo xYkm6HL4 qGQS7S42J", - "4 | Memo Text [2/8] : m4fYTEVG0AlgO qzoO n3WN65fH5r4 CKPkY", - "4 | Memo Text [3/8] : U Y1 5kS4nE eA6ANV39FC5WVz8Z 0vGiz s ", - "4 | Memo Text [4/8] : Zs1Lg N7tkl RttKyUS 9a Uh22ck6 e 9pQ", - "4 | Memo Text [5/8] : QO6OL 5 L5qj8E s2rs oy06a 8 68A q 49W", - "4 | Memo Text [6/8] : bvFfM55NnuVgn 0tvK W7u0 t 8rkxwp0 S1D5", - "4 | Memo Text [7/8] : e4T 16as IgFhE7EIHvg 5h d9lySi9JUpt7 ", - "4 | Memo Text [8/8] : Xz6Mh LhtxLxmU r R0a ", - "5 | Action [1/3] : Swap Input 990586692095.27137 penumbra", - "5 | Action [2/3] : Output Asset penumbra Claim Fee 0 pen", - "5 | Action [3/3] : umbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08d3f5e1bbb29ad59f0422020a002a520a50ef80aa82aaf960edeb9e8e063058ca9ccbfd8cb8650a41c8feebae5ab9d5e0223f59a65cc9a97db15163adccd7c34551223a19e4fb6c69094a2aaf02dc1973b3ccaa1eff43bf195f64dd5a0936749bd232203e5d59cfcd58c9fb6edff520a67e3237a41be0815f36a99908c38fdc7b5905921220b138ee7675df63f8026da9390b0ca238c750ce569757be4f54658ddffff18c021a20a6e1e197ce46a0926d8420f23cf80a0198d9cba762ef37649e3d704757d8a60622202528081b68792965a3ffee30024eba3a1fa9bed529ce8c31a91753baa6f0fe0b121e08929d15120a70656e756d6272612d311a0c0a0a08e0faba8cade994e802", - "index": 11, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 347794", - "2 | Fee : 202753564040.150368 penumbra", - "3 | Action [1/3] : Swap Input 306056565561.522899 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 347794", - "2 | Fee : 202753564040.150368 penumbra", - "3 | Action [1/3] : Swap Input 306056565561.522899 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08e0c88bfd9ccadab90722020a002a520a50d63aa3c10d1449118ee41aa6f608e705c46ea41a2e6eb3e675b1ca92a3e439cf73869c85d2ac527499c7e0d0913d280bfe2fa0bfd10b9fe32c61154960e5a4df4ff9ee7cc3fced0d143f4e9906ca9be53220a6fd6dd15d019e3920099098b87fcaf5521b2ff056655369093b0dd472b9d8a412206625097c920f83f24b1ba6f5bf20468384e8a11bddb6d5d5282ea27a7d2d13001a2040cb5a434016b1b193b20c2b8562e656fa99b94147706a249a58b40be282021122207fe6a22220fb8e5c62b4418ab329e6d3509b9af9bdbe7d926089984024a8ce00121e08af8820120a70656e756d6272612d311a0c0a0a08faa6dcd49d90d7f7092aeb010ac6010a520a507acd3df9a3a04686d97704cd0e5cc7ee5e14ac1ca614347bb6c2fa36214a86c5e94594cf70d1c8fe0f0beb66fb84644533de061bd7c40c90e6343be55298f0270d23777a5c25ff84a502d4aac5cd872912706e6957364b202067204a20737673585930384e76484e5a5141622065706520453737384b6869374420644736653330202052592066742036473447204a3120206b2020666d354b396e3249546a396b3750337268326b2036384a3956473035696f2041544720566669503220306b7146122009a26aa0032bd0f13270ca499fb5fe468c5901c1b8eedbf7842dbf81b06fc274", - "index": 12, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 525359", - "2 | Fee : 715892578563.068794 penumbra", - "3 | Memo Sender Address : penumbra10txnm7dr5prgdkthqnxsuhx8…", - "4 | Memo Text [1/3] : niW6K g J svsXY08NvHNZQAb epe E778Khi", - "4 | Memo Text [2/3] : 7D dG6e30 RY ft 6G4G J1 k fm5K9n2IT", - "4 | Memo Text [3/3] : j9k7P3rh2k 68J9VG05io ATG VfiP2 0kqF", - "5 | Action [1/3] : Swap Input 536889680195.675232 penumbr", - "5 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "5 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 525359", - "2 | Fee : 715892578563.068794 penumbra", - "3 | Memo Sender Address : penumbra10txnm7dr5prgdkthqnxsuhx8…", - "4 | Memo Text [1/3] : niW6K g J svsXY08NvHNZQAb epe E778Khi", - "4 | Memo Text [2/3] : 7D dG6e30 RY ft 6G4G J1 k fm5K9n2IT", - "4 | Memo Text [3/3] : j9k7P3rh2k 68J9VG05io ATG VfiP2 0kqF", - "5 | Action [1/3] : Swap Input 536889680195.675232 penumbr", - "5 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "5 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08cea2e3d0d9d2cde70822020a002a520a50b9a0fa468b69696e8c79fa78a961e4cb446c469c17914e276f79bb01c50567ccbc3fdf93755e63f49c82b873ed0599e42b7688cad2819253040a3df42b1bcfe960ac8f5cfe81c2a52ccd258445650a20322074cfbc1ccfafef3f287cabc1dfecbd9ddd2dd2898e0853bb0eb9020d1a0dfb15122009ea5b482cf3b37c327bc2fcdfaaffaa43a367f5a1cd23b55aa3fab929c03c031a20def61404458ebf5cfd245126cdc6e33094f49b01f4fc154bce6f9b13170fe81122200df14e11de2bd6b6f7ca45b6a4425eb7187d96b822e7787fadcfa0fe0fd6cb03123e122e7171636c736c7477636d66656275687a777375746d6d6c72662d31333234373438313536333931333739353934311a0c0a0a08a6ebdaf1d2bbc0ce04", - "index": 13, - "output": [ - "0 | Chain ID [1/2] : qqclsltwcmfebuhzwsutmmlrf-132474815639", - "0 | Chain ID [2/2] : 13795941", - "1 | Fee [1/3] : 332423996970022310 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 634786088645873998 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : qqclsltwcmfebuhzwsutmmlrf-132474815639", - "0 | Chain ID [2/2] : 13795941", - "1 | Fee [1/3] : 332423996970022310 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 634786088645873998 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08b09babf1b19bc3fd0722020a002a520a50b6d3898dae89a713e6b1e722d7fcc8c54ac71f7a4c7990d65edc6f72ec82193e909e765095ad3bb47033238513760fd0e427e34d51b65273230da80137530b9b3be9302a035c42df8223fb98a0819c4a3220de77bf2f719951f7800b229cf2787817f118b5ec47cc931ac2004fc5aebfcfd21220f9b6b6fd6c5dc89fbfa08508bc29244c9fccef8539bbc2acc4fa6a794e733c021a2033118ada486cdcb17651b3496dbdb1b6da0736e618a1ab8dc05d581c8b1d5d0e2220cd0aadc119e636ae9f9526dc5df0aa99f66494f68698f5616fd14d32f887710e121a120a70656e756d6272612d311a0c0a0a08dae6c1f2b996e58d04", - "index": 14, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Fee : 295993699699.028826 penumbra", - "2 | Action [1/3] : Swap Input 575067512663.362992 penumbr", - "2 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "2 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Fee : 295993699699.028826 penumbra", - "2 | Action [1/3] : Swap Input 575067512663.362992 penumbr", - "2 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "2 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08e5acb293db8b81b70b22020a002a520a506755bc3e56401471c99346441cb18ba1a63c57ce7921c12947b9b710dcae7a06f7f988b2424e36f5877d3767fbaf797be68f922e9eacb6e335b5550f73c66b6e40c034ad88e5d4d2e7e1acea4a2a0ebc322051165825ba1ecd1d318ba034553f4a881be78b0ff4c86e3ec79f768a5d14081d12209edd1813efa72b74f80b8fd097c9231a817c4c645400a971d5e2aba6a73a37011a20c55b27b2693c2d3c32c53d03819b1ef389bf5df4709aa0f81d3831f7fb0ae70c22204edafb7277c39dcd32e76d9f625158a52f7cf9e29c0af48a0026ab7dc6ca400c12391229716d666773776576786a6c73656767646b646f742d36313835373438393938353239303931383131371a0c0a0a08e2d1f2e09ecf8c8e0b", - "index": 15, - "output": [ - "0 | Chain ID [1/2] : qmfgswevxjlseggdkdot-61857489985290918", - "0 | Chain ID [2/2] : 117", - "1 | Fee [1/3] : 800570332998838498 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 823600582327309925 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : qmfgswevxjlseggdkdot-61857489985290918", - "0 | Chain ID [2/2] : 117", - "1 | Fee [1/3] : 800570332998838498 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 823600582327309925 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08abad9ba789ece4da061a0022020a002a520a50c829c45bb344f7def3261d3e6d65a92ff929f92911728ee840b022e7c4348bcc1ce470b207e10aaa344f46fca63f7995dc8532a50e36064208544b8ccafba8967d74428064693f55ff09a0b38fbb01073220480bdc9fc3fc9a1417fe5423aec1c1481b61dff58d70a373356cb8318af0e1c8122020d083c6bf9cd8e0c1327ba3cf3456ae082c29a03e0088717be32049df7446031a2062d3e64b862cc2afd64fefb1d7f2b7e927932ebd0f231a0ee3fdafb89c6dc907222013f6c12e70fb1e4d74adae8acb190fcf9703727e4c5945e89be6bc35a2c9110e124412346d6a73676966786f71766176766c6b757a646f2d39353331343137393138313735303636363135323331353937323736313339371a0c0a0a0881d0d3e4d9e991f705", - "index": 16, - "output": [ - "0 | Chain ID [1/2] : mjsgifxoqvavvlkuzdo-953141791817506661", - "0 | Chain ID [2/2] : 52315972761397", - "1 | Fee [1/3] : 427357413311834113 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 483454578036496043 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : mjsgifxoqvavvlkuzdo-953141791817506661", - "0 | Chain ID [2/2] : 52315972761397", - "1 | Fee [1/3] : 427357413311834113 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 483454578036496043 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a089ce7b683f784fec50622020a002a520a5065fdcc631a956c889075288411e123c867210d5031beb56581eb02f4b743c4d9762256c4cdb1044c16aca929c0bcf6254aab60dec48aa9529132a04b04ad24ad8c1fdce1e17f342be1d07deec8daa1c93220474d19527f61e3b888119f2da9664faf679fb08f4a235b102316322e12cb623b122008a814f7d42bed18d834175ce41c22bdbe37fd92beec19d4de2cf4177f4b4b011a209282e35e9dea96ffccba29bc5b7e83da7dda085dc8a2203c1f382f26c34af2092220e0515106db089865757a9f4c716a2bf79134dafef7d5903f100d9585be3c890d121e08d2c42e120a70656e756d6272612d311a0c0a0a08e5deedd6fae2a68c04", - "index": 17, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 762450", - "2 | Fee : 295156301545.828197 penumbra", - "3 | Action [1/3] : Swap Input 471743434263.999388 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 762450", - "2 | Fee : 295156301545.828197 penumbra", - "3 | Action [1/3] : Swap Input 471743434263.999388 penumbr", - "3 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "3 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08f8cc8edcbeb2b6d20922020a002a520a506755bc3e56401471c99346441cb18ba1a63c57ce7921c12947b9b710dcae7a06f7f988b2424e36f5877d3767fbaf797be68f922e9eacb6e335b5550f73c66b6e40c034ad88e5d4d2e7e1acea4a2a0ebc3220ac1ee417c3e486e5d53419280cc40888f97bb728d9c865bc513dfacdb017939e1220c69699a39f6da4ce9164adcd1be8be700ab888932a0b2dbb6db742f31127d0001a205cb7e6c0ed0d19a6db486b0e9a9c5d40faf5ffe031028bf13c7503e04c4ab11122200983018b57cca3e0336969060c79760030f189fb86d42f89157ca975b760e30b1223121362677171716f676b78726167752d30333138331a0c0a0a08888ab38296d3f7b7062aa2020afd010a520a50e3c3777f43e518b83ca0e96ead821272b5e863d0513d5299240da13865eb51d61407d6e20a0c64af4f664adce33eac721302d88830f849b9538b47bea824986fb4e8cd1bf122c7fb0bee5e628d65b84a12a601525a333465326b6d3777544b6a346d32354345414a69394b366f20516f444b326a352077204f7979556336207163664a352032792077206c4e3851354a7953303120735a206520203835705320207a54344d6b74624a58775175523848204d202036627120474a42744520454538353850374b4a304947204273305220204d522057322020614b4f373851595174206b206a35206620206a4669725770754a576d567667202012206493fb5898181cb2f19079524ed3c8e9f7580c0e08b22b2f1bb4b606b2991b00", - "index": 18, - "output": [ - "0 | Chain ID : bgqqqogkxragu-03183", - "1 | Fee [1/3] : 463834036969456904 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : penumbra1u0phwl6ru5vts09qa9h2mqsj…", - "3 | Memo Text [1/5] : RZ34e2km7wTKj4m25CEAJi9K6o QoDK2j5 w O", - "3 | Memo Text [2/5] : yyUc6 qcfJ5 2y w lN8Q5JyS01 sZ e 85pS", - "3 | Memo Text [3/5] : zT4MktbJXwQuR8H M 6bq GJBtE EE858P7", - "3 | Memo Text [4/5] : KJ0IG Bs0R MR W2 aKO78QYQt k j5 f j", - "3 | Memo Text [5/5] : FirWpuJWmVvg ", - "4 | Action [1/7] : Swap Input 694919471856592504 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : bgqqqogkxragu-03183", - "1 | Fee [1/3] : 463834036969456904 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : penumbra1u0phwl6ru5vts09qa9h2mqsj…", - "3 | Memo Text [1/5] : RZ34e2km7wTKj4m25CEAJi9K6o QoDK2j5 w O", - "3 | Memo Text [2/5] : yyUc6 qcfJ5 2y w lN8Q5JyS01 sZ e 85pS", - "3 | Memo Text [3/5] : zT4MktbJXwQuR8H M 6bq GJBtE EE858P7", - "3 | Memo Text [4/5] : KJ0IG Bs0R MR W2 aKO78QYQt k j5 f j", - "3 | Memo Text [5/5] : FirWpuJWmVvg ", - "4 | Action [1/7] : Swap Input 694919471856592504 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08aa9096eb8bc8f0ba0c22020a002a520a50b00862a630fe8cfa5936ff5fada3d67d9fbe4b897d3decd8a8ab48200a3511bc54b03e12976880452ea03f3164844a67874674d68510b39ca9d830bab76e66e8fbbab0158200b8d8299d3d207893debe322051e86692743fd27df1da9c1cbe6cbf88752b0ac3e558f10c9988e2c63c0965dd1220a185e828850b4a0567e1ddf2ea613a2698758e161ae9e9fb7bc9399029ccb4031a2063da959e280b21204d3d5cd7514d0d05ace5ede64cfca8bdb6924fa0868ae8002220fd84a9833d9594f11bf66af1436f51910e79e3563db6546529c2342374b7df0212291219707874642d37393731343838373431373233353831323537391a0c0a0a08a79d9ca2f4edaaba0b", - "index": 19, - "output": [ - "0 | Chain ID : pxtd-79714887417235812579", - "1 | Fee [1/3] : 825473126090870439 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 897837284041525290 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : pxtd-79714887417235812579", - "1 | Fee [1/3] : 825473126090870439 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Action [1/7] : Swap Input 897837284041525290 passet19", - "2 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "2 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "2 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "2 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "2 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "2 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08aba2c4a7a6f6d0c60d22020a002a520a50f2333f33d21b6783ff1d4722f1231a419b4b169c94b2cda77f72fc08933de95bd707ea016f1990c803e8b31b09297d9c939c1e24a085fcbe3b9cc2bbcd8a22e2eb14720fb4086d53995a8c81e5c4942b32200b06faa66f0b15e73d5b7d1b226f726931c8c31b875c2e661bbf26669977675412204cb574cb862eccb6d3342639c53c9797662ce744ea8c18cf986b47e76633c5011a209b7de1c00592d953591509bf0186314d71c1ebe2b7028e120763330568ab2d0122201a84d4b79c2d3643206d299037ddb6649ac157769c1f45fcf396122a67b99509121d08f6b70a120a70656e756d6272612d311a0b0a0908809daaad91b98a3d2aba020a95020a520a5038df1ba0f2964f0bfe28be37d6fdfd0389b03a7b2504f6261dea0a2a8252743893ce8cb8567477ec7221b4de3929d41715312e4629295fc7f66da428edf8658c7dabd34db127e3ce5c86446e88826e1312be0168513939206a45746d337920334720356155207079706d5335724453394e536f5a5a352075555370726852467148437058693869357345477752202039445a5a2056392076312077202020323749692030747620622038666d38736e4b326c6e38746e206949515744432020572035206c347955545931312075313662355634332035203120203668633320524a6e6b5574206e6d564b204a42202032205638206673524d4976596f667747446620397355442069766777204348737254122066ca011e2e2917b92c64f191e2ebed38b4978e0bf19a037f18584e5e914c18b4", - "index": 20, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 170998", - "2 | Fee : 34385890787.36448 penumbra", - "3 | Memo Sender Address : penumbra18r03hg8jje8shl3ghcmadl0a…", - "4 | Memo Text [1/5] : hQ99 jEtm3y 3G 5aU pypmS5rDS9NSoZZ5 uU", - "4 | Memo Text [2/5] : SprhRFqHCpXi8i5sEGwR 9DZZ V9 v1 w 2", - "4 | Memo Text [3/5] : 7Ii 0tv b 8fm8snK2ln8tn iIQWDC W 5 l4", - "4 | Memo Text [4/5] : yUTY11 u16b5V43 5 1 6hc3 RJnkUt nmVK ", - "4 | Memo Text [5/5] : JB 2 V8 fsRMIvYofwGDf 9sUD ivgw CHsrT", - "5 | Action [1/3] : Swap Input 976511127686.025515 penumbr", - "5 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "5 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 170998", - "2 | Fee : 34385890787.36448 penumbra", - "3 | Memo Sender Address : penumbra18r03hg8jje8shl3ghcmadl0a…", - "4 | Memo Text [1/5] : hQ99 jEtm3y 3G 5aU pypmS5rDS9NSoZZ5 uU", - "4 | Memo Text [2/5] : SprhRFqHCpXi8i5sEGwR 9DZZ V9 v1 w 2", - "4 | Memo Text [3/5] : 7Ii 0tv b 8fm8snK2ln8tn iIQWDC W 5 l4", - "4 | Memo Text [4/5] : yUTY11 u16b5V43 5 1 6hc3 RJnkUt nmVK ", - "4 | Memo Text [5/5] : JB 2 V8 fsRMIvYofwGDf 9sUD ivgw CHsrT", - "5 | Action [1/3] : Swap Input 976511127686.025515 penumbr", - "5 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "5 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08bab3949de6fbacec0c1a0022020a002a520a50d366200984ce35524912ed0fe7ca5ee2abca479cf379ecd208d67a2db7dcdd96d74f4e1e8805eeff2d26f115d29724c21fc1063263d635da52074f945510de6dc0f2e6d68c1640e005560559a390b2c3322092ccb4a879674ce7d27198aeb1314465d25a418b0906e003ba1706f9413d2afa12208635b521ce21458908e594314c0cd0df55e608e0b21badd46368a9a4d228af011a202d6fb633aa31da4c05cbc93bef1fecc74e5cc318959312fe2edc9ab33dafe70f2220d95394122e1b242abdcad75237a91d587b896cd9dd97e98d66331dde48db1b0b124408dfcb1312307a797978656277697774707375776e687376716262617a7277717362722d3433363338373533333932393234313532361a0c0a0a08fddf908bf7cdd5fc082af6010ad1010a520a50ce75943dcb9c39b53293ba7cc5a2e275bfbd3def0ad67a876455e1121330dc1cda5c1349d5d0710eaec2479dcda726033a1e8a2a0df4412d54950eed00aa084cf662361635b1e78844517d1d620327b6127b6333376b4b516e302032207275202050314e33204820793820706b2020326720717043745220372042554a2020386962205430616a473463633820746f3571434351206a7562202068382064206733366f3944534f203773676d207a49563470206c59322020732045207a207133314f20624b50425549203669481220134ebd861bbaf79cc0f7079ed09a7651a272287c32714718f2a2c320394caf3c", - "index": 21, - "output": [ - "0 | Chain ID [1/2] : zyyxebwiwtpsuwnhsvqbbazrwqsbr-43638753", - "0 | Chain ID [2/2] : 3929241526", - "1 | Expiry Height : 320991", - "2 | Fee [1/3] : 646643058148126717 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Memo Sender Address : Sub-account #97", - "4 | Memo Text [1/4] : c37kKQn0 2 ru P1N3 H y8 pk 2g qpCtR ", - "4 | Memo Text [2/4] : 7 BUJ 8ib T0ajG4cc8 to5qCCQ jub h8 d", - "4 | Memo Text [3/4] : g36o9DSO 7sgm zIV4p lY2 s E z q31O b", - "4 | Memo Text [4/4] : KPBUI 6iH", - "5 | Action [1/7] : Swap Input 925687491160512954 passet19", - "5 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "5 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "5 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "5 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "5 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "5 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : zyyxebwiwtpsuwnhsvqbbazrwqsbr-43638753", - "0 | Chain ID [2/2] : 3929241526", - "1 | Expiry Height : 320991", - "2 | Fee [1/3] : 646643058148126717 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Memo Sender Address : Sub-account #97", - "4 | Memo Text [1/4] : c37kKQn0 2 ru P1N3 H y8 pk 2g qpCtR ", - "4 | Memo Text [2/4] : 7 BUJ 8ib T0ajG4cc8 to5qCCQ jub h8 d", - "4 | Memo Text [3/4] : g36o9DSO 7sgm zIV4p lY2 s E z q31O b", - "4 | Memo Text [4/4] : KPBUI 6iH", - "5 | Action [1/7] : Swap Input 925687491160512954 passet19", - "5 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "5 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "5 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "5 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "5 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "5 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08c7d5b5eab1b8a8e3021a0022020a002a520a50b00862a630fe8cfa5936ff5fada3d67d9fbe4b897d3decd8a8ab48200a3511bc54b03e12976880452ea03f3164844a67874674d68510b39ca9d830bab76e66e8fbbab0158200b8d8299d3d207893debe3220293c6ea671e2204535df7e81ee0764b488c2dc42dfdb22abe6261b7bd9495618122033d86f24e390fb833c64bdebd82ac8e1d3b92f021deb2f246305d1bcfcb0d6011a209107d8c0f4310f773cc7910483a5e1c16be6265ca79c463c0923bdacd1321605222019cf5ae76b5d8a26645e776f74965ed0bbc3fd33df6f8bab24da488c23c59d001235122571736e6e6e76656b797172726c2d34343036303337303330323836303834313036383632381a0c0a0a0890d7bd98a2e0c791042ae7030ac2030a520a502dfff16c6875f6ecd35006b0698ca78ab9d239ecc7ff05ca53456aaf725a9a7a0ac00f464aea2dc88b34b74da1afdecb9253835ac7b13d741d4ba5cf7184c9f3b72e1b6583ff2e46daebaef19015515312eb022049712064206d6c6d5a7620206639365236512066613620724e7a6c51392035624a3039205139206f447a4957387a6e6c4578572048326c4a4d206e4620707a72612071694268346c6742665a206e4132583870203971204b204e36492020454e6e4c692037496e4266354245357920323263203320502055347754423120723362206c532037327a556b7077662057384f54704a6430202020446c635359586451634c37205343773973733831516649584e434e2020524620452020203863466955516b483431746f4376395a456337203158383520695620467357557636344641796361456550384a57676e6f56786520206f4749394179756c5a744120327735203935353932324a204e647737206c2038206e204974686976557a6720746d463574536657577435766e2038626f205234373374316e79206f30617354204556366736202020643843382034782056363362514f414e735a443069736661667a666b386b7a61622012204c4b72ad74d3b25a896f2d5305bf49271102b77c575c752b1c380a373e5e935f", - "index": 22, - "output": [ - "0 | Chain ID : qsnnnvekyqrrl-44060370302860841068628", - "1 | Fee [1/3] : 298116094375193488 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : penumbra19hllzmrgwhmwe56sq6cxnr98…", - "3 | Memo Text [1/10] : Iq d mlmZv f96R6Q fa6 rNzlQ9 5bJ09 Q", - "3 | Memo Text [2/10] : 9 oDzIW8znlExW H2lJM nF pzra qiBh4lgBf", - "3 | Memo Text [3/10] : Z nA2X8p 9q K N6I ENnLi 7InBf5BE5y 22", - "3 | Memo Text [4/10] : c 3 P U4wTB1 r3b lS 72zUkpwf W8OTpJd0 ", - "3 | Memo Text [5/10] : DlcSYXdQcL7 SCw9ss81QfIXNCN RF E ", - "3 | Memo Text [6/10] : 8cFiUQkH41toCv9ZEc7 1X85 iV FsWUv64FAy", - "3 | Memo Text [7/10] : caEeP8JWgnoVxe oGI9AyulZtA 2w5 955922", - "3 | Memo Text [8/10] : J Ndw7 l 8 n IthivUzg tmF5tSfWWt5vn 8b", - "3 | Memo Text [9/10] : o R473t1ny o0asT EV6g6 d8C8 4x V63bQ", - "3 | Memo Text [10/10] : OANsZD0isfafzfk8kzab ", - "4 | Action [1/7] : Swap Input 200025092846873287 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : qsnnnvekyqrrl-44060370302860841068628", - "1 | Fee [1/3] : 298116094375193488 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : penumbra19hllzmrgwhmwe56sq6cxnr98…", - "3 | Memo Text [1/10] : Iq d mlmZv f96R6Q fa6 rNzlQ9 5bJ09 Q", - "3 | Memo Text [2/10] : 9 oDzIW8znlExW H2lJM nF pzra qiBh4lgBf", - "3 | Memo Text [3/10] : Z nA2X8p 9q K N6I ENnLi 7InBf5BE5y 22", - "3 | Memo Text [4/10] : c 3 P U4wTB1 r3b lS 72zUkpwf W8OTpJd0 ", - "3 | Memo Text [5/10] : DlcSYXdQcL7 SCw9ss81QfIXNCN RF E ", - "3 | Memo Text [6/10] : 8cFiUQkH41toCv9ZEc7 1X85 iV FsWUv64FAy", - "3 | Memo Text [7/10] : caEeP8JWgnoVxe oGI9AyulZtA 2w5 955922", - "3 | Memo Text [8/10] : J Ndw7 l 8 n IthivUzg tmF5tSfWWt5vn 8b", - "3 | Memo Text [9/10] : o R473t1ny o0asT EV6g6 d8C8 4x V63bQ", - "3 | Memo Text [10/10] : OANsZD0isfafzfk8kzab ", - "4 | Action [1/7] : Swap Input 200025092846873287 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08ee848b9cdaabae9a041a0022020a002a520a501e4aebd4bce2cacf963e429753cb1ec313316b9b8734ad9e283e4c68b283731ee430988d512315805e384a1a53c64c5cbd2fd28e8f6a346af49643780f86bae30424fc0114f0391fb220cedf31d29d0132207327b9d6605ffe689018070a73926b55aa3b6e90831e38d32684d19880843fa91220eb393c2ebc3219767bec10d6f67c0733206989e987eeb9f4bb3115ae5659f9031a209f57588e10e12014bdbeb50345578096c14e25335422a160f1cba919ee87581222208bfd7eeace6f5b532cc0a767301145bd6b3e87edd4b74fb41860f2fed5a8ee0c123b122b757471776a736870736765692d3731313537373135343936313635313638343135363936303430343437391a0c0a0a08e5c5f9fbf299e6840b2a84020adf010a520a5034fa8c210f372aad94167a176c85acb6298695d72cdbb980150212f99f1609ef16d36a06703ed70ac4b7d78bd5cc568476abac22130ad9b3eec2c834974b6e8a447e04ab55726b60f481ddd7f73cef3d12880158305337363239484966625547514a366c2037205a36546c39203668314945554d754a6535534474205a5477347030763450202020325420446b484976453820506b67624451474e36624546374e44796733756f352051614b5550464c553237207520205831394e20576d51334479517a2049344f536c693379693539426a206f20324659475320122039b82b23c6a0706c8a421327db9fa8d54bb7a3e3e0b0558c59dcfcde0aea04aa", - "index": 23, - "output": [ - "0 | Chain ID [1/2] : utqwjshpsgei-7115771549616516841569604", - "0 | Chain ID [2/2] : 04479", - "1 | Fee [1/3] : 795334824830067429 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : Sub-account #3", - "3 | Memo Text [1/4] : X0S7629HIfbUGQJ6l 7 Z6Tl9 6h1IEUMuJe5S", - "3 | Memo Text [2/4] : Dt ZTw4p0v4P 2T DkHIvE8 PkgbDQGN6bEF", - "3 | Memo Text [3/4] : 7NDyg3uo5 QaKUPFLU27 u X19N WmQ3DyQz ", - "3 | Memo Text [4/4] : I4OSli3yi59Bj o 2FYGS ", - "4 | Action [1/7] : Swap Input 303070886767018606 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID [1/2] : utqwjshpsgei-7115771549616516841569604", - "0 | Chain ID [2/2] : 04479", - "1 | Fee [1/3] : 795334824830067429 passet1984fctenw8m2", - "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "1 | Fee [3/3] : gqxmanqm", - "2 | Memo Sender Address : Sub-account #3", - "3 | Memo Text [1/4] : X0S7629HIfbUGQJ6l 7 Z6Tl9 6h1IEUMuJe5S", - "3 | Memo Text [2/4] : Dt ZTw4p0v4P 2T DkHIvE8 PkgbDQGN6bEF", - "3 | Memo Text [3/4] : 7NDyg3uo5 QaKUPFLU27 u X19N WmQ3DyQz ", - "3 | Memo Text [4/4] : I4OSli3yi59Bj o 2FYGS ", - "4 | Action [1/7] : Swap Input 303070886767018606 passet19", - "4 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "4 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "4 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "4 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "4 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "4 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abd021aba020ad1010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120908c992f1b0bce0fa4d1a0022020a002a520a50de06f6a73feee4ef7f0c526c3099278b5505b246e3154879f8a6795b911aa2c5ea6d6df61874ebc4406d8f95d7335834b3348e1b31a3ebe49da1cf854aeeedf43a0fa1f631e427bc1e32cd30eaefbc4932202f01cbbfb05773323b8389b9a2289330c83db0aec9bd13e7156d9c2ba4e268971220e21c1e8a6c640fe7cc6c1bf7c58b0ecb7edea9b4d098a18e353e4185f61051031a201352dd167e4f972d848b5d984f3fc262ee2374257edb310ffcf30ca7b0e1f1102220ca39a8b4397bc57b9f0167795e9bf7504585262cdaa4ac111464001f1aee841112261217746f6272697578692d32383232333332373735393531351a0b0a0908c3f394ae9ee1e00b", - "index": 24, - "output": [ - "0 | Chain ID : tobriuxi-28223327759515", - "1 | Fee [1/3] : 6618002997197251 passet1984fctenw8m2fp", - "1 | Fee [2/3] : l8a9wzguzp7j34d7vravryuhft808nyt9fdggq", - "1 | Fee [3/3] : xmanqm", - "2 | Action [1/7] : Swap Input 43887022831323465 passet198", - "2 | Action [2/7] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", - "2 | Action [3/7] : 808nyt9fdggqxmanqm Output Asset passet", - "2 | Action [4/7] : 1984fctenw8m2fpl8a9wzguzp7j34d7vravryu", - "2 | Action [5/7] : hft808nyt9fdggqxmanqm Claim Fee 0 pass", - "2 | Action [6/7] : et1984fctenw8m2fpl8a9wzguzp7j34d7vravr", - "2 | Action [7/7] : yuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : tobriuxi-28223327759515", - "1 | Fee [1/3] : 6618002997197251 passet1984fctenw8m2fp", - "1 | Fee [2/3] : l8a9wzguzp7j34d7vravryuhft808nyt9fdggq", - "1 | Fee [3/3] : xmanqm", - "2 | Action [1/7] : Swap Input 43887022831323465 passet198", - "2 | Action [2/7] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", - "2 | Action [3/7] : 808nyt9fdggqxmanqm Output Asset passet", - "2 | Action [4/7] : 1984fctenw8m2fpl8a9wzguzp7j34d7vravryu", - "2 | Action [5/7] : hft808nyt9fdggqxmanqm Claim Fee 0 pass", - "2 | Action [6/7] : et1984fctenw8m2fpl8a9wzguzp7j34d7vravr", - "2 | Action [7/7] : yuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08f691dbe3fabed19d0d22020a002a520a50c829c45bb344f7def3261d3e6d65a92ff929f92911728ee840b022e7c4348bcc1ce470b207e10aaa344f46fca63f7995dc8532a50e36064208544b8ccafba8967d74428064693f55ff09a0b38fbb01073220188f457fc9987531f3fac4891e0bd8fd2193e51023b3f79a76fbc1537c3c297d1220a44c4fd37651250c7db6e25a00c4ebf0e99b409705d68b18a23421f0a165bf011a20d142212c5dd6a561e6657ec6a2fed8a342b70dca5da796fa0b7232824c34940322200cbde2b27f1e1806739209369f35136690ffa5e99b6206eab2082ad812779506123208ab9003121e66637578696a73737579646e727361797a77767a647668786b2d343036371a0c0a0a08a6869f9de494dde6052abd030a98030a520a50cbdf8803f764ec89193193a4aed99bae5bdb7989f5dc9c0ce0f9356fd936a3628ee0ff37aa3d4aa50d6b21d86594b673e80edf32f8679c0c6fca8cc645a2660c0a57377176e850e2f4e10cb76c1cbd4c12c1025664327330776176383853595943415659674820206e30324254714c64415a4b203334314c754f2020395856616920206330762058205575674136204a6e724c3420354333675449387647202056613731524a7566357620672020664e7a4a4620302059416a5920366930204b6a39744f5744533234317273653730385a585420414a7263424a20412020516f6d74383047616c655636564e44694353523920797564346d4f396a76202042453444487071353439507646314b4a79443447654253375449767862592069302044725a2046624a5973332047655761753176204b326d4f31392059206d334c4b206f7633544d354e4d2020534a52202043343420326f7a20346b34726c5220353920396c456535664731374439207132793177205434444520355320302020485a4e20204e426d6e2020572031664e3659494c201220b8b5bb1e2c81db9b5a2c784e99b38d1935eaa6440ede1d35ae22b1f7699f3ff8", - "index": 25, - "output": [ - "0 | Chain ID : fcuxijssuydnrsayzwvzdvhxk-4067", - "1 | Expiry Height : 51243", - "2 | Fee [1/3] : 418118597863785254 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Memo Sender Address : Sub-account #53", - "4 | Memo Text [1/9] : Vd2s0wav88SYYCAVYgH n02BTqLdAZK 341Lu", - "4 | Memo Text [2/9] : O 9XVai c0v X UugA6 JnrL4 5C3gTI8vG ", - "4 | Memo Text [3/9] : Va71RJuf5v g fNzJF 0 YAjY 6i0 Kj9tOW", - "4 | Memo Text [4/9] : DS241rse708ZXT AJrcBJ A Qomt80GaleV6V", - "4 | Memo Text [5/9] : NDiCSR9 yud4mO9jv BE4DHpq549PvF1KJyD4", - "4 | Memo Text [6/9] : GeBS7TIvxbY i0 DrZ FbJYs3 GeWau1v K2mO", - "4 | Memo Text [7/9] : 19 Y m3LK ov3TM5NM SJR C44 2oz 4k4rl", - "4 | Memo Text [8/9] : R 59 9lEe5fG17D9 q2y1w T4DE 5S 0 HZN ", - "4 | Memo Text [9/9] : NBmn W 1fN6YIL ", - "5 | Action [1/7] : Swap Input 953432676171696374 passet19", - "5 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "5 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "5 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "5 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "5 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "5 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : fcuxijssuydnrsayzwvzdvhxk-4067", - "1 | Expiry Height : 51243", - "2 | Fee [1/3] : 418118597863785254 passet1984fctenw8m2", - "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", - "2 | Fee [3/3] : gqxmanqm", - "3 | Memo Sender Address : Sub-account #53", - "4 | Memo Text [1/9] : Vd2s0wav88SYYCAVYgH n02BTqLdAZK 341Lu", - "4 | Memo Text [2/9] : O 9XVai c0v X UugA6 JnrL4 5C3gTI8vG ", - "4 | Memo Text [3/9] : Va71RJuf5v g fNzJF 0 YAjY 6i0 Kj9tOW", - "4 | Memo Text [4/9] : DS241rse708ZXT AJrcBJ A Qomt80GaleV6V", - "4 | Memo Text [5/9] : NDiCSR9 yud4mO9jv BE4DHpq549PvF1KJyD4", - "4 | Memo Text [6/9] : GeBS7TIvxbY i0 DrZ FbJYs3 GeWau1v K2mO", - "4 | Memo Text [7/9] : 19 Y m3LK ov3TM5NM SJR C44 2oz 4k4rl", - "4 | Memo Text [8/9] : R 59 9lEe5fG17D9 q2y1w T4DE 5S 0 HZN ", - "4 | Memo Text [9/9] : NBmn W 1fN6YIL ", - "5 | Action [1/7] : Swap Input 953432676171696374 passet19", - "5 | Action [2/7] : 84fctenw8m2fpl8a9wzguzp7j34d7vravryuhf", - "5 | Action [3/7] : t808nyt9fdggqxmanqm Output Asset passe", - "5 | Action [4/7] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", - "5 | Action [5/7] : uhft808nyt9fdggqxmanqm Claim Fee 0 pas", - "5 | Action [6/7] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", - "5 | Action [7/7] : ryuhft808nyt9fdggqxmanqm" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08a0edc781b3e4bbc10522020a002a520a50b655560a85f06b1873938f93e7ccbe482a9d3b11d444a097e262f804a4bb57a716540fb179930c6c738755d9eede34f47636edaa5cdb3ed769b362ac633c46ebae492bf1751c5deda2621b6f6bc454e03220e240c3d4a15e30d7d4d33a8fc5e0c0b0c3f5b8d6987324fe24a2ace9078cf71d1220f9a7f62b331d5ff4b1c568df17b289ec620991c3b133f3151b5157e535daac031a200e68f446cbee86a2928adc7b6419be3bf3da62d2c2f75034c8f02e35f2e6d611222007aad5504f06ab2c34e796b2900d437a55f27d6e959eae14662621d41ea51311121a120a70656e756d6272612d311a0c0a0a08c783beb89fe1da850a2ac0030a9b030a520a50397c0cf4da700748dc3f7b6dfbefd055a5466c7c3b23c0af9b4bdb2a982e815e6243f4d9b1d9728b5dec5d70b97313a7384de465fe78b6be61b61bfe56c6d483357504d92eeb2399c845d1ce4ae32d5e12c4023220205720354d377734204f47795365662073585a535735383120704d366d64202032656e4348734e5645667920434439324d3430447120202020306452373733523950413670207462654650745420556859386f723063687a5155392034543334732043206a3447745a74203220313359206368764539203162323620454f3369393171342073353720362068444620304e34676163772062202020205857544d653720693154313664485420677878787137204832383456315a376857414c2033577320203137693838347049626e384b436b206d55534b202062475a4b4e34306f4a3844735455557220202064375145204c6e44485677374d337232202058356a4320354c63507a387862683376335673205a206173473954434b633368476b4a77343468394f2039324a6a205320354d78355a30346937794272206a53337468122035a02c1522986e4648d3109652fc7204fbd84f9396eb3aa1b418f1dcf411ad61", - "index": 26, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Fee : 723789855666.962887 penumbra", - "2 | Memo Sender Address : penumbra1897qeax6wqr53hpl0dklhm7s…", - "3 | Memo Text [1/9] : 2 W 5M7w4 OGySef sXZSW581 pM6md 2enC", - "3 | Memo Text [2/9] : HsNVEfy CD92M40Dq 0dR773R9PA6p tbeF", - "3 | Memo Text [3/9] : PtT UhY8or0chzQU9 4T34s C j4GtZt 2 13Y", - "3 | Memo Text [4/9] : chvE9 1b26 EO3i91q4 s57 6 hDF 0N4gacw", - "3 | Memo Text [5/9] : b XWTMe7 i1T16dHT gxxxq7 H284V1Z7h", - "3 | Memo Text [6/9] : WAL 3Ws 17i884pIbn8KCk mUSK bGZKN40o", - "3 | Memo Text [7/9] : J8DsTUUr d7QE LnDHVw7M3r2 X5jC 5LcP", - "3 | Memo Text [8/9] : z8xbh3v3Vs Z asG9TCKc3hGkJw44h9O 92Jj ", - "3 | Memo Text [9/9] : S 5Mx5Z04i7yBr jS3th", - "4 | Action [1/3] : Swap Input 397142651573.499552 penumbr", - "4 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "4 | Action [3/3] : numbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Fee : 723789855666.962887 penumbra", - "2 | Memo Sender Address : penumbra1897qeax6wqr53hpl0dklhm7s…", - "3 | Memo Text [1/9] : 2 W 5M7w4 OGySef sXZSW581 pM6md 2enC", - "3 | Memo Text [2/9] : HsNVEfy CD92M40Dq 0dR773R9PA6p tbeF", - "3 | Memo Text [3/9] : PtT UhY8or0chzQU9 4T34s C j4GtZt 2 13Y", - "3 | Memo Text [4/9] : chvE9 1b26 EO3i91q4 s57 6 hDF 0N4gacw", - "3 | Memo Text [5/9] : b XWTMe7 i1T16dHT gxxxq7 H284V1Z7h", - "3 | Memo Text [6/9] : WAL 3Ws 17i884pIbn8KCk mUSK bGZKN40o", - "3 | Memo Text [7/9] : J8DsTUUr d7QE LnDHVw7M3r2 X5jC 5LcP", - "3 | Memo Text [8/9] : z8xbh3v3Vs Z asG9TCKc3hGkJw44h9O 92Jj ", - "3 | Memo Text [9/9] : S 5Mx5Z04i7yBr jS3th", - "4 | Action [1/3] : Swap Input 397142651573.499552 penumbr", - "4 | Action [2/3] : a Output Asset penumbra Claim Fee 0 pe", - "4 | Action [3/3] : numbra" - ] - }, - { - "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08dc81dee49bff90a4051a0022020a002a520a5002005721da98ca4478d88a1ea6db8dfbffe8da64c7907596fe3e4fe53a8145ebdf022fa668ed56a5c648461765ae65a8e86f15e1ee0cec8d0d3b02282cd6a58b57512fc3c66b41c908fcb7aabda2a6eb3220f6e035315a70797c268af319c71f763a5bd8d8c60e9bdfcc0090ab42e0aca99a1220c0ccdc87e231bb1960e4f0893b27880fb7eb3e35ed2ca368de07f9fc405986001a20faea5d35c547f1cb3d7d914087f3e44ef15fe4bcf1681998d89634ec29ecb01022205a399e290f768309ccbfa7841ed96bb1b530b76ff30fa019e5860fa32aa08101121e08c68f13120a70656e756d6272612d311a0c0a0a08fd9fe5e2ee9c8bf8042ab0010a8b010a520a50f5f67469b0dd616ceb2a18eed0a484982e324ae185a2949d9bc57d8207e7275f27fc1d7b9172bd93b1c41d81c844f0f4ff28814a5b68d3c42f171e062ff5c55a922c4c4c629dc83d31bc463378a9a55612353647566347484f4f7673666c20713866422020643672456c6c71207130207146203169393172386f4d316120206e7664754f3665571220843cb146cfb8926c4339122d415ea128f04760741a65d35e4d134816b076217c", - "index": 27, - "output": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 313286", - "2 | Fee : 355833740881.645565 penumbra", - "3 | Memo Sender Address : penumbra17hm8g6dsm4ske6e2rrhdpfyy…", - "4 | Memo Text [1/2] : 6GVcGHOOvsfl q8fB d6rEllq q0 qF 1i91r", - "4 | Memo Text [2/2] : 8oM1a nvduO6eW", - "5 | Action [1/3] : Swap Input 380628908402.77014 penumbra", - "5 | Action [2/3] : Output Asset penumbra Claim Fee 0 pen", - "5 | Action [3/3] : umbra" - ], - "output_expert": [ - "0 | Chain ID : penumbra-1", - "1 | Expiry Height : 313286", - "2 | Fee : 355833740881.645565 penumbra", - "3 | Memo Sender Address : penumbra17hm8g6dsm4ske6e2rrhdpfyy…", - "4 | Memo Text [1/2] : 6GVcGHOOvsfl q8fB d6rEllq q0 qF 1i91r", - "4 | Memo Text [2/2] : 8oM1a nvduO6eW", - "5 | Action [1/3] : Swap Input 380628908402.77014 penumbra", - "5 | Action [2/3] : Output Asset penumbra Claim Fee 0 pen", - "5 | Action [3/3] : umbra" - ] - }, - { - "blob": "0abd021aba020ad1010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120908a694c1c48186a4521a0022020a002a520a50e2f449b384b44d99080269f28dabeb8e04e7609988f9b9cc175b7381c1bf3cfd9273b789f47b6a8b15004f233d7cd1eb07dc62d48ab80807fe7348c6f0dc39c0c50fed51b0bd4c3fa6b81edc5f2db17832203b36e3a79379318b3dc38cde95cc30b85c11a76c25a7877fc64f66d433f26a6112205c5e6395402db9cee4226f87ec47283ebb29661155334e9e0a085cc4c66018041a201e47b0a59e81a9637b4dd87f493d0a906963def686ad78115706c8b696a3c00622201f3e290256a1b4578b572bcd09e32998272d17214c972cc5cab91ff531c6180e121e120f676b676b2d393335303036323633341a0b0a0908ef8ea68392d1ba7e2afc020ad7020a520a5023f2724d5abcaeac1b12f7c4be0f8075e606bcafaebc2f410a14b9c749bad1e9cc82f7cd4ee7cfddb7983f502323ce82d2bc43017ec40a9f3246bae40f8114e5808fee7426dc8331a9b46516365b410e128002792041206c77426a4b30512042207243397538663020574d2068354a4a576476563920494d572049526735755136744e6573363956665457346e6e6a4a5261502064206c6252515078364846495720523030773220704d5435613938615073206335206b4336492061383874316848344a30396b352061412020343563696b20676278207035447a39743476676820546132756b206d5949614e355159596752207632465661334f20324355526d6f474b4531206d716120496e317473726c4f68665159446e6a775a20717656574830476c652039645a6b6c67306c20206c595a3638375179204c69464e7734387220326f303052374a563120336b654d33201220327929a85dff21fc4655076a9b23c0dbca03950bd2b9fea5bdcd498efc89c010", - "index": 28, - "output": [ - "0 | Chain ID : gkgk-9350062634", - "1 | Fee [1/3] : 71189568806291311 passet1984fctenw8m2f", - "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", - "1 | Fee [3/3] : qxmanqm", - "2 | Memo Sender Address : penumbra1y0e8yn26hjh2cxcj7lzturuq…", - "3 | Memo Text [1/7] : y A lwBjK0Q B rC9u8f0 WM h5JJWdvV9 IMW", - "3 | Memo Text [2/7] : IRg5uQ6tNes69VfTW4nnjJRaP d lbRQPx6HF", - "3 | Memo Text [3/7] : IW R00w2 pMT5a98aPs c5 kC6I a88t1hH4J0", - "3 | Memo Text [4/7] : 9k5 aA 45cik gbx p5Dz9t4vgh Ta2uk mYI", - "3 | Memo Text [5/7] : aN5QYYgR v2FVa3O 2CURmoGKE1 mqa In1tsr", - "3 | Memo Text [6/7] : lOhfQYDnjwZ qvVWH0Gle 9dZklg0l lYZ687", - "3 | Memo Text [7/7] : Qy LiFNw48r 2o00R7JV1 3keM3 ", - "4 | Action [1/7] : Swap Input 46320432425486886 passet198", - "4 | Action [2/7] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", - "4 | Action [3/7] : 808nyt9fdggqxmanqm Output Asset passet", - "4 | Action [4/7] : 1984fctenw8m2fpl8a9wzguzp7j34d7vravryu", - "4 | Action [5/7] : hft808nyt9fdggqxmanqm Claim Fee 0 pass", - "4 | Action [6/7] : et1984fctenw8m2fpl8a9wzguzp7j34d7vravr", - "4 | Action [7/7] : yuhft808nyt9fdggqxmanqm" - ], - "output_expert": [ - "0 | Chain ID : gkgk-9350062634", - "1 | Fee [1/3] : 71189568806291311 passet1984fctenw8m2f", - "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", - "1 | Fee [3/3] : qxmanqm", - "2 | Memo Sender Address : penumbra1y0e8yn26hjh2cxcj7lzturuq…", - "3 | Memo Text [1/7] : y A lwBjK0Q B rC9u8f0 WM h5JJWdvV9 IMW", - "3 | Memo Text [2/7] : IRg5uQ6tNes69VfTW4nnjJRaP d lbRQPx6HF", - "3 | Memo Text [3/7] : IW R00w2 pMT5a98aPs c5 kC6I a88t1hH4J0", - "3 | Memo Text [4/7] : 9k5 aA 45cik gbx p5Dz9t4vgh Ta2uk mYI", - "3 | Memo Text [5/7] : aN5QYYgR v2FVa3O 2CURmoGKE1 mqa In1tsr", - "3 | Memo Text [6/7] : lOhfQYDnjwZ qvVWH0Gle 9dZklg0l lYZ687", - "3 | Memo Text [7/7] : Qy LiFNw48r 2o00R7JV1 3keM3 ", - "4 | Action [1/7] : Swap Input 46320432425486886 passet198", - "4 | Action [2/7] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", - "4 | Action [3/7] : 808nyt9fdggqxmanqm Output Asset passet", - "4 | Action [4/7] : 1984fctenw8m2fpl8a9wzguzp7j34d7vravryu", - "4 | Action [5/7] : hft808nyt9fdggqxmanqm Claim Fee 0 pass", - "4 | Action [6/7] : et1984fctenw8m2fpl8a9wzguzp7j34d7vravr", - "4 | Action [7/7] : yuhft808nyt9fdggqxmanqm" + "1 | Fee : 651100337414.900048 penumbra", + "2 | Memo Sender Address : penumbra1xrdr930ac0sz23c7uwn3cwxf…", + "3 | Memo Text [1/10] : 4SF 1m c4 jD Da86Q3Bs1jc792LK9Rqk5jz", + "3 | Memo Text [2/10] : Jlj8T6LAy2l4qQ NihqFGCr24aFokAHY 1z B ", + "3 | Memo Text [3/10] : 53Hd O9I7b6tzeIeS0yDdS8o4zi8fVeT1jD98 ", + "3 | Memo Text [4/10] : GFl L7B1T 6vkk7JJlB7RXCQF7q7Q iLFFU0Q", + "3 | Memo Text [5/10] : wX712xqFmp76 M82DWUsDPj dJ 3t8ggb s30", + "3 | Memo Text [6/10] : 7120a6YRmN J 3llEDZR2v b aSKR0hcAa Ay", + "3 | Memo Text [7/10] : L0JyLc 2 3K3aPKJm4p86Qo1G6A YFP C313 ", + "3 | Memo Text [8/10] : Ahrll1 G2bqg V7nw Bf 79bm nmCf80Xe8A", + "3 | Memo Text [9/10] : L1oROu i8F 76 SkQ XC el 8iyrq0 E6cl", + "3 | Memo Text [10/10] : f1E Hh93Asy O468H z 713", + "4 | Action [1/8] : ICS20Withdrawal Channel channel-0 Amou", + "4 | Action [2/8] : nt 835386739166865089 passet1j5zjhuja7", + "4 | Action [3/8] : trvnpxeu5lame548jg57ck4k4dq8za2yjeq2f0", + "4 | Action [4/8] : fg5gqza6gwu To penumbra1myvda02m3ra4fu", + "4 | Action [5/8] : yg6v0wgkmq6844t5u5gh220saqf5ctzqsyhh4s", + "4 | Action [6/8] : 4lp3srvwxe8g45f2fjdeh598ahwzf57nmc4y55", + "4 | Action [7/8] : qegecthkrpxqcr2ezrhr2k4s3ym2294rpwzy7z", + "4 | Action [8/8] : zttdec" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 651100337414.900048 penumbra", + "2 | Memo Sender Address : penumbra1xrdr930ac0sz23c7uwn3cwxf…", + "3 | Memo Text [1/10] : 4SF 1m c4 jD Da86Q3Bs1jc792LK9Rqk5jz", + "3 | Memo Text [2/10] : Jlj8T6LAy2l4qQ NihqFGCr24aFokAHY 1z B ", + "3 | Memo Text [3/10] : 53Hd O9I7b6tzeIeS0yDdS8o4zi8fVeT1jD98 ", + "3 | Memo Text [4/10] : GFl L7B1T 6vkk7JJlB7RXCQF7q7Q iLFFU0Q", + "3 | Memo Text [5/10] : wX712xqFmp76 M82DWUsDPj dJ 3t8ggb s30", + "3 | Memo Text [6/10] : 7120a6YRmN J 3llEDZR2v b aSKR0hcAa Ay", + "3 | Memo Text [7/10] : L0JyLc 2 3K3aPKJm4p86Qo1G6A YFP C313 ", + "3 | Memo Text [8/10] : Ahrll1 G2bqg V7nw Bf 79bm nmCf80Xe8A", + "3 | Memo Text [9/10] : L1oROu i8F 76 SkQ XC el 8iyrq0 E6cl", + "3 | Memo Text [10/10] : f1E Hh93Asy O468H z 713", + "4 | Action [1/8] : ICS20Withdrawal Channel channel-0 Amou", + "4 | Action [2/8] : nt 835386739166865089 passet1j5zjhuja7", + "4 | Action [3/8] : trvnpxeu5lame548jg57ck4k4dq8za2yjeq2f0", + "4 | Action [4/8] : fg5gqza6gwu To penumbra1myvda02m3ra4fu", + "4 | Action [5/8] : yg6v0wgkmq6844t5u5gh220saqf5ctzqsyhh4s", + "4 | Action [6/8] : 4lp3srvwxe8g45f2fjdeh598ahwzf57nmc4y55", + "4 | Action [7/8] : qegecthkrpxqcr2ezrhr2k4s3ym2294rpwzy7z", + "4 | Action [8/8] : zttdec" ] } ] \ No newline at end of file