diff --git a/crates/core/transaction/tests/generate_transaction_signing_test_vectors.rs b/crates/core/transaction/tests/generate_transaction_signing_test_vectors.rs index 085d1e6d5b..1578c65ae8 100644 --- a/crates/core/transaction/tests/generate_transaction_signing_test_vectors.rs +++ b/crates/core/transaction/tests/generate_transaction_signing_test_vectors.rs @@ -9,6 +9,7 @@ use ibc_types::core::{ }; use ibc_types::timestamp::Timestamp; use penumbra_asset::asset::{Id, Metadata}; +use penumbra_asset::{asset, Value, ValueView}; use penumbra_auction::auction::{ dutch::{ actions::{ @@ -38,7 +39,7 @@ use penumbra_governance::{ use penumbra_ibc::IbcRelay; use penumbra_keys::keys::{Bip44Path, SeedPhrase, SpendKey}; use penumbra_keys::test_keys::SEED_PHRASE; -use penumbra_keys::{Address, FullViewingKey}; +use penumbra_keys::{Address, AddressView, FullViewingKey}; use penumbra_num::Amount; use penumbra_proto::DomainType; use penumbra_sct::epoch::Epoch; @@ -47,14 +48,18 @@ use penumbra_stake::{ validator, validator::Definition, Delegate, FundingStreams, GovernanceKey, IdentityKey, Penalty, Undelegate, UndelegateClaimPlan, }; -use penumbra_transaction::{ActionPlan, TransactionParameters, TransactionPlan}; +use penumbra_transaction::{ + memo::MemoPlaintext, plan::MemoPlan, ActionPlan, TransactionParameters, TransactionPlan, +}; use proptest::prelude::*; use proptest::strategy::ValueTree; use proptest::test_runner::{Config, TestRunner}; use rand_core::OsRng; +use serde_json::json; +use std::collections::HashMap; use std::io::Write; use std::str::FromStr; -use std::{fs::File, io::Read}; +use std::{fs, fs::File, io::Read}; use tendermint; fn amount_strategy() -> impl Strategy { @@ -71,18 +76,32 @@ fn value_strategy() -> impl Strategy { .prop_map(|(asset_id, amount)| penumbra_asset::Value { amount, asset_id }) } -fn address_strategy() -> impl Strategy { +fn controlled_address_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + (0u32..100u32).prop_map(move |index| { + let sk = SpendKey::from_seed_phrase_bip44(seed_phrase.clone(), &Bip44Path::new(0)); + sk.full_viewing_key().payment_address(index.into()).0 + }) +} + +fn uncontrolled_address_strategy() -> impl Strategy { // normally we would use address::dummy, but this seems to not work properly // for some reason (invalid key errors on computing effecthash.) prop::strategy::LazyJust::new(|| { let seed_phrase = SeedPhrase::generate(&mut OsRng); let sk = SpendKey::from_seed_phrase_bip44(seed_phrase, &Bip44Path::new(0)); - let addr = sk.full_viewing_key().payment_address(0u32.into()).0; - - addr + sk.full_viewing_key().payment_address(0u32.into()).0 }) } +fn address_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + prop_oneof![ + // 50% chance to generate a controlled address with a random index + controlled_address_strategy(seed_phrase), + // 50% chance to generate a random address + uncontrolled_address_strategy() + ] +} + fn note_strategy(addr: Address) -> impl Strategy { value_strategy().prop_map(move |value| Note::generate(&mut OsRng, &addr, value)) } @@ -95,8 +114,8 @@ fn spend_plan_strategy(fvk: &FullViewingKey) -> impl Strategy .prop_map(|(tct_pos, note)| SpendPlan::new(&mut OsRng, note, tct_pos)) } -fn output_plan_strategy() -> impl Strategy { - (value_strategy(), address_strategy()) +fn output_plan_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + (value_strategy(), address_strategy(seed_phrase.clone())) .prop_map(|(value, address)| OutputPlan::new(&mut OsRng, value, address)) } @@ -219,29 +238,55 @@ fn validator_definition_strategy() -> impl Strategy { }) } -fn swap_plaintext_strategy() -> impl Strategy { +#[derive(Debug, Clone)] +enum SwapAmountType { + ZeroFirst, + ZeroSecond, + BothNonZero, +} + +fn swap_amount_type_strategy() -> impl Strategy { + // We want test vectors for cases where the first asset is zero, the second asset is zero, + // and both assets are non-zero. In the latter case, hardware custody backends should + // refuse to sign the transaction. + prop_oneof![ + Just(SwapAmountType::ZeroFirst), + Just(SwapAmountType::ZeroSecond), + Just(SwapAmountType::BothNonZero), + ] +} + +fn swap_plaintext_strategy(seed_phrase: SeedPhrase) -> impl Strategy { ( amount_strategy(), amount_strategy(), asset_id_strategy(), asset_id_strategy(), - address_strategy(), + address_strategy(seed_phrase), + swap_amount_type_strategy(), ) - .prop_map(|(delta_1_i, delta_2_i, asset_1, asset_2, claim_address)| { - let trading_pair = TradingPair::new(asset_1, asset_2); - SwapPlaintext::new( - &mut OsRng, - trading_pair, - delta_1_i, - delta_2_i, - Fee::from_staking_token_amount(0u64.into()), - claim_address, - ) - }) + .prop_map( + |(delta_1_i, delta_2_i, asset_1, asset_2, claim_address, amount_type)| { + let (delta_1_i, delta_2_i) = match amount_type { + SwapAmountType::ZeroFirst => (0u64.into(), delta_2_i), + SwapAmountType::ZeroSecond => (delta_1_i, 0u64.into()), + SwapAmountType::BothNonZero => (delta_1_i, delta_2_i), + }; + let trading_pair = TradingPair::new(asset_1, asset_2); + SwapPlaintext::new( + &mut OsRng, + trading_pair, + delta_1_i, + delta_2_i, + Fee::from_staking_token_amount(0u64.into()), + claim_address, + ) + }, + ) } -fn swap_plan_strategy() -> impl Strategy { - (swap_plaintext_strategy()).prop_map(|swap_plaintext| SwapPlan { +fn swap_plan_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + (swap_plaintext_strategy(seed_phrase)).prop_map(|swap_plaintext| SwapPlan { proof_blinding_r: Fq::rand(&mut OsRng), proof_blinding_s: Fq::rand(&mut OsRng), swap_plaintext, @@ -294,29 +339,31 @@ fn batch_swap_output_data_strategy() -> impl Strategy impl Strategy { - (swap_plaintext_strategy(), batch_swap_output_data_strategy()).prop_map( - |(swap_plaintext, output_data)| SwapClaimPlan { +fn swap_claim_plan_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + ( + swap_plaintext_strategy(seed_phrase), + batch_swap_output_data_strategy(), + ) + .prop_map(|(swap_plaintext, output_data)| SwapClaimPlan { swap_plaintext, position: penumbra_tct::Position::from(0u64), output_data, epoch_duration: 1000u64, proof_blinding_r: Fq::rand(&mut OsRng), proof_blinding_s: Fq::rand(&mut OsRng), - }, - ) + }) } fn sequence_strategy() -> impl Strategy { (4001..2000000000u64).prop_map(Sequence) } -fn ibc_action_strategy() -> impl Strategy { +fn ibc_action_strategy(seed_phrase: SeedPhrase) -> impl Strategy { ( sequence_strategy(), 0..1000000000u64, 0..1000000000u64, - address_strategy(), + address_strategy(seed_phrase.clone()), ) .prop_map(|(sequence, revision_number, revision_height, src)| { IbcRelay::RecvPacket(MsgRecvPacket { @@ -380,7 +427,7 @@ fn vote_strategy() -> impl Strategy { fn note_strategy_without_address() -> impl Strategy { ( - address_strategy(), + uncontrolled_address_strategy(), value_strategy(), prop::array::uniform32(any::()), ) @@ -523,7 +570,7 @@ fn community_pool_spend_strategy() -> impl Strategy } fn community_pool_output_strategy() -> impl Strategy { - (value_strategy(), address_strategy()) + (value_strategy(), uncontrolled_address_strategy()) .prop_map(|(value, address)| CommunityPoolOutput { value, address }) } @@ -531,11 +578,11 @@ fn denom_strategy() -> impl Strategy { prop::string::string_regex(r"[a-zA-Z0-9]+").unwrap() } -fn ics20_withdrawal_strategy() -> impl Strategy { +fn ics20_withdrawal_strategy(seed_phrase: SeedPhrase) -> impl Strategy { ( amount_strategy(), - address_strategy(), - address_strategy(), + address_strategy(seed_phrase.clone()), + address_strategy(seed_phrase.clone()), denom_strategy(), 0..1000000000u64, 0..1000000000u64, @@ -612,19 +659,22 @@ fn auction_dutch_end_strategy() -> impl Strategy }) } -fn action_plan_strategy(fvk: &FullViewingKey) -> impl Strategy { +fn action_plan_strategy( + fvk: &FullViewingKey, + seed_phrase: SeedPhrase, +) -> impl Strategy { prop_oneof![ spend_plan_strategy(fvk).prop_map(ActionPlan::Spend), - output_plan_strategy().prop_map(ActionPlan::Output), + output_plan_strategy(seed_phrase.clone()).prop_map(ActionPlan::Output), delegate_plan_strategy().prop_map(ActionPlan::Delegate), undelegate_plan_strategy().prop_map(ActionPlan::Undelegate), undelegate_claim_plan_strategy().prop_map(ActionPlan::UndelegateClaim), validator_definition_strategy().prop_map(ActionPlan::ValidatorDefinition), - swap_plan_strategy().prop_map(ActionPlan::Swap), - swap_claim_plan_strategy().prop_map(ActionPlan::SwapClaim), + swap_plan_strategy(seed_phrase.clone()).prop_map(ActionPlan::Swap), + swap_claim_plan_strategy(seed_phrase.clone()).prop_map(ActionPlan::SwapClaim), proposal_submit_strategy().prop_map(ActionPlan::ProposalSubmit), proposal_withdraw_strategy().prop_map(ActionPlan::ProposalWithdraw), - ibc_action_strategy().prop_map(ActionPlan::IbcAction), + ibc_action_strategy(seed_phrase.clone()).prop_map(ActionPlan::IbcAction), delegator_vote_strategy().prop_map(ActionPlan::DelegatorVote), validator_vote_strategy().prop_map(ActionPlan::ValidatorVote), proposal_deposit_claim_strategy().prop_map(ActionPlan::ProposalDepositClaim), @@ -634,40 +684,71 @@ fn action_plan_strategy(fvk: &FullViewingKey) -> impl Strategy impl Strategy> { - prop::collection::vec(action_plan_strategy(fvk), 2..5) +fn actions_vec_strategy( + fvk: &FullViewingKey, + seed_phrase: SeedPhrase, +) -> impl Strategy> { + prop::collection::vec(action_plan_strategy(fvk, seed_phrase), 2..5) +} + +fn chain_id_strategy() -> impl Strategy { + prop_oneof![ + Just("penumbra-1".to_string()), + "[a-z]+-[0-9]+".prop_map(|s| s.to_string()), // Random other chain IDs + ] +} + +fn expiry_height_strategy() -> impl Strategy { + prop_oneof![ + Just(0u64), // Absent expiry height + 1u64..1000000u64, // Random non-zero expiry height + ] } fn transaction_parameters_strategy() -> impl Strategy { - let expiry_height = 0u64..10000000000u64; - let chain_id = prop::string::string_regex(r"[a-z]+-[0-9]+").unwrap(); let fee = value_strategy().prop_map(|fee_value| Fee(fee_value)); - (expiry_height, chain_id, fee).prop_map(|(expiry_height, chain_id, fee)| { - TransactionParameters { + (expiry_height_strategy(), chain_id_strategy(), fee).prop_map( + |(expiry_height, chain_id, fee)| TransactionParameters { expiry_height, chain_id, fee, - } + }, + ) +} + +fn memo_plaintext_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + (address_strategy(seed_phrase), "[a-zA-Z0-9 ]{1,432}").prop_map(|(return_address, text)| { + MemoPlaintext::new(return_address, text).expect("memo text should be valid") }) } -fn transaction_plan_strategy(fvk: &FullViewingKey) -> impl Strategy { - (actions_vec_strategy(fvk), transaction_parameters_strategy()).prop_map(|(actions, params)| { - TransactionPlan { +fn memo_plan_strategy(seed_phrase: SeedPhrase) -> impl Strategy { + memo_plaintext_strategy(seed_phrase).prop_map(|plaintext| MemoPlan::new(&mut OsRng, plaintext)) +} + +fn transaction_plan_strategy( + fvk: &FullViewingKey, + seed_phrase: SeedPhrase, +) -> impl Strategy { + ( + actions_vec_strategy(fvk, seed_phrase.clone()), + transaction_parameters_strategy(), + prop_oneof![Just(None), memo_plan_strategy(seed_phrase).prop_map(Some),], + ) + .prop_map(|(actions, params, memo)| TransactionPlan { actions, transaction_parameters: params, detection_data: None, - memo: None, - } - }) + memo, + }) } #[test] @@ -680,9 +761,9 @@ fn generate_transaction_signing_test_vectors() { for i in 0..100 { let seed_phrase = SeedPhrase::from_str(SEED_PHRASE).expect("test seed phrase is valid"); - let sk = SpendKey::from_seed_phrase_bip44(seed_phrase, &Bip44Path::new(0)); + let sk = SpendKey::from_seed_phrase_bip44(seed_phrase.clone(), &Bip44Path::new(0)); let fvk = sk.full_viewing_key(); - let value_tree = transaction_plan_strategy(fvk) + let value_tree = transaction_plan_strategy(fvk, seed_phrase) .new_tree(&mut runner) .expect("Failed to create new tree"); let transaction_plan = value_tree.current(); @@ -720,6 +801,51 @@ fn generate_transaction_signing_test_vectors() { } } +/// After the colon, there should be maximum 38 characters. +const MAX_VALUE_LENGTH: usize = 38; + +/// Format a string to fit within display constraints by truncating if needed +fn format_for_display(label: &str, value: String) -> Vec { + let mut result = Vec::new(); + let mut total_chunks = 0; + + // First count total chunks needed + for line in value.split('\n') { + total_chunks += if line.len() <= MAX_VALUE_LENGTH { + 1 + } else { + (line.len() + MAX_VALUE_LENGTH - 1) / MAX_VALUE_LENGTH + }; + } + + // Now generate output with chunk numbers displayed if needed (i.e. + // not to display [1/1] if there's only one chunk) + let mut current_chunk = 1; + for line in value.split('\n') { + if line.len() <= MAX_VALUE_LENGTH { + if total_chunks == 1 { + result.push(format!("{} : {}", label, line)); + } else { + result.push(format!( + "{} [{}/{}] : {}", + label, current_chunk, total_chunks, line + )); + } + current_chunk += 1; + } else { + for chunk in line.as_bytes().chunks(MAX_VALUE_LENGTH) { + let chunk_str = String::from_utf8_lossy(chunk); + result.push(format!( + "{} [{}/{}] : {}", + label, current_chunk, total_chunks, chunk_str + )); + current_chunk += 1; + } + } + } + result +} + #[test] fn effect_hash_test_vectors() { // This parses the transaction plan, computes the effect hash, and verifies that it @@ -751,3 +877,621 @@ fn effect_hash_test_vectors() { assert_eq!(effect_hash_hex, expected_effect_hash); } } + +#[ignore] +#[test] +fn generate_hw_display_test_vectors() { + let test_vectors_dir = "tests/signing_test_vectors"; + let mut test_vectors = Vec::new(); + + let seed_phrase = SeedPhrase::from_str(SEED_PHRASE).expect("test seed phrase is valid"); + let sk = SpendKey::from_seed_phrase_bip44(seed_phrase, &Bip44Path::new(0)); + let fvk = sk.full_viewing_key(); + + for i in 0..100 { + let proto_file_path = format!("{}/transaction_plan_{}.proto", test_vectors_dir, i); + let transaction_plan_encoded = + fs::read(&proto_file_path).expect("Failed to read Protobuf file"); + + let transaction_plan = TransactionPlan::decode(&transaction_plan_encoded[..]) + .expect("should be able to decode transaction plan"); + + let display_vector = json!({ + "index": i, + "blob": hex::encode(&transaction_plan_encoded), + "output": generate_normal_output(&transaction_plan, &fvk), + "output_expert": generate_expert_output(&transaction_plan, &fvk), + }); + + test_vectors.push(display_vector); + } + + // Write the test vectors to a JSON file + let output_path = format!("{}/hw_display_vectors.json", test_vectors_dir); + fs::write( + output_path, + serde_json::to_string_pretty(&test_vectors).unwrap(), + ) + .expect("Failed to write display test vectors"); +} + +fn address_display(address: &Address, fvk: &FullViewingKey) -> String { + // Use the existing AddressView to render the address data. + let address_view = fvk.view_address(address.clone()); + + match address_view { + // The address is not controlled by the user’s account. + // In this case it should be rendered using the Canonical Short Form. + AddressView::Opaque { address } => address.display_short_form(), + // The address is controlled by the user’s account. + // In this case it should be rendered as “Main Account” or “Sub-account #N”, + // depending on the account number. + AddressView::Decoded { + address: _, + index, + wallet_id: _, + } => { + if index.account == 0 { + "Main Account".to_string() + } else { + format!("Sub-account #{}", index.account) + } + } + } +} + +fn value_display( + value: &Value, + chain_id: &str, + base_denoms: &HashMap, +) -> String { + let amount = value.amount.value(); + let asset_id = value.asset_id; + let cache = asset::Cache::with_known_assets(); + let value_view = value.view_with_cache(&cache); + + match value_view { + ValueView::KnownAssetId { + amount, metadata, .. + } => { + if chain_id == "penumbra-1" { + // 1: Check if we're on penumbra-1 and if the asset is in our known registry + let unit = metadata.default_unit(); + return format!("{} {}", unit.format_value(amount), unit); + } else if base_denoms.get(&asset_id).is_some() { + // 2: The asset is in the provided base denominations + let unit = metadata.default_unit(); + return format!("{} {}", unit.format_value(amount), unit); + } else { + // 3: Fallback to bech32 asset ID + return format!("{} {}", amount, asset_id.to_string()); + }; + } + ValueView::UnknownAssetId { .. } => { + // 3: Fallback to bech32 asset ID + return format!("{} {}", amount, asset_id.to_string()); + } + } +} + +fn generate_normal_output(plan: &TransactionPlan, fvk: &FullViewingKey) -> Vec { + let mut output = Vec::new(); + let mut index = 0; + // TODO: populate this + let base_denoms = HashMap::new(); + let ivk = fvk.incoming(); + + // Add chain ID + if !plan.transaction_parameters.chain_id.is_empty() { + for line in format_for_display("Chain ID", plan.transaction_parameters.chain_id.clone()) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + + // Add expiry height if nonzero + if plan.transaction_parameters.expiry_height != 0 { + for line in format_for_display( + "Expiry Height", + plan.transaction_parameters.expiry_height.to_string(), + ) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + + // Add fee + for line in format_for_display( + "Fee", + value_display( + &plan.transaction_parameters.fee.0, + &plan.transaction_parameters.chain_id, + &base_denoms, + ), + ) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + + for action in &plan.actions { + match action { + ActionPlan::Spend(spend) => { + // Format the value + let value_display = value_display( + &spend.note.value(), + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the address + let address_display = address_display(&spend.note.address(), fvk); + + // Combine into "Spend {value} from {address}" + let spend_display = format!("Spend {} from {}", value_display, address_display); + + for line in format_for_display("Action", spend_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::Output(output_action) => { + // Format the value + let value_display = value_display( + &output_action.value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the address + let address_display = address_display(&output_action.dest_address, fvk); + + // Combine into "Output {value} to {address}" + let output_display = format!("Output {} to {}", value_display, address_display); + + for line in format_for_display("Action", output_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::Ics20Withdrawal(withdrawal) => { + let channel_display = format!("{}", withdrawal.source_channel); + + // Format and display the value + let value = Value { + amount: withdrawal.amount, + asset_id: withdrawal.denom.id(), + }; + let value_display = + value_display(&value, &plan.transaction_parameters.chain_id, &base_denoms); + + // Display destination address + let destination_display = format!("{}", withdrawal.destination_chain_address); + + // Verify return address is controlled by user, bail if not + let mut error_display = "".to_string(); + if !ivk.views_address(&withdrawal.return_address) { + error_display = format!("PANIC [X/X] : LEDGER SHOULD REFUSE TO SIGN (return address in Ics20Withdrawal not controlled by user)"); + } + + let ics20_display; + if error_display != "" { + ics20_display = format!( + "ICS20Withdrawal\nChannel {}\nAmount {}\nTo {}\n{}", + channel_display, value_display, destination_display, error_display + ); + } else { + ics20_display = format!( + "ICS20Withdrawal\nChannel {}\nAmount {}\nTo {}", + channel_display, value_display, destination_display + ); + } + for line in format_for_display("Action", ics20_display) { + output.push(format!("{} | {}", index, line)); + } + + // TODO: After UIP-5, add ICS-20 memo display here + index += 1; + } + ActionPlan::Swap(swap) => { + // Verify claim address is controlled by user + let mut error_display = "".to_string(); + if !ivk.views_address(&swap.swap_plaintext.claim_address) { + error_display = format!( + "PANIC [X/X] : LEDGER SHOULD REFUSE TO SIGN (claim address in Swap not controlled by user)", + ); + } + + // Determine input and output assets based on which delta is nonzero + let (input_value, output_asset) = if swap.swap_plaintext.delta_1_i != Amount::zero() + && swap.swap_plaintext.delta_2_i == Amount::zero() + { + // Asset 1 is input, Asset 2 is output + let input = Value { + amount: swap.swap_plaintext.delta_1_i, + asset_id: swap.swap_plaintext.trading_pair.asset_1(), + }; + (input, swap.swap_plaintext.trading_pair.asset_2()) + } else if swap.swap_plaintext.delta_2_i != Amount::zero() + && swap.swap_plaintext.delta_1_i == Amount::zero() + { + // Asset 2 is input, Asset 1 is output + let input = Value { + amount: swap.swap_plaintext.delta_2_i, + asset_id: swap.swap_plaintext.trading_pair.asset_2(), + }; + (input, swap.swap_plaintext.trading_pair.asset_1()) + } else { + // Invalid swap: exactly one delta must be nonzero + if error_display == "" { + error_display = format!( + "PANIC [X/X] : LEDGER SHOULD REFUSE TO SIGN (invalid swap: one delta must be nonzero)", + ); + } else { + // Add to existing error + error_display = format!( + "{} (invalid swap: one delta must be nonzero)", + error_display + ); + } + + // Arbitrary choice of asset 2 as input + let input = Value { + amount: swap.swap_plaintext.delta_2_i, + asset_id: swap.swap_plaintext.trading_pair.asset_2(), + }; + (input, swap.swap_plaintext.trading_pair.asset_1()) + }; + + // Display input value + let input_display = value_display( + &input_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Display output asset by creating a zero-value and extracting just the denomination + let output_value = Value { + amount: Amount::from(0u64), + asset_id: output_asset, + }; + let value_view = value_display( + &output_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + // Skip the "0 " prefix to get just the denomination + let output_asset_display = value_view + .clone() + .split_once(' ') + .map_or(value_view, |(_amount, denom)| denom.to_string()); + + // Display claim fee + let claim_fee_display = value_display( + &swap.swap_plaintext.claim_fee.0, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + let swap_display; + if error_display != "" { + swap_display = format!( + "Swap\nInput {}\nOutput Asset {}\nClaim Fee {}\n{}", + input_display, output_asset_display, claim_fee_display, error_display + ); + } else { + swap_display = format!( + "Swap\nInput {}\nOutput Asset {}\nClaim Fee {}", + input_display, output_asset_display, claim_fee_display + ); + } + + for line in format_for_display("Action", swap_display) { + output.push(format!("{} | {}", index, line)); + } + + index += 1; + } + ActionPlan::Delegate(delegate) => { + // Format the unbonded amount (input) + let input_value = Value { + amount: delegate.unbonded_amount, + asset_id: *penumbra_asset::STAKING_TOKEN_ASSET_ID, + }; + let input_display = value_display( + &input_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format validator identity + let validator_display = format!("{}", delegate.validator_identity); + + let delegate_display = format!( + "Delegate\nTo {}\nInput {}", + validator_display, input_display + ); + + for line in format_for_display("Action", delegate_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::Undelegate(undelegate) => { + // Format the delegation amount (input) + let input_value = undelegate.delegation_value(); + let input_display = value_display( + &input_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the unbonding amount (output) + let output_value = undelegate.unbonded_value(); + let output_display = value_display( + &output_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format validator identity + let validator_display = format!("{}", undelegate.validator_identity); + + let undelegate_display = format!( + "Undelegate\nFrom {}\nInput {}\nOutput {}", + validator_display, input_display, output_display + ); + + for line in format_for_display("Action", undelegate_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::UndelegateClaim(claim) => { + // Format the unbonding tokens value + let value = Value { + amount: claim.unbonding_amount, + asset_id: claim.unbonding_id(), + }; + let value_display = + value_display(&value, &plan.transaction_parameters.chain_id, &base_denoms); + + let claim_display = format!("UndelegateClaim\nValue {}", value_display,); + + for line in format_for_display("Action", claim_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::DelegatorVote(vote) => { + // Format the voting power as a value + let power_value = Value { + amount: vote.unbonded_amount, + asset_id: *penumbra_asset::STAKING_TOKEN_ASSET_ID, + }; + let power_display = value_display( + &power_value, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Convert vote to Yes/No/Abstain string + let vote_choice = match vote.vote { + penumbra_governance::Vote::Yes => "Yes", + penumbra_governance::Vote::No => "No", + penumbra_governance::Vote::Abstain => "Abstain", + }; + + let vote_display = format!( + "DelegatorVote on Proposal {}\nVote {}\nVoting Power: {}", + vote.proposal, vote_choice, power_display + ); + + for line in format_for_display("Action", vote_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::PositionOpen(position_open) => { + // Format the first reserve amount + let reserves_1 = Value { + amount: position_open.position.reserves.r1, + asset_id: position_open.position.phi.pair.asset_1(), + }; + let reserves_1_display = value_display( + &reserves_1, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the second reserve amount + let reserves_2 = Value { + amount: position_open.position.reserves.r2, + asset_id: position_open.position.phi.pair.asset_2(), + }; + let reserves_2_display = value_display( + &reserves_2, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Build display string conditionally including close_on_fill + let position_display = if position_open.position.close_on_fill { + format!( + "PositionOpen\nReserves 1: {}\nReserves 2: {}\nTrading Function p: {}\nTrading Function q: {}\nFee: {}\nClose on fill: true", + reserves_1_display, + reserves_2_display, + position_open.position.phi.component.p, + position_open.position.phi.component.q, + position_open.position.phi.component.fee, + ) + } else { + format!( + "PositionOpen\nReserves 1: {}\nReserves 2: {}\nTrading Function p: {}\nTrading Function q: {}\nFee: {}", + reserves_1_display, + reserves_2_display, + position_open.position.phi.component.p, + position_open.position.phi.component.q, + position_open.position.phi.component.fee, + ) + }; + + for line in format_for_display("Action", position_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::PositionClose(position_close) => { + let position_display = + format!("PositionClose\nPosition ID {}", position_close.position_id); + + for line in format_for_display("Action", position_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::PositionWithdraw(position_withdraw) => { + let position_display = format!( + "PositionWithdraw\nPosition ID {}\nSequence number {}", + position_withdraw.position_id, position_withdraw.sequence + ); + + for line in format_for_display("Action", position_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::ActionDutchAuctionSchedule(auction) => { + // Format the selling amount + let selling = Value { + amount: auction.description.input.amount, + asset_id: auction.description.input.asset_id, + }; + let selling_display = value_display( + &selling, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the "for" asset (just the asset ID since it's the target) + let for_asset = Value { + amount: 0u64.into(), // Amount not relevant for display + asset_id: auction.description.output_id, + }; + let for_asset_display = value_display( + &for_asset, + &plan.transaction_parameters.chain_id, + &base_denoms, + ) + .split_whitespace() + .last() + .unwrap_or("unknown") + .to_string(); + + // Format starting price + let start_price = format!( + "{} {} for {} {}", + auction.description.max_output, + for_asset_display, + auction.description.input.amount, + selling_display + .split_whitespace() + .last() + .unwrap_or("unknown") + ); + + // Format ending price + let end_price = format!( + "{} {} for {} {}", + auction.description.min_output, + for_asset_display, + auction.description.input.amount, + selling_display + .split_whitespace() + .last() + .unwrap_or("unknown") + ); + + let auction_display: String = format!( + "DutchAuctionSchedule\nSelling: {}\nFor: {}\nStarting price: {}\nEnding price: {}\nStart block height: {}\nEnd block height: {}\nSteps: {}", + selling_display, + for_asset_display, + start_price, + end_price, + auction.description.start_height, + auction.description.end_height, + auction.description.step_count, + ); + + for line in format_for_display("Action", auction_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::ActionDutchAuctionEnd(auction_end) => { + let auction_display = + format!("DutchAuctionEnd\nAuction ID: {}", auction_end.auction_id); + + for line in format_for_display("Action", auction_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + ActionPlan::ActionDutchAuctionWithdraw(withdraw) => { + // Format the unsold amount + let unsold_display = value_display( + &withdraw.reserves_input, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + // Format the proceeds amount + let proceeds_display = value_display( + &withdraw.reserves_output, + &plan.transaction_parameters.chain_id, + &base_denoms, + ); + + let withdraw_display = format!( + "DutchAuctionWithdraw\nAuction ID: {}\nUnsold: {}\nProceeds: {}\nSequence number: {}", + withdraw.auction_id, + unsold_display, + proceeds_display, + withdraw.seq + ); + + for line in format_for_display("Action", withdraw_display) { + output.push(format!("{} | {}", index, line)); + } + index += 1; + } + _ => { + // TODO: populate this + } + } + } + + // Add memo if present + if let Some(memo) = &plan.memo { + // Display sender address + for line in format_for_display( + "Sender Address", + address_display(&memo.plaintext.return_address(), &fvk), + ) { + output.push(format!("{} | {}", index, line)); + } + + // Display memo text + for line in format_for_display("Memo Text", memo.plaintext.text().to_string()) { + output.push(format!("{} | {}", index, line)); + } + } + // TODO: If adding more stuff here increment the `index` + + output +} + +fn generate_expert_output(plan: &TransactionPlan, fvk: &FullViewingKey) -> Vec { + // For now, expert mode shows the same output + // We can customize this later if needed + generate_normal_output(plan, fvk) +} diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_0.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_0.txt index 4284d2a0b8..ac5e7183af 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_0.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_0.txt @@ -1 +1 @@ -9e73992b95b90d5cb6e67e0d111214d6473902cb32151baf9fee37480ae3841c6d30d64323b26f51b91db797369fa6f099e8ae900211e0376fa77c52ca59771e \ No newline at end of file +f2fd4d252c45578f1a79d4dafb992b7f44769d497b38f54fb6e092813ae043b49c26e0380369592787956b99cfa1c83f11bea591ba6b9d9d80b3f6473e8de282 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_1.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_1.txt index 563b05f2cd..e827187486 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_1.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_1.txt @@ -1 +1 @@ -a29371cb3627441e0d1938399f6cf630829bb722c475bbf69db08cadb652d12f067cf2b5a8ca9792bf940b0899b1897dfda338b1dbcd09c5160e795bbc3b6361 \ No newline at end of file +c0c21d00a90b852bdb40922dcbaa6ba6e1f1ec1caee5ce2e8e7bf5603eab73203b9fb1f4073080772e4e3e01703ec3ed293d5ae6d06263550a4f47cb0ed9473e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_10.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_10.txt index 938966f8a7..3189c0d65e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_10.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_10.txt @@ -1 +1 @@ -bf1468170ef936887f9e861f10e55b5b189c79dc323eecc38ecf89186455280b0b6377356fe1948f31809d921714f08a1218e2aa5fe039a95f2dfeec50a79396 \ No newline at end of file +c18667f54b5348ed552ef91f76754ad0b6753ee3ac4ee881d37bfca4a8c377a7b3a2e74115671584fd0b7a9714e928e0e3cd1659ca7a69393e247e77e68db05b \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_11.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_11.txt index abff50d3ef..6bcb31c1ce 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_11.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_11.txt @@ -1 +1 @@ -ce462753553b47ef87a246e01c7481661dad7dfb4310d31c8406df180437d0110f0d15d3d102fdb016c7a700ca0eed0b0d8ecce354937801fb85ea8cc1f3c44e \ No newline at end of file +1ee3d29c1f8385045f6175384a5d5eeee4bb26f770e275668874401cea3b6f52edd123d2e11a735aaed165bec0aba828ef0650ad2bb8c3071c0e29e2b54c6a1e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_12.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_12.txt index 8ff69ce53f..64fe23ad65 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_12.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_12.txt @@ -1 +1 @@ -2cd8be2841ab2d84ca3651058441aa9516fd11a3bd273a8e6ff7368e23ced5d7535eac3ec9c51d3e5bf0b034accbdacdd6a5bd1c49ec389b1fcc9ec793887903 \ No newline at end of file +f2fc866a6f5b38a5611d6333103ddc83bb1d0aef5a479d1edd3c6d3c7c13e6da45f7cbc1fd0ef1e94439992e552f69681408c9253a1610cd45ff0d71f5a429a2 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_13.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_13.txt index af90f7d73a..e75745af8d 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_13.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_13.txt @@ -1 +1 @@ -809e2b176709aed953224d16e3aab487f37660bce1f48b1376aa13c657cf4648e09381b6fb17e7b025a4cddf848a73138b7d979debde1cd804008c09ac8e9316 \ No newline at end of file +d7d0ee9b8780241f7645f51745061aeff1d6f9dab46eb89de9bb51762cf71f0151918c8870afcdddd4c300565c544f8fe37a517f5fbd065c7a80a4239eecbf11 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_14.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_14.txt index c1b76ef4ca..e387563634 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_14.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_14.txt @@ -1 +1 @@ -2e0b87b60f276f08899fa9be690d733bd949138d768d81680950935af7fcd46acfefa661b74eefcc42e5e37109323587145e77fc2d0e83faba08209ae05ff907 \ No newline at end of file +50d5665f1f0904fb362863b9a20f4f84ac2f769da632137b6342cd77a731cf7d70aa824df9c5ad5ca000bab5e1dd2a536da3a80957cd261e9177781dd4332c86 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_15.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_15.txt index 01a2b8e11d..9739d9a4cd 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_15.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_15.txt @@ -1 +1 @@ -7f1de934b32d6d846fa7c0cad6e40012039b633837f98a57878c9d08e5df3769a7bf54b82f1bf2973a785b2dad9d3dafc889da66cc30ee7556c597af1f927a8e \ No newline at end of file +372326b47149db39a03532a552380544cfac4e7cb17ddcd32d5e10358ca42f0ff931019faed9d036612091f18be2766dbe7dcc1b7c79e3c15a1b0e9af8a91b86 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_16.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_16.txt index 8758bf088e..c1250a98eb 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_16.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_16.txt @@ -1 +1 @@ -69b9d287cf63fdbdce8a940adcdcbf4166dc01dbb8f45e1c4eccb02d1f932fd4ff6f8196f37ea07387dc23010f53e4d55cb9cd2f8efeb28d28bc9cbcd721ed58 \ No newline at end of file +8a49ffddb212c7d20cbfeddbc1f06ecae2bf53fc0887dd6ce0a83c3b5a0e1350b564dcda2e56aad746f5687fff96fcaf8795914967229b0217afd9c11577c4eb \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_17.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_17.txt index 0d2d2cd826..5773d2d6cf 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_17.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_17.txt @@ -1 +1 @@ -5ffbd0c46efb39f9d685613ba32902f6ad1e624e43067c341aef4ea5312c86e36da50301fa2272e3eec3e7ba1601036a4e8a39ae44dd6db7debe03016ae4f3e6 \ No newline at end of file +7ee3d6ac493ef2eac6a63aef381f8b80e82a7811d2e5b94772058f77b0d61d6c9f1aea29761a8855e8c6c2f50ba9409c8f1064e140fa59dfa69b6312b322bbe9 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_18.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_18.txt index 29739dbaae..387912cf40 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_18.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_18.txt @@ -1 +1 @@ -3fb12b16b36925001b89b083052796fb2652e9ef22389f115a65a211f6411d519c7e8e2c1442681b8591151efe2bfcf56b1e28788796619ab16c03da937cfd46 \ No newline at end of file +16ebf40de1176c3ccd1e2bed12ca21f90925a74a15799b596ae67668e1b28bd19538b35e1082e61ba91c9d7f5c2fba4fa8042e19416212180bf6f0d6fd1a3ec2 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_19.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_19.txt index 6d6f7ba798..7d78ae5bed 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_19.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_19.txt @@ -1 +1 @@ -546017f17576f94b4b2359c8a73ee4d46f77daf1f309fb26bd5e8649338a135b5d1c1fd10ec9c326f95a91b22fff23dc8c27e380cc780550c16533c7ee03547a \ No newline at end of file +82054b546c12fa676bc4b34cb59c113525c2772ac3e941d5a7798c4208084d2a242cbc45384b86a31ccc2263185862e041730eba5b50763c7bdca0a4f4abffc3 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_2.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_2.txt index b3fbf3dd08..d08ab02459 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_2.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_2.txt @@ -1 +1 @@ -e4460f3c5068ac4e4d077da569745073b66f4ea32d62cb3c329813135ebc389aecadfbdab4fb6f36c5bad55c154c4cd6daeca8672bae8933580839bb9639a717 \ No newline at end of file +648205f572d73cdf06c818aa4cc96d91226b7f727e288f245820be79994ca172387b92f4b05ef54e5c09f2b1d05cecb5dccb912ec71f4626cd75f66554b3a2a5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_20.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_20.txt index 327b9fcf3d..d5c3ed1743 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_20.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_20.txt @@ -1 +1 @@ -dfe0bb6c511b1e504cb39b615f321f444732c249e564d53f14575fbf47a204bdef390aaf3c0f7b230f1818c1d5ad12120d2119eb856798d5de1a0f4ab1d4b20b \ No newline at end of file +443999019853f3bf62876af844e91ccdaf1972c7d8a691512038d06d5bd84e638ec1c623558a4396d2ebf15636740dc0033fe7766312e9ebe8b4588d457ddebf \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_21.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_21.txt index 0a96dc9a62..20ad56c63c 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_21.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_21.txt @@ -1 +1 @@ -b27ef3fb5d60dfe6414de303bcb4792223945572c4167ec0d1c0de6bdeb88bd7d270dd03b34a6b2c244f58e98cf8dffb5348a259635002469ae02fed1aa2401a \ No newline at end of file +670efd97d8e3524db499ff09ed6d6ae110b0a073742b7a3d6f5b0941f102479720b32c530cde22c0442437808506f5bb29a26aaa3f5757061cd80ff43004bdcc \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_22.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_22.txt index 3151ffaf8d..9200af629c 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_22.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_22.txt @@ -1 +1 @@ -af167c0dbbb3daa0f9cb289fb3cdd7e11c2acd09d93111d36bbb8370e685747ab677d91813ed24e5e7466122b331e2a21399fbd204c1d9e7b31f5c9d335b71cc \ No newline at end of file +9fb0730f7c588f9368030586113ad04f9b3bc9af6ce4e9788436bed5c14db97c0febdc6ad479807819abcb924b0fd57bba66192e62b481c00d3e8557bedbe9af \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_23.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_23.txt index 9fe81b797c..514c9bbab2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_23.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_23.txt @@ -1 +1 @@ -e97f01590e58dd68fa5708250d9e8667db1241c3000aa7e4e1839d30b7988c65f8d438957d89d755c3c4f1fe35908c705d97cf3d237002287ab5059574393270 \ No newline at end of file +7f5cb7e59709c9dd6b11c1767cddd4105151aa6246b48d17fb3149aa4e0e4ccb9e51cb4b4bc51be39503d4786b3c395b25e074e1799d5a4ccd5a88819a1d80c5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_24.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_24.txt index 229453797e..543a0afa68 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_24.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_24.txt @@ -1 +1 @@ -a1c704853d82d4dec1287ffcdbc68cb2e84309525fc148f10092d1824e30ab15679171f2ab81a71d8891cccb8a7f6abdbae5505ab80ce80343f8cc411ad55162 \ No newline at end of file +17d86fa32190d011ac32e6b953a79c70d86282b781efd690da47568a64f9ed3620e858bc4f472a73c2ac498c1121fcebe7bf731e0443df31d4bb088850d05027 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_25.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_25.txt index 941f230296..1d0db349c5 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_25.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_25.txt @@ -1 +1 @@ -507fb0aec0310a59261302a5e50ae8df2cdd8e4073d21201e1bf7ca5cb54e4a8f85b6033174919e7811dafce5cc83e968826b0cb8eb037b78c4dc248123d1331 \ No newline at end of file +58b7ca20a44be4cc45678068efbfac8afcf83bfa67a67b365c9536034356564c505a9d6576e64e9594c35662158156749e0695cbbed238447a260682070335e9 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_26.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_26.txt index 47ccf70bd5..6b6a2a764e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_26.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_26.txt @@ -1 +1 @@ -91d7d9b5e761ea32d02fff8bf0d0eb3cd70af80af2ae01009308c282a13163de68c8911f22f61399cc543cf3a03f31c725f973ef54e8c341a70412c392c8d5fb \ No newline at end of file +c676a92dbab4c8da861bb0152111cf788aa0d0df763fa61acefaa8f58239ee6a31d6a7b52a72bd674774b9d4972e06bb8cf3087d35fb7307d16df1fdf534d804 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_27.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_27.txt index 75cb008b8a..e93b983bcb 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_27.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_27.txt @@ -1 +1 @@ -8e2bceb912bb2b69089d5348e0e2a1e472e10f34c96ece0f3ee1c63929c6a983e110a7c0917dec3b64d8c0389c642de023baecbf01ce74b7bdf077ecb236aba8 \ No newline at end of file +ba97a3f282fe7f1e11a28c8be6d1d77b12b0d7440b0de006e3ce92c6b11f5bb451096e09b7766cc2645498ae6e672516f6f22f1d0db0c43fd7f19cb77e192f73 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_28.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_28.txt index 520a717a8f..ee6fb81697 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_28.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_28.txt @@ -1 +1 @@ -e7e2888bb68215390a053e84530fe3c99f723e5710ee4c2c841c41cf1d01c038569177fd063c2ba31d974d3c21039920c9b533e8c40173e2beb65853f014470b \ No newline at end of file +049f6b00450167661a2c6df51a530682e1ecddf1a5eacc0522fb7d1502425f2173654170ff571ba4249701f7fcce5abd4138f0a5e912a6257f7ef83198b4fc8d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_29.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_29.txt index 6f9f4f5296..0bf701d6a2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_29.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_29.txt @@ -1 +1 @@ -c300f0a663c828f2b34a16af4387d007b51598348f9f89cdd38a6d2da5f45d5d84287c7df592f064ff33133c9456afdba115a769c8d69d9928d0a81e9d6a9d23 \ No newline at end of file +46218dfd73839a06a6c316accf73629e3086fda220a89f793538c4915899fb6dd2d8f5a1595f2401f8c61ee39dd915c46740c1eadf1b93742722418f218734b5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_3.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_3.txt index 4348243474..28635cde0b 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_3.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_3.txt @@ -1 +1 @@ -38e3833889cd54dda12b577933dcc36d5679e399bed7c0b94d8e9e17c2651d95e70e201b81d376341ad76c136989805ba936cb9e62b62136b6710f81a51cafc8 \ No newline at end of file +f3fd023635f417a55b70d69f379f6316e1c10a90bc4eb277f357795bd7b99904908278c3b897e2566ec7839a5542515afe79ea80c7892dbd49b9b721d010ab4e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_30.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_30.txt index cd7ee7765d..5ce32362c3 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_30.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_30.txt @@ -1 +1 @@ -dab12cb667e33b0064b735dd0dd7237ff6b6e4ecef5fb0e9e413f9beec2cc2d70a0a2e1ef31292fa4df3385f26ccb7077b73915530a43805e71245834add315c \ No newline at end of file +c5ec0a2d820c8b1b9ae89e0416cde9a232b66ce65292f7fd6611015de365ddb5728577c9d54e408d68c37d2872c1f3aa28e384811badec6bcaa85325387e8d73 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_31.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_31.txt index 53a3be7ebc..17b009c874 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_31.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_31.txt @@ -1 +1 @@ -9eb0ff68c2281870c1738caa57d29b0198012759e1a0eec9b52c0c666ea3e90e5bbfc454c711fccca2bf2e55c91be48f208259d9f616548e2765628132f93ab8 \ No newline at end of file +af2b83e7bef37f355d606d34a542f8d81e5c1895e032c9196e72c335b1bcccb94a74de144e75db64b6b88df94d9dad37314cb17e8f49b2900cdffea7d56aeee0 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_32.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_32.txt index 197e65b683..7511703b6e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_32.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_32.txt @@ -1 +1 @@ -3762a00f04f7cc8fa41aeddaa28baef78800801581540436c651ed68e53f8816c30c88d923227e54717833479b0cb6a4762061a64cf49bbe2a037631f35340ec \ No newline at end of file +51ed793907aad98705d19e0616fac13816624860881b10231475f779af60a6d939bc55355e9135782301e16ad039fb64dccaba1c9882d381c95b04e9e273065a \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_33.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_33.txt index b3fe25b188..91e387198d 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_33.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_33.txt @@ -1 +1 @@ -16d67249c208a6807b6aa74f650f718dabb02696ca4cd4234a99313c13aeea0d58a086e266db3272972b40a7ed0de6ce102ecf6070da1255c2ebb94d39ed6cb0 \ No newline at end of file +d9cf2eee0701f388d755f1dd2df06b72ce1f3ff385ee02b6c0975fd51dc1b9e3c7fbb4ec0fe5e4e8b2bd610297395ca5550e87a9f16b8048591b6e10c3101043 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_34.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_34.txt index 8198192499..28e7a980a2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_34.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_34.txt @@ -1 +1 @@ -6d5ac8b140d9b5fadd1397104ea05c34a88607130acd4946e6acc88010eec7c7e56b4edbef91107cea1641b0a35eeb0ea5310630e9add59c4f655746bb2d47a1 \ No newline at end of file +e09a14936efe408b95cad492f5ca01157f029cc731879807655fea396abf3c8a5042f7b3d6ba6b1a1da543783eb7e4ba72809122efb1628755918e2fe407f217 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_35.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_35.txt index 6de6d24cf7..2098c52501 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_35.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_35.txt @@ -1 +1 @@ -f0eeff0095d519be0843af4625742dc1516e5f8a8ece7bd4fb246e1149ccdf0e4bcbd556a53458b01c742c291488cf574c9ebe89991712aec3bb3ef056e2b7ee \ No newline at end of file +fc48bdc1464cb1a50b8e1addc1a9a6b6a7ed17aaf996a43a4504a3dae10c6cd0b1d1742db48c42ac026f4813c896591fbdf7a975a80e10178dc397e62657f09d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_36.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_36.txt index a9a2674e30..7cc75f5c91 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_36.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_36.txt @@ -1 +1 @@ -909d6e657ca5e03ee7fee8edfdfb651d233528716eb38664f9f281c05ea74f995706809d3d4bcfb48c5446f722f10ba0d3bcfba6dcbca5358bb251b790bcb4c4 \ No newline at end of file +ca6f97f4f890d9cdf43f7adb9a8249e58e09fda8e1bbb7bcd23f07e505245b760d71ddc8f7e7e73903fa50d4d647270092a469c0551dc58161441ee08b915969 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_37.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_37.txt index 297aae830e..bf37e4a049 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_37.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_37.txt @@ -1 +1 @@ -0e9fb80f112cf8058a30b3bfc3c9ae7a4e2809e5d4d99f4555eee506b4d226b7c7d8cec6ca9b1288564b4718b497ab97784789434e03003103e3be6d416a6cc1 \ No newline at end of file +0b9209a86f26dd4201b167f7f2a7ab14197f853bc59b67918ceb1e7f296b85ce2c3fb1ea19b7e6b0354bf8e13a6924d94a221991066518e9ff48536f6b7ae2d3 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_38.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_38.txt index 7dda4450c1..cf4ae402bf 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_38.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_38.txt @@ -1 +1 @@ -1452b5729be2e4050d58a4452873dc90c316367f0cff6567cb3b7522cdcdc89fa1632559142f48d51e86bcdf948c8328e6240282292b18933f7dfabae7849d54 \ No newline at end of file +5ced6a3db42e32f1749715b09271b2bfe860126205721f97b0ced7cc98e6922e233b3a6ca16c5a8e96143dfff04c585c3c253d700e330a7b5314b9294f7176c3 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_39.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_39.txt index cc3e3a251e..843cd7fabb 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_39.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_39.txt @@ -1 +1 @@ -315713693488a6048f23099ec9b85bf9ddc12a912c920745b355627d9e682862b518cae29e5333d69d259c16ef8f5d4f1c8368bce2cd2c395eff620fbbd0da43 \ No newline at end of file +154b73f9581d032e447078917ce4a01a983daa479729b16d10d985090a505721136188a6cef893471b32980040d3f521e8bb347f6eca119c7fd8ee369395362f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_4.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_4.txt index 69be6692bf..01be82dc93 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_4.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_4.txt @@ -1 +1 @@ -e1b0bf57b4f98bc6d43a0276d26d7261e6c6a95bac927dac95e36b67b4891d5eefdcdbc2b646575e566e5148166bf1e9d9c1f37b5737941183080ef587f7cc9f \ No newline at end of file +a8c389e62a090be5f351fda428f0b5b398445622973a6c819cc8b65fc64ae58250d56d8780371d8a8cc10cd65d4ea5305c2c4d6304ab7585903608ca002b880f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_40.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_40.txt index a9b3533abd..f5297e17f0 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_40.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_40.txt @@ -1 +1 @@ -edf7089cb08bbf91e1b719d3ec2003277925b9a9d253b8985e6bb55b21d84129641fc5c6bb036d4595b3eda9f9b9a4a9e416889f98391f27fb1c82f671f5f959 \ No newline at end of file +d00588b70c77e8e47957ae04db2fe9e48a9ed00e248b35c085bbabc7f90dd3d21f243608e336420bd7412670e71320ea45a55fb8acd7ebbef6b765847a3cd1da \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_41.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_41.txt index 12c51f4085..82b32e9736 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_41.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_41.txt @@ -1 +1 @@ -81476307c5227bf5fc1a5e6894b4b2ff5c6fb4feab1abe6be29f4d4dad7d867eae0498e7c423cfa427483bfba990f26e78fbf45d18920233d12b89d44fed14cc \ No newline at end of file +060a2673018499a15df557b622008068df188da1aea6094cb1b750c16ae767339e2d332fc02d9591721a0fd5269ae1caeadb8129250d673acdc9a1154d10566f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_42.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_42.txt index ea4745830b..ab49570344 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_42.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_42.txt @@ -1 +1 @@ -928292972397812d1df67f6438b04bb185ca953ad6b8e71c0c558d34e60947172bbb0baa6ba803bab66169b0023ad82bafe8c1d3ac3502b54215b39cec66ebae \ No newline at end of file +eb3df9f64c7bd8fe8bd47c9bfd8dacae899b9f657617503bb17d338bc4c3616f90d69eabecb5ff655e497bd0fb3664e085e8db23afdea1dd1b5f0553c0db1d0d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_43.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_43.txt index b487eee9b1..892b7028d7 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_43.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_43.txt @@ -1 +1 @@ -9c794cbc9b48f25e2e0669240accb516761abe9c5c1a0b8efdafbca248aa4796cb729965355b348aa48c9e50c58993d65593c55faba00afdc623e213bdc66143 \ No newline at end of file +18fe2356f4efe52bbe0e3f67ec9897b86d3f435a115163a614f050f9d8885af0c09eed22b0d37fa513bcb0e66c9300355f860b5883a68ffdcfad3e24cbcabf33 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_44.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_44.txt index 4118752b95..b8a908ac90 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_44.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_44.txt @@ -1 +1 @@ -a640df95ba3f1301bec45e49ed99f439b5f58c831a20c3275e97b1949dc98ae390788b13f119ef11018cd1d055ef8098b15637ff47c04a91228ea47f322691eb \ No newline at end of file +2097b7bf5f79836bd98309c4e19149ab7c5a0e4ac1463b165c945ca178c630041da6c679756685a88e54b6da448c33e024b581a48017a002ac8662a8aef598fd \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_45.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_45.txt index 436d8b301c..fe06ff8d78 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_45.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_45.txt @@ -1 +1 @@ -090a3261cb11cde58e7f7be2f54336cf142918713537ae7b6dcef0cd14ef563f7c2765d56a380bb33e2bc9ab89fd3cda6749240412b25df439f1a658965aee71 \ No newline at end of file +70f6777fa9c969d2aaebdd94fb31d9942e3f2fb4d3dd8aaef594ca0e96be3f8b5c2e8df459c6ff2123523f8c0d9824bbf808cc0ceaafe118d1055b0eded64ea5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_46.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_46.txt index 3ec442fcef..50db756058 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_46.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_46.txt @@ -1 +1 @@ -264526b00ee9983fb65770d93cb4103ecd4b56b34cbe1d0a2afcbf19224c5fcae08362fec63020d5d67b7c8a6aabba7bb80cdcef7295bf8065781645e48d55a3 \ No newline at end of file +540c007b92a18863d1b3189d2191645653cb73a81a765293b525f5019ce96c3805eb71323ced23fc4f89dc321bf6f51c6e6e7dc93dc764459403adeaadc32760 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_47.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_47.txt index d51b5f7e3e..dedd4dac87 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_47.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_47.txt @@ -1 +1 @@ -6cd5bc7761a077d46a1fa37c3191df6c4ba38b0cbbaf190bc1a7e9fa900e369f1c31ceab32dc0479d27daad3163d20f1630fee6ac7dd7fb5b4f17ac9fd04b53a \ No newline at end of file +4adb912dc1dccc77e480c85a3a128f90ec28670531d25f15892f64689e753aaf330ae51158f270ddd2225e121e24a37d3b8389bcf2c80e9a46c08a57a647f235 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_48.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_48.txt index d2b5e94b65..465dbcdd63 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_48.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_48.txt @@ -1 +1 @@ -7970bba9f22cb7ae8a9129d07eae124db1343be40a70a01280d1162f7324b74e137b7c792f7bc411b2a0964291df27eb77da940cbaee62c3dcf83160ef5d8c6d \ No newline at end of file +ed217b261a9d812ac1f3d9f292b37b0b9c80b20383cbe6014ae2ec63c03fbdd34d8ce29f3b80498af05a3ff20eee5b77b5d6652991fd3cc78d82c67d7847bc6c \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_49.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_49.txt index 244d71dad1..f55ef9a5e0 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_49.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_49.txt @@ -1 +1 @@ -e310717d8fc6a54de17aadb828132413995a688be186487ea48a8cf1a754a33c121dea4edcbc989863d730eb6258704285c09562eb206e1fbcf24675862adf72 \ No newline at end of file +17d2a6d9fe4e473fa4e65069b19072a1a27ff511b431462eb1a6407b5727cd9cf2ae2751d2169347d8605d9e4d06f95590beef8572cba06d4df47a5690d6d2cc \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_5.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_5.txt index 6d14582565..8d16583b79 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_5.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_5.txt @@ -1 +1 @@ -ef60123290ebd67ab8f02e54c8b3b7e0b56a783acce7f9db2c4c4042ab7dc757ae36391b13e8f537b4ed6a904661229e94e2f85fa2e16ed6d7367606d6f094f2 \ No newline at end of file +b832eb5c0890eca990753b3d2af4021db7de3bd77204e37a8f6603af7d65feba8d30f01968058b92657f6877f4e1ffec6b1aec4dc5854465f7c2422e63cb1fa3 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_50.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_50.txt index 73af3e683f..b595f91f03 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_50.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_50.txt @@ -1 +1 @@ -be9e30233325c98ea883e6a8066111cc254a11326bba13b206fac8ce490da13ea099fcf62b6f7ba2a49e198f1de4acedfbaa2cbfec09755d416f3fe0d36ea3ff \ No newline at end of file +d9716e93301b7d72704bd5fc7cf125e9f82eab64b80444a1588807c3c314690fa8d33a5587f3e5f032e75d639b77fc3f86a4a07674308b6ad35c274e4eccad75 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_51.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_51.txt index 960fab2272..d64f6e6906 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_51.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_51.txt @@ -1 +1 @@ -131b45d707e6e5087e0ee60cf847b9d2f9171fbf949715fc0df1a5c69e8fed4f0120e1067f61abb6730cb21b663b31c384c080de47b75213c491c46b048f09eb \ No newline at end of file +bd7d646a62f26716aec94e7d603a5f389a0cd99c4b7602b307d0e42422d2312ccb7d1718d871f2bbdbe8872a4fdce3f65c07816afd961b6338b52e08e5538e44 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_52.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_52.txt index f4eb2a9ff6..2b86702fda 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_52.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_52.txt @@ -1 +1 @@ -b86a4c80edda50d67c18cfa492cbf03b3951c94a7ee3d73fd0fa74427098db8fdc7ef946fd6b64972bf3b3d2ed4fa175d466c746a522158424e8f3a5fd63f53a \ No newline at end of file +7510ae86ea07fa73fcc3065b004bcf9b99c94772c3fc4f8c468901ed6f00f89ab20a36f1f319a5a754f6065f89ab37980295b068962b53748789761634c91630 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_53.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_53.txt index 8512b3598f..29f108ebc1 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_53.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_53.txt @@ -1 +1 @@ -d9d7ae31d0469531c08b995a5177186642e8271a99160a19ba018aa972f376e1eccb02c7ed9802d07aefd46433491555e1a14e857f24200baa00050b547b0f1f \ No newline at end of file +574b74484569f3125dd887463ca7b35fa0e160fa55865c468619a08f75d3af5bf1cdfb857ef391d674c311fc2edfe00c5f7f7156511686c8561eb3d6cda2332b \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_54.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_54.txt index b148d97fa5..82749c02b5 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_54.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_54.txt @@ -1 +1 @@ -9c75bcb67d510cb224460d1426bed6c20462f274dd70fd2447be751c5735b1f5e792ca49b9a75766b8bcdf77dbbb8df03910c8f2dab411ad9c362f76a27b939a \ No newline at end of file +0e25fa2b8d072533b5841acd044826681d952271ca041170e969d9e6505d4dc4b2eb0ef3d9032b3b8e862421455b98149a8b4c26557f52f51bb93ba2fe75d6df \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_55.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_55.txt index 563b4da502..e66cade8ec 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_55.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_55.txt @@ -1 +1 @@ -0483a21011f661985a2bf337d450ae41532f458e9c11d63b5b5a54d75632bd1c5959afe1714818936ecd7714408f46ff39fc4ea80c69dddd8ac11a22529e2ace \ No newline at end of file +449ced7bb52ae53fbe9ed4e048eedda9824b25983a263cfa1a494a916323e9d7d18b7960ec146f6c27bb61125e07d929888ad91e164c8875131bdc49f290ef3d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_56.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_56.txt index 64b5a21dd1..9ff86cf4fa 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_56.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_56.txt @@ -1 +1 @@ -ad5702bf8eb5e6499397c6d40d2a5baa38d3fbfa705f1ab95a69190529d710a183408747ac320dffc50bc6773e637bc819844e561ef5f6d8f7c541493aa1ae8c \ No newline at end of file +efa01444e13449ff7dc27fb707246892b14881058178ba47303764201580e783b65d791919061af6aa79002881335a41844a5ec2127cb7b7a0d5470656e39aa7 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_57.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_57.txt index 4b13995e1f..8f208f637f 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_57.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_57.txt @@ -1 +1 @@ -757df1d31c6840a4b5158a10cc1bf8157c6fb8089495a8de76792b3f23c3aafe72e56819a16a8055b65ab6f97ccd5094dea27729dc070ecf65aa2b37b1195a0d \ No newline at end of file +a274a1cd540c19ab5a843308c81a07fe0fd9100f0ef6b26ff53e82992ec41959dd27ccf6f835a169ceea3fb5eb80624952903a7f17cee91b79bdd2e1e17df8e2 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_58.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_58.txt index 698a6f3521..7d8e5eca4b 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_58.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_58.txt @@ -1 +1 @@ -b878991664578bbe458d35cc1df8bdd4b5bd892eda8395fcbfaa88bda1d8f9ea26cd9f14400f4bec239ca0392c4a62623ed0251af5e39a61666dc387547e4695 \ No newline at end of file +e9383aa95cbc187b017449a2aa8501a09409ac1b59b0b25f3f10ab09472f31154f3f541682e950ced7328349c99945f9f4449e265a3c3eddc75b628c6c9262c0 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_59.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_59.txt index fd06b74bdf..4ae9060b42 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_59.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_59.txt @@ -1 +1 @@ -5f3a0b3cad21dbde5579050d8f469a2e55ca2814be2a5d57ebe91fedaff9dc438543d4660a3c0a86f507e0de19f6d28a7659dd07d9f9c9150cb6a6d3cf5dc272 \ No newline at end of file +62dd46d3e4fa70c1db81c16feb6116e9ea64ad0663f9b053efa39a961b073c780b085176e3f4b450e1c921491734483d17d26a2e7ba10a7da2d002887f7e26a5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_6.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_6.txt index 5046847203..9eb5291620 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_6.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_6.txt @@ -1 +1 @@ -477cfcffa8b548f6fab669743ddc05dc681f67a2ebaedb43b5d1d4a20e616d600353291660e170f171e497eb689af063f9b545cd1c99248c82b5af72a27603c0 \ No newline at end of file +0b8e7ecf3968b8f40bb68290fced91e686f987465c66c8c45b26d052cd6a9b6826d0b01d7d5a88d2adc09d5444b1c49de95b64a9356723c2a1aba578f3474a69 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_60.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_60.txt index dcdb12185e..331a8e90d2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_60.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_60.txt @@ -1 +1 @@ -2659a2374d9ccaba2139ca2895900187e5e1d20696d9433df7bc0495c366ce7b3d220d525725a5dcb682f42acf31326ddcf3f38ca191606ac4394aed2741abae \ No newline at end of file +7122b530e0aba2e8335e70772bba68becdb7b96e6ca6bc6290910a41b981ece5cb7d0d3a47a88422c3434a0cdaac762813adf4d4d018b474ae246d2e8de82ad5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_61.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_61.txt index 30930193be..cab749003a 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_61.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_61.txt @@ -1 +1 @@ -ec33ddb4030bb3e8e04faf7341e780b6c71ef0d03b5a14fcc4211fddbace7a94a532db288198081f99f7998fc21981cc2887b0ec9a66f1d4dd2c44cab88ec50a \ No newline at end of file +cc1334ac8eb1bb69cbe73a7b3c75df918ff2b537a17394c33561f190a154a511fc7bd52033dd1765412398ec4d2093ff46d826edc84139e1687059d4e63eef0d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_62.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_62.txt index 597466e292..d67fee48b0 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_62.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_62.txt @@ -1 +1 @@ -5dfe267e35f5dfde1f9a7ce3749994749b1499e731feebd2826312d093afd764f53270b8c4d0f7cb4a0027364d6cc16b067c9782573d48817ff2faf1e26f3944 \ No newline at end of file +171ce8ac89f343f2be61035a210f1051a3e2bbdc0da60895bce4c7129cb34799ca5778fc2567e4b3eac656a1987c47571d86a139685876ed28a91f9e1cdc3c33 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_63.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_63.txt index 43d39bd5af..be6913aa0d 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_63.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_63.txt @@ -1 +1 @@ -4c11e590aca4e0a30f1a112098a0aa52fd32673cee1e4e13b2e906f72cedf5c42ab7682e4d1d63442f0799384d68d90d26dcfdaad120383f0c3d991ade72f6ae \ No newline at end of file +2f23cdb8e581a2f46a0069b7b2e0a9cd0ece942c96d921b4c4b5f59c2e27aa92fa801b8b69879b4e2d771b713c86868e84159708941f736ab30db772b876ab43 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_64.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_64.txt index 01ddb74ed0..07fc7d4d0f 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_64.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_64.txt @@ -1 +1 @@ -00cdabde4f9492b560d52a65d5440c8a802e5717ebe481e3054091bff16ce1d36d48f6b8acf02ac5eb41b2a6375ec5c27e542af023a563138c5bf03dba9dd276 \ No newline at end of file +38e04b9d06bde488f611eccfa4b0b88110aefde421762e203cd9019b65c8f71466a5a7916237a840c5ae152c3286b5c73e91b241436a0b880d0169422ff78d10 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_65.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_65.txt index 0ad2347d31..488370fc68 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_65.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_65.txt @@ -1 +1 @@ -4b9833eb48c7829222cde1aa6e8b6c751af1a3a35a9aa407a18efe30ba8e297339666026e7eb801b6def009085dcf19a6e23cdcaa11b30301822ce3ef913363b \ No newline at end of file +c143309b58d9031c2f2e80b113a53e6d2da98e476be9bd4f195c1cdca73ce36efca8378c232d58cdee31a25ad505562e2e152db417ef69098f3174be857bb3b3 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_66.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_66.txt index dd30812906..7529cbbdce 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_66.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_66.txt @@ -1 +1 @@ -1470fa3d5ee3d05dec9e73a4a1daee0cf1e94747472adf4c2107238b0e4cfa581438480e00cda92997d31a13baa76760c4265afb10f8832ffd10a5d36f41839c \ No newline at end of file +c727793fab56f4114b44b3c46974dc576462afb6765e960dfc3f72d0a762c64a8bb60dc2f8e803b2d0507f0d66230d6a049c7a515381a431f5a0543ff95895f0 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_67.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_67.txt index f0edeeb86b..e8803da86f 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_67.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_67.txt @@ -1 +1 @@ -32eced012e6578ad7ac84f164444adb736c4700ceaf84cabc12b2a5809150a8409d39b0598e1f36733f08db982391a760675c897fbcfd331b25fb9c0d29caf4e \ No newline at end of file +55a850edbdc4e1c3fcaaf604b019372d2f6e97a96645ad9f15045ea9c4c94032936ae956ec542274cdb2de7fbf8448f714bd8fb6ab46045d55aabf223bf67e89 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_68.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_68.txt index 566d1a7604..243a9d8225 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_68.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_68.txt @@ -1 +1 @@ -9f86dd743cd336ae76e41a7e6762f630c5610c9e7fcf5261264a59939ada97a710e7ff1d0d3855f7d5bd8e8e33797c571c4153d19f4f43d1fa5e5f897df5782c \ No newline at end of file +6023c8b9b21683084a7a792a174a75b050e5bd2952b0dbb892f260111de7833f12022c4a9e15f7a300fd5bfd2859152207e047495cb9675846af4dba93472928 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_69.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_69.txt index 40e95607e9..3b71094589 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_69.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_69.txt @@ -1 +1 @@ -ea83e935f93abd603d4754a4c26ad0224653e19a00d0e40cd25f00ddaa5acebeada497ea4b4cf96b6af467107a7ee4efd142de9a121a4d48a857845f52744abd \ No newline at end of file +805084ea61ef761e8ecc8ae6219e16542ed80a6e2b7c3a70f3d3032ee433d86e799e11a774e89b50149770dc60db3144151a10fe209b21eaa6b6a4d2d2ba2731 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_7.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_7.txt index c24813bdcc..30f9856ab6 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_7.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_7.txt @@ -1 +1 @@ -7e87f599ca36e3c9797c54be2239aeb9431d4421d28c5223073a6489806a632314519f172404479238e301ae234cea747ba1ac8808d577edf6128c433130b015 \ No newline at end of file +de3b6d11db4e7dab999fda58e4e672f89a0f804b06ed11d7da2659013c555f68fd1c0b7b94235c7f23a70049973ba1f78a4f9714047f4caac55c2ae2fc6223b5 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_70.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_70.txt index 36e9e85bdc..20ab92b028 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_70.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_70.txt @@ -1 +1 @@ -cdfacfe67692eafa2b0f3659511f4dd03157437c3598a623bf4fc6a94ee129f281d16200291a1556c7cf1f389e7e2975ec2f23e229efb702665ab18bf1bab9c2 \ No newline at end of file +1cc0c2673a5967255770c119c5f042b995d00af2cd694fe8767caf7a2d5bd21c05c040a06a7a89d3c1a60bb660ab5decd1f866c753d9563412a689d68ad07d4b \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_71.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_71.txt index d5ccdaa2bb..e0adb3adde 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_71.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_71.txt @@ -1 +1 @@ -aad5e1df7dca3514de2321afd5ef501cec063b1bde35ea75744e49c20af80a926ea05a7fe5cbb9c9da05df5b97fe0ff16474a36529be449506274ea37200a0fc \ No newline at end of file +03daed78905b5ca59536ab565d4a967ddc38fa2a50200395cd8d1e6c17a77695c20709b6af76d00a7482a4bc9af76da02f86a5dfb4bcf644e0b66e1f4459c774 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_72.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_72.txt index 7805a17a30..7d3eb8905b 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_72.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_72.txt @@ -1 +1 @@ -936cd628ce09442def5c028ac328347b566f0f947e0f0647740655dbf587d8d15e3f00745f0d3fa3009f9abc6cf96488f70fa7fb0d0d05b879ebf7222ab32aea \ No newline at end of file +f93285a03c973628c816f0532a1f6d6032e84029066f922d56901d8a2308a8e79b5751b199e02a00af1ecb53080e7b739fef9e8277ace04027bd15c637cd2d69 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_73.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_73.txt index 0169219d5b..7d6adec6dd 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_73.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_73.txt @@ -1 +1 @@ -9dcad47517dbea198604f7b54bdbff87d9d5ed1c8b6f3b06a84fdfcc55496bbd26ec354b4885af3b6d444e03b96dbf27d69535667636a696e2016cb4216f20f6 \ No newline at end of file +97e50b1a02ec3c316839e6df62b57c364deb595abce0eff6a01349e1ac215e9c7d56659df8ac57b854bb738028a6dc1a811994d9ad9aef1dcca38587a0b28c32 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_74.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_74.txt index 5b658753f2..2fd5ce2867 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_74.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_74.txt @@ -1 +1 @@ -1902d128894cbbeb3c32f388aadf1d3366c4be85940a10f5fbbed8435fc46f79ec8e2b6b4f4babc8bc3b943131aa1a2050393d8ca71c17ba9203dc4590b393c4 \ No newline at end of file +e79abf6ef577ba6ff64b40ecb6590e730234e6aa6f4b7d54b7b409f60ec6ec32572308bca57361f60d2ffcd0e3229b3ed15872c83885495d86a416af564990a1 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_75.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_75.txt index 74c22905f7..f35adbdfd2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_75.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_75.txt @@ -1 +1 @@ -86a39b2cd9ddb300c73e200254bdac705ca2dea4146202eab52a17dee86e36684792dd99ee9184cbe3bc0921660e39bd79e039f935a629636969b38ecfacc663 \ No newline at end of file +3a3da085b815c0ff1ce8cea6f55305ee7d15352d94e08d56b26c5048e9ba4b84ff8c75c4928cc14f4d451077bef3ca6916313c29580ac6a47e40e1597417e5cb \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_76.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_76.txt index 5a4b806b49..90df9f8b1f 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_76.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_76.txt @@ -1 +1 @@ -1706ba637a0b4929582e329745d3e8185043c10dc993362e1aa7bb0dda9bddf1dbe977c974afaf8d531267d5767919855a34506c88510085f802645e6364838a \ No newline at end of file +45874c81b8f36ed4c5552ef851629465e6f9fcbdfe48c2a123d95bcf1500e581cd05ebdff20766955ad3ad9c289f770e8be1871a67029c3d0bc5c5f50efbf9d6 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_77.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_77.txt index d8e201a5f7..ca5d205b83 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_77.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_77.txt @@ -1 +1 @@ -99b63d744567e892bfb2bc51767b7a0ec1a8250aea923b941776a9d7fc5b4aadd47f68997b106ac675b0b152d4da9a769e79040d73f6b5e30be535aede44ac07 \ No newline at end of file +dbd68dcab6cfa6912676e270b3d52a9b44207465c88531e0144722b61fe4d9774091c92ac85aac0e0e44530d40527d82a312edd54776cdf6f36124538ab2e88e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_78.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_78.txt index 5f3ace6cda..0fb7a1ee48 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_78.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_78.txt @@ -1 +1 @@ -9e9bf0ee47ccb01def23551cfb2f09094ef10072f135fa746789fae405655e6143ec04f34b9034224216dd6688d6dce91524cce710ba74dac5c50b78903d8206 \ No newline at end of file +77f2938d1d94319ff873986556283b4e307888de1e345913e50f859cbf6600d4be327a98ae5df4da8c213253cbd951b14e799ac05cdb8b0620c26dc3171c825d \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_79.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_79.txt index f1c33626e0..56d097c552 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_79.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_79.txt @@ -1 +1 @@ -cdebfd3eaa16a6c117d15451b7c9a2b180dc83fc845a2ad8503b8a79390f03bf429120f4a1df2f888fe37b70af0b99b46fc5903607ca3cfd9cec6dce894a29ba \ No newline at end of file +3738a504e7a520fd0292f887db618ac60a0405e2f5b15f7fe8469c5c2e7a8a6662edffcd7d45316aee9148e33c80ac3ba54774392fb62ff8982448b9cb49cda4 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_8.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_8.txt index 0e77f27e2a..eff663a396 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_8.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_8.txt @@ -1 +1 @@ -560e3ccce602b51527e70cfc70cee5a6fbdd806b992d0121282f1dce976de7da21bc0fe43de7eb326ea014786ff11720123215ff26c9441d92c0f070e1c588df \ No newline at end of file +91f80f5e9c241b521aa8d7f150ce10d75d9146c9857cc0c16b2e7d4314b203e51c459355107edbc3b1ad3a0bb869ffd416322ea1c9f44a2cdc27079e012ad0fb \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_80.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_80.txt index 09dc1abe3d..385e482ecc 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_80.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_80.txt @@ -1 +1 @@ -0c25b098f758b43516e3b2017c5a1f84c387d102c4c665aff6d1b8df941ef0bb15ca6d2dfcbdaff409cffcce9214f054930fea68870e10f7e3a7b531cb649395 \ No newline at end of file +347f933e0428b4cfbde5318abf3ba237c528c3f29e19f958ef93e0d58baa4d26b70f19b55820a86a4406d9ec5bc3662ed55728b0d33f0ad99e020796bd3cb3ff \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_81.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_81.txt index a1ae6aa1a6..d8c0efd7ae 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_81.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_81.txt @@ -1 +1 @@ -bcb0d63847cb04888db8a225311e26867fad10f88a4c2698a6fc7f06f51bd74de72d145b33b981afd3b75ebc004e48800b0a541a77f1d24d7be8ea395776e793 \ No newline at end of file +3c51c620511c43e6461f102754ae3ec07f9b55de6d35a23e1450a683a77cd534af7ceeeca8d65cf8795f89004d9ed599e5e4fb60672de795a06a6f7bcb94afdd \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_82.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_82.txt index c75c67b3d7..a05cb395d9 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_82.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_82.txt @@ -1 +1 @@ -fe872322f09b93492f240671ff2c06b22d946fa3c6dfcf433e4d48b49ed6662a3ac3c01c1ad4a8a1f9bc6765d4e1e3f0530382a27e5c7fe478f12dfb7e8f6e8f \ No newline at end of file +37e788a11dd9df1c88d06dbeccf79e0a58477c1ae3ef12e5380e3a6bc4d23e42b80f57159a9010be517b130313fa8bdd163ff44a589953f8f7df05b4adbee3ec \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_83.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_83.txt index ad722e5fbe..344d255337 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_83.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_83.txt @@ -1 +1 @@ -5d6a63214f57c620576e315586594311354be066c7d4cca7fd1b06568ff039b59032bc2a782d8a0960bb8b8f912fbd091de5b35d91813faa99cd9c53592ab3a1 \ No newline at end of file +7d7db91b6066fb122554d66f65088d519ab544e378b3c881face9f751631ac24efe2d1495dc3f404d1f95d6dce18625e3fecc3d925a8d8d420a0132f6c0fd38f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_84.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_84.txt index 89273cf289..74a65ea814 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_84.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_84.txt @@ -1 +1 @@ -431a4e07f6ba31488657fed2cf14d88d401d4461d690ed3f7f0bbb6e615b82375ac6cd717df8d1374b445c402ee25d8b75c53ffc2e4f3e70dbb47ecb954105af \ No newline at end of file +a49f9992739ddc6d422efd72743486cfef7475554f9e9bb1fd20d2c82a64342bd4c997af020c6ca19b5610b35173bb4799d19659e89fddec35d3d65c55bf0f3f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_85.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_85.txt index a2eaa73230..2943c6a1d5 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_85.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_85.txt @@ -1 +1 @@ -7865a2541657b2454d4c97d3fb72a80ab1453afc1266bb95f3cff0900e0ec441521bc806dbfa4e78d0ab5f37e6ca4607a71a006851e901a4d944f4d38301a815 \ No newline at end of file +9224866e05d823c03579340195dd602d11ef6a6df6c8e20cb26d11970a63fddfefb26894fb6e506974914c5ae035c2e16c90964b86c79d28e060d58612cff5ce \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_86.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_86.txt index faff9343f4..db3952f8fa 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_86.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_86.txt @@ -1 +1 @@ -9c30c053de8434869f884ee946bd0db8a22b215f7f6d85bd2df46b0a533f904b272103c5039ccd1380ca04ddcc4a68bf528155077bfe97c666c1eaddda62f3a3 \ No newline at end of file +1812bc85d7ad5d4999cc0e508d99a6349f0263e5fd101725459c0e947ba2e453e39aa7cd699b903b4e82c3d938aacd5ed41e3964816e44b33d9cadde621ea647 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_87.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_87.txt index aa51ceab8b..8b742bb27d 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_87.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_87.txt @@ -1 +1 @@ -362edd5f9ac5cfccfbf45ece906a7ca613bcb971f00c6f4c1f5c96a3d6f58a5a370b659ae47a09ea7950b93575e0c77258a6e642f33a2b5af770b4e2f76307a9 \ No newline at end of file +79e28c2c59c5e21b59750b6e86cbba6729c65011324a15210b38f21e311829637cc9ac645928655c6d99e6392a883039fee9c40402e701665b5c1dec9f1694c1 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_88.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_88.txt index 533ba78b31..2149eb6d14 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_88.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_88.txt @@ -1 +1 @@ -a6f3ac2926705a47861c9e4704c7494a79c1da31642b8c0ed4c3f1706ff0fc3dcafee7283a26982a003d7c7de2214de532ce137cf00dd51690357f49e882a125 \ No newline at end of file +0ace7933f186ac4543dea0dd6da2c66d97d636b95102adfbe8fc832dd86c2cb895ddd14144a043b2c86534c4f5f0b289233d57eb2b5d641edd679f384813d851 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_89.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_89.txt index 91eb5dbe20..b83015764c 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_89.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_89.txt @@ -1 +1 @@ -1f4ea6317004a0ccee3698eb0d4e3a85eca6ae49706b4acc68c4e5019c90fd595e609b65deb104164cdc453ee3c71eb63c7ddc2eb7446c33d5b4b54923554785 \ No newline at end of file +4c8f05e539da2625d1fc3b85f98ca1d400572139a78dbea4d8aff751d80ea13b0407a4f268d39157e452d5f0e33d00e15310e095a6799dbc3e1aed434f0b3660 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_9.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_9.txt index 0087bbb014..de9ec65ef5 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_9.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_9.txt @@ -1 +1 @@ -e8a16df33a41d0937200725c09f992a60606e80d5efed27ec8c57156c1be9a0a4024ccb7d70b2b95438d2ee588f753738c410d54137e73bff18c62bc5d45b79e \ No newline at end of file +0515be8a349542ac905591b62357de103115b726c71cd79cd71e246651b120bf428115e2a062e5ffcbc30a3f4b954c2fa8522b019ee303bdcf836f3bed314436 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_90.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_90.txt index 4c284c594b..b1b67469e0 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_90.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_90.txt @@ -1 +1 @@ -ab7d270ef50a23b764acd071398da9499161e1dd870a3426bae1841a658095c6d8a1d186b8ea95fd53ee98b38be02364d58564ec0a9a1c67e748726874b419bb \ No newline at end of file +eb9313461f6abe7a22b8b4e18b87b09f2549aaca5145644ad1b7d19cbd0c5ab796126e1dabe392715f4a6c32634a13881a1d9b5f1d94f7e2202c9584d138da8f \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_91.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_91.txt index 5d743aa8b3..075af6715b 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_91.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_91.txt @@ -1 +1 @@ -ab347ac5278811962e5b5d4297e704dbcc17cdc9b99d4a9ce424b2f74cd3578c250fbfe7f0521718064c5121ccda038f68c5f1df96f1b3707ed8322a60f93477 \ No newline at end of file +60ef60a954cd146d7e4d320abed6184128168e58c160834a58ef53f49597208792d02d9e8fe222cac3aed1be28d5a7ffc3cd56f6e6fb4e101bb13908e0a91b0e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_92.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_92.txt index 25f8399dcd..7c56201105 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_92.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_92.txt @@ -1 +1 @@ -36f48312315dd0e5061d1990fef967ece484b21b94c86ee989acfe3d856f203df8e09ef5599e50c4abfc0db44a8a8d7921af442cb418d93684877e5353940d22 \ No newline at end of file +7e3e91c375a235109167f5550e6d055f22af005df3968693052ddc4480f92f2c9fc8471b1ee608e65211e1c3fedc0657bf5a49780f0ed5fd102403ae16df2617 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_93.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_93.txt index 84c90b2ca7..b6a30e2c9e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_93.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_93.txt @@ -1 +1 @@ -3b437bee53675b38a2519028ba7484e324237360619026826861e1411a98c84c000c4fce05606ddf556438ac1b7ec5d9d4e3cc626d5c5754b43b01dd17688131 \ No newline at end of file +7fd9f5d0b42a2c916b888466c72549e63ebe9ab37bcf7d08b5e5680c55366878ca9d5f0a6553dbf2e214ec74dbdfb58f3c38912608cc121e71bd9298da8b9830 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_94.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_94.txt index d3e7303237..55c81dacb1 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_94.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_94.txt @@ -1 +1 @@ -2a4f4ed0decef08aa2a9a4cbf92c0af59943134f84ec908af41b28752f5601e7834ec8a145758ce5934ac84e3804d1b1f519bd27b8e366529f3f5f54eca8f70e \ No newline at end of file +a0deb567c0868a14a5fc0765f1c93c5eac4d7eff6fcc19da9d3de47716fdeae864c0058b5ce1ad453846df7213e162d751d978b5ad18956816f565b0d0d48779 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_95.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_95.txt index a71d05fb91..f010976a00 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_95.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_95.txt @@ -1 +1 @@ -38bb20dbfba2720725ea233bc236b6fd4ca8f1223f5bed7cc37916b8da95ae9e8bd5043fb3a63cc7d9fcd6699f5c6efd6acf2ce6d710abb92edd074f56ca934c \ No newline at end of file +e362d315ccb64ba0842bd0d2ffbd8ff42932317cc39fde824eab8a7a0adaf71a5feb5e71ea793343fcc6df62bc24023989be3dc0acefc33c759eacac3f805345 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_96.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_96.txt index ed576c77d7..0ec4e19a06 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_96.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_96.txt @@ -1 +1 @@ -ac546fe08aaa6e76cb76c5958dfcc6aa4a7e181fe7f6e81622501f142b94bc91fcd7456571c6837cf63a308a989817e425e5e166db7e6f83836afa251a124f5f \ No newline at end of file +8b82e6f7a806e6c78cfb94b79c93c1134944778c3bc169be0a7d99fcd5478053bd4e87b170dc108a33cea9e483b1eef22511f5d0b7e3bc6c085a67201f166f47 \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_97.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_97.txt index 658f52c2e8..b47393b41f 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_97.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_97.txt @@ -1 +1 @@ -28cc29485b0e9cf4d92df7b85430b7d90d1d7b9380d5855064674dd74de2ee531c2dad7acad45e1d39a484d24d14b065eb786878ad1263df456a942977780c51 \ No newline at end of file +fb361d14631c762552f551ec3e5528eb9b096a423810af0f0c81815688509de49c450dd45e8c9e4e3896f8f5f1764b188b434ba57e52c7be7a761018f23a6a8e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_98.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_98.txt index 8014118c07..d7bd15e5d3 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_98.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_98.txt @@ -1 +1 @@ -15cad26010f8acfc4c7238911c655fea43ff8604d3a96daff3c7e51c3ed6727145b185fdac3278000a41be8c7f228dfe3282f54631c8d58000c05181a7894537 \ No newline at end of file +e47435e760421cc10a9869f1df50a0a91ea529009704f8f2beed49c49043d2ab1bbcaab708b046c8502645cf83faa2d0ccae5a26c00b74d0942068d06ee5230e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/effect_hash_99.txt b/crates/core/transaction/tests/signing_test_vectors/effect_hash_99.txt index b66c1bc9d6..0692b34478 100644 --- a/crates/core/transaction/tests/signing_test_vectors/effect_hash_99.txt +++ b/crates/core/transaction/tests/signing_test_vectors/effect_hash_99.txt @@ -1 +1 @@ -588256d6077a82fa68ed82ca5ba1c43086158c21874ccbd1927d59cf065a9b62feff874fd93532e59cec30811873a568c098945575ac139a1a0b0e9a5d1ae3e2 \ No newline at end of file +1a8931f09c91c9675532cbc0ca8ead27c1b594fabdd7d763441113486cb856a6c70dc59dde3390d0db178dc973dae5943e2942d1265698571e67a966b7c7f04e \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/hw_display_vectors.json b/crates/core/transaction/tests/signing_test_vectors/hw_display_vectors.json new file mode 100644 index 0000000000..027f6298f3 --- /dev/null +++ b/crates/core/transaction/tests/signing_test_vectors/hw_display_vectors.json @@ -0,0 +1,4518 @@ +[ + { + "index": 0, + "blob": "0a8e0182028a010a180a0a08c1f58196a1b8c5fb07120a08f9b3f5dfb9d080c00812220a20332f559daae2a4c1926c579addc66884e13a4f08253c122e6e7d93604dde63691a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010a35a203320a300a0a08aefd8bc68dcbd3ef0a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012341224707264677976787475736f7567796879706b6967656668672d38393830333932353334311a0c0a0a08b9ec8b9b89a6e0a7052ab6020a91020a520a501754f169d34948d2f5fd02a6e10199b80329c2982b8a25929976f0a601b86b4f9b76a4c5393f1b004ebc87a7872510f3407d7be1dff8854218f8a98e517474b94e32dc5f1a0c8f40d8df697ecea79fd712ba0135324b4b20202056734f75664f55383620767a79206c3433337873556a20494520362032204c206a20335a4d626f4950636c624b20304457383859503836204c3135545643203438357071797444204c2020656d4320764530515020786c3632642039656e50576e6343394d645a20205673207557692055202020204c207731566b656c7769334a755a20384c336d524f64533854477a79357838742046202020633831727a755a206f203379535a5737514d37203773373665122086c1427c145fe6896863561ac96dd6dcb7d6703e15da44845b22f82abd1d68fc", + "output": [ + "0 | Chain ID : prdgyvxtusougyhypkigefhg-89803925341", + "1 | Fee [1/3] : 382666538980931129 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : PositionWithdraw", + "2 | Action [2/4] : Position ID plpid1xvh4t8d2u2jvrynv27dd", + "2 | Action [3/4] : m3ngsnsn5ncgy57pytnw0kfkqnw7vd5ss9d80g", + "2 | Action [4/4] : Sequence number 1", + "3 | Sender Address : Sub-account #63", + "3 | Memo Text [1/5] : 52KK VsOufOU86 vzy l433xsUj IE 6 2 L", + "3 | Memo Text [2/5] : j 3ZMboIPclbK 0DW88YP86 L15TVC 485pqy", + "3 | Memo Text [3/5] : tD L emC vE0QP xl62d 9enPWncC9MdZ Vs", + "3 | Memo Text [4/5] : uWi U L w1Vkelwi3JuZ 8L3mROdS8TGzy", + "3 | Memo Text [5/5] : 5x8t F c81rzuZ o 3ySZW7QM7 7s76e" + ], + "output_expert": [ + "0 | Chain ID : prdgyvxtusougyhypkigefhg-89803925341", + "1 | Fee [1/3] : 382666538980931129 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : PositionWithdraw", + "2 | Action [2/4] : Position ID plpid1xvh4t8d2u2jvrynv27dd", + "2 | Action [3/4] : m3ngsnsn5ncgy57pytnw0kfkqnw7vd5ss9d80g", + "2 | Action [4/4] : Sequence number 1", + "3 | Sender Address : Sub-account #63", + "3 | Memo Text [1/5] : 52KK VsOufOU86 vzy l433xsUj IE 6 2 L", + "3 | Memo Text [2/5] : j 3ZMboIPclbK 0DW88YP86 L15TVC 485pqy", + "3 | Memo Text [3/5] : tD L emC vE0QP xl62d 9enPWncC9MdZ Vs", + "3 | Memo Text [4/5] : uWi U L w1Vkelwi3JuZ 8L3mROdS8TGzy", + "3 | Memo Text [5/5] : 5x8t F c81rzuZ o 3ySZW7QM7 7s76e" + ] + }, + { + "index": 1, + "blob": "0aab02aa01a7020898cf85fe021a02080122a8010a300a0a08c789a3d6bbc9b3900712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122064b06d01e8813149f9240cba42e4aa2f1056c59b98bb340cd0cfce690337f8461a520a5035b65c030c1aba3600cba9758d87a20e5deaf7d7248a159742095dd206b5f7ad538dbb3da15ab1c84c235520354c1ce9b8b6586e6209f6c0f01fac1a353c170edf8d154f601d87cb9bf3f60275ec02ab320a088de2eca6a88888ca033a2004af35b1ce68a27b5c98d7e2573cf9302467bd670431282070bdebf623de5d00422055cf888dc83bcfca0f6d47fe2e6f0eb32e101d8ec9a806dd2698622ef1842e004a20e1f2d270048d924c7edfa34cf9158a1d0636ff090fda749d643455e4b8720a090a359203320a300a0a08fccab6a7dfc78f9f0412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10123112216b696c696865647864687067772d313232393136303131393031353136383331321a0c0a0a08979d95a4d994cd9e062aaa030a85030a520a50762059f4e77cf1af636502722783c06723e03a97a8006649c4455ca759aa07093ec7c50370df01dd3eccc87ea64e18f9468e5d17f628701226263132ae22cdb1b398fe9e176fffc3472392998453c94012ae022032202042442037386a6c206d37634c2053413478363320534e386f657a37206361303267327236203075432020205330203973354a71207732584d716d5879204e3620302020334f20376666202062415646326b303367393031353649756659202020203257633457203953666d376b5666536b73493242313765755020204a3420206f2020452030392048305337314f583031573845753667784a614c626a7a5058692035352047204a6c204934202020422052747a726876203431335144784d49565420676f504e3020592046204944365969203630394b722033327a207420364b364236326247694e20204e20332020207361546b4720334351476e377120315a47417a206e3334537a4d304f5a556520316a4c614a30347633482044493730335837636a3256724135122026659e3475ae6e6f0a71e65794eac0c3b593356855290302daf82463b624e7ff", + "output": [ + "0 | Chain ID : kilihedxdhpgw-1229160119015168312", + "1 | Fee [1/3] : 449573423572930199 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/5] : DelegatorVote on Proposal 801204120", + "2 | Action [2/5] : Vote Abstain", + "2 | Action [3/5] : Voting Power: 257866548735848717 passe", + "2 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "3 | Sender Address : penumbra1wcs9na880nc67cm9qfez0q7q…", + "3 | Memo Text [1/8] : 2 BD 78jl m7cL SA4x63 SN8oez7 ca02g2", + "3 | Memo Text [2/8] : r6 0uC S0 9s5Jq w2XMqmXy N6 0 3O 7f", + "3 | Memo Text [3/8] : f bAVF2k03g90156IufY 2Wc4W 9Sfm7kV", + "3 | Memo Text [4/8] : fSksI2B17euP J4 o E 09 H0S71OX01W8E", + "3 | Memo Text [5/8] : u6gxJaLbjzPXi 55 G Jl I4 B Rtzrhv 41", + "3 | Memo Text [6/8] : 3QDxMIVT goPN0 Y F ID6Yi 609Kr 32z t 6", + "3 | Memo Text [7/8] : K6B62bGiN N 3 saTkG 3CQGn7q 1ZGAz n", + "3 | Memo Text [8/8] : 34SzM0OZUe 1jLaJ04v3H DI703X7cj2VrA5" + ], + "output_expert": [ + "0 | Chain ID : kilihedxdhpgw-1229160119015168312", + "1 | Fee [1/3] : 449573423572930199 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/5] : DelegatorVote on Proposal 801204120", + "2 | Action [2/5] : Vote Abstain", + "2 | Action [3/5] : Voting Power: 257866548735848717 passe", + "2 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "3 | Sender Address : penumbra1wcs9na880nc67cm9qfez0q7q…", + "3 | Memo Text [1/8] : 2 BD 78jl m7cL SA4x63 SN8oez7 ca02g2", + "3 | Memo Text [2/8] : r6 0uC S0 9s5Jq w2XMqmXy N6 0 3O 7f", + "3 | Memo Text [3/8] : f bAVF2k03g90156IufY 2Wc4W 9Sfm7kV", + "3 | Memo Text [4/8] : fSksI2B17euP J4 o E 09 H0S71OX01W8E", + "3 | Memo Text [5/8] : u6gxJaLbjzPXi 55 G Jl I4 B Rtzrhv 41", + "3 | Memo Text [6/8] : 3QDxMIVT goPN0 Y F ID6Yi 609Kr 32z t 6", + "3 | Memo Text [7/8] : K6B62bGiN N 3 saTkG 3CQGn7q 1ZGAz n", + "3 | Memo Text [8/8] : 34SzM0OZUe 1jLaJ04v3H DI703X7cj2VrA5" + ] + }, + { + "index": 2, + "blob": "0a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab30108edf1e9c404120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08ca8dc7bd0310f687947d4080e4e2b286e584871812020a001a0b08ca8dc7bd0310f687947d228f0170656e756d627261316b716a617132737132327663726835347179676a366b6835656b34726c7764766163797863616772346576753461727038677278367371646e616d377537637170727a6c7a63713865677633636c6161613072366d78667a6d6e6163776c79737863646b6a737379373866777476397a7161663263716767677363777637647a636b653836370a27fa01240a220a2006b4b82f13655efc87a43404e3a578ea7e7ce6e59bf5b2eb5903a0c89ad20586122208bfc824120e6a657275626b77746f6c2d3230331a0c0a0a08d2accea0ff85f7c2072acd010aa8010a520a50f52dcdf4817903c539d4ca6e2aafb2a4e5e7c21f81ef6bf4c674f57f014372a3ce9b1a32f7b6aac0064ae1bdf6900869513361a1d944498b944bc6a035dc6e74e4baf8ab6b87575f83da9a494b39303212526d6d5549755a3120686470207664314520423920644636552020307756556d3263574e59386b30336e6663467320766836724b537820754a326b20204b20682059596542767620393630204f204e50754b471220aeefa586c85869d21f9fd7538f4407dbded28ca596a0f9f86c949db690162ee7", + "output": [ + "0 | Chain ID : jerubkwtol-203", + "1 | Expiry Height : 599103", + "2 | Fee [1/3] : 542081428684510802 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1q66tstcnv400epayxszw", + "3 | Action [3/3] : 8ftcafl8eeh9n06m966eqwsv3xkjqkrqq5ug89", + "4 | Sender Address : Sub-account #79", + "4 | Memo Text [1/3] : mmUIuZ1 hdp vd1E B9 dF6U 0wVUm2cWNY8k", + "4 | Memo Text [2/3] : 03nfcFs vh6rKSx uJ2k K h YYeBvv 960 O", + "4 | Memo Text [3/3] : NPuKG" + ], + "output_expert": [ + "0 | Chain ID : jerubkwtol-203", + "1 | Expiry Height : 599103", + "2 | Fee [1/3] : 542081428684510802 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1q66tstcnv400epayxszw", + "3 | Action [3/3] : 8ftcafl8eeh9n06m966eqwsv3xkjqkrqq5ug89", + "4 | Sender Address : Sub-account #79", + "4 | Memo Text [1/3] : mmUIuZ1 hdp vd1E B9 dF6U 0wVUm2cWNY8k", + "4 | Memo Text [2/3] : 03nfcFs vh6rKSx uJ2k K h YYeBvv 960 O", + "4 | Memo Text [3/3] : NPuKG" + ] + }, + { + "index": 3, + "blob": "0a659201620a540a2e7671646270657164706c76696677767474756a646f626d7564622d31313132323337363638383237313837393335122065747377757373792d38393531333036313539343636363333393635353634382a001a0a08bfdfd383e58790f50b0a8a019a0386010a300a0a08f186d986aeba80b20c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50a1518a15018b1c96127e00d713b8b18aad0d2bd1d5f387b9abc0ce5783b4d2ee478b8f637f348634eb229a8213425e97d2f1f9efd4669ef784a88c09ff19c27fa726617228b140ec7b55be6fd61e5ce60a27b203240a220a2021612ac47a0b34beb87ef2f3436f1cb9bdfd81dbe96ef85dec16ec1511effc5c0a47ca02440a220a20c863b7b33a669fa6876a3c455338faa9f0944f3e1333d35f05585afb8d1cf4c31a0a08e69ad3928f98b4ab0a220a088892fbf39c91a9dd0d2a06088304108304124608eaf22e12326d7067767669706a6966706861636c70647262796276692d33373234383835393431373639313739353734343432393931331a0c0a0a089098bdb6ffcb8ab909", + "output": [ + "0 | Chain ID [1/2] : mpgvvipjifphaclpdrbybvi-37248859417691", + "0 | Chain ID [2/2] : 795744429913", + "1 | Expiry Height : 768362", + "2 | Fee [1/3] : 680653085337406480 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1y9sj43r6pv6tawr77t", + "3 | Action [3/4] : e5xmcuhx7lmqwma9h0sh0vzmkp2y00l3wqqdjj", + "3 | Action [4/4] : yz", + "4 | Action [1/10] : Undelegate", + "4 | Action [2/10] : From penumbravalid1ep3m0ve6v606dpm283z", + "4 | Action [3/10] : 4xw8648cfgne7zveaxhc9tpd0hrgu7npsm92f3", + "4 | Action [4/10] : f", + "4 | Action [5/10] : Input 989283979943135496 passet1a9csr5", + "4 | Action [6/10] : gh3s7328aexa6twq7z0yfzuvyf04nzy2djkvym", + "4 | Action [7/10] : 3m37mggsq2mpda", + "4 | Action [8/10] : Output 745012315494337894 passet1lnr5m", + "4 | Action [9/10] : luxrtmmlzn3wm9gn6q5aadetvt7qtucc95fwd4", + "4 | Action [10/10] : 3tryekgpqsx0e4j" + ], + "output_expert": [ + "0 | Chain ID [1/2] : mpgvvipjifphaclpdrbybvi-37248859417691", + "0 | Chain ID [2/2] : 795744429913", + "1 | Expiry Height : 768362", + "2 | Fee [1/3] : 680653085337406480 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1y9sj43r6pv6tawr77t", + "3 | Action [3/4] : e5xmcuhx7lmqwma9h0sh0vzmkp2y00l3wqqdjj", + "3 | Action [4/4] : yz", + "4 | Action [1/10] : Undelegate", + "4 | Action [2/10] : From penumbravalid1ep3m0ve6v606dpm283z", + "4 | Action [3/10] : 4xw8648cfgne7zveaxhc9tpd0hrgu7npsm92f3", + "4 | Action [4/10] : f", + "4 | Action [5/10] : Input 989283979943135496 passet1a9csr5", + "4 | Action [6/10] : gh3s7328aexa6twq7z0yfzuvyf04nzy2djkvym", + "4 | Action [7/10] : 3m37mggsq2mpda", + "4 | Action [8/10] : Output 745012315494337894 passet1lnr5m", + "4 | Action [9/10] : luxrtmmlzn3wm9gn6q5aadetvt7qtucc95fwd4", + "4 | Action [10/10] : 3tryekgpqsx0e4j" + ] + }, + { + "index": 4, + "blob": "0a089a010508a396ec150a9201ba038e010a220a20adeb68260e365467d68ffe1cbdcf86f78fa83763650534cacc4343c1d362860510b2ccae83031a300a0a08bebef6e3ebfcd7be0112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08d78ecda7b2db829d0a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10121a120a70656e756d6272612d311a0c0a0a0899cac7fd9ae88cc7022af6020ad1020a520a501a56c49c8d47b259697a9f297878b8b5b3fb59c53a446f8dc3667c1264b29602bec3edec59bdfc9da22f94f618f77d1d5286bb6d12ba26d142486424fceed44f5d6c0699c973cbeddd8024e70031709812fa01396e794e76366f41342038396a3442764d4469415649324a204f3471354520203469676d43783630785a4e203469664d4e38206c6f6e68206a672067626e20513239763320204c64633576372059553720454a6f75584a374e2041736c49382065524e204363446f20576137205764682047516c674620502069724c536c62206d6d75313775716c58364273364c207569204b783439387266656a553532206d6e61426e39323939623179597146734b55413233205435446a20203570204a305a374f397774596536632044366d734766462020206420314e4767206637303972724f4a6e3633412020542064386953204120652073765268311220cfd99c58cdf07295ef436da2171e764cd18af02f2b17b6d230a99c4b2759d3a2", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 184140991982.331161 penumbra", + "2 | Action [1/7] : DutchAuctionWithdraw", + "2 | Action [2/7] : Auction ID: pauctid14h4ksfswxe2x0450lc", + "2 | Action [3/7] : wtmnux7786sdmrv5znfjkvgdpur5mzsczsf6r9", + "2 | Action [4/7] : w4", + "2 | Action [5/7] : Unsold: 107347410736.22611 penumbra", + "2 | Action [6/7] : Proceeds: 736913425362.536279 penumbra", + "2 | Action [7/7] : Sequence number: 812361266", + "3 | Sender Address : penumbra1rftvf8ydg7e9j6t6nu5hs79c…", + "3 | Memo Text [1/7] : 9nyNv6oA4 89j4BvMDiAVI2J O4q5E 4igmCx", + "3 | Memo Text [2/7] : 60xZN 4ifMN8 lonh jg gbn Q29v3 Ldc5v7", + "3 | Memo Text [3/7] : YU7 EJouXJ7N AslI8 eRN CcDo Wa7 Wdh G", + "3 | Memo Text [4/7] : QlgF P irLSlb mmu17uqlX6Bs6L ui Kx498r", + "3 | Memo Text [5/7] : fejU52 mnaBn9299b1yYqFsKUA23 T5Dj 5p ", + "3 | Memo Text [6/7] : J0Z7O9wtYe6c D6msGfF d 1NGg f709rrOJ", + "3 | Memo Text [7/7] : n63A T d8iS A e svRh1" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 184140991982.331161 penumbra", + "2 | Action [1/7] : DutchAuctionWithdraw", + "2 | Action [2/7] : Auction ID: pauctid14h4ksfswxe2x0450lc", + "2 | Action [3/7] : wtmnux7786sdmrv5znfjkvgdpur5mzsczsf6r9", + "2 | Action [4/7] : w4", + "2 | Action [5/7] : Unsold: 107347410736.22611 penumbra", + "2 | Action [6/7] : Proceeds: 736913425362.536279 penumbra", + "2 | Action [7/7] : Sequence number: 812361266", + "3 | Sender Address : penumbra1rftvf8ydg7e9j6t6nu5hs79c…", + "3 | Memo Text [1/7] : 9nyNv6oA4 89j4BvMDiAVI2J O4q5E 4igmCx", + "3 | Memo Text [2/7] : 60xZN 4ifMN8 lonh jg gbn Q29v3 Ldc5v7", + "3 | Memo Text [3/7] : YU7 EJouXJ7N AslI8 eRN CcDo Wa7 Wdh G", + "3 | Memo Text [4/7] : QlgF P irLSlb mmu17uqlX6Bs6L ui Kx498r", + "3 | Memo Text [5/7] : fejU52 mnaBn9299b1yYqFsKUA23 T5Dj 5p ", + "3 | Memo Text [6/7] : J0Z7O9wtYe6c D6msGfF d 1NGg f709rrOJ", + "3 | Memo Text [7/7] : n63A T d8iS A e svRh1" + ] + }, + { + "index": 5, + "blob": "0a099a010608ece9d1cd030a9202c20c8e020a0a089ed4cddca593a58d0d12030a01331a8f0170656e756d62726131656a397832356a6a676e6767343775323671766d72686b63336571797363687475306766307771387a647a77397838616d64746c366678653063337168736b6c37336c7a7a783435666b613573383463643534796d3568686a36617a32686b7a736c6574356d7671686e357672366e6e646563347065743766667464343332616d6766727a3622520a504e8c92bab9b7e504f5e9ce16139adad0fa178a37c33d29b97d99f97590b3678a7ba392217b15c328aab0ecbf519d02dbe355c8bf812765e25677df6506a2aadbb7283823a90b02c90d435b3f4810cf0b2a0a08a0aaac5e10bebe9f753a096368616e6e656c2d30121e08a5d13a120a70656e756d6272612d311a0c0a0a08affadfb0ea85d8e608", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 960677", + "2 | Fee : 634268876000.460079 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 944230462569802270 passet1987jy", + "3 | Action [4/12] : tk50quacq46ayygte383zyl25tfzvuzdn3mclg", + "3 | Action [5/12] : 6z5h6avpstcfv9w", + "3 | Action [6/12] : To penumbra1ej9x25jjgngg47u26qvmrhkc3e", + "3 | Action [7/12] : qyschtu0gf0wq8zdzw9x8amdtl6fxe0c3qhskl", + "3 | Action [8/12] : 73lzzx45fka5s84cd54ym5hhj6az2hkzslet5m", + "3 | Action [9/12] : vqhn5vr6nndec4pet7fftd432amgfrz6", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 960677", + "2 | Fee : 634268876000.460079 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 944230462569802270 passet1987jy", + "3 | Action [4/12] : tk50quacq46ayygte383zyl25tfzvuzdn3mclg", + "3 | Action [5/12] : 6z5h6avpstcfv9w", + "3 | Action [6/12] : To penumbra1ej9x25jjgngg47u26qvmrhkc3e", + "3 | Action [7/12] : qyschtu0gf0wq8zdzw9x8amdtl6fxe0c3qhskl", + "3 | Action [8/12] : 73lzzx45fka5s84cd54ym5hhj6az2hkzslet5m", + "3 | Action [9/12] : vqhn5vr6nndec4pet7fftd432amgfrz6", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)" + ] + }, + { + "index": 6, + "blob": "0aab02aa01a70208b7aa91f3021a02080222a8010a300a0a08fa8b918ceaddafc40212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012206408cf8b2578af0cb80d325717537a779cada7f30923f95b0c9197d2f904445c1a520a501ceb48a0afa757d73f2ad52f0b16f59e2afa70943ee7bb6c6cbab7971331ad5bb8060a34bb31e9744ea699ba107e2c69bc3c4cbc025dfe3ac46892dcffffec49829d6e14ca536ed25cb054be0a9b4a28320a08cab3ff878490dadf063a20093cb9bb5d96ad648faa2b892b5fddbd3195e39c7f0416b13cddca047dacb4004220f53ee9bd4742d5e218416cb0ac7230d87aae1071aa7ac71b3d6969b6c03eec024a2039fa15b833cd7d6ed4e9979bb501c9e4b7b30876a85388d5ee36c2f4e39afa030aaf01f201ab010aa8010a640a18120a08a5def9dded8399c10d1a0a08edf9bde38fe780d00212480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080122180a0a08dbcb8392cfe7b98304120a08c0a7b0a3c28d98b30728010a27fa01240a220a2015e9e1c8bbf71123e147bf73f2a9c6fa24354630b3137f37efffb38f07c9717f121e08e2f72c120a70656e756d6272612d311a0c0a0a08d8cfa2ac9dc3f9f403", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 736226", + "2 | Fee : 282009450318.440408 penumbra", + "3 | Action [1/4] : DelegatorVote on Proposal 778327351", + "3 | Action [2/4] : Vote Yes", + "3 | Action [3/4] : Voting Power: 486222184834.914762 penu", + "3 | Action [4/4] : mbra", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 290173474960.369115 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 533219623473.779648 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 973450553163935525", + "4 | Action [7/9] : Trading Function q: 189154727637777645", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/3] : PositionClose", + "5 | Action [2/3] : Position ID plpid1zh57rj9m7ugj8c28hael", + "5 | Action [3/3] : 92wxlgjr233skvfh7dl0l7ec7p7fw9lswk3g6j" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 736226", + "2 | Fee : 282009450318.440408 penumbra", + "3 | Action [1/4] : DelegatorVote on Proposal 778327351", + "3 | Action [2/4] : Vote Yes", + "3 | Action [3/4] : Voting Power: 486222184834.914762 penu", + "3 | Action [4/4] : mbra", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 290173474960.369115 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 533219623473.779648 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 973450553163935525", + "4 | Action [7/9] : Trading Function q: 189154727637777645", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/3] : PositionClose", + "5 | Action [2/3] : Position ID plpid1zh57rj9m7ugj8c28hael", + "5 | Action [3/3] : 92wxlgjr233skvfh7dl0l7ec7p7fw9lswk3g6j" + ] + }, + { + "index": 7, + "blob": "0abe020abb020aa8010a300a0a088fbee5d7a68be99f0812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220cb01668c379c3b287e28ce64053c24e22c01a2848d0db17bd89f771a749608f41a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710f7cd9ba999e4031a200af75fc4f376fa047e69af8d06a4118b4e9d650d186a8dccb87ee56a51062801222021ebee37aeca6201714824ed31688e97ee96d1580e7ea39579c628d5650591012a20efecc742a6a2273c274be57a048b02f7265dcce18378b4e1d798447dc6d5d111322092abcf80f965f51081d13460d63ad49c48a71a47a72532ea7d9864cacc916b040abe020abb020aa8010a300a0a08a5bbd7d781f3f6ec0812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220152203ca0f3bd00c97e7e81b0c89afe660e263ccbf6d8b89c9001581af5252e01a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710e9f4bca1cfdc2e1a20a1c1417e10676a214c5d8ca73471198e18e001616975c890d236b537cd9d490422205dc79a0c2de3feef23360758f4f8a1934360ac6bfd3020479f455c17c21aef012a20723b8841e10a22341fc58ed2455fbe6a46ee5442e2e0fa02c5792ef6f8f391033220f3fde8b181a7fb87e402e331ab5ef239fd7dedcf0cf8253b4d4a901b01ed1d100a9201ba038e010a220a203b0e9fbffd84671903c897772e04ccdf2fa4c9cccab3f19c13684f0df401993f10e5aef4f3011a300a0a08a2a0f0a6deb6ef890c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a089eaefde8e6e1e8e40912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100aaa02aa01a60208bd95f5521a02080322a8010a300a0a0897f4caf6aee591840d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012206f311a59315f21f385371a6d63a626cffa1d61cb52fb0124d49dbd158e8fd1ff1a520a506274736edb2f2eca49649ed2648820305762e1d32f0ed595ef29c1b028ec1e5f67a9cdc8f4b674919c0a8f8d849f4641913ff97ba7e0f33cc12095200a0539f7e1ec6e0edb18f1fdbf1affc0875dc6b9320a08f18befc4ebe29dd7023a20a95b30b0633bd69b2248d8dc78a5932072a9cce12de2e2aee824954c9761e60042207694a92e6a00728184e4aabe8118591b76b37da0540f9b252653c112a80329044a20d8ec028c335a3324d9f9abf5dc47de2571ef4a4a978f92bd8a5459191237a803122f121f6f2d36333234303931373238313335323733333234383039383139353930361a0c0a0a08c68292c9f9e5ead0032afd010ad8010a520a5072c36770b70fb573864b867752e54bef45c2fce95dc2080deba9c88956f7d1b38aa9edbf914a0080a3941d7b5588433e4a5d4e9cd17f426b19f235e5e900aa9498fd2051c523d5efe037abe24288f710128101654c6e5435363358334c6e355020544832205820476d5346684d6d74382039692032206d20353063563477626a4264353669516e69674839204a6520207362685976206237633342373663207138745263202036656c20647735436d575848714920777779202020693552613420396c204b7648592039673620667033462020451220fd394651aa0eb0c44a09ad0dae7e4e1c799431b2fe5f41b50a773dec14934a50", + "output": [ + "0 | Chain ID : o-63240917281352733248098195906", + "1 | Fee [1/3] : 261678474285318470 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 594374384084934415 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "3 | Action [1/3] : Spend 637782268583468453 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid18v8fl0las3n3jq7gja", + "4 | Action [3/11] : mjupxvmuh6fjwve2elr8qndp8smaqpnylsa7qc", + "4 | Action [4/11] : k2", + "4 | Action [5/11] : Unsold: 870247741938995234 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 705274099015833374 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 511514469", + "5 | Action [1/5] : DelegatorVote on Proposal 173886141", + "5 | Action [2/5] : Vote No", + "5 | Action [3/5] : Voting Power: 193222773493712369 passe", + "5 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "5 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "6 | Sender Address : Sub-account #30", + "6 | Memo Text [1/4] : eLnT563X3Ln5P TH2 X GmSFhMmt8 9i 2 m 5", + "6 | Memo Text [2/4] : 0cV4wbjBd56iQnigH9 Je sbhYv b7c3B76c ", + "6 | Memo Text [3/4] : q8tRc 6el dw5CmWXHqI wwy i5Ra4 9l K", + "6 | Memo Text [4/4] : vHY 9g6 fp3F E" + ], + "output_expert": [ + "0 | Chain ID : o-63240917281352733248098195906", + "1 | Fee [1/3] : 261678474285318470 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 594374384084934415 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "3 | Action [1/3] : Spend 637782268583468453 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid18v8fl0las3n3jq7gja", + "4 | Action [3/11] : mjupxvmuh6fjwve2elr8qndp8smaqpnylsa7qc", + "4 | Action [4/11] : k2", + "4 | Action [5/11] : Unsold: 870247741938995234 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 705274099015833374 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 511514469", + "5 | Action [1/5] : DelegatorVote on Proposal 173886141", + "5 | Action [2/5] : Vote No", + "5 | Action [3/5] : Voting Power: 193222773493712369 passe", + "5 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "5 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "6 | Sender Address : Sub-account #30", + "6 | Memo Text [1/4] : eLnT563X3Ln5P TH2 X GmSFhMmt8 9i 2 m 5", + "6 | Memo Text [2/4] : 0cV4wbjBd56iQnigH9 Je sbhYv b7c3B76c ", + "6 | Memo Text [3/4] : q8tRc 6el dw5CmWXHqI wwy i5Ra4 9l K", + "6 | Memo Text [4/4] : vHY 9g6 fp3F E" + ] + }, + { + "index": 8, + "blob": "0ab401a201b0010a6a089fd092c902120208021a220a20a11332a498f6991bcf9d0bcf3f47ee9e7355e4ba755671361fff8d9c39f3a52122220a2060af1e53f0ab5aefaa5503f8be2cd19971cecdf22f9281138bd5d4f1b6e58b042a160a1435656550473258684f3738475a557a644455767212420a40be2c8e226d305b0980d1ef7d2b6ef4576a4bc6f4bbece3b5f6ffc1d8ee02d2013f4eddb4b3c39ff62f23e7d4a615647ab174cdefbb6bc57a21231ad095e080020a27fa01240a220a201f74d731666f550c4c90181dfea85ac7beea9f0921e3e8644f29a2d38ccf45270abe020abb020aa8010a300a0a08def2e0ff94a1dcb50612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220642d68487ad11f3e0d070162f408d2d0e93af71d717849022ce8810aefa3991f1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710efda87c4e6961a1a20a761c02a3753fcf5afdf399ed3f9847a7bbf0aef0a6f92d91a6b02241da89f01222081a744d5eea0158580499b34724e32cce5fe10ce47094b1bb42c512c193f70022a2080daaa8efab0cd62dea2357425d9326f162de25203324e24cb283ab11a69e40a3220e04fe2663f6b950c7d3e501795c02c0a1d9ac2613ca06457dc2b95e9195068000a9201ba038e010a220a2044e40e2e12d24d86f047202ef95c1c6416625ac1ac88af9554c1a39f2c6c12f610e988ee8a031a300a0a08bbc3b3ce96cabbca0112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08f6fbcfc0c7f0bcb10d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012251215666c76716f672d39313830383438353330333133371a0c0a0a08cdb6dbc3b8b4cf840a", + "output": [ + "0 | Chain ID : flvqog-91808485303137", + "1 | Fee [1/3] : 723176987748129613 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1ra6dwvtxda2scnysrqwl", + "2 | Action [3/3] : a2z6c7lw48cfy837sez09x3d8rx0g5nsau9kc2", + "3 | Action [1/3] : Spend 462587671545919838 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid1gnjqutsj6fxcduz8yq", + "4 | Action [3/11] : h0jhquvstxykkp4jy2l925cx3e7trvztmqxkfu", + "4 | Action [4/11] : ff", + "4 | Action [5/11] : Unsold: 113977924025901499 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 964601020486516214 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 828081257" + ], + "output_expert": [ + "0 | Chain ID : flvqog-91808485303137", + "1 | Fee [1/3] : 723176987748129613 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1ra6dwvtxda2scnysrqwl", + "2 | Action [3/3] : a2z6c7lw48cfy837sez09x3d8rx0g5nsau9kc2", + "3 | Action [1/3] : Spend 462587671545919838 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid1gnjqutsj6fxcduz8yq", + "4 | Action [3/11] : h0jhquvstxykkp4jy2l925cx3e7trvztmqxkfu", + "4 | Action [4/11] : ff", + "4 | Action [5/11] : Unsold: 113977924025901499 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 964601020486516214 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 828081257" + ] + }, + { + "index": 9, + "blob": "0ac4018201c0010a7c0a220a2020f9bb251cd561461432c9fa767b61d93b9631cbd35d27ae2ff07923213d2010122031767005bfc572dd566839896c3af29396f4be673343e2aa46ae6cfda4eb0e561a0e746573742076616c696461746f7240014a220a2020f9bb251cd561461432c9fa767b61d93b9631cbd35d27ae2ff07923213d201012409aa897085184188c906bc732317ac1d2e185ba1515120fd92e6c6f5dea6eb401da59a3c7f612d348315b0265d7cc239d02be7e88dd8199345d7e47c1af5af5020a27fa01240a220a2053cd128466cb11714018b93497f8f8abe2ade0d8854e9825916f1b7171eb7c380a089a0105089ca7fd56122a08c5d42812167065726567697a616b76717766796b6d7a7a796d2d331a0c0a0a08f8cbe4f4ed93d7ef0b", + "output": [ + "0 | Chain ID : peregizakvqwfykmzzym-3", + "1 | Expiry Height : 666181", + "2 | Fee [1/3] : 855504291632850424 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid120x39prxevghzsqchy6f", + "3 | Action [3/3] : 078c4032mcxcs48fsfv3dudhzu0t0suq8wgk3e" + ], + "output_expert": [ + "0 | Chain ID : peregizakvqwfykmzzym-3", + "1 | Expiry Height : 666181", + "2 | Fee [1/3] : 855504291632850424 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid120x39prxevghzsqchy6f", + "3 | Action [3/3] : 078c4032mcxcs48fsfv3dudhzu0t0suq8wgk3e" + ] + }, + { + "index": 10, + "blob": "0ac201d202be010a220a20326812ab972d4f1cfb80af91684573f0ed7a7765aa26f0974df76877e3c305f922220a2000000000000000000000000000000000ffcb923a29c779a6b50b0f27bb2fec572a0a08e998c9ab86e58ab2063220818b420b736de18cb060cb436f7fd43a5a6f1dc405a929ef79c2ad8a9521eb003a20b0225ec2df0074027642a711afc1f446e9ca06d78c00d0c3273516fa87a32f064220f593a03e2ebb0ca5851c6af292ee657d0846a459bb5e4983c6989a62d58a430048c9e5050a47ca02440a220a207d14c4f33d182db1636db944854ed51d6aadb9f94748406cd74dde7c6d16a2e71a0a08e396a89380ac9d9e0b220a08d0bb9a9fb3e7f780012a0608c71d10c71d0aaa02aa01a60208d8bdc6321a02080122a8010a300a0a089ecffbb1b5b6c4ea0412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012202052066e538bd248074de86d2f2fd42e6ae9e97d94bb32f47bf00eef2edc4a2b1a520a501a7369b3295b12e77b9061f69239ccb3d0073312353fe22554ae0c70b0648bc9e10d8e8a9977d66428edbb06663d14a164e0300e72959efc2c26dc89ec627d23232433346676cd67cfb4529ca51973b9320a0895a790d4859a8c8c083a205b274c672b72a76b303cac17a9161eeb563ca9fd55067aa9394841bda7a6500342200dcf42c5b2716ae266ca7c13d3fbb7689eef8e68dd1864d35837db8225cc590f4a20708f2cc99a4ad04690d51a3a4b57fbad6f9bb5124d30c51b73a8b75d71351f0e12241214696977716c77672d3335303632373436333533321a0c0a0a089bf280d5d9a7d8820d2a8e040ae9030a520a50b10a224e2fb6d29718230bcfa5a022df618ab3c5f037d4bb2183ff1037ef16682d14d4439c3a6cbd0bb9e899afd379ab776babbafde84a52cd644f228a96d3c48c2c207b288951c51d5c79685c94015f12920336324d6f205773373070203131344e453420206e702035206832396a4f6e64665a6d625549695437396a554534202061375768682049623031765355474a45646d20534e2072203833452020776654674d32202042205146664e483148302046314b58325559625a5031204b43206f5969202050202059455372206c5049743742556b3476345555316d2057202039204342635820206963345972544b6f7620623333514246723639323069207638327a3638784e6859205530624c453362314143386a666f743320353434204939374a75444e37444234396d206f33355374204f564635366c58667432206d4a204b5a64206630786341204243656e3247333653364d593674794d396235346f20652045695820644f72744c43753959334f6e577120764159332020205635684d726c4d75574c767942336d206c4572573438352036422038557a64204f706166687650674d4547207833445820534e467964202034205839357036337320332031576135644d484f70314b3720306d59204e474574713020364f715834416161576a511220cc2956f734505931fe5d6a30051179c363011a3457c2a346315bf13116e83a26", + "output": [ + "0 | Chain ID : iiwqlwg-350627463532", + "1 | Fee [1/3] : 938263014591707419 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 460540514399308905 passet13kp53r", + "2 | Action [3/4] : acuemudzfv76mxp3g6xmag965lzwq2pcagsjlw", + "2 | Action [4/4] : 3y7tnczsjyu95x", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1052vfuearqkmzcmdh9z", + "3 | Action [3/10] : g2nk4r442mw0egayyqmxhfh08cmgk5tnsesw5p", + "3 | Action [4/10] : j", + "3 | Action [5/10] : Input 72584514381454800 passet1ttl4uwq", + "3 | Action [6/10] : n70nu8dnrk5jzgvztt8w7g9n7dg8sgm3fjwe6t", + "3 | Action [7/10] : 386dcyqfyepz5", + "3 | Action [8/10] : Output 809651088237661027 passet1733l4", + "3 | Action [9/10] : ustweupzs8nj6ynv3f7s0vvnwnhshyywh4wy9s", + "3 | Action [10/10] : y7n32z5gqd03puz", + "4 | Action [1/5] : DelegatorVote on Proposal 106012376", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 583269823174415253 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "5 | Sender Address : Sub-account #55", + "5 | Memo Text [1/11] : 62Mo Ws70p 114NE4 np 5 h29jOndfZmbUIi", + "5 | Memo Text [2/11] : T79jUE4 a7Whh Ib01vSUGJEdm SN r 83E ", + "5 | Memo Text [3/11] : wfTgM2 B QFfNH1H0 F1KX2UYbZP1 KC oYi ", + "5 | Memo Text [4/11] : P YESr lPIt7BUk4v4UU1m W 9 CBcX ic", + "5 | Memo Text [5/11] : 4YrTKov b33QBFr6920i v82z68xNhY U0bLE3", + "5 | Memo Text [6/11] : b1AC8jfot3 544 I97JuDN7DB49m o35St OVF", + "5 | Memo Text [7/11] : 56lXft2 mJ KZd f0xcA BCen2G36S6MY6tyM9", + "5 | Memo Text [8/11] : b54o e EiX dOrtLCu9Y3OnWq vAY3 V5hMr", + "5 | Memo Text [9/11] : lMuWLvyB3m lErW485 6B 8Uzd OpafhvPgMEG", + "5 | Memo Text [10/11] : x3DX SNFyd 4 X95p63s 3 1Wa5dMHOp1K7 ", + "5 | Memo Text [11/11] : 0mY NGEtq0 6OqX4AaaWjQ" + ], + "output_expert": [ + "0 | Chain ID : iiwqlwg-350627463532", + "1 | Fee [1/3] : 938263014591707419 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 460540514399308905 passet13kp53r", + "2 | Action [3/4] : acuemudzfv76mxp3g6xmag965lzwq2pcagsjlw", + "2 | Action [4/4] : 3y7tnczsjyu95x", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1052vfuearqkmzcmdh9z", + "3 | Action [3/10] : g2nk4r442mw0egayyqmxhfh08cmgk5tnsesw5p", + "3 | Action [4/10] : j", + "3 | Action [5/10] : Input 72584514381454800 passet1ttl4uwq", + "3 | Action [6/10] : n70nu8dnrk5jzgvztt8w7g9n7dg8sgm3fjwe6t", + "3 | Action [7/10] : 386dcyqfyepz5", + "3 | Action [8/10] : Output 809651088237661027 passet1733l4", + "3 | Action [9/10] : ustweupzs8nj6ynv3f7s0vvnwnhshyywh4wy9s", + "3 | Action [10/10] : y7n32z5gqd03puz", + "4 | Action [1/5] : DelegatorVote on Proposal 106012376", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 583269823174415253 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "5 | Sender Address : Sub-account #55", + "5 | Memo Text [1/11] : 62Mo Ws70p 114NE4 np 5 h29jOndfZmbUIi", + "5 | Memo Text [2/11] : T79jUE4 a7Whh Ib01vSUGJEdm SN r 83E ", + "5 | Memo Text [3/11] : wfTgM2 B QFfNH1H0 F1KX2UYbZP1 KC oYi ", + "5 | Memo Text [4/11] : P YESr lPIt7BUk4v4UU1m W 9 CBcX ic", + "5 | Memo Text [5/11] : 4YrTKov b33QBFr6920i v82z68xNhY U0bLE3", + "5 | Memo Text [6/11] : b1AC8jfot3 544 I97JuDN7DB49m o35St OVF", + "5 | Memo Text [7/11] : 56lXft2 mJ KZd f0xcA BCen2G36S6MY6tyM9", + "5 | Memo Text [8/11] : b54o e EiX dOrtLCu9Y3OnWq vAY3 V5hMr", + "5 | Memo Text [9/11] : lMuWLvyB3m lErW485 6B 8Uzd OpafhvPgMEG", + "5 | Memo Text [10/11] : x3DX SNFyd 4 X95p63s 3 1Wa5dMHOp1K7 ", + "5 | Memo Text [11/11] : 0mY NGEtq0 6OqX4AaaWjQ" + ] + }, + { + "index": 11, + "blob": "0a27fa01240a220a205c64403ee5398eb87c8763a0cb46f5059f9843e468be02f6a9b29bae0dbded2f0a449201410a330a2371756e6d66776e6b6270787575656169627862696b717172657a6b68652d3439303431120a6a2d31383739393733342a001a0a08f5d0bd89bb9cf8bd080a18b20115089cc9d02f120a08a6bfb5bfc9aab1e70d1a0212000a8d01820289010a170a0a08b5b7fae095f8aaa806120908998da8abf5a1911912220a207023e9fa2f2a5e7553bb6501915c5592449d04891e8668e96e47d5316bc087bf1a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a102001121a120a70656e756d6272612d311a0c0a0a08d9d8b9a3e4a29b85032acb020aa6020a520a50b95601587dc968a9e596282783cb8dcbc9167bed35ac3688edd12def4cacb1b6ac2be93bd86b721c59b95a73bb24fcec7f1f2880d3ee95378248c1df81d1eb8084bc51129ad740c05604dfe3d52c679712cf015933206a746e2036654672206f3535346c613120494a4e333663336f53463659207a352054324520396c4d3937627a2061622020377820785237454c44694b3878532048397051206e7a682020202020736a59574c686e313277205938376d5470717a44204138745869302072483377396c7a49446c6e315256526d6266202058542031552043382074483670515463436b766d2020315420204d397959205672333134566578206a6f2020525561367a2061204f336b206630203775484c2044306e314f686c20207331206f476f122061711673618b97ebb94067a16a863eb4ca4e4e96b8e8aa19c3e540bb587e8ccd", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 219107474285.685849 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1t3jyq0h98x8tsly8vwsv", + "2 | Action [3/3] : k3h4qk0esslydzlq9a4fk2d6urdaa5hsqd6rny", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1wq37n7309f0825amv5qe", + "3 | Action [3/4] : zhz4jfzf6pyfr6rx36twgl2nz67qs7ls6yqpc0", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1h9tqzkrae952nevk9qnc8jud…", + "4 | Memo Text [1/6] : Y3 jtn 6eFr o554la1 IJN36c3oSF6Y z5 T2", + "4 | Memo Text [2/6] : E 9lM97bz ab 7x xR7ELDiK8xS H9pQ nzh ", + "4 | Memo Text [3/6] : sjYWLhn12w Y87mTpqzD A8tXi0 rH3w9l", + "4 | Memo Text [4/6] : zIDln1RVRmbf XT 1U C8 tH6pQTcCkvm 1T", + "4 | Memo Text [5/6] : M9yY Vr314Vex jo RUa6z a O3k f0 7uH", + "4 | Memo Text [6/6] : L D0n1Ohl s1 oGo" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 219107474285.685849 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1t3jyq0h98x8tsly8vwsv", + "2 | Action [3/3] : k3h4qk0esslydzlq9a4fk2d6urdaa5hsqd6rny", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1wq37n7309f0825amv5qe", + "3 | Action [3/4] : zhz4jfzf6pyfr6rx36twgl2nz67qs7ls6yqpc0", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1h9tqzkrae952nevk9qnc8jud…", + "4 | Memo Text [1/6] : Y3 jtn 6eFr o554la1 IJN36c3oSF6Y z5 T2", + "4 | Memo Text [2/6] : E 9lM97bz ab 7x xR7ELDiK8xS H9pQ nzh ", + "4 | Memo Text [3/6] : sjYWLhn12w Y87mTpqzD A8tXi0 rH3w9l", + "4 | Memo Text [4/6] : zIDln1RVRmbf XT 1U C8 tH6pQTcCkvm 1T", + "4 | Memo Text [5/6] : M9yY Vr314Vex jo RUa6z a O3k f0 7uH", + "4 | Memo Text [6/6] : L D0n1Ohl s1 oGo" + ] + }, + { + "index": 12, + "blob": "0a8a019a0386010a300a0a0892f9cdc6be99b6ed0612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50e3f76db798ed02d3d20722174a960b830840540017520498b168a0d02a4d0b7a8cd83dc4aaba0ff743bdc509784af49014a636d426291881bb4e557c68ae5deefe83f9ab47b23d398358c40eb76fe7720aaf01f201ab010aa8010a640a18120a088ab5d8cd9ca9d594021a0a08a2a1d2d9aeb1aef20112480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a08a897fcd7efd6d68008120a0899daffd690b3bb940c2801121a120a70656e756d6272612d311a0c0a0a08bcbfeb8ac3f3c0a605", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 381965512774.180796 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 576841969221.70052 penumbr", + "2 | Action [3/9] : a", + "2 | Action [4/9] : Reserves 2: 876211369091.788057 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 155749437526121098", + "2 | Action [7/9] : Trading Function q: 136437895030673570", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 381965512774.180796 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 576841969221.70052 penumbr", + "2 | Action [3/9] : a", + "2 | Action [4/9] : Reserves 2: 876211369091.788057 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 155749437526121098", + "2 | Action [7/9] : Trading Function q: 136437895030673570", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true" + ] + }, + { + "index": 13, + "blob": "0a359203320a300a0a08a2b3b998e6d788bb0712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a9902c20c95020a0a089e93aabf92e6f1f30612090a07564c43357762481a8f0170656e756d6272613139656c6474777771737a377363336b79783438687078716d383070743639637237737a63796e666b66367174397372666c37636d7337616b64666b7161793964326a3861376a3674676477356b66356c76386666306163676d387677683733663368396c366d6436713634763475756d776b346b667334613634306661716c667775376e367822520a504e96e81af851cf70ba8a55f2143ae87792446c689162adf21c10b2a79e96fb292b65b7820004b80dfdda54c8efcebf9c3ce7bcfbcc9061b126181a83f0fc40d8252344b421938107a7d09c88ec9594122a0b08b2dcfd0d10afc7ccbd023a096368616e6e656c2d300ab102c20cad020a0a08eeb4dcf0d3fdd7d50d12210a1f524f37514f3535304c743244325133543177553948764c764f4d51527a4a441a8f0170656e756d627261317235357876653733706d717476673674303334333977713670776e6871727678776371717239756c726c666a70343863727877776b663674387732307a33347176637473726a6d327a326e36756c767970716d72686a6661676d753279386b75787032727134376d7932357738646d7767737736787137366e6330306671687a30397866657322520a50319ddcf5ca28a8e2ddb49db9f90392788cb8c2f0b687f4487dddfc270602c3aa1ff42ee95d2a500b6ad6250bb06530156b3ac6174e42353bbda676f5f07331e658ba67c10d57195513965cb829ace0bb2a0b08ffed99e70210ccf3b96f3a096368616e6e656c2d30122f08ff810e121b69657461626e726c697a2d313435323536313934393835313237371a0c0a0a08d2f6bca0ce92f3f3022aa1020afc010a520a50b3fec2af915496f0dd12f78ef34c64002d7c3131a3211d442194484e8476fd593806f7eb16844b0ab460eb00e6735f1db8dc28f48a46a05faf7cd5e2e3976c6910ed9f61d26ff63e9e274831a616c3e312a50164316b44627720645842314e20566720327a64624746663332647a315757372035702058202044203664426420546d4520727033707131686d44785167474a50316c662077784d20206e49204e6531564a3936686a53542072206532204b70326a347638207838723176483879205348693662574b6e49394266204d565120202059314d39326b20202061382039204f48376e716e6755324551686c3420203836454f34751220c5d72152929efd83b87e04e014c0ea3ff60ff9b162ae6a177dab88cc6524ef98", + "output": [ + "0 | Chain ID : ietabnrliz-1452561949851277", + "1 | Expiry Height : 229631", + "2 | Fee [1/3] : 209360847549446994 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 497585297784736158 passet1vmvct", + "3 | Action [4/12] : zv5afckhlnkkkf069hz63su3d8r2ng02aplj9s", + "3 | Action [5/12] : yr7yqjqps600s6s", + "3 | Action [6/12] : To penumbra19eldtwwqsz7sc3kyx48hpxqm80", + "3 | Action [7/12] : pt69cr7szcynfkf6qt9srfl7cms7akdfkqay9d", + "3 | Action [8/12] : 2j8a7j6tgdw5kf5lv8ff0acgm8vwh73f3h9l6m", + "3 | Action [9/12] : d6q64v4uumwk4kfs4a640faqlfwu7n6x", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/12] : ICS20Withdrawal", + "4 | Action [2/12] : Channel channel-0", + "4 | Action [3/12] : Amount 984986416064174702 passet1hxkv6", + "4 | Action [4/12] : ddjlhcer3xyam5x2nd0k9f2h07cg7sg26umf30", + "4 | Action [5/12] : 7vr9f9uqscrvfqj", + "4 | Action [6/12] : To penumbra1r55xve73pmqtvg6t03439wq6pw", + "4 | Action [7/12] : nhqrvxwcqqr9ulrlfjp48crxwwkf6t8w20z34q", + "4 | Action [8/12] : vctsrjm2z2n6ulvypqmrhjfagmu2y8kuxp2rq4", + "4 | Action [9/12] : 7my25w8dmwgsw6xq76nc00fqhz09xfes", + "4 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "4 | Action [12/12] : l not controlled by user)", + "5 | Sender Address : Sub-account #88", + "5 | Memo Text [1/5] : d1kDbw dXB1N Vg 2zdbGFf32dz1WW7 5p X ", + "5 | Memo Text [2/5] : D 6dBd TmE rp3pq1hmDxQgGJP1lf wxM nI ", + "5 | Memo Text [3/5] : Ne1VJ96hjST r e2 Kp2j4v8 x8r1vH8y SHi6", + "5 | Memo Text [4/5] : bWKnI9Bf MVQ Y1M92k a8 9 OH7nqngU2", + "5 | Memo Text [5/5] : EQhl4 86EO4u" + ], + "output_expert": [ + "0 | Chain ID : ietabnrliz-1452561949851277", + "1 | Expiry Height : 229631", + "2 | Fee [1/3] : 209360847549446994 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 497585297784736158 passet1vmvct", + "3 | Action [4/12] : zv5afckhlnkkkf069hz63su3d8r2ng02aplj9s", + "3 | Action [5/12] : yr7yqjqps600s6s", + "3 | Action [6/12] : To penumbra19eldtwwqsz7sc3kyx48hpxqm80", + "3 | Action [7/12] : pt69cr7szcynfkf6qt9srfl7cms7akdfkqay9d", + "3 | Action [8/12] : 2j8a7j6tgdw5kf5lv8ff0acgm8vwh73f3h9l6m", + "3 | Action [9/12] : d6q64v4uumwk4kfs4a640faqlfwu7n6x", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/12] : ICS20Withdrawal", + "4 | Action [2/12] : Channel channel-0", + "4 | Action [3/12] : Amount 984986416064174702 passet1hxkv6", + "4 | Action [4/12] : ddjlhcer3xyam5x2nd0k9f2h07cg7sg26umf30", + "4 | Action [5/12] : 7vr9f9uqscrvfqj", + "4 | Action [6/12] : To penumbra1r55xve73pmqtvg6t03439wq6pw", + "4 | Action [7/12] : nhqrvxwcqqr9ulrlfjp48crxwwkf6t8w20z34q", + "4 | Action [8/12] : vctsrjm2z2n6ulvypqmrhjfagmu2y8kuxp2rq4", + "4 | Action [9/12] : 7my25w8dmwgsw6xq76nc00fqhz09xfes", + "4 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "4 | Action [12/12] : l not controlled by user)", + "5 | Sender Address : Sub-account #88", + "5 | Memo Text [1/5] : d1kDbw dXB1N Vg 2zdbGFf32dz1WW7 5p X ", + "5 | Memo Text [2/5] : D 6dBd TmE rp3pq1hmDxQgGJP1lf wxM nI ", + "5 | Memo Text [3/5] : Ne1VJ96hjST r e2 Kp2j4v8 x8r1vH8y SHi6", + "5 | Memo Text [4/5] : bWKnI9Bf MVQ Y1M92k a8 9 OH7nqngU2", + "5 | Memo Text [5/5] : EQhl4 86EO4u" + ] + }, + { + "index": 14, + "blob": "0aae02c20caa020a0a08ccc988c09a80dec10b121d0a1b36396243417636334831644d316647734c6a5671457349384f30321a8f0170656e756d6272613139663066347470716e736637787636637971727830746d61376163366e373279636c656536726e6e746364373668703565767a387739713065396c71703771703865756c7971396b6b3374756a6c65306439376b3961766b656a35617a637661396736787472326765763667336a636167677533683966786c666d643576397075686d616c6622520a50f11620f304e815835fd6af531c96f76ec6838808856b314b07e10492db6a823ff88f7038b3fb279ccfce6d80a587cb293b8f50eb1289cd097cc5a220aeec0de93c288a6e63f09c1cbb452aee8317fcaf2a0c08e68a9e800110be94eba8023a096368616e6e656c2d300ac201d202be010a220a20046ce202bbd6fd5b9e9743a1fa3aa089c1ccf5c144d830677e193ef981d68fc722220a2000000000000000000000000000000000fe76c8b4395810624dd2f1a9fbe76c8c2a0a08bac5b3fee8dbbf820b32204ec758f05be17120d116c10757456238c06042b5659262343d67074a7d3769013a208463d68fa072ea5bee70c24976070efa009f5d704cc17c250c351290e1fed9114220b2e0e7b938f07059065f014a255173299a7796127c31bef897d7a6f45863080f48e9b2040ac4018201c0010a7c0a220a207695a06299a8f3680e91d90005893a08d902a0e385141bdd81ae9605c9f3cf0f1220b4ba2d3ae5ccb428efeb8b68d4f98a48c67194137b2fc41077f228de4dab96cc1a0e746573742076616c696461746f7240014a220a207695a06299a8f3680e91d90005893a08d902a0e385141bdd81ae9605c9f3cf0f1240d6c6bf1afe7b27f8654fe83d953bc282c3f504b204066b53ecf651db84e861027d26024a2a42940d7daf1830f5533e7e593544f0014b3a762fa35c5c381080020a9002128d020a2f0a09088fc59babaaf7c37112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a505d50f07e05f10261180c2b40c4eaa5c25584746a42ebdf42eca57d5811112dd46f28eb30a7092b9188a17d4459bed5f25d0ed9cf4d16e842d2687e21f358bae643163ae3c7a64ed52c526d637d4975951a2050f9085a5cdb834ce5dc6334ec09135bf61c8013ec7cb5cb0d07154d2e3a3515222002266a901287234365d13bb7ca486706ede4d039dca012cecbd17d85289e57032a20629914122f21fcb866b30a43406a5921b55157e5495817c05363774ab12cb8043220bf27e26dca63792b33a55b253a5dfa44d8295fa3a9326514a7f286525118f201121e08e2c82e120a70656e756d6272612d311a0c0a0a0882bd99c7b8ccf9ea0d", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 762978", + "2 | Fee : 996956207705.38253 penumbra", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 829638704875316428 passet1rmk5z", + "3 | Action [4/9] : mpdk3nskv6a29guc8xhjzqxnd5zqj5cam4kalx", + "3 | Action [5/9] : l4gjy2qgqvjk5d4", + "3 | Action [6/9] : To penumbra19f0f4tpqnsf7xv6cyqrx0tma7a", + "3 | Action [7/9] : c6n72yclee6rnntcd76hp5evz8w9q0e9lqp7qp", + "3 | Action [8/9] : 8eulyq9kk3tujle0d97k9avkej5azcva9g6xtr", + "3 | Action [9/9] : 2gev6g3jcaggu3h9fxlfmd5v9puhmalf", + "4 | Action [1/4] : UndelegateClaim", + "4 | Action [2/4] : Value 794039666172814010 passet1vky9p3", + "4 | Action [3/4] : 4zjwgmmnn9mfqy3jkyj2x72tzdvwaegp06swc6", + "4 | Action [4/4] : xtn0ys8sk82cj0", + "5 | Action [1/2] : Output 63912114026.635919 penumbra to ", + "5 | Action [2/2] : Sub-account #97" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 762978", + "2 | Fee : 996956207705.38253 penumbra", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 829638704875316428 passet1rmk5z", + "3 | Action [4/9] : mpdk3nskv6a29guc8xhjzqxnd5zqj5cam4kalx", + "3 | Action [5/9] : l4gjy2qgqvjk5d4", + "3 | Action [6/9] : To penumbra19f0f4tpqnsf7xv6cyqrx0tma7a", + "3 | Action [7/9] : c6n72yclee6rnntcd76hp5evz8w9q0e9lqp7qp", + "3 | Action [8/9] : 8eulyq9kk3tujle0d97k9avkej5azcva9g6xtr", + "3 | Action [9/9] : 2gev6g3jcaggu3h9fxlfmd5v9puhmalf", + "4 | Action [1/4] : UndelegateClaim", + "4 | Action [2/4] : Value 794039666172814010 passet1vky9p3", + "4 | Action [3/4] : 4zjwgmmnn9mfqy3jkyj2x72tzdvwaegp06swc6", + "4 | Action [4/4] : xtn0ys8sk82cj0", + "5 | Action [1/2] : Output 63912114026.635919 penumbra to ", + "5 | Action [2/2] : Sub-account #97" + ] + }, + { + "index": 15, + "blob": "0a9102128e020a300a0a08cec981cd87c5dce30c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a502baba008e565785dbfd6a7f6cd9c4a09614ff04900306eb7e201783e799d043b9a9a190309fe83d58b2496255711fe6d1a367ceb71432d490192253ed4c50cff489d72de3774c7430d30c8427ad638161a20f427a7153e71caf828b4737e12d7ac8f6c7d50c66a1c267eae0a003e8ae2c7c122201a23c5786b58448e361ca79b26a844a419211565a66be9f20cf2efd670ea79022a2070c6cc04c8807fc5938d7cee63806b27ef27551d0dc89949eb460607eb700f0a322028ddeaa1f78b766fd2f2c74cfb28bfabe5add5627e5d5b107ded981df81e4d060a27b203240a220a20a16755ea9b816e3435199b9d5faef5493b592a9cc48b7898e4a6ecbb015596850a359203320a300a0a088bacc0d6d8bbce980412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10121e08918a0f120a70656e756d6272612d311a0c0a0a08d3d1deeee7e682e1072a9e020af9010a520a50f9521e66c3bfaf9656a44d9d99d2378b87a26efd042768ac7bf8152643272d97288897ef7e76e0f1ae53a614d3d2d5493c08d030ec57415a08338c7f13fd26b2945559501047b7db0cdddb26f1f11afc12a20131516930206e793759537020584f3159315137413678205a65592050305443725136205a445020664e20204c49526c36485a787764332036376f67207132636f44466620782065386274207639625634206655202058366162472034426e435772325266374772347467364e70205632654a4f4a692032677045536d7931694e6a2020706e7a30203920394241206d52625a354971693641594b3732682064376b761220ae219ae3234e8f89b81a1eef90866eb3050b25454c220e1930471e867a677e37", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 247057", + "2 | Fee : 559021632414.787795 penumbra", + "3 | Action [1/2] : Output 920830166985.368782 penumbra to", + "3 | Action [2/2] : penumbra19w46qz89v4u9m07k5lmvm8z2…", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid159n4t65ms9hrgdgenw", + "4 | Action [3/4] : w4lth4fya4j25ucj9h3x8y5mktkq24j6zs55yc", + "4 | Action [4/4] : xu", + "5 | Sender Address : Sub-account #25", + "5 | Memo Text [1/5] : 1Qi0 ny7YSp XO1Y1Q7A6x ZeY P0TCrQ6 ZDP", + "5 | Memo Text [2/5] : fN LIRl6HZxwd3 67og q2coDFf x e8bt v", + "5 | Memo Text [3/5] : 9bV4 fU X6abG 4BnCWr2Rf7Gr4tg6Np V2eJ", + "5 | Memo Text [4/5] : OJi 2gpESmy1iNj pnz0 9 9BA mRbZ5Iqi6A", + "5 | Memo Text [5/5] : YK72h d7kv" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 247057", + "2 | Fee : 559021632414.787795 penumbra", + "3 | Action [1/2] : Output 920830166985.368782 penumbra to", + "3 | Action [2/2] : penumbra19w46qz89v4u9m07k5lmvm8z2…", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid159n4t65ms9hrgdgenw", + "4 | Action [3/4] : w4lth4fya4j25ucj9h3x8y5mktkq24j6zs55yc", + "4 | Action [4/4] : xu", + "5 | Sender Address : Sub-account #25", + "5 | Memo Text [1/5] : 1Qi0 ny7YSp XO1Y1Q7A6x ZeY P0TCrQ6 ZDP", + "5 | Memo Text [2/5] : fN LIRl6HZxwd3 67og q2coDFf x e8bt v", + "5 | Memo Text [3/5] : 9bV4 fU X6abG 4BnCWr2Rf7Gr4tg6Np V2eJ", + "5 | Memo Text [4/5] : OJi 2gpESmy1iNj pnz0 9 9BA mRbZ5Iqi6A", + "5 | Memo Text [5/5] : YK72h d7kv" + ] + }, + { + "index": 16, + "blob": "0a8e0182028a010a180a0a08d29cc8faf3e4b2c103120a08b3d4f284a8dc99a00b12220a20f2ccf8a67b8b07791e7dd70dda0a34652a8b1b6a3f013de303d0ae4e788ab1691a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010ab102c20cad020a0a08ccf19494fb8db8d50412210a1f32314c4b374e353636363235794d586b37786642305176746651394e4a44371a8f0170656e756d6272613166746635676e796b74736465616d7166786a616d766d796878706e3533707271706c716b6830343272756765723878756a323578793375347174346b65717976756d7a7364707079663977346573663930346a71797275306571667536386d6e6a36353370347072716c7967727174756533366c70333867386864677378397464346d686d7522520a5089783002184b21587458312f5296e9cd9db83f69cb8a6e9c61392376699d90d55f01f610916cf87f9940aed34e99cc1c3194b20699791d15da82a63675966a900a5926383387a2e50fb275cd315836212a0b08a7dd97e70210e4caf0063a096368616e6e656c2d300a27b203240a220a20c40658d031e938fb1c3fc8b99309ede6f54ce2ea918d4efbd8872ae9e5e16ebe123a122a7377797670697767656b6c2d3834303435363938393838353439313033313233303739313436363231381a0c0a0a08bdc9aff8e7aef086072aa7010a82010a520a50f59b1813bcd58372ac2ab91782d811d492fc000b49d457cfaa126dbe51da81068b6971cb656a36dc9b62cc11c268698d16578b05f239cd141866f4319d4f97111ee81b9868c231d27dff9ec7fdd0b7b1122c20597352364833442036733020775a6820646471302039694e6e684c76772054436b38335a764138706a37341220f89ed212d4496f4d64f2ec75bdc535e1609b363fcc7c23573cc34041502ef62e", + "output": [ + "0 | Chain ID [1/2] : swyvpiwgekl-84045698988549103123079146", + "0 | Chain ID [2/2] : 6218", + "1 | Fee [1/3] : 508275047644521661 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : PositionWithdraw", + "2 | Action [2/4] : Position ID plpid17tx03fnm3vrhj8na6uxa", + "2 | Action [3/4] : 5z35v54gkxm28uqnmccr6zhyu7y2k95sg0kna2", + "2 | Action [4/4] : Sequence number 1", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 336327892533590220 passet1f3rmu", + "3 | Action [4/9] : q3lczyxjg8rhzwvyhy3ssjwefd9xsvsszx4s38", + "3 | Action [5/9] : zdd5c4yxs949ees", + "3 | Action [6/9] : To penumbra1ftf5gnyktsdeamqfxjamvmyhxp", + "3 | Action [7/9] : n53prqplqkh042ruger8xuj25xy3u4qt4keqyv", + "3 | Action [8/9] : umzsdppyf9w4esf904jqyru0eqfu68mnj653p4", + "3 | Action [9/9] : prqlygrqtue36lp38g8hdgsx9td4mhmu", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid1csr935p3ayu0k8plez", + "4 | Action [3/4] : uexz0dum65ech2jxx5a77csu4wne0pd6lqlufj", + "4 | Action [4/4] : gm", + "5 | Sender Address : penumbra17kd3syau6kph9tp2hytc9kq3…", + "5 | Memo Text [1/2] : YsR6H3D 6s0 wZh ddq0 9iNnhLvw TCk83Zv", + "5 | Memo Text [2/2] : A8pj74" + ], + "output_expert": [ + "0 | Chain ID [1/2] : swyvpiwgekl-84045698988549103123079146", + "0 | Chain ID [2/2] : 6218", + "1 | Fee [1/3] : 508275047644521661 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : PositionWithdraw", + "2 | Action [2/4] : Position ID plpid17tx03fnm3vrhj8na6uxa", + "2 | Action [3/4] : 5z35v54gkxm28uqnmccr6zhyu7y2k95sg0kna2", + "2 | Action [4/4] : Sequence number 1", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 336327892533590220 passet1f3rmu", + "3 | Action [4/9] : q3lczyxjg8rhzwvyhy3ssjwefd9xsvsszx4s38", + "3 | Action [5/9] : zdd5c4yxs949ees", + "3 | Action [6/9] : To penumbra1ftf5gnyktsdeamqfxjamvmyhxp", + "3 | Action [7/9] : n53prqplqkh042ruger8xuj25xy3u4qt4keqyv", + "3 | Action [8/9] : umzsdppyf9w4esf904jqyru0eqfu68mnj653p4", + "3 | Action [9/9] : prqlygrqtue36lp38g8hdgsx9td4mhmu", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid1csr935p3ayu0k8plez", + "4 | Action [3/4] : uexz0dum65ech2jxx5a77csu4wne0pd6lqlufj", + "4 | Action [4/4] : gm", + "5 | Sender Address : penumbra17kd3syau6kph9tp2hytc9kq3…", + "5 | Memo Text [1/2] : YsR6H3D 6s0 wZh ddq0 9iNnhLvw TCk83Zv", + "5 | Memo Text [2/2] : A8pj74" + ] + }, + { + "index": 17, + "blob": "0a47ca02440a220a204f2ea10aeddb56a1a8c2fdc5284b9c7a04043abf24315e3e406b6c13d871e9e51a0a08d5f990c2b2c3bc930c220a08f4c0e1acd8bdd9a7032a0608f33210f3320a35a203320a300a0a0895a2dacd99d7e3dc0412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a9201ba038e010a220a20af0a345423703fcf2279eabf6e4e4db4de15d311571f59783d50b615b60ce72310eed8ca86011a300a0a0897bee787bafecee00612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a089eeab7d7a3c294a00312220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a9102128e020a300a0a08c0d9f5e9878ad0c30c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a509f7cb6b6db63726af5cc7f79be784cf330ca30585770dbe110312dfcfc0a81b312bec40edc4efe7c974b8b4c992a98526eaffdb3dc45b5935e425e9abc5c49aac173c6d1249031ee257a137e2f945afe1a20af1cb4fecb6a6b2b4089079c74251575eee5e44965218e2eed340f9d2bc73b6d22206ce1986239b36c1cec09745a82823140ff40ed97597e35456f3c3d92dc918c042a203d827e9f19152702887839e65d458d5bde818995ae31ad9c2bd5f66e2e51cb0a32208455fb90180cdf84fe41bf08cde743872f939e2adc9d9aa98c62745454755512121e08f2e436120a70656e756d6272612d311a0c0a0a08eadfa5b3be8594ac022adc030ab7030a520a50f9c831273d437ca4131d21d1e35ae1b233a0822d8567c40d38f65d2f970386b46654cedaa07aecf4ba443575c2c1d8ac95fc67a8b6c373af2409a73e5fd05e5b82b7df88fca080d3d9968309626a845712e0024d6620202036777564362036502030524c6145344650323856796938642054714120417a484a206c3120204c396365754550735435772059642048704b20367a41753361585543492065563939383731553434207236334f6f68616e6377777a2072484e577243562038463566656b71203446557a63206b20617a206b4a4e364b522035505a206833526951543777437a3932746320205236206e20204b48397677576f3138204b38206f42387a7857667620475020653533207748647768303620362059376338566a202062787335482038784d58424964664720796270756b446e5a4c394b35206e625678555259203479534338724438594332315830524e393034206941664d3879674331484679203278722030466f67523479302068207454204250766e204969693720635820204d324e38624974412020344636352030203920206b6a3720576930586220624b59742034487533204420514b4c201220889d16d11b8e9fffde1084d18c26438ef1998924b9fc4cf4eb115d4ce09a0b11", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 897650", + "2 | Fee : 168973135505.879018 penumbra", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1fuh2zzhdmdt2r2xzlhz", + "3 | Action [3/10] : jsjuu0gzqgw4lysc4u0jqddkp8kr3a8jseycn4", + "3 | Action [4/10] : a", + "3 | Action [5/10] : Input 238521376096936052 passet15szu57", + "3 | Action [6/10] : jjqcv8xaqd9n43qlflsl8xya9fsrs2chf9ypfr", + "3 | Action [7/10] : n3uxsqgqjvwk04", + "3 | Action [8/10] : Output 875653376023739605 passet1r5v04", + "3 | Action [9/10] : 26rcj7mzxnf86cx5nt04ncn7azamkr8v0hw54r", + "3 | Action [10/10] : 6yw83p5rslk02fx", + "4 | Action [1/7] : DutchAuctionWithdraw", + "4 | Action [2/7] : Auction ID: pauctid14u9rg4prwqlu7gnea2", + "4 | Action [3/7] : lkunjdkn0pt5c32u04j7pa2zmptdsvuu3sh7va", + "4 | Action [4/7] : qd", + "4 | Action [5/7] : Unsold: 486736152296.546071 penumbra", + "4 | Action [6/7] : Proceeds: 234277418874.828062 penumbra", + "4 | Action [7/7] : Sequence number: 282242158", + "5 | Action [1/2] : Output 902760964753.812672 penumbra to", + "5 | Action [2/2] : Sub-account #46", + "6 | Sender Address : Sub-account #20", + "6 | Memo Text [1/10] : Mf 6wud6 6P 0RLaE4FP28Vyi8d TqA AzHJ", + "6 | Memo Text [2/10] : l1 L9ceuEPsT5w Yd HpK 6zAu3aXUCI eV9", + "6 | Memo Text [3/10] : 9871U44 r63Oohancwwz rHNWrCV 8F5fekq 4", + "6 | Memo Text [4/10] : FUzc k az kJN6KR 5PZ h3RiQT7wCz92tc R", + "6 | Memo Text [5/10] : 6 n KH9vwWo18 K8 oB8zxWfv GP e53 wHdw", + "6 | Memo Text [6/10] : h06 6 Y7c8Vj bxs5H 8xMXBIdfG ybpukDnZ", + "6 | Memo Text [7/10] : L9K5 nbVxURY 4ySC8rD8YC21X0RN904 iAfM8", + "6 | Memo Text [8/10] : ygC1HFy 2xr 0FogR4y0 h tT BPvn Iii7 cX", + "6 | Memo Text [9/10] : M2N8bItA 4F65 0 9 kj7 Wi0Xb bKYt 4", + "6 | Memo Text [10/10] : Hu3 D QKL " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 897650", + "2 | Fee : 168973135505.879018 penumbra", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1fuh2zzhdmdt2r2xzlhz", + "3 | Action [3/10] : jsjuu0gzqgw4lysc4u0jqddkp8kr3a8jseycn4", + "3 | Action [4/10] : a", + "3 | Action [5/10] : Input 238521376096936052 passet15szu57", + "3 | Action [6/10] : jjqcv8xaqd9n43qlflsl8xya9fsrs2chf9ypfr", + "3 | Action [7/10] : n3uxsqgqjvwk04", + "3 | Action [8/10] : Output 875653376023739605 passet1r5v04", + "3 | Action [9/10] : 26rcj7mzxnf86cx5nt04ncn7azamkr8v0hw54r", + "3 | Action [10/10] : 6yw83p5rslk02fx", + "4 | Action [1/7] : DutchAuctionWithdraw", + "4 | Action [2/7] : Auction ID: pauctid14u9rg4prwqlu7gnea2", + "4 | Action [3/7] : lkunjdkn0pt5c32u04j7pa2zmptdsvuu3sh7va", + "4 | Action [4/7] : qd", + "4 | Action [5/7] : Unsold: 486736152296.546071 penumbra", + "4 | Action [6/7] : Proceeds: 234277418874.828062 penumbra", + "4 | Action [7/7] : Sequence number: 282242158", + "5 | Action [1/2] : Output 902760964753.812672 penumbra to", + "5 | Action [2/2] : Sub-account #46", + "6 | Sender Address : Sub-account #20", + "6 | Memo Text [1/10] : Mf 6wud6 6P 0RLaE4FP28Vyi8d TqA AzHJ", + "6 | Memo Text [2/10] : l1 L9ceuEPsT5w Yd HpK 6zAu3aXUCI eV9", + "6 | Memo Text [3/10] : 9871U44 r63Oohancwwz rHNWrCV 8F5fekq 4", + "6 | Memo Text [4/10] : FUzc k az kJN6KR 5PZ h3RiQT7wCz92tc R", + "6 | Memo Text [5/10] : 6 n KH9vwWo18 K8 oB8zxWfv GP e53 wHdw", + "6 | Memo Text [6/10] : h06 6 Y7c8Vj bxs5H 8xMXBIdfG ybpukDnZ", + "6 | Memo Text [7/10] : L9K5 nbVxURY 4ySC8rD8YC21X0RN904 iAfM8", + "6 | Memo Text [8/10] : ygC1HFy 2xr 0FogR4y0 h tT BPvn Iii7 cX", + "6 | Memo Text [9/10] : M2N8bItA 4F65 0 9 kj7 Wi0Xb bKYt 4", + "6 | Memo Text [10/10] : Hu3 D QKL " + ] + }, + { + "index": 18, + "blob": "0a8e0182028a010a180a0a088ce28e93a98a97a703120a08f88981e0ed8af9aa0112220a203910cc51f31a263952934e09f8b0dc0319eed1a846bf43271a1afee65794c5ae1a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010ac101d202bd010a220a20a1aca8598f0a46aab9e17cb54e21c3c4283ca513f33ce10e0b6d31821fdbc30322220a2000000000000000000000000000000000fd97f62b6ae7d566cf41f212d77318fd2a0a0891e3f4b8f4a4c0da0232207c890e1fdca7781104882d583ea863b1307e1692471f4f4051d900721e5892033a2094fbcf147f78d9b40441aa82079bfc5ca908254a88261896899559db921a8d054220a2833728e22c838993ef2c265e0f547826d4bdc95eb43b6b0452792fcbeccd0648c7670a35a203320a300a0a08c2dee78782a7a6e80912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10123e08c7940b122a697463747a75747572646267656d6377627a2d32373230383130303239373036343635373539313533351a0c0a0a0891a0dbd18ab184f601", + "output": [ + "0 | Chain ID [1/2] : itctzuturdbgemcwbz-2720810029706465759", + "0 | Chain ID [2/2] : 1535", + "1 | Expiry Height : 182855", + "2 | Fee [1/3] : 138504967210586129 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid18ygvc50nrgnrj55nfcyl", + "3 | Action [3/4] : 3vxuqvv7a5dgg6l5xfc6rtlwv4u5ckhqjtpku4", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/4] : UndelegateClaim", + "4 | Action [2/4] : Value 195063427068932497 passet1rqrh56", + "4 | Action [3/4] : yul4xh3770y2vduq9cwwarrrzww7jgctqkw80c", + "4 | Action [4/4] : vmmw95qsflpst4" + ], + "output_expert": [ + "0 | Chain ID [1/2] : itctzuturdbgemcwbz-2720810029706465759", + "0 | Chain ID [2/2] : 1535", + "1 | Expiry Height : 182855", + "2 | Fee [1/3] : 138504967210586129 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid18ygvc50nrgnrj55nfcyl", + "3 | Action [3/4] : 3vxuqvv7a5dgg6l5xfc6rtlwv4u5ckhqjtpku4", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/4] : UndelegateClaim", + "4 | Action [2/4] : Value 195063427068932497 passet1rqrh56", + "4 | Action [3/4] : yul4xh3770y2vduq9cwwarrrzww7jgctqkw80c", + "4 | Action [4/4] : vmmw95qsflpst4" + ] + }, + { + "index": 19, + "blob": "0ac101d202bd010a220a206c9963a7ee73071612e26f610a53c5ba07410678896b1cb9bd8e9740a2abcd9422220a2000000000000000000000000000000000fe631f8a0902de00d1b71758e219652c2a0a088d80e3b397d5b3970a32208ffdd3bcf70f7d8cc1931177acdf91a905ed43a97cc0bd61e7c13feddd5d17013a207e01f6ba81e2ca693a78ce4541c5ff23cddc9e74f94e746b46eb0e1dff8535124220966b02c0a4195b580fcf42528fbf1ebefe26601d42f20aac326a9c019639551248d1420a35a203320a300a0a08f9eeb284aaf9f5ab0c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100aad02c20ca9020a0a0891badbc1b3b4a09e0b121c0a1a5650314c7a4863494364443332484862646a73633130784332781a8f0170656e756d627261313576386a336475757979376b6c736e6e7734676a796e6e7a39376874617a6a733034396667646a356833796e72376b6e676a37796d6b32716c346d763374733839653674306661687974366b6e38373377756e346a736e6b656768716a7a667275676c6e303368656e386770353066306c396165656332647170347a6c65713976616b35336e22520a5062a753ae79227d5ddea73f802a0fdcd6d36558daee497f63cacbbd436dad2ebab88ad92abcee2da73c384b2b4c82a6e10f48111460bf00f89672a0b4ec60efd2c77157d5e8584460393c761682b0e2cc2a0c0886bce291011098b1a7a6013a096368616e6e656c2d30122c0890940c12186b74652d30373139373435313134303639363035323839311a0c0a0a08aa8ec0bffabd958607", + "output": [ + "0 | Chain ID : kte-07197451140696052891", + "1 | Expiry Height : 199184", + "2 | Fee [1/3] : 507875345789093674 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 733751016540389389 passet1yuf6m6", + "3 | Action [3/4] : fp60yheg88wjdjgh2k8pfysup236k8hf7g59n7", + "3 | Action [4/4] : 7hekdqrs8zl8pm", + "4 | Action [1/12] : ICS20Withdrawal", + "4 | Action [2/12] : Channel channel-0", + "4 | Action [3/12] : Amount 809664571042618641 passet1p3n5k", + "4 | Action [4/12] : aa4xkalfqd3ushrgg3axkauk82zt4kjy4607al", + "4 | Action [5/12] : y60humqxsxtsptk", + "4 | Action [6/12] : To penumbra15v8j3duuyy7klsnnw4gjynnz97", + "4 | Action [7/12] : htazjs049fgdj5h3ynr7kngj7ymk2ql4mv3ts8", + "4 | Action [8/12] : 9e6t0fahyt6kn873wun4jsnkeghqjzfrugln03", + "4 | Action [9/12] : hen8gp50f0l9aeec2dqp4zleq9vak53n", + "4 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "4 | Action [12/12] : l not controlled by user)" + ], + "output_expert": [ + "0 | Chain ID : kte-07197451140696052891", + "1 | Expiry Height : 199184", + "2 | Fee [1/3] : 507875345789093674 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 733751016540389389 passet1yuf6m6", + "3 | Action [3/4] : fp60yheg88wjdjgh2k8pfysup236k8hf7g59n7", + "3 | Action [4/4] : 7hekdqrs8zl8pm", + "4 | Action [1/12] : ICS20Withdrawal", + "4 | Action [2/12] : Channel channel-0", + "4 | Action [3/12] : Amount 809664571042618641 passet1p3n5k", + "4 | Action [4/12] : aa4xkalfqd3ushrgg3axkauk82zt4kjy4607al", + "4 | Action [5/12] : y60humqxsxtsptk", + "4 | Action [6/12] : To penumbra15v8j3duuyy7klsnnw4gjynnz97", + "4 | Action [7/12] : htazjs049fgdj5h3ynr7kngj7ymk2ql4mv3ts8", + "4 | Action [8/12] : 9e6t0fahyt6kn873wun4jsnkeghqjzfrugln03", + "4 | Action [9/12] : hen8gp50f0l9aeec2dqp4zleq9vak53n", + "4 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "4 | Action [12/12] : l not controlled by user)" + ] + }, + { + "index": 20, + "blob": "0a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab30108fdebc8e605120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08faa0e73e1087b3c7af0340f0d997e98ce584871812020a001a0b08faa0e73e1087b3c7af03228f0170656e756d6272613170396365396861657271776830637175326b35396b736b6c747a33766a726a6c6b637676306474363071687975706d3472326532357a39686e63343878773478706c366771726b70766a776c327865376b6d647a68663636303772657867707635336766637077307363796673387565797a6c7038776e77767161327879666e6a636a3339390aae01f201aa010aa7010a640a18120a08b7f5e6a59b9e8f9f071a0a08d08cdaf7c79ef3c40a12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222170a0908e3efbca495b4961a120a08f98cb98f888e90cb0328010aaf01f201ab010aa8010a640a18120a08e2cba8f9d4eeefd10d1a0a08c5a3ebd8dff1e4960712480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a08adbff8c7eed9afcd02120a08c0d3a988b9aaf6ef0c28010abb01a201b7010a7108f48ec2f901120208031a220a2086cc903cf80ba8009152830c23e5b99a46968d80138e3b4a8ef20cde87f03fbe22220a20ec67dd3947c8269f68610c5f5f3e3c77a50d26465e7e925bbb8198f46cdc1c0f2a1d0a1b4b613158453173486d3852327979695734544874684c4d6f36384d12420a40f2e695c47a40b4a08922510f394c5fbaed4bedcdbf8510fbd1f0a6588e82c00959d22cb47efa8c8a15b280020cd09e5545d7d6815dbff53cb55e78164dd36803121a120a70656e756d6272612d311a0c0a0a08d1fe96c1e1818b8f07", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 512895846613.106513 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 14735248232.232931 penumbr", + "2 | Action [3/9] : a", + "2 | Action [4/9] : Reserves 2: 258464880580.773497 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 521921615638411959", + "2 | Action [7/9] : Trading Function q: 759363362662811216", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true", + "3 | Action [1/9] : PositionOpen", + "3 | Action [2/9] : Reserves 1: 187672130370.805677 penumb", + "3 | Action [3/9] : ra", + "3 | Action [4/9] : Reserves 2: 927699001200.503232 penumb", + "3 | Action [5/9] : ra", + "3 | Action [6/9] : Trading Function p: 982839654257141218", + "3 | Action [7/9] : Trading Function q: 517231770229985733", + "3 | Action [8/9] : Fee: 0", + "3 | Action [9/9] : Close on fill: true" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 512895846613.106513 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 14735248232.232931 penumbr", + "2 | Action [3/9] : a", + "2 | Action [4/9] : Reserves 2: 258464880580.773497 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 521921615638411959", + "2 | Action [7/9] : Trading Function q: 759363362662811216", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true", + "3 | Action [1/9] : PositionOpen", + "3 | Action [2/9] : Reserves 1: 187672130370.805677 penumb", + "3 | Action [3/9] : ra", + "3 | Action [4/9] : Reserves 2: 927699001200.503232 penumb", + "3 | Action [5/9] : ra", + "3 | Action [6/9] : Trading Function p: 982839654257141218", + "3 | Action [7/9] : Trading Function q: 517231770229985733", + "3 | Action [8/9] : Fee: 0", + "3 | Action [9/9] : Close on fill: true" + ] + }, + { + "index": 21, + "blob": "0a099a010608a4b2df8a030ac4018201c0010a7c0a220a2086ccc2aac0e4b41dbab7f880699bdcf976497c7041141613f1de79e17ab5cb011220847cdc927266b31919404c9666c598ca186bd03ff91200b7ae8a995d422cbf2e1a0e746573742076616c696461746f7240014a220a2086ccc2aac0e4b41dbab7f880699bdcf976497c7041141613f1de79e17ab5cb0112401080cba5fc5c42591e5f01917d54b258418483d025f796f51766956963d17e0fa57692a970da64aa5d57b5d2bbdfb2f6e93ffc25862fb4a246793eef42f02d030a35a203320a300a0a088a9fe6b09ed0f8c90112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122712176c716c6668737a2d3739393838303937353430313936331a0c0a0a08f681c9fc8bb8fcef09", + "output": [ + "0 | Chain ID : lqlfhsz-799880975401963", + "1 | Fee [1/3] : 711553076297875702 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : lqlfhsz-799880975401963", + "1 | Fee [1/3] : 711553076297875702 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm" + ] + }, + { + "index": 22, + "blob": "0a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08d296c2a9eda0d6d00b22020a002a520a50e3b2e96328c02faa0fa147048ddd4afe3e2dab08839072231daf778e07d7560170c88e9e2b8ee2e824fad588581c3ebe43126d762b631dc18be5c3477ad1b638fc2a6dbf01f725296c5de28bc8351dd8322088ccbd0368b79c61016d1ed69ec96f6a385e4c38a7b12638fc8e69c52ba231be1a6e0a0608fdcfb2a402120608ade6aec7061a0308b805220308e60a2a0308a701320308f10842480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20c943a67ccc7e9018314546dc9dd391b029d74f4ec64d8584a57e0bb19b22b70432207302ff5afdc2f43c3f07e6692782d884f8ac25b4046bddbced18cc5539ba3d050abb01a201b7010a7108b5c590fa02120208021a220a20a45576049dc4c702897a0811720a1f4ed547273aebccd2e5037789bae98b9b2d22220a2032c6702b2987876c786a9848e24547172dc061fd247b890f6191e8eb39f9a4042a1d0a1b4a7636454f377248553369736f32353636393769333838324f383212420a40f802433711a147b95d8221fbdeb712ab1718972b8699fdcc3283ca7ddb7f490ecb0d94e9d3705e21426969f03b302a537476597dba06e48aef6145b496ee83040a42c2023f0a220a2045fd6810dc325d5f278af0e698c9b1dd97b955eb3d8ce1abdd452c4870255a2f10ac431a0a08a5f3e2becb81dabf0d220a08e7e68580d1eac4b00c0a8e0182028a010a180a0a0896a5e4a2859ab8df07120a08d19bf388d0c8dfca0112220a20425e973edbad4f3cbfd8d60fe5d932cccb9112e6a6108b05b69961125347e1371a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020011222121269726b62686d666e696a2d323031373438391a0c0a0a08afe3bcb7d3878ad0012a97020af2010a520a50f7638c2da66674f059ea6b96c3221fdec046b5a2e3a37404918e2292031a9eaf6ce933b7417dcd314690efdf713f74ad40c535e6999ba534f8855ff4e174b4974ae176b1d9aa81a409e6013e443d81d9129b017957337a38387931332041206c532071346a473777384d38204b48424b202078632063495320206834203758616762435a4a6d507a307a505456353020426f486b4f4c34586146464b36684f2073386d666c366c374f6a57763146364a61495145662062203551522020794239544268354d7337787a6d202077674f20303659336d347930506d75472036484b42785620207236665520204a7520122086ed96b697e8e5be839b0fea00c4556f1175cf9c0b12a3f0af4ecb12b7b79c93", + "output": [ + "0 | Chain ID : irkbhmfnij-2017489", + "1 | Fee [1/3] : 117137833691394479 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/6] : Delegate", + "2 | Action [2/6] : To penumbravalid1gh7ksyxuxfw47fu27rnf3", + "2 | Action [3/6] : jd3mktmj40t8kxwr27ag5kysup9tghs5ru0g7", + "2 | Action [4/6] : Input 972610448368646565 passet1984fct", + "2 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [6/6] : yt9fdggqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1gf0fw0km448ne07c6c87", + "3 | Action [3/4] : tkfjen9ezyhx5cggkpdkn9s3y568uymsq8jhcq", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : Sub-account #23", + "4 | Memo Text [1/5] : yW3z88y13 A lS q4jG7w8M8 KHBK xc cIS ", + "4 | Memo Text [2/5] : h4 7XagbCZJmPz0zPTV50 BoHkOL4XaFFK6hO", + "4 | Memo Text [3/5] : s8mfl6l7OjWv1F6JaIQEf b 5QR yB9TBh5M", + "4 | Memo Text [4/5] : s7xzm wgO 06Y3m4y0PmuG 6HKBxV r6fU ", + "4 | Memo Text [5/5] : Ju " + ], + "output_expert": [ + "0 | Chain ID : irkbhmfnij-2017489", + "1 | Fee [1/3] : 117137833691394479 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/6] : Delegate", + "2 | Action [2/6] : To penumbravalid1gh7ksyxuxfw47fu27rnf3", + "2 | Action [3/6] : jd3mktmj40t8kxwr27ag5kysup9tghs5ru0g7", + "2 | Action [4/6] : Input 972610448368646565 passet1984fct", + "2 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [6/6] : yt9fdggqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1gf0fw0km448ne07c6c87", + "3 | Action [3/4] : tkfjen9ezyhx5cggkpdkn9s3y568uymsq8jhcq", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : Sub-account #23", + "4 | Memo Text [1/5] : yW3z88y13 A lS q4jG7w8M8 KHBK xc cIS ", + "4 | Memo Text [2/5] : h4 7XagbCZJmPz0zPTV50 BoHkOL4XaFFK6hO", + "4 | Memo Text [3/5] : s8mfl6l7OjWv1F6JaIQEf b 5QR yB9TBh5M", + "4 | Memo Text [4/5] : s7xzm wgO 06Y3m4y0PmuG 6HKBxV r6fU ", + "4 | Memo Text [5/5] : Ju " + ] + }, + { + "index": 23, + "blob": "0aa402c20ca0020a0a08b8b686cdc2a588850b12130a11434e6d6a736f465232444d757351614b631a8f0170656e756d62726131327a73667979666e3875757771373677777267646e6b37346e617666637778767464766d6d6e76666535636b766d38706c6d3763366a6a6e67673675766c6b656d786570636a7479636c387a776e396c707a737978646b6e6d6b7778386a68643533386d68363274716a346b74777372736d6d766a3335766d6b3370666d6b3675356768347422520a508a06299e3dfe8b89c4acc8c222814b63104e2a0ba666e3ba6bdd8ac7b5e109ac543a74512cb5522a13dc8629dc7a67c80b1dbd04895b56298eeffb27fbed6277aa666db9992f0d4414954e850cd018672a0c0890d1a7e00110b69bd8fa023a096368616e6e656c2d300a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08d0e681d28ed38d9c0822020a002a520a5001435cee834921c2a27a27d3edf273a665577aaf052f69a43523e77184fccc4024b7d3f8b7eea3c98cd456d6dfaf19ff3763a46def4aec2de24194a2e7704a936d6544afc66adc8640190fdd85e36f0a322085c0eccb46cfb5639eed517c66994101818c016074d49aba9df9c34bc0a26c551a6e0a0608e0d1abbc02120608e6e1e4d6011a0308d60e220308910c2a0308b90d320308c30b42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a2044599aef0dad7582c0bfdd7d5cfff5bd16522a596325c84c6db6f061d37b5d0a3220396b7cbe9bd73c802094e2f45b5e1a963ed91f5a9445a1f5d1017dd185aa380a121a120a70656e756d6272612d311a0c0a0a08dfb4f9fed2fcc4ab0a2aec030ac7030a520a50258712f9275bc782a81354d645d4c2dfaefcd832f8a28b65e8b9264c5275da397989a8f9c6c4da9d69a2a262d22f41571863d3fd94d9ec1577237c3ad020fbbafa57ea8075f0249afb6db82ac0384c2712f00238204243204b634935726b4f204a7a55204b4257706c52534357762048474b2031203856327149376e35683273386e20364e662063644d56794a7a203136343676393920207520552073206a304a31382036335a5520536c2031543553202079307020473334454b30643647504820355739313465383878506c3835202020315078705743785135702036715a322044574f6e20673420386e714a31634a3657305659366d5a34486f207562523977684d6776354566613130324d3351662071736f774f205137303865205238202067385a74746a6c39202049746a3038666438204f36356e38564c49204a36204c43775069394a78593654713066203855586672393220683520313420544c30204520796d354535205131424a34654576206e38206d43617166203620206d53694b37626c4d5544574a433676554968307875704f63676d20207052704d206e4467695520204132364d6e6a375620624e4e3147784b206b7349305770203167446f1220182301287868b2fb129cfa9bc8d7646ea2dde8a973381db66efb1b44739de687", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 745086138424.646239 penumbra", + "2 | Action [1/9] : ICS20Withdrawal", + "2 | Action [2/9] : Channel channel-0", + "2 | Action [3/9] : Amount 795484757745048376 passet177hng", + "2 | Action [4/9] : hchtp75wyj2hqgrlafgju9ukpywve8f9d9tn6y", + "2 | Action [5/9] : n8w9z0q8sw4dez4", + "2 | Action [6/9] : To penumbra12zsfyyfn8uuwq76wwrgdnk74na", + "2 | Action [7/9] : vfcwxvtdvmmnvfe5ckvm8plm7c6jjngg6uvlke", + "2 | Action [8/9] : mxepcjtycl8zwn9lpzsyxdknmkwx8jhd538mh6", + "2 | Action [9/9] : 2tqj4ktwsrsmmvj35vmk3pfmk6u5gh4t", + "3 | Sender Address : penumbra1ykr397f8t0rc92qn2ntyt4xz…", + "3 | Memo Text [1/10] : 8 BC KcI5rkO JzU KBWplRSCWv HGK 1 8V2q", + "3 | Memo Text [2/10] : I7n5h2s8n 6Nf cdMVyJz 1646v99 u U s j", + "3 | Memo Text [3/10] : 0J18 63ZU Sl 1T5S y0p G34EK0d6GPH 5W9", + "3 | Memo Text [4/10] : 14e88xPl85 1PxpWCxQ5p 6qZ2 DWOn g4 8", + "3 | Memo Text [5/10] : nqJ1cJ6W0VY6mZ4Ho ubR9whMgv5Efa102M3Qf", + "3 | Memo Text [6/10] : qsowO Q708e R8 g8Zttjl9 Itj08fd8 O6", + "3 | Memo Text [7/10] : 5n8VLI J6 LCwPi9JxY6Tq0f 8UXfr92 h5 14", + "3 | Memo Text [8/10] : TL0 E ym5E5 Q1BJ4eEv n8 mCaqf 6 mSiK", + "3 | Memo Text [9/10] : 7blMUDWJC6vUIh0xupOcgm pRpM nDgiU A2", + "3 | Memo Text [10/10] : 6Mnj7V bNN1GxK ksI0Wp 1gDo" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 745086138424.646239 penumbra", + "2 | Action [1/9] : ICS20Withdrawal", + "2 | Action [2/9] : Channel channel-0", + "2 | Action [3/9] : Amount 795484757745048376 passet177hng", + "2 | Action [4/9] : hchtp75wyj2hqgrlafgju9ukpywve8f9d9tn6y", + "2 | Action [5/9] : n8w9z0q8sw4dez4", + "2 | Action [6/9] : To penumbra12zsfyyfn8uuwq76wwrgdnk74na", + "2 | Action [7/9] : vfcwxvtdvmmnvfe5ckvm8plm7c6jjngg6uvlke", + "2 | Action [8/9] : mxepcjtycl8zwn9lpzsyxdknmkwx8jhd538mh6", + "2 | Action [9/9] : 2tqj4ktwsrsmmvj35vmk3pfmk6u5gh4t", + "3 | Sender Address : penumbra1ykr397f8t0rc92qn2ntyt4xz…", + "3 | Memo Text [1/10] : 8 BC KcI5rkO JzU KBWplRSCWv HGK 1 8V2q", + "3 | Memo Text [2/10] : I7n5h2s8n 6Nf cdMVyJz 1646v99 u U s j", + "3 | Memo Text [3/10] : 0J18 63ZU Sl 1T5S y0p G34EK0d6GPH 5W9", + "3 | Memo Text [4/10] : 14e88xPl85 1PxpWCxQ5p 6qZ2 DWOn g4 8", + "3 | Memo Text [5/10] : nqJ1cJ6W0VY6mZ4Ho ubR9whMgv5Efa102M3Qf", + "3 | Memo Text [6/10] : qsowO Q708e R8 g8Zttjl9 Itj08fd8 O6", + "3 | Memo Text [7/10] : 5n8VLI J6 LCwPi9JxY6Tq0f 8UXfr92 h5 14", + "3 | Memo Text [8/10] : TL0 E ym5E5 Q1BJ4eEv n8 mCaqf 6 mSiK", + "3 | Memo Text [9/10] : 7blMUDWJC6vUIh0xupOcgm pRpM nDgiU A2", + "3 | Memo Text [10/10] : 6Mnj7V bNN1GxK ksI0Wp 1gDo" + ] + }, + { + "index": 24, + "blob": "0a27fa01240a220a20edc47b7f4f98a093f10524ceafe54ebdca2a7bdc0687e62d99fd947b7620ecd90a98032295030adc010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08ae84dffdff98c3ab021a0a08fce6a8c383b8eb950222020a002a520a50c9a4d22afc7399a47f77bc2041ef5b8238127b1bdcc156f5d529903a2e4cb6380cf6adeb579f83296dcf69f3aedad7f98bb85ad0f2b107b93f0826086c0914922ff7c51d936f52348f5a9e8dd0c0b1b7322069f6289d62e05cce06181d5586e40387752756c674e8c2457b7e7cfd9df79da91a6d0a0508b39cc85912060891a7f9c9021a0308b40e220308ba092a0308f808320308c20b42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20eb3ed59a5273f3ab3b4ff8ca62a31fa7a3fcae033b2f407b12e41d7c979e4e073220a1ef2c09241e60a78ea959ca37ea830c682d8700e10beca3e8a57d4918a1f6031219120a70656e756d6272612d311a0b0a0908d598cabca0b7c17e2af8030ad3030a520a503056baed6851e37728c48e9e717aa2baf86d4db0e1854be23803bf2111413ead1b9cf4aebb53d279800f633aaa50b0688815848baf691f71f1a9a5f54754da79220560cf6e18ea903399382a9d468ffa12fc02576c6a433866202075204a2020496b3769504830783973573056786b3957353876314761364430325a4b4b6c364a7778645a3937687720384d525468365520596e3534205477463037764f203659202030204b6720503153206d6e5939336a3438207a696e68205137773478743838363320203445672056385a487234204e32516573633044203836397a2020373033353036796b6138514f462038744978696d2043204b617a203674206d67367a32577220337049396e33424477204d31492051474c54467a6c203371733549394d20534141204444757834204c703620732044683120725972482057702061346b7676356d5520203335706b524e77462033753476544e38744e753037335a207436652058583120593334206271373657572059676b2071205820745a436c20323332706262716a4e4273392038683136304c38767155475a6f415a6f6c367542524b326f20434820393133306e34423720386b78492020207547646877703720754752204e205078304e44561220c1d4c36aa5462afb74ee62d1ab9e2d659e4cbbf080136915d77f307935cf338c", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 71219465656.896597 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1ahz8kl60nzsf8ug9yn82", + "2 | Action [3/3] : le2whh9z577uq6r7vtvelk28ka3qanvsgvzetz", + "3 | Sender Address : penumbra1xptt4mtg283hw2xy3608z74z…", + "3 | Memo Text [1/10] : WljC8f u J Ik7iPH0x9sW0Vxk9W58v1Ga6D", + "3 | Memo Text [2/10] : 02ZKKl6JwxdZ97hw 8MRTh6U Yn54 TwF07vO ", + "3 | Memo Text [3/10] : 6Y 0 Kg P1S mnY93j48 zinh Q7w4xt8863 ", + "3 | Memo Text [4/10] : 4Eg V8ZHr4 N2Qesc0D 869z 703506yka8Q", + "3 | Memo Text [5/10] : OF 8tIxim C Kaz 6t mg6z2Wr 3pI9n3BDw M", + "3 | Memo Text [6/10] : 1I QGLTFzl 3qs5I9M SAA DDux4 Lp6 s Dh1", + "3 | Memo Text [7/10] : rYrH Wp a4kvv5mU 35pkRNwF 3u4vTN8tNu", + "3 | Memo Text [8/10] : 073Z t6e XX1 Y34 bq76WW Ygk q X tZCl 2", + "3 | Memo Text [9/10] : 32pbbqjNBs9 8h160L8vqUGZoAZol6uBRK2o C", + "3 | Memo Text [10/10] : H 9130n4B7 8kxI uGdhwp7 uGR N Px0NDV" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 71219465656.896597 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid1ahz8kl60nzsf8ug9yn82", + "2 | Action [3/3] : le2whh9z577uq6r7vtvelk28ka3qanvsgvzetz", + "3 | Sender Address : penumbra1xptt4mtg283hw2xy3608z74z…", + "3 | Memo Text [1/10] : WljC8f u J Ik7iPH0x9sW0Vxk9W58v1Ga6D", + "3 | Memo Text [2/10] : 02ZKKl6JwxdZ97hw 8MRTh6U Yn54 TwF07vO ", + "3 | Memo Text [3/10] : 6Y 0 Kg P1S mnY93j48 zinh Q7w4xt8863 ", + "3 | Memo Text [4/10] : 4Eg V8ZHr4 N2Qesc0D 869z 703506yka8Q", + "3 | Memo Text [5/10] : OF 8tIxim C Kaz 6t mg6z2Wr 3pI9n3BDw M", + "3 | Memo Text [6/10] : 1I QGLTFzl 3qs5I9M SAA DDux4 Lp6 s Dh1", + "3 | Memo Text [7/10] : rYrH Wp a4kvv5mU 35pkRNwF 3u4vTN8tNu", + "3 | Memo Text [8/10] : 073Z t6e XX1 Y34 bq76WW Ygk q X tZCl 2", + "3 | Memo Text [9/10] : 32pbbqjNBs9 8h160L8vqUGZoAZol6uBRK2o C", + "3 | Memo Text [10/10] : H 9130n4B7 8kxI uGdhwp7 uGR N Px0NDV" + ] + }, + { + "index": 25, + "blob": "0a099a010608e7b3f594030aa801aa03a4010aa1010a300a0a08bdd197e3d98daac20112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a088fe2efe8a2bbb9d601220a08ab909cb5c2d49c870c28b9c9c9d60130bac9c9d6013883f9ee704220915af5ed3f8468a0f76504009cf6ff6861aa64784f6a9eb9dc775f15cba511a50ac201d202be010a220a20b0e49ed362b56601c51d1c615d97f7607eb8ee9f44326618368c557b768955b422220a2000000000000000000000000000000000ffd21ff2e48e8a71de69ad42c3c9eecc2a0a08b1e7bca0ba8a9de30d3220906913ebda556c8e299c22c8b877b20dc2fbe3af174a134482000bd445780c033a2059094499787100f218766638ad9a2983b1237acbf98efd255e4eecfd209f16054220fde0816831ebf2432bffd1bd52c8be5b781c8797340ea8d63e36042abb44e40248f1d805122c121c796d676a6d757a646a7163792d3732383834313937303534353239301a0c0a0a08adc59efab7d19df4052a85020ae0010a520a50be23277c5862eb4f89b6fd340f33f7fa07de2c73a0cc4370b7b714d7c58290fdc133272ed6472d7ce44700a20896351991b0cf074f6235f0b03ccceb364cf0e7114d97873131f4253f9c063ad0810d87128901596b20384f503120663071555a38477a535920203934634a20206220357431352051476c33314e357736632039493020566366356d326532204d5620306f72787520707332372068324a6235207831742020202056484d443952635731694f5845334b2068716e305243205420456a443136665436542052697846494174656f20434f3543416c722012201d58dcee658c6dee8555376a5dfb9bf4018452c958090d4f91c11c09c12bd5fe", + "output": [ + "0 | Chain ID : ymgjmuzdjqcy-728841970545290", + "1 | Fee [1/3] : 425720506294444717 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/19] : DutchAuctionSchedule", + "2 | Action [2/19] : Selling: 109397479692560573 passet1984", + "2 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "2 | Action [4/19] : 08nyt9fdggqxmanqm", + "2 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "2 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [7/19] : Starting price: 120724015254597903 pas", + "2 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "2 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 109397479", + "2 | Action [10/19] : 692560573 passet1984fctenw8m2fpl8a9wzg", + "2 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [12/19] : Ending price: 868757827477768235 passe", + "2 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [14/19] : uhft808nyt9fdggqxmanqm for 10939747969", + "2 | Action [15/19] : 2560573 passet1984fctenw8m2fpl8a9wzguz", + "2 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [17/19] : Start block height: 449995961", + "2 | Action [18/19] : End block height: 449995962", + "2 | Action [19/19] : Steps: 236698755", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 992608670465340337 passet1zw2neh", + "3 | Action [3/4] : qkcdeywup5funn2arh8rnrdczcx6xd3mqyd9cs", + "3 | Action [4/4] : hnqs3qpqx20t0z", + "4 | Sender Address : penumbra1hc3jwlzcvt45lzdkl56q7vlh…", + "4 | Memo Text [1/4] : Yk 8OP1 f0qUZ8GzSY 94cJ b 5t15 QGl31", + "4 | Memo Text [2/4] : N5w6c 9I0 Vcf5m2e2 MV 0orxu ps27 h2Jb5", + "4 | Memo Text [3/4] : x1t VHMD9RcW1iOXE3K hqn0RC T EjD16", + "4 | Memo Text [4/4] : fT6T RixFIAteo CO5CAlr " + ], + "output_expert": [ + "0 | Chain ID : ymgjmuzdjqcy-728841970545290", + "1 | Fee [1/3] : 425720506294444717 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/19] : DutchAuctionSchedule", + "2 | Action [2/19] : Selling: 109397479692560573 passet1984", + "2 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "2 | Action [4/19] : 08nyt9fdggqxmanqm", + "2 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "2 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [7/19] : Starting price: 120724015254597903 pas", + "2 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "2 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 109397479", + "2 | Action [10/19] : 692560573 passet1984fctenw8m2fpl8a9wzg", + "2 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [12/19] : Ending price: 868757827477768235 passe", + "2 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [14/19] : uhft808nyt9fdggqxmanqm for 10939747969", + "2 | Action [15/19] : 2560573 passet1984fctenw8m2fpl8a9wzguz", + "2 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "2 | Action [17/19] : Start block height: 449995961", + "2 | Action [18/19] : End block height: 449995962", + "2 | Action [19/19] : Steps: 236698755", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 992608670465340337 passet1zw2neh", + "3 | Action [3/4] : qkcdeywup5funn2arh8rnrdczcx6xd3mqyd9cs", + "3 | Action [4/4] : hnqs3qpqx20t0z", + "4 | Sender Address : penumbra1hc3jwlzcvt45lzdkl56q7vlh…", + "4 | Memo Text [1/4] : Yk 8OP1 f0qUZ8GzSY 94cJ b 5t15 QGl31", + "4 | Memo Text [2/4] : N5w6c 9I0 Vcf5m2e2 MV 0orxu ps27 h2Jb5", + "4 | Memo Text [3/4] : x1t VHMD9RcW1iOXE3K hqn0RC T EjD16", + "4 | Memo Text [4/4] : fT6T RixFIAteo CO5CAlr " + ] + }, + { + "index": 26, + "blob": "0a35a203320a300a0a08e8fbb9e3efdeb8840712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abe020abb020aa8010a300a0a08a2b5e4d3afaeccaa0c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122003abec1009320f2b4970a4a3f03386dd5f36f29b4b347af36d3b1e90a3c24d5f1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f71091abe7d0b2e3161a20d5d98cf29a5b86e08ccf847dd617e0529354e4b3d38c9ac9e11f1b7b6d652e032220e7b24c0f1408f10e8f47dba27fa2e82609eb55d2ffabf88f2164dab0b05940042a20dce622e37c229ec3ea51de778653d004e93fc27a59174a79af8406eb5289330732200c37c83761daa3f0cfab4a406290e68f6ab652a934c787771f6fed38aeb7d610123612267974647a726c622d3738363630373038373234363139343337383439343635343930313831351a0c0a0a08abb4fdf180e0efca0a", + "output": [ + "0 | Chain ID : ytdzrlb-786607087246194378494654901815", + "1 | Fee [1/3] : 762725718869105195 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 888670871373814434 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account" + ], + "output_expert": [ + "0 | Chain ID : ytdzrlb-786607087246194378494654901815", + "1 | Fee [1/3] : 762725718869105195 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 888670871373814434 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account" + ] + }, + { + "index": 27, + "blob": "0a35a203320a300a0a08d1ae97d9d0aec08f0612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100aa701aa03a3010aa0010a300a0a08e1a1e8bd908de0ea0712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a089f8af1ca8586dab403220a08faa3c1d69492ffac0428bd8ab93230be8ab93238c4f7ad870142201d116e8cb007e503fd60f67cc9c0a76edb2f1cdaaf6ca9c7ff11e52f5817b80f0aa102c20c9d020a0a08dcce88eefbd2e1a10c12110a0f64526552636a6953355231576339461a8f0170656e756d627261316739303566797766393467326b6b66333568356363337a7a7a3332716d3970766672377a61616d73613237747776363579796836746763707775636d366137636168356d7938706c6638336c6d36756a347a35646834756b7332346b3373366767326c6e74737235386e666575647238646a766b3672386a356577327971763739776173303622520a502e7ed5b9c080bd0c46c4354f70981b3bc2bd1703f405824d364e80b2c069ffb1b87bb66a6c0e90ad548fdf4b4b435d4b269f61d297f708d9d8ebfa298dcbfd6dba06aacaf39b75ab64c2bdd55e9e83e92a0b088889c1be0310ddeae1523a096368616e6e656c2d300a47ca02440a220a2090d8c96b95929f8d2a50302f6d0e7001acaf4c518a42f1904a712a12215132011a0a08ccdbdbb0f08084c402220a08d6c0e7cf9fcd819f022a06088115108115123e08848225122a6573716772667a67617161772d34373136373137333335363131393339303134363932393234383038311a0c0a0a08dbf9f7cad8a1cbef02", + "output": [ + "0 | Chain ID [1/2] : esqgrfzgaqaw-4716717335611939014692924", + "0 | Chain ID [2/2] : 8081", + "1 | Expiry Height : 606468", + "2 | Fee [1/3] : 206933644044795099 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/19] : DutchAuctionSchedule", + "3 | Action [2/19] : Selling: 564498516894421217 passet1984", + "3 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "3 | Action [4/19] : 08nyt9fdggqxmanqm", + "3 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "3 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [7/19] : Starting price: 245842211535340831 pas", + "3 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "3 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 564498516", + "3 | Action [10/19] : 894421217 passet1984fctenw8m2fpl8a9wzg", + "3 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [12/19] : Ending price: 313559350034584058 passe", + "3 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [14/19] : uhft808nyt9fdggqxmanqm for 56449851689", + "3 | Action [15/19] : 4421217 passet1984fctenw8m2fpl8a9wzguz", + "3 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [17/19] : Start block height: 105792829", + "3 | Action [18/19] : End block height: 105792830", + "3 | Action [19/19] : Steps: 283868100", + "4 | Action [1/9] : ICS20Withdrawal", + "4 | Action [2/9] : Channel channel-0", + "4 | Action [3/9] : Amount 883697938176550748 passet1wzu9n", + "4 | Action [4/9] : wjev93lnfg9v3g55p4ruqpmjy5eqa2ckhkxw2z", + "4 | Action [5/9] : nqgwwzczske5xjt", + "4 | Action [6/9] : To penumbra1g905fywf94g2kkf35h5cc3zzz3", + "4 | Action [7/9] : 2qm9pvfr7zaamsa27twv65yyh6tgcpwucm6a7c", + "4 | Action [8/9] : ah5my8plf83lm6uj4z5dh4uks24k3s6gg2lnts", + "4 | Action [9/9] : r58nfeudr8djvk6r8j5ew2yqv79was06", + "5 | Action [1/10] : Undelegate", + "5 | Action [2/10] : From penumbravalid1jrvvj6u4j20c62jsxqh", + "5 | Action [3/10] : k6rnsqxk27nz33fp0ryz2wy4pyg23xgqsjxzgq", + "5 | Action [4/10] : 2", + "5 | Action [5/10] : Input 161573688867151958 passet12wmes2", + "5 | Action [6/10] : 3qhlqml6vzwmf63yj930amtpu4lctapgz4j78y", + "5 | Action [7/10] : k6np35rs097kaz", + "5 | Action [8/10] : Output 182413407261486540 passet1s8yzn", + "5 | Action [9/10] : 0vha68tydl64t4zkhksxj3fk5r4ud03yz6js5v", + "5 | Action [10/10] : fn7w65vrqr8fjk7" + ], + "output_expert": [ + "0 | Chain ID [1/2] : esqgrfzgaqaw-4716717335611939014692924", + "0 | Chain ID [2/2] : 8081", + "1 | Expiry Height : 606468", + "2 | Fee [1/3] : 206933644044795099 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/19] : DutchAuctionSchedule", + "3 | Action [2/19] : Selling: 564498516894421217 passet1984", + "3 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "3 | Action [4/19] : 08nyt9fdggqxmanqm", + "3 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "3 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [7/19] : Starting price: 245842211535340831 pas", + "3 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "3 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 564498516", + "3 | Action [10/19] : 894421217 passet1984fctenw8m2fpl8a9wzg", + "3 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [12/19] : Ending price: 313559350034584058 passe", + "3 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [14/19] : uhft808nyt9fdggqxmanqm for 56449851689", + "3 | Action [15/19] : 4421217 passet1984fctenw8m2fpl8a9wzguz", + "3 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [17/19] : Start block height: 105792829", + "3 | Action [18/19] : End block height: 105792830", + "3 | Action [19/19] : Steps: 283868100", + "4 | Action [1/9] : ICS20Withdrawal", + "4 | Action [2/9] : Channel channel-0", + "4 | Action [3/9] : Amount 883697938176550748 passet1wzu9n", + "4 | Action [4/9] : wjev93lnfg9v3g55p4ruqpmjy5eqa2ckhkxw2z", + "4 | Action [5/9] : nqgwwzczske5xjt", + "4 | Action [6/9] : To penumbra1g905fywf94g2kkf35h5cc3zzz3", + "4 | Action [7/9] : 2qm9pvfr7zaamsa27twv65yyh6tgcpwucm6a7c", + "4 | Action [8/9] : ah5my8plf83lm6uj4z5dh4uks24k3s6gg2lnts", + "4 | Action [9/9] : r58nfeudr8djvk6r8j5ew2yqv79was06", + "5 | Action [1/10] : Undelegate", + "5 | Action [2/10] : From penumbravalid1jrvvj6u4j20c62jsxqh", + "5 | Action [3/10] : k6rnsqxk27nz33fp0ryz2wy4pyg23xgqsjxzgq", + "5 | Action [4/10] : 2", + "5 | Action [5/10] : Input 161573688867151958 passet12wmes2", + "5 | Action [6/10] : 3qhlqml6vzwmf63yj930amtpu4lctapgz4j78y", + "5 | Action [7/10] : k6np35rs097kaz", + "5 | Action [8/10] : Output 182413407261486540 passet1s8yzn", + "5 | Action [9/10] : 0vha68tydl64t4zkhksxj3fk5r4ud03yz6js5v", + "5 | Action [10/10] : fn7w65vrqr8fjk7" + ] + }, + { + "index": 28, + "blob": "0a46ca02430a220a20a43d74332b474296f0bd619d6a5f134e8b5b702e4637db2f6f289a7166f4b61b1a0a08a6ec9cf89b9693d203220908f5e08ed0a08acf582a06089a43109a430a9a02c20c96020a0a0887cfca89d0dea8fd0812090a0745385033534c6c1a8f0170656e756d627261316a63753077336179656d76707737387a30726e7a326b686d337967386d7170386a6a6d737271616a70613533357739786e777338667a6130637a7a617a777873637678786767303877347435636e6c616a757279743567307174643875666173306c387977356b34306c3232676a6a617a733734396878336a7335667261646630757a71367022520a50f11620f304e815835fd6af531c96f76ec6838808856b314b07e10492db6a823ff88f7038b3fb279ccfce6d80a587cb293b8f50eb1289cd097cc5a220aeec0de93c288a6e63f09c1cbb452aee8317fcaf2a0c08dd93e6f40210fe95e1ec013a096368616e6e656c2d300abe020abb020aa8010a300a0a08ccb4dfd7efa7ac9a0712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220d8a6c3d1628ce922c2ca80b4a2c6ca5e4563296e8c2a43a29b31177d269b6e271a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710a2d5dbb5fc92301a203835207927f91df08bb3b37ab2ca83d0711ed44420e61bfd0efde1393462730122206fea5021ecd24f4110a947041f16947f82483550c5403a6b4c409ed1099082022a205c3c6119634baa1be3b13104e536e60a3ee5faa3365d39cd517edbe1bc13ec0732207c50fb06ea4497922f113e2ef1849af78e1ddd5d9252bf5616cdeaf107fe2a120aa701aa03a3010aa0010a300a0a08d1adf0e5b79292e00412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a089abab9e8849c9deb02220908fea0de91f2ffe95528e4d283f60130e5d283f6013893c08f29422048e6dee735ddf7a252d2e38c1fbf024eb1819af1301df6c3c4831860f44683df121e08aec623120a70656e756d6272612d311a0c0a0a08a98f9adcb2f3f2d2092abf020a9a020a520a502536aa55981fe048cd7ae5099af26a037007e997821e1ada80bee25a25be3bd2661ad79601e14d6fe2467398de837a932d7f89340de275609c9438e12aeec514182d1423a8f5f0a15848c610be2e9e8b12c30177494f4d2064454a6a7938392033335020203535434e556c5177473662745a56204a35506a36692048376d6f517352205120775059473542535a54705731304e63205461303220376320524f4a205556204a493020204769526148783720306d5a4935303739334b506b67486a5971574b574e73364267744b4d75784d524c3033203950695620343543616e49727a334a4943204169566c4d762062384e6b32713666206d48416d302036336e204a20472066454d6a536b5271477a766235206563201220abff3dd27e7f366313b0c283359586fa3b62ec25d656fc68926440f4ba80b6ee", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 582446", + "2 | Fee : 695185584809.215913 penumbra", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid15s7hgvetgapfdu9avxw", + "3 | Action [3/10] : k5hcnf694kupwgcmaktm09zd8zeh5kcds0d00n", + "3 | Action [4/10] : l", + "3 | Action [5/10] : Input 49887393930784885 passet186hypsp", + "3 | Action [6/10] : 88zhwpyucnc48h4m3w5es9gj0nu9wvc2g4gdml", + "3 | Action [7/10] : 7a7hq9sguxu3z", + "3 | Action [8/10] : Output 262419004592174630 passet1tqqvl", + "3 | Action [9/10] : z4tlz5axu53x53jr42e6k045npuvvgclczfyp4", + "3 | Action [10/10] : xv320rvqsq9tv6j", + "4 | Action [1/9] : ICS20Withdrawal", + "4 | Action [2/9] : Channel channel-0", + "4 | Action [3/9] : Amount 647008669651871623 passet1xacjx", + "4 | Action [4/9] : r43kkc5xmqe0zcd7yt7mrzj3gmv2avuehr637r", + "4 | Action [5/9] : 7q89lqu9semg73f", + "4 | Action [6/9] : To penumbra1jcu0w3ayemvpw78z0rnz2khm3y", + "4 | Action [7/9] : g8mqp8jjmsrqajpa535w9xnws8fza0czzazwxs", + "4 | Action [8/9] : cvxxgg08w4t5cnlajuryt5g0qtd8ufas0l8yw5", + "4 | Action [9/9] : k40l22gjjazs749hx3js5fradf0uzq6p", + "5 | Action [1/2] : Spend 519234741111.085644 penumbra fro", + "5 | Action [2/2] : m Main Account", + "6 | Action [1/10] : DutchAuctionSchedule", + "6 | Action [2/10] : Selling: 342353369970.251473 penumbra", + "6 | Action [3/10] : For: penumbra", + "6 | Action [4/10] : Starting price: 204479339806219546 pen", + "6 | Action [5/10] : umbra for 342353369970251473 penumbra", + "6 | Action [6/10] : Ending price: 48316935250088062 penumb", + "6 | Action [7/10] : ra for 342353369970251473 penumbra", + "6 | Action [8/10] : Start block height: 515959140", + "6 | Action [9/10] : End block height: 515959141", + "6 | Action [10/10] : Steps: 86237203", + "7 | Sender Address : penumbra1y5m254vcrlsy3nt6u5ye4un2…", + "7 | Memo Text [1/6] : wIOM dEJjy89 33P 55CNUlQwG6btZV J5Pj6", + "7 | Memo Text [2/6] : i H7moQsR Q wPYG5BSZTpW10Nc Ta02 7c RO", + "7 | Memo Text [3/6] : J UV JI0 GiRaHx7 0mZI50793KPkgHjYqWKW", + "7 | Memo Text [4/6] : Ns6BgtKMuxMRL03 9PiV 45CanIrz3JIC AiVl", + "7 | Memo Text [5/6] : Mv b8Nk2q6f mHAm0 63n J G fEMjSkRqGzvb", + "7 | Memo Text [6/6] : 5 ec " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 582446", + "2 | Fee : 695185584809.215913 penumbra", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid15s7hgvetgapfdu9avxw", + "3 | Action [3/10] : k5hcnf694kupwgcmaktm09zd8zeh5kcds0d00n", + "3 | Action [4/10] : l", + "3 | Action [5/10] : Input 49887393930784885 passet186hypsp", + "3 | Action [6/10] : 88zhwpyucnc48h4m3w5es9gj0nu9wvc2g4gdml", + "3 | Action [7/10] : 7a7hq9sguxu3z", + "3 | Action [8/10] : Output 262419004592174630 passet1tqqvl", + "3 | Action [9/10] : z4tlz5axu53x53jr42e6k045npuvvgclczfyp4", + "3 | Action [10/10] : xv320rvqsq9tv6j", + "4 | Action [1/9] : ICS20Withdrawal", + "4 | Action [2/9] : Channel channel-0", + "4 | Action [3/9] : Amount 647008669651871623 passet1xacjx", + "4 | Action [4/9] : r43kkc5xmqe0zcd7yt7mrzj3gmv2avuehr637r", + "4 | Action [5/9] : 7q89lqu9semg73f", + "4 | Action [6/9] : To penumbra1jcu0w3ayemvpw78z0rnz2khm3y", + "4 | Action [7/9] : g8mqp8jjmsrqajpa535w9xnws8fza0czzazwxs", + "4 | Action [8/9] : cvxxgg08w4t5cnlajuryt5g0qtd8ufas0l8yw5", + "4 | Action [9/9] : k40l22gjjazs749hx3js5fradf0uzq6p", + "5 | Action [1/2] : Spend 519234741111.085644 penumbra fro", + "5 | Action [2/2] : m Main Account", + "6 | Action [1/10] : DutchAuctionSchedule", + "6 | Action [2/10] : Selling: 342353369970.251473 penumbra", + "6 | Action [3/10] : For: penumbra", + "6 | Action [4/10] : Starting price: 204479339806219546 pen", + "6 | Action [5/10] : umbra for 342353369970251473 penumbra", + "6 | Action [6/10] : Ending price: 48316935250088062 penumb", + "6 | Action [7/10] : ra for 342353369970251473 penumbra", + "6 | Action [8/10] : Start block height: 515959140", + "6 | Action [9/10] : End block height: 515959141", + "6 | Action [10/10] : Steps: 86237203", + "7 | Sender Address : penumbra1y5m254vcrlsy3nt6u5ye4un2…", + "7 | Memo Text [1/6] : wIOM dEJjy89 33P 55CNUlQwG6btZV J5Pj6", + "7 | Memo Text [2/6] : i H7moQsR Q wPYG5BSZTpW10Nc Ta02 7c RO", + "7 | Memo Text [3/6] : J UV JI0 GiRaHx7 0mZI50793KPkgHjYqWKW", + "7 | Memo Text [4/6] : Ns6BgtKMuxMRL03 9PiV 45CanIrz3JIC AiVl", + "7 | Memo Text [5/6] : Mv b8Nk2q6f mHAm0 63n J G fEMjSkRqGzvb", + "7 | Memo Text [6/6] : 5 ec " + ] + }, + { + "index": 29, + "blob": "0aaa02aa01a60208d0d0aa281a02080122a8010a300a0a08a8f5a1b69ed484fe0512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012208e5d272c0cb4e96f765d99eb835c8542fa8b90619e66a6c65f36f2f0ad6debc91a520a50ab34f6da044c52221184f4492c1b6a002bb1735c71c1d022a745adf976e7587d8cc034fd5bf05a6c078e75bf10e05ff618eaf9dd6fdfba23b2767c10d537a628135c1b9fe9466640554fae84f4d04015320a08bd9f92b588a4b5ef083a20dc0c290cc160d432870d8b85a4d657ba2c24e21e1a3cff4903b5eaf083ca5203422069c8c8362f409d38300bba62038ef8ba6ab96c49de54e9cbc99584104e819e064a202bf9f5def9d66110c0ee940580787e56f7ccf896faede5c99a95adb75c4d260e0a9201ba038e010a220a20878dc2ba65be2b037b1668818b3db8e74debf142f35d8ea6fff3e2e1776d46ff1083cfb9a2011a300a0a08dc9c99f7fea89ba50612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08c8d0f8a0ccae959e0112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08d3b8d5e3c4e680c3031a0022020a002a520a50da13bf7d7eb2919ff67168bcc0686490de33bfb0ec7fdb612ad7579795b38ebdef005d808e018b82d681a4ff126805e2069ae72c0e9566cd8aadfb80d37be5abb814f6457d854233cdc1f3d3195d64f03220a0740efd8332a4011fbfa6c6680b42f39417116fac9700c5c4d2405a768e47db1a6e0a0608cfe2808f03120608eb81d8bb011a0308dc0d220308b00b2a03089708320308cb0542480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20d88d414dc6ebfd0b99da7942084122552ef4414762c035520096e9bde37bae0a3220c034987c05b3d14d26b3a89b4840a3c410f06af73741e4c091daa586e22c52000a35a203320a300a0a08abc2dbd0dba1a7a20812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10121a120a70656e756d6272612d311a0c0a0a08f48780c59889f99d01", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 88915622139.790324 penumbra", + "2 | Action [1/4] : DelegatorVote on Proposal 84584528", + "2 | Action [2/4] : Vote Abstain", + "2 | Action [3/4] : Voting Power: 639182532807.790525 penu", + "2 | Action [4/4] : mbra", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid1s7xu9wn9hc4sx7ckdz", + "3 | Action [3/7] : qck0dcuax7hu2z7dwcafhl703wzamdgmlsy98s", + "3 | Action [4/7] : g0", + "3 | Action [5/7] : Unsold: 453294868222.332508 penumbra", + "3 | Action [6/7] : Proceeds: 89040052635.44532 penumbra", + "3 | Action [7/7] : Sequence number: 340682627" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 88915622139.790324 penumbra", + "2 | Action [1/4] : DelegatorVote on Proposal 84584528", + "2 | Action [2/4] : Vote Abstain", + "2 | Action [3/4] : Voting Power: 639182532807.790525 penu", + "2 | Action [4/4] : mbra", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid1s7xu9wn9hc4sx7ckdz", + "3 | Action [3/7] : qck0dcuax7hu2z7dwcafhl703wzamdgmlsy98s", + "3 | Action [4/7] : g0", + "3 | Action [5/7] : Unsold: 453294868222.332508 penumbra", + "3 | Action [6/7] : Proceeds: 89040052635.44532 penumbra", + "3 | Action [7/7] : Sequence number: 340682627" + ] + }, + { + "index": 30, + "blob": "0a9502c20c91020a0a08db9da5eb8acdec880112040a02534d1a8f0170656e756d6272613165786a647932687577777636676c6d6868737379726d366d736775707937636d6d6e7134646177343978677235746a766b63757165613464616474656c7165666468386b6e7561776d74746c6e7a6163747467303976673868796c73736673676473793366793330376c7a336d796d3032673667376b3537336867767076646864616d36647922520a504b512c6356dcae7a99a231989ef2b23bd80e6b14c07411ef59c88a6b7d4ca198c04342d479711eb9d2475ca7a04eae9d7d8476b34791790d3b035aa378d1b8b6d22ed5f10270f63c1efe17f3410c2fbc2a0c08aeddf1bd0310f4b08ddb023a096368616e6e656c2d300aae01f201aa010aa7010a630a17120a08b883b3f19be78da5061a0908f5d4bfdfe386921e12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080122180a0a08bb9888ad849acec20b120a08d4c4d4b693c7c6eb0628010aa202c20c9e020a0a08a0acf8ebd9b7a6e30912120a1035496543794335796e41424a794977711a8f0170656e756d627261316b716a617132737132327663726835347179676a366b6835656b34726c7764766163797863616772346576753461727038677278367371646e616d377537637170727a6c7a63713865677633636c6161613072366d78667a6d6e6163776c79737863646b6a737379373866777476397a7161663263716767677363777637647a636b6538363722520a50824450d878f6bc4eb16d79905fe25ced57b54bef7225e754f4fd7c27a3ba7182c5d015862e0c63271329c0a1d4c472a09dda6f3939e3fcd655c8b33e30294369cbc855b0dd1a73136be050c6c426113e2a0b08d9b6c44910c5a987e5023a096368616e6e656c2d30121e08f89101120a70656e756d6272612d311a0c0a0a0886ead8dec69ef8dd032a83020ade010a520a50f0ef28e3c0d4c75b424396c4e8aa9b34e02bec93be1e818e56ebed4bd945f9bb442bd155dbaaef381a2a90b34407487db1ed969416b3b62f426af97b29498d5b0f9d8818ae6f726d8de4e90da123433312870130492075414a313220365935387157614639205579206452626549202057506e6a20615067387520324867473334326b546a376e3248573820202053583241205335336a2070206d5832506a32203449586f4b75203450426220584c3432452079654a44344969346f58665543204c20423520785120415653593173556b56503874453762573012206addb25fa1c90fbe1722ec05a9f93412f1916e13acfccc703c35f7b3c041780f", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 18680", + "2 | Fee : 269055943144.518918 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 77038831297711835 passet1q58nyn", + "3 | Action [4/12] : 7774rsmmj96gp762a8nfuuf6s42xu3ayytaz9f", + "3 | Action [5/12] : 0hs94gzsryzjle", + "3 | Action [6/12] : To penumbra1exjdy2huwwv6glmhhssyrm6msg", + "3 | Action [7/12] : upy7cmmnq4daw49xgr5tjvkcuqea4dadtelqef", + "3 | Action [8/12] : dh8knuawmttlnzacttg09vg8hylssfsgdsy3fy", + "3 | Action [9/12] : 307lz3mym02g6g7k573hgvpvdhdam6dy", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 830132173492.325435 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 492891517255.754324 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 453235433647423928", + "4 | Action [7/9] : Trading Function q: 16967896373652085", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/9] : ICS20Withdrawal", + "5 | Action [2/9] : Channel channel-0", + "5 | Action [3/9] : Amount 704419431400216096 passet1nxa6l", + "5 | Action [4/9] : x9nls6xwel8xh30kpzzyhjz7yavn457xgnsr20", + "5 | Action [5/9] : use3tssgs2fpgq6", + "5 | Action [6/9] : To penumbra1kqjaq2sq22vcrh54qygj6kh5ek", + "5 | Action [7/9] : 4rlwdvacyxcagr4evu4arp8grx6sqdnam7u7cq", + "5 | Action [8/9] : przlzcq8egv3claaa0r6mxfzmnacwlysxcdkjs", + "5 | Action [9/9] : sy78fwtv9zqaf2cqgggscwv7dzcke867", + "6 | Sender Address : Sub-account #96", + "6 | Memo Text [1/4] : 0I uAJ12 6Y58qWaF9 Uy dRbeI WPnj aPg8", + "6 | Memo Text [2/4] : u 2HgG342kTj7n2HW8 SX2A S53j p mX2Pj", + "6 | Memo Text [3/4] : 2 4IXoKu 4PBb XL42E yeJD4Ii4oXfUC L B5", + "6 | Memo Text [4/4] : xQ AVSY1sUkVP8tE7bW0" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 18680", + "2 | Fee : 269055943144.518918 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 77038831297711835 passet1q58nyn", + "3 | Action [4/12] : 7774rsmmj96gp762a8nfuuf6s42xu3ayytaz9f", + "3 | Action [5/12] : 0hs94gzsryzjle", + "3 | Action [6/12] : To penumbra1exjdy2huwwv6glmhhssyrm6msg", + "3 | Action [7/12] : upy7cmmnq4daw49xgr5tjvkcuqea4dadtelqef", + "3 | Action [8/12] : dh8knuawmttlnzacttg09vg8hylssfsgdsy3fy", + "3 | Action [9/12] : 307lz3mym02g6g7k573hgvpvdhdam6dy", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 830132173492.325435 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 492891517255.754324 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 453235433647423928", + "4 | Action [7/9] : Trading Function q: 16967896373652085", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/9] : ICS20Withdrawal", + "5 | Action [2/9] : Channel channel-0", + "5 | Action [3/9] : Amount 704419431400216096 passet1nxa6l", + "5 | Action [4/9] : x9nls6xwel8xh30kpzzyhjz7yavn457xgnsr20", + "5 | Action [5/9] : use3tssgs2fpgq6", + "5 | Action [6/9] : To penumbra1kqjaq2sq22vcrh54qygj6kh5ek", + "5 | Action [7/9] : 4rlwdvacyxcagr4evu4arp8grx6sqdnam7u7cq", + "5 | Action [8/9] : przlzcq8egv3claaa0r6mxfzmnacwlysxcdkjs", + "5 | Action [9/9] : sy78fwtv9zqaf2cqgggscwv7dzcke867", + "6 | Sender Address : Sub-account #96", + "6 | Memo Text [1/4] : 0I uAJ12 6Y58qWaF9 Uy dRbeI WPnj aPg8", + "6 | Memo Text [2/4] : u 2HgG342kTj7n2HW8 SX2A S53j p mX2Pj", + "6 | Memo Text [3/4] : 2 4IXoKu 4PBb XL42E yeJD4Ii4oXfUC L B5", + "6 | Memo Text [4/4] : xQ AVSY1sUkVP8tE7bW0" + ] + }, + { + "index": 31, + "blob": "0a27fa01240a220a2008bdda3ad3ccbe55605c3ade25704907dcedafb9bfa589434ed75ce5423832f20aaa02aa01a60208fee7ecac021a02080122a8010a300a0a0885e5aaeec8c7dde10b12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220374781dd611a4cf4b15824c15fbcd6e8a0c9a7806d60f34a17342ab69060e8541a520a503d4d93fba384b7ed9be3387d6a534ddf8f21c3d91015b6f7aa2b8c8468f5c9b9b24dfef19fae072549a4061113c2b50b8ceb6c593b29e136d51cdd377b38ef49763771cb48f5300a7fa9ae5bd81019bb320908f4fc898ad2ecf0283a208ee9ff1517d826b283313e2bc4001b4663f9cc25c5dc2da05b7ceb1ce13baf004220bec85318ead3c478bd3b143cdee5ef3d9a5356b665a2c1279dfb1d97c7f264054a206d0fa08ed38146ffd22588993dbe9af01422bd3008588036d16a42242fb4a10c121e08ae9227120a70656e756d6272612d311a0c0a0a08dfc8899fb1d19ff808", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 641326", + "2 | Fee : 644153882513.138783 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1pz7a5wknejl92czu8t0z", + "3 | Action [3/3] : 2uzfqlwwmtaeh7jcjs6w6aww2s3cxteqjdnjmf", + "4 | Action [1/4] : DelegatorVote on Proposal 630928382", + "4 | Action [2/4] : Vote Abstain", + "4 | Action [3/4] : Voting Power: 23014312230.682228 penum", + "4 | Action [4/4] : bra" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 641326", + "2 | Fee : 644153882513.138783 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1pz7a5wknejl92czu8t0z", + "3 | Action [3/3] : 2uzfqlwwmtaeh7jcjs6w6aww2s3cxteqjdnjmf", + "4 | Action [1/4] : DelegatorVote on Proposal 630928382", + "4 | Action [2/4] : Vote Abstain", + "4 | Action [3/4] : Voting Power: 23014312230.682228 penum", + "4 | Action [4/4] : bra" + ] + }, + { + "index": 32, + "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08dcdae9f2f28eccc1091a0022020a002a520a50aa396c6284b9d3cfe274ea813fc6e1d71a8bcd2d40c74b40cb47de2ba97730fccad74712978f922a07f0e4b89f382b457dd48da40475211d52485da30eef2aa33198d7474987b9347be9e3159ed7bb1a32202d34fdd1bea10658ae572a31568c0edbe88e8bbdf65c4ac2e573318900b2ee471220b7d2d807fe15b2f39632cee56ef9121a44bee2c4e062f68fd3884efbc4e40d041a2002135533d61423e32aa31ada1611afba9f60013caeca739e44bf71250f3cd80722202a5bd80b90ba416015dd3091e067b01e5a05426b95cb90bbaea0d1008048d1070a88038a0184030a81030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412da020ab301088ec5f518120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c08d8ebd2f4021090a6bcee0140b8b4f9ad91e584871812020a001a0c08d8ebd2f4021090a6bcee01228f0170656e756d6272613136616c7235786a747064796e797a36383275367a6675786b6378646c396e74706d37663032386776766d6c6d37737737706e777239763478706d7730666d68646b353665356e6137653532656d70326a32676c7270383537727474667175766c6a377678663379396735363430347a6564363376307430366873666d3379647864353934706d0a19b20116089faac8aa02120a08f68bbeaedbe5e68d071a020a00121a120a70656e756d6272612d311a0c0a0a08c9c8d4a9b0a3f9c5062ac8010aa3010a520a505440096e8b74fc9423303d1575a1277588fca1a7469e02643faa399b645f042e453f58e0641ec7225272b307d2a0a45334956dabd5ac6326abad1dba627b5880d8aa291c2febd4fb3ca15322c4f878f5124d20732033774a204152686f756e39615a20424c67663666695a6e206f20205050202053203875775939796d63557a202020765432726d6f664c686847392075733059446620207a356578437069122057ce667af19d3d6328b0d183758191f1751e7c5a6b678df31c9bd9dcdfbbc250", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 471722490204.595273 penumbra", + "2 | Action [1/7] : Swap", + "2 | Action [2/7] : Input 685444856727.367004 penumbra", + "2 | Action [3/7] : Output Asset penumbra", + "2 | Action [4/7] : Claim Fee 0 penumbra", + "2 | Action [5/7] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [6/7] : SIGN (claim address in Swap not contro", + "2 | Action [7/7] : lled by user)", + "3 | Sender Address : Sub-account #16", + "3 | Memo Text [1/3] : s 3wJ ARhoun9aZ BLgf6fiZn o PP S 8u", + "3 | Memo Text [2/3] : wY9ymcUz vT2rmofLhhG9 us0YDf z5exCp", + "3 | Memo Text [3/3] : i" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 471722490204.595273 penumbra", + "2 | Action [1/7] : Swap", + "2 | Action [2/7] : Input 685444856727.367004 penumbra", + "2 | Action [3/7] : Output Asset penumbra", + "2 | Action [4/7] : Claim Fee 0 penumbra", + "2 | Action [5/7] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [6/7] : SIGN (claim address in Swap not contro", + "2 | Action [7/7] : lled by user)", + "3 | Sender Address : Sub-account #16", + "3 | Memo Text [1/3] : s 3wJ ARhoun9aZ BLgf6fiZn o PP S 8u", + "3 | Memo Text [2/3] : wY9ymcUz vT2rmofLhhG9 us0YDf z5exCp", + "3 | Memo Text [3/3] : i" + ] + }, + { + "index": 33, + "blob": "0a9102128e020a300a0a08dedccae8ff8fedda0412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a503deca76e4077b7c8db3ebe2c212eb6fe24baf354d94f23aea6507fde210da27270126e09fd508ffa3ff8545edb397f6e20b6cc30b4fa066fe91c3d7fd761a1c2332c960b9a0be98e5d6af03abd410be61a20861eeb62fd7111f8af9fc33e41e4df610782885c397523de815c83fe5c873ae922203c666c7587987375dd2cb8b7be9e4d95858ca6c74a08e7bc6e6e013fefef2c022a2015f4dfd89bc4df9ef0fe24ab98f3388bce53d16ab593640ca74f0d50d824080832200b42f7e03157de92def4571560d21234aad062fabd7d6a3d56dd134bbeb885060a35a203320a300a0a088df3fa90cce8fcb10412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012311221656b6b71786c69776f69796564687676616373736d6c6466737765782d383739381a0c0a0a08b7fccd98b9c5daf708", + "output": [ + "0 | Chain ID : ekkqxliwoiyedhvvacssmldfswex-8798", + "1 | Fee [1/3] : 643850007120936503 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : Output 339375808736046686 passet1984fc", + "2 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "2 | Action [3/4] : nyt9fdggqxmanqm to penumbra18hk2wmjqw7", + "2 | Action [4/4] : mu3ke7hckzzt4k…" + ], + "output_expert": [ + "0 | Chain ID : ekkqxliwoiyedhvvacssmldfswex-8798", + "1 | Fee [1/3] : 643850007120936503 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : Output 339375808736046686 passet1984fc", + "2 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "2 | Action [3/4] : nyt9fdggqxmanqm to penumbra18hk2wmjqw7", + "2 | Action [4/4] : mu3ke7hckzzt4k…" + ] + }, + { + "index": 34, + "blob": "0a8a019a0386010a300a0a08edd1ffd7fec0eec90512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50488902446256e569d6a6bb9e9a69a077f5573f59b95985eff4312e0cc846a55f3c8ef86112fee59940610f93dec771574f3934251a933ec4e81c8281d64920b4fa2b942fc4f4638e3102517304adc6970a19b2011608f6ef88e801120a0899b9a5bea7eb9a9e041a021a00121e0882c103120a70656e756d6272612d311a0c0a0a08c3c6dfd4fc9fc3ab072a8f020aea010a520a50986b164dc4c13b5b1031f364297912fb60d63389b68bc438441504e69fa99f0f2a50c67bf9c51319b9c300f4abe483fa3e3ae8604caa0aa9e31d9f18be21d5071e1b024a643f9d9fd9bb9739db1a787812930120303239726e573563353778594877327436435120672020207a78354c58704f35354820443172612057324364455a61516f6e395539203820597366645720364646207a35557654413539514859523459527a796d384f4b202035376d20332049383437203338366f6b3462666838206b202020352036717a4e33424d204f5630203747412053684b3539534641375620366212204eb656f93d64ac019b846b81e80a004a4b03f481a7e7466257abeb92274d40ba", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 57474", + "2 | Fee : 528905773994.468163 penumbra", + "3 | Sender Address : Sub-account #69", + "3 | Memo Text [1/4] : 029rnW5c57xYHw2t6CQ g zx5LXpO55H D1", + "3 | Memo Text [2/4] : ra W2CdEZaQon9U9 8 YsfdW 6FF z5UvTA59Q", + "3 | Memo Text [3/4] : HYR4YRzym8OK 57m 3 I847 386ok4bfh8 k ", + "3 | Memo Text [4/4] : 5 6qzN3BM OV0 7GA ShK59SFA7V 6b" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 57474", + "2 | Fee : 528905773994.468163 penumbra", + "3 | Sender Address : Sub-account #69", + "3 | Memo Text [1/4] : 029rnW5c57xYHw2t6CQ g zx5LXpO55H D1", + "3 | Memo Text [2/4] : ra W2CdEZaQon9U9 8 YsfdW 6FF z5UvTA59Q", + "3 | Memo Text [3/4] : HYR4YRzym8OK 57m 3 I847 386ok4bfh8 k ", + "3 | Memo Text [4/4] : 5 6qzN3BM OV0 7GA ShK59SFA7V 6b" + ] + }, + { + "index": 35, + "blob": "0a9102128e020a300a0a08fab4aef78de0b7800912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50e2029b6cc460a041aaa9c620d2db0577dab5ca9012a48461846e93404635e35f37a7433846bde23d22c7e0af89a2bb5a67121c256e48519c5cfa9b1f5619f57c1fb57600d1bb888bdb10234eeba319641a20018bd9d133f01267d723a7826376343ece1a336beedaef725c7a2cfcb4049fd32220fae1deb08f70f259b6e63273f041041b4745755b2dbb4f2230b8cc4f64ba1a012a2003aecf32443f18ff99296edd7945f39d7d12aa50a7f2c25648e3655351ef0002322060a2d74b86dcd6c6374b4917fd2e8f72e6fa0170695da93aa6af6939282292090a8e03228b030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08a7a087b2fc899ea50d1a0022020a002a520a50dd8196e583419b04d21323ec17f268a1fe00ceed410adee0ff6b336f95ab056685f8e7c5f6bbb43d2cd869f40e398dce7e743c9a8a6f2de458790c16765fe8e0b087d81ff19dceb9caee1385824677f732200dc45ba06b66ec6cc4a4120e9bdd335287430851d6e79226afddd6df69a345a11a6d0a0608c9d6aabf01120508c4b2f6571a03088906220308fb062a0308d20d320308f70542480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20c30c132c7796063c3afbf19ee9ac413bbe04452a07674270a976f4431279e8103220b3481e4ade7222cad45e76c71746cd1b4303213318953289d0a8dbc769819d050a19b2011608bfe699f202120a08d39ee684a59ce8fa0c1a021a00122c121d6b6670786f69656b6d6368666a6368696b6f642d3836333832333831391a0b0a0908bcbfa0cc818bf94f2a8b040ae6030a520a504f087e226279a0cbf93123712958f22c831ee6cbb280cd08d6e46b07ecfa307e555fbb079f6b0437e44dd2194a0090a16f8f3a0e33854fce838e677725d9fe19569355e7ccbfa6420ce593f2d81182bc128f03392065574a4d366f656c6d4d38454d41204b20784f6220473858673349375958574c374667666e6d49324c553468653774206438206637692032384f683071204c3975435231626d717a724e565730587458206e5341595133316b7032203749426e5a50736a204c55777079415975786c6e3172373579773420622054202020204120647630397058204564575a683251382039382020576d71207563206b5863574e4247724e7a206e6c3820412020206544372032346759333839366839206971697747463320446b204d20674463663320594d207248466349205a4939204875627242704f4f3030614636205752664a377075494234314772493843204c6477202078475a3235666655353620515850666372795932684574494b41203820202020393220793075207975707a20384f35203820447271535835685733326363527936784937472064553520342039326d75203939203754615a646f3430203533202053572036735458203870302020207920206b662052202020786b736a4734544466444f2020204f4d54311220c193dbab1243e5b0df57a802ef9a362cc19bd5b193cab516e49299d6347eaffa", + "output": [ + "0 | Chain ID : kfpxoiekmchfjchikod-863823819", + "1 | Fee [1/3] : 45005588333600700 passet1984fctenw8m2f", + "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "1 | Fee [3/3] : qxmanqm", + "2 | Action [1/3] : Output 648763541174327930 passet1984fc", + "2 | Action [2/3] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "2 | Action [3/3] : nyt9fdggqxmanqm to Sub-account #87", + "3 | Sender Address : Sub-account #74", + "3 | Memo Text [1/11] : 9 eWJM6oelmM8EMA K xOb G8Xg3I7YXWL7Fgf", + "3 | Memo Text [2/11] : nmI2LU4he7t d8 f7i 28Oh0q L9uCR1bmqzrN", + "3 | Memo Text [3/11] : VW0XtX nSAYQ31kp2 7IBnZPsj LUwpyAYuxln", + "3 | Memo Text [4/11] : 1r75yw4 b T A dv09pX EdWZh2Q8 98 W", + "3 | Memo Text [5/11] : mq uc kXcWNBGrNz nl8 A eD7 24gY3896h", + "3 | Memo Text [6/11] : 9 iqiwGF3 Dk M gDcf3 YM rHFcI ZI9 Hubr", + "3 | Memo Text [7/11] : BpOO00aF6 WRfJ7puIB41GrI8C Ldw xGZ25f", + "3 | Memo Text [8/11] : fU56 QXPfcryY2hEtIKA 8 92 y0u yupz ", + "3 | Memo Text [9/11] : 8O5 8 DrqSX5hW32ccRy6xI7G dU5 4 92mu 9", + "3 | Memo Text [10/11] : 9 7TaZdo40 53 SW 6sTX 8p0 y kf R ", + "3 | Memo Text [11/11] : xksjG4TDfDO OMT1" + ], + "output_expert": [ + "0 | Chain ID : kfpxoiekmchfjchikod-863823819", + "1 | Fee [1/3] : 45005588333600700 passet1984fctenw8m2f", + "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "1 | Fee [3/3] : qxmanqm", + "2 | Action [1/3] : Output 648763541174327930 passet1984fc", + "2 | Action [2/3] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "2 | Action [3/3] : nyt9fdggqxmanqm to Sub-account #87", + "3 | Sender Address : Sub-account #74", + "3 | Memo Text [1/11] : 9 eWJM6oelmM8EMA K xOb G8Xg3I7YXWL7Fgf", + "3 | Memo Text [2/11] : nmI2LU4he7t d8 f7i 28Oh0q L9uCR1bmqzrN", + "3 | Memo Text [3/11] : VW0XtX nSAYQ31kp2 7IBnZPsj LUwpyAYuxln", + "3 | Memo Text [4/11] : 1r75yw4 b T A dv09pX EdWZh2Q8 98 W", + "3 | Memo Text [5/11] : mq uc kXcWNBGrNz nl8 A eD7 24gY3896h", + "3 | Memo Text [6/11] : 9 iqiwGF3 Dk M gDcf3 YM rHFcI ZI9 Hubr", + "3 | Memo Text [7/11] : BpOO00aF6 WRfJ7puIB41GrI8C Ldw xGZ25f", + "3 | Memo Text [8/11] : fU56 QXPfcryY2hEtIKA 8 92 y0u yupz ", + "3 | Memo Text [9/11] : 8O5 8 DrqSX5hW32ccRy6xI7G dU5 4 92mu 9", + "3 | Memo Text [10/11] : 9 7TaZdo40 53 SW 6sTX 8p0 y kf R ", + "3 | Memo Text [11/11] : xksjG4TDfDO OMT1" + ] + }, + { + "index": 36, + "blob": "0abd021aba020ad1010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120908989e85888ae8df061a0022020a002a520a5072c36770b70fb573864b867752e54bef45c2fce95dc2080deba9c88956f7d1b38aa9edbf914a0080a3941d7b5588433e4a5d4e9cd17f426b19f235e5e900aa9498fd2051c523d5efe037abe24288f7103220a4b6081f3965d2226ea68987c023eb327b994d7f5b5b8b017ba446e8030d50ff1220a5b6f659e6920177110469be55b3670c790385823818500f105482dc07bb66001a20aaeca64005d1e49525021db48972581e82badb881007ac6076c93d6cb12e9703222084051e4abbfaa43752ad78b3b5d3ebf63b0b4a7370fe78ee6d05137d736877030a8e03228b030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08d39be6c4f3b3bdd30122020a002a520a50586d011667ebfe5355bbf74c366e725496ac94df7c97d04ace9d6133602458ba49ef4c3feea691f04ab3a2dd56dc98d035b59b1fe272865686c5cb7067b80eb5cadc2bd4de599c4e30979cca1ed2ff5d32202ba1d7ed4c37497a14aa59d68b1878dc7a0eb14246f6c81509d936e66b2c231c1a6d0a0608e9c1a2f905120608a4a6b7ac041a02087a220308f3022a0308db0d320308b00e42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20584e0a44b712fa8e19e0d75a27de6cbf23e8cecfc3dde1ba201d4cfdc2763e0b322077f9e0ba704f401e58a9a8fedd711b20821552645fd821f15d01accc642201050abb01a201b7010a7108cd83eab902120208021a220a205d9b4993fa19959b4f37ca70e49afa24b0c23d45321ca185399b6607e41d168b22220a20ba6b82e1b85fb57fcfe213fd839435a4b2f3f0725d5a9eb4d378f9ee02ae4b112a1d0a1b354843355856353755303571374c3031476c4672343934656a646612420a40d4937b69990b6f3765fc15d994944bcf0b8fe0816e564145d1451ae3983271032085ec94b2d6ea17f9d78320bbfd1ccd6bdce70ab0f5b05f1cc0369b88b26f000abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08c0bbcaf8b3d0f8d1071a0022020a002a520a50a867a06e142aea9f1b6ea0edb7c3a3dcef576faa4369b4b08ddb00deb2b440c10cda6caa650d696a9ca12228d13a78ca94961b57f8591570e5d392dcd04c1b67502f2276595bb0ff01d06dc504b663963220c21c0de525ee199e84a2fc083781ba138ba44445a08530699e7b7469d0e8d2061220fd9f3d26279789805a0b4c3609d56620b2cf67e818ff6980c69e2e121c7f08021a20c8c622841e0fb3e6fc86bb1aec33476c7d457466f167915ff8b36a3f983c87102220e3519a319925ba6a8b4f9103fd7ca9eabdaf359dad2f835d27c30edb60199f0f121e08d5dc02120a70656e756d6272612d311a0c0a0a08e495c1b6c3969dbd042ac3020a9e020a520a50011abfa6d121462c581e71251217a145facb2439c6ed8725cd0c88a05e3d6705c95ffee192bffea6abba7c3f88549b3d0e753c7096ddb06b2bc1c8a6228bb90fdede7d0223726a337ab31bc6e8e1602512c70169203320507a6f517676315a44532020314f72207520302038207020777246345777456b644333515a4d34315741206569303320783877725a4743436c432042516d6f6420757a396420483949674b57532020306e6670354d7064203231326478504c4d7131514366204b204939436b693241204a366f7656574a56676b3159505872394f414a67203332202020717a38744a20454d697172204e6d6f73203536206f49366b32792020206f54306e592020392057206c5074517520323036384a20665a724c4712205abe4502e7dca7dcbb689bcc5029ce5aa0b2eca80d9e86ad7a172a2a7ee02f5c", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 44629", + "2 | Fee : 322698640672.967396 penumbra", + "3 | Action [1/4] : Swap", + "3 | Action [2/4] : Input 3799090253.090584 penumbra", + "3 | Action [3/4] : Output Asset penumbra", + "3 | Action [4/4] : Claim Fee 0 penumbra", + "4 | Action [1/7] : Swap", + "4 | Action [2/7] : Input 550532632796.110272 penumbra", + "4 | Action [3/7] : Output Asset penumbra", + "4 | Action [4/7] : Claim Fee 0 penumbra", + "4 | Action [5/7] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [6/7] : SIGN (claim address in Swap not contro", + "4 | Action [7/7] : lled by user)", + "5 | Sender Address : Sub-account #70", + "5 | Memo Text [1/6] : i 3 PzoQvv1ZDS 1Or u 0 8 p wrF4WwEkdC", + "5 | Memo Text [2/6] : 3QZM41WA ei03 x8wrZGCClC BQmod uz9d H9", + "5 | Memo Text [3/6] : IgKWS 0nfp5Mpd 212dxPLMq1QCf K I9Cki2", + "5 | Memo Text [4/6] : A J6ovVWJVgk1YPXr9OAJg 32 qz8tJ EMiq", + "5 | Memo Text [5/6] : r Nmos 56 oI6k2y oT0nY 9 W lPtQu 20", + "5 | Memo Text [6/6] : 68J fZrLG" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 44629", + "2 | Fee : 322698640672.967396 penumbra", + "3 | Action [1/4] : Swap", + "3 | Action [2/4] : Input 3799090253.090584 penumbra", + "3 | Action [3/4] : Output Asset penumbra", + "3 | Action [4/4] : Claim Fee 0 penumbra", + "4 | Action [1/7] : Swap", + "4 | Action [2/7] : Input 550532632796.110272 penumbra", + "4 | Action [3/7] : Output Asset penumbra", + "4 | Action [4/7] : Claim Fee 0 penumbra", + "4 | Action [5/7] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "4 | Action [6/7] : SIGN (claim address in Swap not contro", + "4 | Action [7/7] : lled by user)", + "5 | Sender Address : Sub-account #70", + "5 | Memo Text [1/6] : i 3 PzoQvv1ZDS 1Or u 0 8 p wrF4WwEkdC", + "5 | Memo Text [2/6] : 3QZM41WA ei03 x8wrZGCClC BQmod uz9d H9", + "5 | Memo Text [3/6] : IgKWS 0nfp5Mpd 212dxPLMq1QCf K I9Cki2", + "5 | Memo Text [4/6] : A J6ovVWJVgk1YPXr9OAJg 32 qz8tJ EMiq", + "5 | Memo Text [5/6] : r Nmos 56 oI6k2y oT0nY 9 W lPtQu 20", + "5 | Memo Text [6/6] : 68J fZrLG" + ] + }, + { + "index": 37, + "blob": "0a9101ba038d010a220a202e6780a3c22a9e8be4673604e1d0e56bf5db177095c54a1b13438e36dcbf9a271091e6bf651a300a0a08fada9ceec8d0fb9c0612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08e2bea1b4ac8885940112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100aa901aa03a5010aa2010a300a0a089080ceb3d78be09e0912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a08df97d3e1f1e1f08d05220a08b4f083e9b9f7d19d0328f2c8f3fe0130f3c8f3fe0138ae98cdf5014220806f3e87865486ffada61dc369d35ce2771951343069bc8483ac00b8a7bb381a0aad01a201a9010a6308b5d0baa802120208011a220a201f46b486e103448075be60012793d24ced7abc5e6bafdb02d819e0121b63af9d22220a2026c56045caf7f753853b51bd1a6e9b15372b4cf92f1697359f4d2608d26693012a0f0a0d5379454a6c71495633364a554412420a40b65288a383585b66c1b892af09f549adf27182f1a0666d2dc2bb31596fcfdf1151f838b7fb243ea46128ff60fa4cef3057ab966437d351952cc836168c8b660012321222647466776a696a75747a616c6d62696e6677646d7171616c702d33393737313435381a0c0a0a08dfcdb88bd7fa8fb202", + "output": [ + "0 | Chain ID : dtfwjijutzalmbinfwdmqqalp-39771458", + "1 | Fee [1/3] : 172332871710549727 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/11] : DutchAuctionWithdraw", + "2 | Action [2/11] : Auction ID: pauctid19encpg7z920gher8xc", + "2 | Action [3/11] : zwr589d06ak9msjhz55xcngw8rdh9lngns6zxv", + "2 | Action [4/11] : hp", + "2 | Action [5/11] : Unsold: 448651890981809530 passet1984f", + "2 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "2 | Action [7/11] : 8nyt9fdggqxmanqm", + "2 | Action [8/11] : Proceeds: 83338870137577314 passet1984", + "2 | Action [9/11] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "2 | Action [10/11] : 08nyt9fdggqxmanqm", + "2 | Action [11/11] : Sequence number: 212857617", + "3 | Action [1/19] : DutchAuctionSchedule", + "3 | Action [2/19] : Selling: 665829458828296208 passet1984", + "3 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "3 | Action [4/19] : 08nyt9fdggqxmanqm", + "3 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "3 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [7/19] : Starting price: 368102264225975263 pas", + "3 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "3 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 665829458", + "3 | Action [10/19] : 828296208 passet1984fctenw8m2fpl8a9wzg", + "3 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [12/19] : Ending price: 232858676860352564 passe", + "3 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [14/19] : uhft808nyt9fdggqxmanqm for 66582945882", + "3 | Action [15/19] : 8296208 passet1984fctenw8m2fpl8a9wzguz", + "3 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [17/19] : Start block height: 534570098", + "3 | Action [18/19] : End block height: 534570099", + "3 | Action [19/19] : Steps: 515066926" + ], + "output_expert": [ + "0 | Chain ID : dtfwjijutzalmbinfwdmqqalp-39771458", + "1 | Fee [1/3] : 172332871710549727 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/11] : DutchAuctionWithdraw", + "2 | Action [2/11] : Auction ID: pauctid19encpg7z920gher8xc", + "2 | Action [3/11] : zwr589d06ak9msjhz55xcngw8rdh9lngns6zxv", + "2 | Action [4/11] : hp", + "2 | Action [5/11] : Unsold: 448651890981809530 passet1984f", + "2 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "2 | Action [7/11] : 8nyt9fdggqxmanqm", + "2 | Action [8/11] : Proceeds: 83338870137577314 passet1984", + "2 | Action [9/11] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "2 | Action [10/11] : 08nyt9fdggqxmanqm", + "2 | Action [11/11] : Sequence number: 212857617", + "3 | Action [1/19] : DutchAuctionSchedule", + "3 | Action [2/19] : Selling: 665829458828296208 passet1984", + "3 | Action [3/19] : fctenw8m2fpl8a9wzguzp7j34d7vravryuhft8", + "3 | Action [4/19] : 08nyt9fdggqxmanqm", + "3 | Action [5/19] : For: passet1984fctenw8m2fpl8a9wzguzp7j", + "3 | Action [6/19] : 34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [7/19] : Starting price: 368102264225975263 pas", + "3 | Action [8/19] : set1984fctenw8m2fpl8a9wzguzp7j34d7vrav", + "3 | Action [9/19] : ryuhft808nyt9fdggqxmanqm for 665829458", + "3 | Action [10/19] : 828296208 passet1984fctenw8m2fpl8a9wzg", + "3 | Action [11/19] : uzp7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [12/19] : Ending price: 232858676860352564 passe", + "3 | Action [13/19] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [14/19] : uhft808nyt9fdggqxmanqm for 66582945882", + "3 | Action [15/19] : 8296208 passet1984fctenw8m2fpl8a9wzguz", + "3 | Action [16/19] : p7j34d7vravryuhft808nyt9fdggqxmanqm", + "3 | Action [17/19] : Start block height: 534570098", + "3 | Action [18/19] : End block height: 534570099", + "3 | Action [19/19] : Steps: 515066926" + ] + }, + { + "index": 38, + "blob": "0a8a019a0386010a300a0a08c880dc94adeaa1fb0512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a5006f36991ec1c7c95224cc1e76c15da06a77887a70034bbdd817e1e6555fbd910ced01c0034a5bc0514867c3378ce5d98cb669d48cd7edfc19ee07c997eb0bd5bf28b53eb1dedc721eafa1ebb43b292e70a9101ba038d010a220a208cc227e6458d8a1ca3ded99d8c52486240ddffb69d4880b83a88941a829886c010d592a6311a300a0a08b995a0abae808fd30412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a088be7908df285e2f70512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10121d088ef602120a70656e756d6272612d311a0b0a0908e8b8bac88abce216", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 47886", + "2 | Fee : 12817971953.966184 penumbra", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid13npz0ej93k9peg77mx", + "3 | Action [3/7] : wcc5jgvfqdmlakn4ygpwp63z2p4q5csmqq0vpy", + "3 | Action [4/7] : tv", + "3 | Action [5/7] : Unsold: 335021205422.082745 penumbra", + "3 | Action [6/7] : Proceeds: 427710225632.736139 penumbra", + "3 | Action [7/7] : Sequence number: 103385429" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 47886", + "2 | Fee : 12817971953.966184 penumbra", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid13npz0ej93k9peg77mx", + "3 | Action [3/7] : wcc5jgvfqdmlakn4ygpwp63z2p4q5csmqq0vpy", + "3 | Action [4/7] : tv", + "3 | Action [5/7] : Unsold: 335021205422.082745 penumbra", + "3 | Action [6/7] : Proceeds: 427710225632.736139 penumbra", + "3 | Action [7/7] : Sequence number: 103385429" + ] + }, + { + "index": 39, + "blob": "0a42c2023f0a220a209b145ca741e8ad0cb5c5e2f05be0f0db591e4993a128c98b7ce143e57bf7a6b61091151a0a08aaf88de2bcabd28509220a08b8a0f0d783cac5a6040a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08e1a29dfc82c0dde80122020a002a520a5091f8bea2c1cebd6e073d8254f8d88cd08a539659fcefa43c56af5349920d390cdef66544335975e7a38a5256bc1d4823c6345fc35d88c1016637a8e860a1d3e0c4671195079594b60c6e10cb525e0ef832204247e1539666bd6b783a806378af0d05cf22bba2f6004e08f0acc93e05ab2ebd1a6e0a0608ffc7ccf005120608d4aba9b1041a0308cd03220308f9022a0308e10c320308df0d42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20383060e4082d97acea70ffde8e06dc7425364290a987e7dc2b413c88efb2ae053220dfdf18f7e05654fc9081090067baa3240e8d4b114e9c2da2e72245a338feaa06121a120a70656e756d6272612d311a0c0a0a08afcbdef998bd94ea01", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 131820352672.605615 penumbra", + "2 | Action [1/4] : Delegate", + "2 | Action [2/4] : To penumbravalid1nv29ef6pazksedw9utc9h", + "2 | Action [3/4] : c8smdv3ujvn5y5vnzmuu9p727lh56mqt2l3t0", + "2 | Action [4/4] : Input 651695229702.994986 penumbra" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 131820352672.605615 penumbra", + "2 | Action [1/4] : Delegate", + "2 | Action [2/4] : To penumbravalid1nv29ef6pazksedw9utc9h", + "2 | Action [3/4] : c8smdv3ujvn5y5vnzmuu9p727lh56mqt2l3t0", + "2 | Action [4/4] : Input 651695229702.994986 penumbra" + ] + }, + { + "index": 40, + "blob": "0a779201740a660a306661717261786269666d68646866797673736578752d3631333833393938393230323434343034323730303534383438123068666a727667696969726b616d72696361706a6c727869716a6a6e776e2d3234323837343138303237373636363231302a001a0a0886cfb890a6f4e4c40c0a9102128e020a300a0a0884de8d8ca7cacc980c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a5099c33c699e5b2348461aac689c492f481bb84a3710f38d4fe97f1cee5a22ea4c308c57284fc44cd48494f2f08cefe541eea1982d815a0277132632aad85a91d39cd09649918436c894eb5da015bcdc081a20277a266da70f8ab5fc5871aa5ad7afa84458606576038cbacec11698e58620122220054f38e60e04808be257f0f30fe7cf09eb4d581a8d552a4b23913a89f144fd032a2012c64d8fb7c654634e85ed0328b14226e2898e6e7d04cdda8e7be71172eb0905322091a5b87373805699044ca2b1a266585783538f228de3e4daa1089ad31ca02601123e08b8930a122a70686970756377626b636c6f6e6174772d333035363933363931373630363037313331333831383637371a0c0a0a08d287acf193a6fdf006", + "output": [ + "0 | Chain ID [1/2] : phipucwbkclonatw-305693691760607131381", + "0 | Chain ID [2/2] : 8677", + "1 | Expiry Height : 166328", + "2 | Fee [1/3] : 495947025832674258 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : Output 878538731987103492 passet1984fc", + "3 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "3 | Action [3/4] : nyt9fdggqxmanqm to penumbra1n8pnc6v7tv", + "3 | Action [4/4] : 35s3s6435fcjf0…" + ], + "output_expert": [ + "0 | Chain ID [1/2] : phipucwbkclonatw-305693691760607131381", + "0 | Chain ID [2/2] : 8677", + "1 | Expiry Height : 166328", + "2 | Fee [1/3] : 495947025832674258 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : Output 878538731987103492 passet1984fc", + "3 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "3 | Action [3/4] : nyt9fdggqxmanqm to penumbra1n8pnc6v7tv", + "3 | Action [4/4] : 35s3s6435fcjf0…" + ] + }, + { + "index": 41, + "blob": "0abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08a988f4cccda8ed9a0d1a0022020a002a520a509f7cb6b6db63726af5cc7f79be784cf330ca30585770dbe110312dfcfc0a81b312bec40edc4efe7c974b8b4c992a98526eaffdb3dc45b5935e425e9abc5c49aac173c6d1249031ee257a137e2f945afe3220bb00e3ab772c6e4d4bcebb180cb91cc4bd8234b619936318a0434226109e8f5b1220da8dfa525a112c7ccfda10b3565be291f2d0c73a26a154b489991a6d69bc1a001a203e4d2ce96dcb92a24a6a341764f368bda1e08f7b14ba40af5390425dc3aac30222207cf96e3f268e208b52199a31a9d734ad91427e4d4f162f9b2bfa063b1af7540c0a35a203320a300a0a08c6b2d991fbf3bede0b12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abe020abb020aa8010a300a0a08f29ce0839a9de0930212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012200be0283060703a1d070d2386db602be46ef8dbaf61b6967686226783b9a7fa5c1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710c886d2aba2af2c1a2006a8803d8eba0fd786cf78716c052e078dce0327d5df14b7c2d8660422187903222012115dff9dd5f4228bb2fb85ab667b16966426520ea0a69c00e594640e01cf032a2044fd486420b882bc67b67ab164d9bcf665ac3b954fa13d1391a216ad162e08023220ddcc538d10469268e6cac608448618c7cd7921742c68cded4dddf6588e5f420a121e0880f93a120a70656e756d6272612d311a0c0a0a08a9afb1efe49796d2042ad6010ab1010a520a5026dd8e4d4e14dd35dc8f5772f13ff44be3ac79d27368ba5e6626995341943e30535b0a1476bb4fe7f34de278eac692cb071d5742b7ff9ff8d7575dd5eff93ac4e382e6a34c295a75a7b1d9cd0113c1ab125b6e6e207443712020374d752020754978624f35303720594c45544a207049206132537a7737306d7a20783534777757795733513476204248576a664f374b715a206a72206f35572030206f59586a3020202038676c3047714279201220a9ef97cc06e8c93efd81121f10414d25c387973691d413649a86a13b2d02949a", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 965760", + "2 | Fee : 334489846706.624425 penumbra", + "3 | Action [1/4] : Swap", + "3 | Action [2/4] : Input 951866203572.077609 penumbra", + "3 | Action [3/4] : Output Asset penumbra", + "3 | Action [4/4] : Claim Fee 0 penumbra", + "4 | Action [1/2] : Spend 155234453075.52933 penumbra from", + "4 | Action [2/2] : Main Account", + "5 | Sender Address : penumbra1ymwcun2wznwnthy02ae0z0l5…", + "5 | Memo Text [1/3] : nn tCq 7Mu uIxbO507 YLETJ pI a2Szw70", + "5 | Memo Text [2/3] : mz x54wwWyW3Q4v BHWjfO7KqZ jr o5W 0 oY", + "5 | Memo Text [3/3] : Xj0 8gl0GqBy " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 965760", + "2 | Fee : 334489846706.624425 penumbra", + "3 | Action [1/4] : Swap", + "3 | Action [2/4] : Input 951866203572.077609 penumbra", + "3 | Action [3/4] : Output Asset penumbra", + "3 | Action [4/4] : Claim Fee 0 penumbra", + "4 | Action [1/2] : Spend 155234453075.52933 penumbra from", + "4 | Action [2/2] : Main Account", + "5 | Sender Address : penumbra1ymwcun2wznwnthy02ae0z0l5…", + "5 | Memo Text [1/3] : nn tCq 7Mu uIxbO507 YLETJ pI a2Szw70", + "5 | Memo Text [2/3] : mz x54wwWyW3Q4v BHWjfO7KqZ jr o5W 0 oY", + "5 | Memo Text [3/3] : Xj0 8gl0GqBy " + ] + }, + { + "index": 42, + "blob": "0a47ca02440a220a20d8f68fd5648dcf884c72a9068bb4929f4ea3e91e77710affd61c8a46ae703c3a1a0a089d9a8eb691a6d3f602220a08b3a4aea3de91e4a2072a0608dd2110dd210a35a203320a300a0a08bdb38287a0c3d4c20512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a27b203240a220a20c45cc2146dcb7d52a6c14d1a47b6027c457f8f3d05e7c0009ce542defc1d3b50121a120a70656e756d6272612d311a0c0a0a08b0ecd1d29fb6da9f032ab6020a91020a520a5013ee89a146f1f6d179e45c76a8fd71c2650892161c733b3d78e2effffa14bef5e549f58a560137e81b35745c6b6bc61f480e42b721b7612f27751cfa36efd872463fec70b8a457c5f7152eb3eeabbd4412ba0165206c314720743651706675354f64757420362020207a3443424f59433445332032533370435a3569205532595a663668717a3258453049474436577774785a20325363696a494a3656713851716d6620416a766e20704c2020493555204f373463206b686f343420533520204b754b3269586e4d47315368306342336f6a343720734f49203153724247794820496f686c7a303273434a3932636c39332036384c76442035674831434a2051356d72512042373920377843201220218cac34b34cb64f2608220ec89411831f18b9c98c7f2f696b90c44b2bfbe267", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 234021918776.522288 penumbra", + "2 | Action [1/10] : Undelegate", + "2 | Action [2/10] : From penumbravalid1mrmgl4ty3h8csnrj4yr", + "2 | Action [3/10] : ghdyjna8286g7wacs4l7krj9ydtns8saqxzf9k", + "2 | Action [4/10] : r", + "2 | Action [5/10] : Input 523983870755574323 passet1lpz0nn", + "2 | Action [6/10] : p2fxu5ssa2mdagm5tjrrwf3nc474quryw0tzzz", + "2 | Action [7/10] : n20vevxqygpd3u", + "2 | Action [8/10] : Output 210909630786931997 passet1vdw5j", + "2 | Action [9/10] : vpj3kymtazcuw2zh8zy7kcf238w884n2wg7ghy", + "2 | Action [10/10] : rw5cavvrqsmtq72", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1c3wvy9rded749fkpf5", + "3 | Action [3/4] : dy0dsz03zhlreaqhnuqqyuu4pdalqa8dgq5m6z", + "3 | Action [4/4] : ha", + "4 | Sender Address : Sub-account #62", + "4 | Memo Text [1/5] : e l1G t6Qpfu5Odut 6 z4CBOYC4E3 2S3pC", + "4 | Memo Text [2/5] : Z5i U2YZf6hqz2XE0IGD6WwtxZ 2ScijIJ6Vq8", + "4 | Memo Text [3/5] : Qqmf Ajvn pL I5U O74c kho44 S5 KuK2i", + "4 | Memo Text [4/5] : XnMG1Sh0cB3oj47 sOI 1SrBGyH Iohlz02sCJ", + "4 | Memo Text [5/5] : 92cl93 68LvD 5gH1CJ Q5mrQ B79 7xC " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 234021918776.522288 penumbra", + "2 | Action [1/10] : Undelegate", + "2 | Action [2/10] : From penumbravalid1mrmgl4ty3h8csnrj4yr", + "2 | Action [3/10] : ghdyjna8286g7wacs4l7krj9ydtns8saqxzf9k", + "2 | Action [4/10] : r", + "2 | Action [5/10] : Input 523983870755574323 passet1lpz0nn", + "2 | Action [6/10] : p2fxu5ssa2mdagm5tjrrwf3nc474quryw0tzzz", + "2 | Action [7/10] : n20vevxqygpd3u", + "2 | Action [8/10] : Output 210909630786931997 passet1vdw5j", + "2 | Action [9/10] : vpj3kymtazcuw2zh8zy7kcf238w884n2wg7ghy", + "2 | Action [10/10] : rw5cavvrqsmtq72", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1c3wvy9rded749fkpf5", + "3 | Action [3/4] : dy0dsz03zhlreaqhnuqqyuu4pdalqa8dgq5m6z", + "3 | Action [4/4] : ha", + "4 | Sender Address : Sub-account #62", + "4 | Memo Text [1/5] : e l1G t6Qpfu5Odut 6 z4CBOYC4E3 2S3pC", + "4 | Memo Text [2/5] : Z5i U2YZf6hqz2XE0IGD6WwtxZ 2ScijIJ6Vq8", + "4 | Memo Text [3/5] : Qqmf Ajvn pL I5U O74c kho44 S5 KuK2i", + "4 | Memo Text [4/5] : XnMG1Sh0cB3oj47 sOI 1SrBGyH Iohlz02sCJ", + "4 | Memo Text [5/5] : 92cl93 68LvD 5gH1CJ Q5mrQ B79 7xC " + ] + }, + { + "index": 43, + "blob": "0abe020abb020aa8010a300a0a08deb0aac6d383d4b10312220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220e1ce3112606a1bccf6efc03ec795640845a20a1fbb25803153a545c3998626d81a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710d3a78ad6e5d60f1a2065bc2308813801057190986f5aab6b865be2d154371b16737fa93718ce5143032220766b6fddb9cf87587ed57f4ab29497fa7e4cc413f981d9b9a00fe814b73cc7012a20dd00c70459eb1303127cb8f7c74b7070267b1c9f06be2846ad1638cb301e12033220e589f89d9190f3b7a51e3345900f74d495d001c5c9cdde5523f5b67ea12bc3090aab02aa01a70208e6a3f5b3021a02080222a8010a300a0a089c9ddcfea1b4fbca0c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220b330dae196befc2935f116940b52c10471dcd52818d9e60a8c66e217005a71c71a520a506e22da5f32aca0f7ef5ec9cd98696bba2b8b5ba6489a989b0b2fcabc66589929584cde63afb112ffa37eabe7478501c78961b525d19e17b50cea7a4e8ae60e10a42e19e90a2247c06b1202d6af405b6b320a08f7d9b39ddc92c799013a20199fd954d3fd9cf79eff811a19510c812c6db42f1c07aa629fd3d7bc926799024220b47a476b6e035bd7530265ebc2a75a901b05033bc5d91ab8f2c33a0bab446e074a20345d5c28ca8f106fbdb100e8d3ccfc5effcdc5f3e7a63daf0cce6bc904d2470d0a9102128e020a300a0a08adacd49ab589c3db0912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a5013ee89a146f1f6d179e45c76a8fd71c2650892161c733b3d78e2effffa14bef5e549f58a560137e81b35745c6b6bc61f480e42b721b7612f27751cfa36efd872463fec70b8a457c5f7152eb3eeabbd441a20d297549eeb76c9f918b52ab796af1d0fa8b97516c9ac5bad89027cadff40c2db2220c224face91c8119e24f78260340308e5258a029bf8886670518b7d2837e330022a205cc3d755595bd1e07f26f6fa57a3aba748a7855144f55a46635717e1e8e82a0a3220214d0a1dcb06eee4881eef3affbfd18ae3a1096bc982e20003b4209a1986f00d121a120a70656e756d6272612d311a0c0a0a08d8f4f7ac89affec9032a80040adb030a520a502542d7306c2daa4cd5e4470b1af22ce05334216bf6b00438ad9ecdcf6b9935e976070e7986c043a9e22955b23482f6fc1679a8761ad25d0337a79fa115cc5611d071f2c8cbd29a78634d2ec7cb64930a12840335203669443135433531206236204920706567446a73756648204520453420204f353974593478206a6e6f6b79516e6835612049425a79374620333937304c383920474f20727a6f6d3347206d61687156706b7034324f7a2074784a386b56333772696a4642386671443137306b72316466774845733020203820467771586f207a43346c4f38397737745272684d6558304e207a2054203737333934206959393779483220206b207a497370653272676d20376143377a3747495a722051353049202036323133377041356b3534372066394e462049556120202020322074354120316b756a78433061725533362035633346463939203153706f20517254203364562079336120504b715820202075643950206f5757502042467746203462656770207053352033566876352020547a59302020347920655074684a7334464778203220577220315950702036587241616c643230466f67772056615931483420513820334d546e206d4f6a67206575344d63616a7869724a496134696e504c20741220db9717ccbdf17c6f12dec98f023c85867b8137397b9ab436b3bf93312b43a61e", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 257823899991.800408 penumbra", + "2 | Action [1/2] : Spend 244126891245.21379 penumbra from", + "2 | Action [2/2] : Main Account", + "3 | Action [1/4] : DelegatorVote on Proposal 645747174", + "3 | Action [2/4] : Vote Yes", + "3 | Action [3/4] : Voting Power: 86444247408.766199 penum", + "3 | Action [4/4] : bra", + "4 | Action [1/2] : Output 700041784739.567149 penumbra to", + "4 | Action [2/2] : Sub-account #62", + "5 | Sender Address : penumbra1y4pdwvrv9k4ye40ygu934u3v…", + "5 | Memo Text [1/11] : 5 6iD15C51 b6 I pegDjsufH E E4 O59tY4", + "5 | Memo Text [2/11] : x jnokyQnh5a IBZy7F 3970L89 GO rzom3G ", + "5 | Memo Text [3/11] : mahqVpkp42Oz txJ8kV37rijFB8fqD170kr1df", + "5 | Memo Text [4/11] : wHEs0 8 FwqXo zC4lO89w7tRrhMeX0N z T ", + "5 | Memo Text [5/11] : 77394 iY97yH2 k zIspe2rgm 7aC7z7GIZr ", + "5 | Memo Text [6/11] : Q50I 62137pA5k547 f9NF IUa 2 t5A 1", + "5 | Memo Text [7/11] : kujxC0arU36 5c3FF99 1Spo QrT 3dV y3a P", + "5 | Memo Text [8/11] : KqX ud9P oWWP BFwF 4begp pS5 3Vhv5 ", + "5 | Memo Text [9/11] : TzY0 4y ePthJs4FGx 2 Wr 1YPp 6XrAald2", + "5 | Memo Text [10/11] : 0Fogw VaY1H4 Q8 3MTn mOjg eu4McajxirJI", + "5 | Memo Text [11/11] : a4inPL t" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 257823899991.800408 penumbra", + "2 | Action [1/2] : Spend 244126891245.21379 penumbra from", + "2 | Action [2/2] : Main Account", + "3 | Action [1/4] : DelegatorVote on Proposal 645747174", + "3 | Action [2/4] : Vote Yes", + "3 | Action [3/4] : Voting Power: 86444247408.766199 penum", + "3 | Action [4/4] : bra", + "4 | Action [1/2] : Output 700041784739.567149 penumbra to", + "4 | Action [2/2] : Sub-account #62", + "5 | Sender Address : penumbra1y4pdwvrv9k4ye40ygu934u3v…", + "5 | Memo Text [1/11] : 5 6iD15C51 b6 I pegDjsufH E E4 O59tY4", + "5 | Memo Text [2/11] : x jnokyQnh5a IBZy7F 3970L89 GO rzom3G ", + "5 | Memo Text [3/11] : mahqVpkp42Oz txJ8kV37rijFB8fqD170kr1df", + "5 | Memo Text [4/11] : wHEs0 8 FwqXo zC4lO89w7tRrhMeX0N z T ", + "5 | Memo Text [5/11] : 77394 iY97yH2 k zIspe2rgm 7aC7z7GIZr ", + "5 | Memo Text [6/11] : Q50I 62137pA5k547 f9NF IUa 2 t5A 1", + "5 | Memo Text [7/11] : kujxC0arU36 5c3FF99 1Spo QrT 3dV y3a P", + "5 | Memo Text [8/11] : KqX ud9P oWWP BFwF 4begp pS5 3Vhv5 ", + "5 | Memo Text [9/11] : TzY0 4y ePthJs4FGx 2 Wr 1YPp 6XrAald2", + "5 | Memo Text [10/11] : 0Fogw VaY1H4 Q8 3MTn mOjg eu4McajxirJI", + "5 | Memo Text [11/11] : a4inPL t" + ] + }, + { + "index": 44, + "blob": "0abe020abb020aa8010a300a0a08e5e9ba8a91c9aeca0d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220fb27fa93472c27323c1457c50183a75bc7406ee04577d90165674da1a51a7e2e1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710ace69bacf4d2191a20ea761fb130064092f4a49124e103851084887e9daf404c38245458517160bf002220584be3b9658181f0b08b8b009e94c26f16b81505202699a38fd2e290949691032a2031c5b8435b8b1d4bb83094093fbe1fb0c630915945616020777f15b57574110432200b1b9f53a65fa054c5ca8ba3a46893ea497d460988c02d2af73b6bac0edc74010a699201660a580a27616875686c7175692d333636323837383930303734393432323138313931303234383537303937122b6773706b687177736d6c6b69646a646876717171736c2d34343332313237303034373037373434303838362a001a0a089eacdbf2d0d1f994040a359203320a300a0a08d1ec9e80ff9af0eb0112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10124208b4db13122e6d6f6f67696e6267616a786577712d323939313537383833353336373436303232313633373032323136353439321a0c0a0a08b5cdfddfcd99a7a7042afb030ad6030a520a5050b73608e40ffee744459614e21f7083eef8d95c28bd981661971b2f2feb1c2e876e45856006d35f53b682ab583220cbdba5a2adc010bb89f73a771638bae22bf70f268af139969ae6dd0baec352512b12ff026530204b3365336a332065546a20705a61207a3635203467203335354d4d203052653620353732327a4238344720354b204142492066314c4a20494f322070754f636c4931472056496a36653532716a44344e20374d784766584a2020202061202073704451417472312020705857617951304a7a396261346f43206a205838332033595779666c5549203251754e66416d5a524164203134774c4d50462020646b6d565351345930306557626463395350202030203170204a32396f5120433562526a202068585853394f20204220666d63425a59486a52522020692020557866206b20304459304f20526f203120713245555567593449492045336f6d467a5143614b6f4a20366a7435394220304739324432505920414e576620517669202069693558204a766a512046512043205a315a20203645303556507a2044444e792064383920476469363220206c2020423949546b2054726238345467366f35655320542031484442566571393741695620445634647334392061794d6e122060b9af7fe32a244efaf45c63c2140d7b1f26ebdc9790e00088c8fcd682c060b5", + "output": [ + "0 | Chain ID [1/2] : mooginbgajxewq-29915788353674602216370", + "0 | Chain ID [2/2] : 22165492", + "1 | Expiry Height : 322996", + "2 | Fee [1/3] : 310357828013352629 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Spend 978611842031989989 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Sender Address : Sub-account #81", + "4 | Memo Text [1/11] : e0 K3e3j3 eTj pZa z65 4g 355MM 0Re6 57", + "4 | Memo Text [2/11] : 22zB84G 5K ABI f1LJ IO2 puOclI1G VIj6e", + "4 | Memo Text [3/11] : 52qjD4N 7MxGfXJ a spDQAtr1 pXWayQ", + "4 | Memo Text [4/11] : 0Jz9ba4oC j X83 3YWyflUI 2QuNfAmZRAd 1", + "4 | Memo Text [5/11] : 4wLMPF dkmVSQ4Y00eWbdc9SP 0 1p J29oQ", + "4 | Memo Text [6/11] : C5bRj hXXS9O B fmcBZYHjRR i Uxf k", + "4 | Memo Text [7/11] : 0DY0O Ro 1 q2EUUgY4II E3omFzQCaKoJ 6j", + "4 | Memo Text [8/11] : t59B 0G92D2PY ANWf Qvi ii5X JvjQ FQ C", + "4 | Memo Text [9/11] : Z1Z 6E05VPz DDNy d89 Gdi62 l B9ITk", + "4 | Memo Text [10/11] : Trb84Tg6o5eS T 1HDBVeq97AiV DV4ds49 a", + "4 | Memo Text [11/11] : yMn" + ], + "output_expert": [ + "0 | Chain ID [1/2] : mooginbgajxewq-29915788353674602216370", + "0 | Chain ID [2/2] : 22165492", + "1 | Expiry Height : 322996", + "2 | Fee [1/3] : 310357828013352629 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Spend 978611842031989989 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Sender Address : Sub-account #81", + "4 | Memo Text [1/11] : e0 K3e3j3 eTj pZa z65 4g 355MM 0Re6 57", + "4 | Memo Text [2/11] : 22zB84G 5K ABI f1LJ IO2 puOclI1G VIj6e", + "4 | Memo Text [3/11] : 52qjD4N 7MxGfXJ a spDQAtr1 pXWayQ", + "4 | Memo Text [4/11] : 0Jz9ba4oC j X83 3YWyflUI 2QuNfAmZRAd 1", + "4 | Memo Text [5/11] : 4wLMPF dkmVSQ4Y00eWbdc9SP 0 1p J29oQ", + "4 | Memo Text [6/11] : C5bRj hXXS9O B fmcBZYHjRR i Uxf k", + "4 | Memo Text [7/11] : 0DY0O Ro 1 q2EUUgY4II E3omFzQCaKoJ 6j", + "4 | Memo Text [8/11] : t59B 0G92D2PY ANWf Qvi ii5X JvjQ FQ C", + "4 | Memo Text [9/11] : Z1Z 6E05VPz DDNy d89 Gdi62 l B9ITk", + "4 | Memo Text [10/11] : Trb84Tg6o5eS T 1HDBVeq97AiV DV4ds49 a", + "4 | Memo Text [11/11] : yMn" + ] + }, + { + "index": 45, + "blob": "0a8a019a0386010a300a0a08e5b19389c4ef8fbd0612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a500af00e3bd0336eb3e8ba81c3e2d9a52763dde95f5e68db38e8c930063b297e8d3215b6f252946cd9da5f4195e126f8bbea30316ecfac93082e8bdd9e09327e26880e63a16b5d25f89fdf6b41163d8c190a099a010608c3f9b8a3020a27fa01240a220a202c341a27e8d07ef8af40f4d3cc88a9c0dfc71a165d0c05f0ef8a9d6b8fe163450a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108fa81bbcd03120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c088bf3acde0110abf4abdd0140d881d99696e584871812020a001a0c088bf3acde0110abf4abdd01228f0170656e756d62726131377172617a676e746368396e636464646c65367134767668363270716a677833673233763464366e6a76617378656438727774716e6d6c7378716b36726170613567793275643973657965786161363237656e657367656c61357163367770337235396d37397761616d64787766733873713373736c6466326c7173637532387a6577717635121a120a70656e756d6272612d311a0c0a0a0886cedec2b7e79c9101", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 81754442505.365254 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid19s6p5flg6pl03t6q7nfu", + "2 | Action [3/3] : ez9fcr0uwxskt5xqtu8032wkhrlpvdzsssq596" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 81754442505.365254 penumbra", + "2 | Action [1/3] : PositionClose", + "2 | Action [2/3] : Position ID plpid19s6p5flg6pl03t6q7nfu", + "2 | Action [3/3] : ez9fcr0uwxskt5xqtu8032wkhrlpvdzsssq596" + ] + }, + { + "index": 46, + "blob": "0aa702c20ca3020a0a08c2faa6a9d9fcc4fb0612160a1434437337377636613830556277693830645971431a8f0170656e756d62726131656a6777796b7070737768386564676e6e70666339727a3065336d366439673237706b68686b797437326735363076776774713432796c376b3565637564797267653268376c75387937676167616b647463786a6e71647a6e386e7a7676736561633930377a7536363437733867336566677461376e616b746a37767664396e346773746a6322520a50fad92ecdc0b89b9eb3b7757d2413a39fcaf889c028f7b2d32272ac9e449b08ef0c81cbf00188a9c4623a1526d667b71b85eb65e798120d1b035ac253faf56d707097a17f77f8eb00322c35636b20c01a2a0c08e6d8beb301108695deb5033a096368616e6e656c2d300a9101ba038d010a220a20fe1339e5fc65364f88ce5308b19c6c20abd801ebdfcc4f626332bdb9a0b545be10caf081101a300a0a08b6ebd6f581e393920812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08b4a1dfb5da95c9b90212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a099a0106088ef393c501121a120a70656e756d6272612d311a0c0a0a08d6fcea9bddc2fec00a", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 757161184024.247894 penumbra", + "2 | Action [1/9] : ICS20Withdrawal", + "2 | Action [2/9] : Channel channel-0", + "2 | Action [3/9] : Amount 501891760246078786 passet1ww0n5", + "2 | Action [4/9] : msl3yn9scgnw2eu3m0qflp3w7p26le4p668l5t", + "2 | Action [5/9] : l4hwy05zqlmu4tw", + "2 | Action [6/9] : To penumbra1ejgwykppswh8edgnnpfc9rz0e3", + "2 | Action [7/9] : m6d9g27pkhhkyt72g560vwgtq42yl7k5ecudyr", + "2 | Action [8/9] : ge2h7lu8y7gagakdtcxjnqdzn8nzvvseac907z", + "2 | Action [9/9] : u6647s8g3efgta7naktj7vvd9n4gstjc", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid1lcfnne0uv5mylzxw2v", + "3 | Action [3/7] : ytr8rvyz4asq0tmlxy7cnrx27mng94gklq9c8x", + "3 | Action [4/7] : 6q", + "3 | Action [5/7] : Unsold: 586680816478.041526 penumbra", + "3 | Action [6/7] : Proceeds: 176525138642.587828 penumbra", + "3 | Action [7/7] : Sequence number: 33585226" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 757161184024.247894 penumbra", + "2 | Action [1/9] : ICS20Withdrawal", + "2 | Action [2/9] : Channel channel-0", + "2 | Action [3/9] : Amount 501891760246078786 passet1ww0n5", + "2 | Action [4/9] : msl3yn9scgnw2eu3m0qflp3w7p26le4p668l5t", + "2 | Action [5/9] : l4hwy05zqlmu4tw", + "2 | Action [6/9] : To penumbra1ejgwykppswh8edgnnpfc9rz0e3", + "2 | Action [7/9] : m6d9g27pkhhkyt72g560vwgtq42yl7k5ecudyr", + "2 | Action [8/9] : ge2h7lu8y7gagakdtcxjnqdzn8nzvvseac907z", + "2 | Action [9/9] : u6647s8g3efgta7naktj7vvd9n4gstjc", + "3 | Action [1/7] : DutchAuctionWithdraw", + "3 | Action [2/7] : Auction ID: pauctid1lcfnne0uv5mylzxw2v", + "3 | Action [3/7] : ytr8rvyz4asq0tmlxy7cnrx27mng94gklq9c8x", + "3 | Action [4/7] : 6q", + "3 | Action [5/7] : Unsold: 586680816478.041526 penumbra", + "3 | Action [6/7] : Proceeds: 176525138642.587828 penumbra", + "3 | Action [7/7] : Sequence number: 33585226" + ] + }, + { + "index": 47, + "blob": "0ab001a201ac010a660891cba39302120208011a220a20de804696b70cd8b425edc85f45f6fb78792904a495838fa49a004eac2f5a7a5d22220a20f2d80e3f78414dc495f3c001658ea526f76ec0e2c5bb5d4f7a3178175c50bf082a120a10317535456a35613837575753635a535612420a40b00f9f96a4e2bfba0c3733c76e1e45a9c62013c9f9c199573179c66d10e70808aa8b673e1c7410ec2f476369404a15826ad0e1b87342312b32d803fd2098cd010ac4018201c0010a7c0a220a2084faf91b5f3317015ff008a26270dd90ceca760708ed27aebdb0e876765070111220f5483f6efddf0cc627a009050b7a42effc585a090a7f3dc69d64248552048aa81a0e746573742076616c696461746f7240014a220a2084faf91b5f3317015ff008a26270dd90ceca760708ed27aebdb0e876765070111240049b9602cfd325d35bb700c74ed888a0a9faaa5a277e92a4b3b99cd4e5df8c04bc72d1e997844f29850a63169f68608bd60159283ed46b38e6b8684f14b24b04121a120a70656e756d6272612d311a0c0a0a088bbba8d4cf9dcb8f082a9e010a7a0a520a508a402cd2f4eb1600aba5b691dc4dded10a3cecca94a9189630e4ae4de77f5c4f03f848251368ad35fdffdc4214eed63ec0cb47f88b2623cbc06b8c337905a6f58c0bb5f6c442a025046ec841c2c2d219122465563320434f384b716e312020524c393947682058433551394d20544f6538445531346412204f6ce7c069d2a3e0e851f7fa5aaa0cd7ddabbb6c44c8dc682b1f3b121ee29aa7", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 585235872908.713355 penumbra", + "2 | Sender Address : penumbra13fqze5h5avtqp2a9k6gacnw7…", + "2 | Memo Text : eV3 CO8Kqn1 RL99Gh XC5Q9M TOe8DU14d" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 585235872908.713355 penumbra", + "2 | Sender Address : penumbra13fqze5h5avtqp2a9k6gacnw7…", + "2 | Memo Text : eV3 CO8Kqn1 RL99Gh XC5Q9M TOe8DU14d" + ] + }, + { + "index": 48, + "blob": "0a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108d2f9848304120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c08abb2f2990310a68ef685024088c3e88597e584871812020a001a0c08abb2f2990310a68ef68502228f0170656e756d6272613179387277326b6863383661776a366b7371736a35326a37706b347636337672347968326e76763434337a323075327a39673935327667306b68707578337232327965726d32327a6e37636778747277363975657838307a61647a616c6b7a72766d307267736b346d35387079726a7436383564357164386c796a386e7077396a6e36396130640ac4018201c0010a7c0a220a20ac86514e6527814432e37d2b8aacaa362aa745a5895b57e9be0c26479092a1051220e76cdeaa970cfd61fffaca3f3d6cc8ad80e072841d335c67f4fd19e7eb5d84771a0e746573742076616c696461746f7240014a220a20ac86514e6527814432e37d2b8aacaa362aa745a5895b57e9be0c26479092a1051240aee8c428d1b43405a9cf63310b0222a482348874c42e7396519f976db9ffa00a62e0db1297900365d92fee6e89ce23ddd8bbcbc4b72768bb7e1089fbdf116804121a120a70656e756d6272612d311a0c0a0a08a5e1bbd8aae1fb9a0d2aa2040afd030a520a5049ab9f84a2ec601a8beb006714ee261910f6ef2de69e85acbfc59b098661255f43d4e13b0ec9b791270eb7e3a52c7c4caa57af872ed326ed8335d3efa58acd9b81eb1d600bc8ef6bbeefff61e2c5501a12a603413075682034206335787a70504f3358204e5052767420376b7a6d7141586e3577574a425735743172727467503338543757204c546969414f2038204a204f4b3320344c7578613850533350366f474478327a61337472784c655a2030714f20562058566268416c7920792036686420387420686e583420573133206a3120507677203543203046596e622039204420354e686f3567324538207a33794f50444220207664396720497776624a71207556457920333761207850437a2042204920626d204448624b49206359202061517446206331326520742032206b323164204d203778376b56204e202020203279424930205552644e6e78202032644e423920204c4f767964764733677974636120753539356e323620206f57354c77377220353839636e30353078716f4b79204e20783820305320374a4d576732336d726c202036474a42327261656f204d3938454477396f202033205759203430422020507137205320477a6f30682020394856476d305a367334512079366c5359203459713849302030206a334f69793553205037344e754e49206c74307535202042785642721220bb458c49ad47bc7e81f0be57f20f5aff2f14a5609b989c40fa1e727f0d16a921", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 951929725357.322405 penumbra", + "2 | Sender Address : Sub-account #59", + "2 | Memo Text [1/12] : A0uh 4 c5xzpPO3X NPRvt 7kzmqAXn5wWJBW5", + "2 | Memo Text [2/12] : t1rrtgP38T7W LTiiAO 8 J OK3 4Luxa8PS3P", + "2 | Memo Text [3/12] : 6oGDx2za3trxLeZ 0qO V XVbhAly y 6hd 8t", + "2 | Memo Text [4/12] : hnX4 W13 j1 Pvw 5C 0FYnb 9 D 5Nho5g2E", + "2 | Memo Text [5/12] : 8 z3yOPDB vd9g IwvbJq uVEy 37a xPCz B", + "2 | Memo Text [6/12] : I bm DHbKI cY aQtF c12e t 2 k21d M 7", + "2 | Memo Text [7/12] : x7kV N 2yBI0 URdNnx 2dNB9 LOvydvG", + "2 | Memo Text [8/12] : 3gytca u595n26 oW5Lw7r 589cn050xqoKy ", + "2 | Memo Text [9/12] : N x8 0S 7JMWg23mrl 6GJB2raeo M98EDw9o", + "2 | Memo Text [10/12] : 3 WY 40B Pq7 S Gzo0h 9HVGm0Z6s4Q y", + "2 | Memo Text [11/12] : 6lSY 4Yq8I0 0 j3Oiy5S P74NuNI lt0u5 B", + "2 | Memo Text [12/12] : xVBr" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 951929725357.322405 penumbra", + "2 | Sender Address : Sub-account #59", + "2 | Memo Text [1/12] : A0uh 4 c5xzpPO3X NPRvt 7kzmqAXn5wWJBW5", + "2 | Memo Text [2/12] : t1rrtgP38T7W LTiiAO 8 J OK3 4Luxa8PS3P", + "2 | Memo Text [3/12] : 6oGDx2za3trxLeZ 0qO V XVbhAly y 6hd 8t", + "2 | Memo Text [4/12] : hnX4 W13 j1 Pvw 5C 0FYnb 9 D 5Nho5g2E", + "2 | Memo Text [5/12] : 8 z3yOPDB vd9g IwvbJq uVEy 37a xPCz B", + "2 | Memo Text [6/12] : I bm DHbKI cY aQtF c12e t 2 k21d M 7", + "2 | Memo Text [7/12] : x7kV N 2yBI0 URdNnx 2dNB9 LOvydvG", + "2 | Memo Text [8/12] : 3gytca u595n26 oW5Lw7r 589cn050xqoKy ", + "2 | Memo Text [9/12] : N x8 0S 7JMWg23mrl 6GJB2raeo M98EDw9o", + "2 | Memo Text [10/12] : 3 WY 40B Pq7 S Gzo0h 9HVGm0Z6s4Q y", + "2 | Memo Text [11/12] : 6lSY 4Yq8I0 0 j3Oiy5S P74NuNI lt0u5 B", + "2 | Memo Text [12/12] : xVBr" + ] + }, + { + "index": 49, + "blob": "0aab02aa01a70208ffc5ede5021a02080222a8010a300a0a08cf9b929defe99dad0a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220eb3352411057b3fd5d182fba6635ca16dd59735fe46160ca6841e16140beda301a520a50721337a0a898ca54045b989edc90a32eb39bdf8423a2940e6f2259d6f7a8c2f9e3751e767d26c1ef82bb1e385cb40490a1bc1271f0fb4eeab2b4b2388330e02903f7417fd1f13051b39338c19d23c295320a08908acca5a59ce1e9063a20d8220489d73a10c72f5101f678b29e243800da9718cf70da8c70ca96f4ef11034220ea81bb7cfeb15ca9217d8568bc92cd534383eaea3c4f340c16ec584b55354f094a20b6550aa8098da3a5b4b4b00e6e2f17b26715b073838fce36b86928fb2449e9010a9201ba038e010a220a204c38695d4e0c2139f5f5a8ab64425b261c000d79261d3dfc3ae8e23de41046eb10f390f1c0031a300a0a08cec888a6fd87fa940d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08a891f8ffec9c849d0d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100ac201d202be010a220a20e0467f09cce1765f5ac010ba7fb317b8aeb2a0bfb6e41b6f961eb64c62bcbe4c22220a2000000000000000000000000000000000ff694467381d7dbf487fcb923a29c77a2a0a088883a0d1c9c9ede1053220ddff61d8d9bd9d021484e348cc69a2f76a0fec098c074b10952ef45bde1bc1003a20c03a478e85ba10d08a1c028e64e11f1ad389aeee28e7a6a183069ca6177c68104220e627914c83e1711cf75cf2ac436a06f3c0b8a6e3e61101e66fe5ce531905b30e4890c302123808d0d026122572656f776d6d707a6b76757179686a6d756b6d6e7862686163776b6d61657a2d32383530381a0b0a0908ef8e80d399cbd92d2aee030ac9030a520a50af3b4eb01886a918378cac980bd8deeb3d2f3cffc09a3fe7a0e60c448994d21a930927c6cb121a08c8e51bce8a470af79e85cd410d5b040b396e9e4f65a4c20478144423e567fce6d04309394722d84412f20246204130396a2020544d7a204b35202058597220774f453973207a6a6d6159714a68204d6e356f464261202049204a35337374574a66374420526a613377762074474932313369784971206977365133395132376a5a57636a3553572068584c4a204e5a466d4a747937362042746f4f4970207144473957206720306a7555586459586d5244726550653358366d3920202065462072706e7956716d7233575735383342574149205930203149355a65396d324746204420537020754f353420736d202038753478203569414120204b4634382048393448717220207a61317520747a7665204f597561666230207120454e20617a73357120316b312048484746626b33202043542020736d6533353976204e796c20433261416a696954612036203820694768354931322042672053207537204c6b30716749205a2058756e31703153205374757a6137447755414120304e206e386449413565366d20322043587a3720682035654a20384d5320596e2012207fd271d41610f094edb181e4cca3ca9619f6a0e055645ed715abe35a5949531f", + "output": [ + "0 | Chain ID : reowmmpzkvuqyhjmukmnxbhacwkmaez-28508", + "1 | Expiry Height : 632912", + "2 | Fee [1/3] : 25726757908776815 passet1984fctenw8m2f", + "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "2 | Fee [3/3] : qxmanqm", + "3 | Action [1/5] : DelegatorVote on Proposal 750478079", + "3 | Action [2/5] : Vote Yes", + "3 | Action [3/5] : Voting Power: 491882891932009744 passe", + "3 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid1fsuxjh2wpssnna044z", + "4 | Action [3/11] : 4kgsjmycwqqrteycwnmlp6ar3rmeqsgm4ss277", + "4 | Action [4/11] : kx", + "4 | Action [5/11] : Unsold: 948544557388276814 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 953092854660335784 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 941377651", + "5 | Action [1/4] : UndelegateClaim", + "5 | Action [2/4] : Value 415376030768300424 passet1xje3gj", + "5 | Action [3/4] : q2lhzt0xhwx2wxn4lpl5y9uqwc222enq2g3np6", + "5 | Action [4/4] : 8pdq5crsd3ny8y", + "6 | Sender Address : penumbra14ua5avqcs653sduv4jvqhkx7…", + "6 | Memo Text [1/10] : F A09j TMz K5 XYr wOE9s zjmaYqJh Mn5", + "6 | Memo Text [2/10] : oFBa I J53stWJf7D Rja3wv tGI213ixIq i", + "6 | Memo Text [3/10] : w6Q39Q27jZWcj5SW hXLJ NZFmJty76 BtoOIp", + "6 | Memo Text [4/10] : qDG9W g 0juUXdYXmRDrePe3X6m9 eF rpn", + "6 | Memo Text [5/10] : yVqmr3WW583BWAI Y0 1I5Ze9m2GF D Sp uO5", + "6 | Memo Text [6/10] : 4 sm 8u4x 5iAA KF48 H94Hqr za1u tzv", + "6 | Memo Text [7/10] : e OYuafb0 q EN azs5q 1k1 HHGFbk3 CT ", + "6 | Memo Text [8/10] : sme359v Nyl C2aAjiiTa 6 8 iGh5I12 Bg S", + "6 | Memo Text [9/10] : u7 Lk0qgI Z Xun1p1S Stuza7DwUAA 0N n8", + "6 | Memo Text [10/10] : dIA5e6m 2 CXz7 h 5eJ 8MS Yn " + ], + "output_expert": [ + "0 | Chain ID : reowmmpzkvuqyhjmukmnxbhacwkmaez-28508", + "1 | Expiry Height : 632912", + "2 | Fee [1/3] : 25726757908776815 passet1984fctenw8m2f", + "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "2 | Fee [3/3] : qxmanqm", + "3 | Action [1/5] : DelegatorVote on Proposal 750478079", + "3 | Action [2/5] : Vote Yes", + "3 | Action [3/5] : Voting Power: 491882891932009744 passe", + "3 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "4 | Action [1/11] : DutchAuctionWithdraw", + "4 | Action [2/11] : Auction ID: pauctid1fsuxjh2wpssnna044z", + "4 | Action [3/11] : 4kgsjmycwqqrteycwnmlp6ar3rmeqsgm4ss277", + "4 | Action [4/11] : kx", + "4 | Action [5/11] : Unsold: 948544557388276814 passet1984f", + "4 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "4 | Action [7/11] : 8nyt9fdggqxmanqm", + "4 | Action [8/11] : Proceeds: 953092854660335784 passet198", + "4 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "4 | Action [10/11] : 808nyt9fdggqxmanqm", + "4 | Action [11/11] : Sequence number: 941377651", + "5 | Action [1/4] : UndelegateClaim", + "5 | Action [2/4] : Value 415376030768300424 passet1xje3gj", + "5 | Action [3/4] : q2lhzt0xhwx2wxn4lpl5y9uqwc222enq2g3np6", + "5 | Action [4/4] : 8pdq5crsd3ny8y", + "6 | Sender Address : penumbra14ua5avqcs653sduv4jvqhkx7…", + "6 | Memo Text [1/10] : F A09j TMz K5 XYr wOE9s zjmaYqJh Mn5", + "6 | Memo Text [2/10] : oFBa I J53stWJf7D Rja3wv tGI213ixIq i", + "6 | Memo Text [3/10] : w6Q39Q27jZWcj5SW hXLJ NZFmJty76 BtoOIp", + "6 | Memo Text [4/10] : qDG9W g 0juUXdYXmRDrePe3X6m9 eF rpn", + "6 | Memo Text [5/10] : yVqmr3WW583BWAI Y0 1I5Ze9m2GF D Sp uO5", + "6 | Memo Text [6/10] : 4 sm 8u4x 5iAA KF48 H94Hqr za1u tzv", + "6 | Memo Text [7/10] : e OYuafb0 q EN azs5q 1k1 HHGFbk3 CT ", + "6 | Memo Text [8/10] : sme359v Nyl C2aAjiiTa 6 8 iGh5I12 Bg S", + "6 | Memo Text [9/10] : u7 Lk0qgI Z Xun1p1S Stuza7DwUAA 0N n8", + "6 | Memo Text [10/10] : dIA5e6m 2 CXz7 h 5eJ 8MS Yn " + ] + }, + { + "index": 50, + "blob": "0a27b203240a220a20cce472a46ab32cdd0de97f7313c133742dad61056bbba884549a00e6c199105d0aab02aa01a70208e0dba0eb011a02080122a8010a300a0a08f9a0c59ba3a1d0860912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012205a07207ad35ce1edd3ac421e0f1f665e19f42e53096466d0da5ccefc807cf06a1a520a509bb6c7ba9ad446be38c23451673353986a3fd4ecd5b506152e9d5dc052cb1f42deb16aa32fbc8f9f62c70a860620287e513cc3d284aa0637609c8ca5323ca0cce02522b10aa60b173027aa590d556bce320a08f3bfb9ab85c4caba063a20d1f82bff49b9778081e3517c64146de1e69c0716cd2a0fdda0916fe47b7588044220a365b5cbadd2c347f353b307b2cc37dff8e69fc998a5309c83882af68d7db30e4a201730d0a2519e2c5fd9213847c5fb015c17e55bdb75b734c19a622598b9accc080ac4018201c0010a7c0a220a20f0b2562dbcfee2e911cac8d52a88018bdd2ddcd37cc753230cc6d9faed2d15001220ef8da09c66d65e7d10c568a408b073c93915477f340338f078fc3e4be48da94f1a0e746573742076616c696461746f7240014a220a20f0b2562dbcfee2e911cac8d52a88018bdd2ddcd37cc753230cc6d9faed2d15001240e432fbda8ce7c4f38709b7899d89413506d037a42b1e27d4de752969d92bc4071a94ad4f29244a9c3c0439295ca21924c03cfa093ea853f161e28802d307f502123108a3d002121d627a747276776876706f66736b756873667667766f65696c737a2d38351a0c0a0a08c091a0a8a4b8838503", + "output": [ + "0 | Chain ID : bztrvwhvpofskuhsfvgvoeilsz-85", + "1 | Expiry Height : 43043", + "2 | Fee [1/3] : 219002659913861312 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1enj89fr2kvkd6r0f0a", + "3 | Action [3/4] : e38sfnwsk66cg9dwa63pz5ngqwdsvezpwscxgp", + "3 | Action [4/4] : 72", + "4 | Action [1/5] : DelegatorVote on Proposal 493366752", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 465324454863331315 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : bztrvwhvpofskuhsfvgvoeilsz-85", + "1 | Expiry Height : 43043", + "2 | Fee [1/3] : 219002659913861312 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid1enj89fr2kvkd6r0f0a", + "3 | Action [3/4] : e38sfnwsk66cg9dwa63pz5ngqwdsvezpwscxgp", + "3 | Action [4/4] : 72", + "4 | Action [1/5] : DelegatorVote on Proposal 493366752", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 465324454863331315 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm" + ] + }, + { + "index": 51, + "blob": "0a8a019a0386010a300a0a08b6e6d9ccbdc5dce70712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a5081bf7f657c0316029857ade4df2467e8c3e8f505670e0990fdde35f946f284df678362ae311d25f4730322a87660d20026f8fdcf4413da6ff6578411c45aa14c54a2815525b543c5a8387a321f7650920a359203320a300a0a08e2ce88c8ecc3a5b40212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08daabd38bccb2d3dd0622020a002a520a509b9ee3d1276bf31f0a126810014dcbc19a7b83d7605e8edf01681c14cd2a51bde34b9fd437a9b974b23af73d7d09a91db10363551e46b877398816c8a247440a23f3085f37f33c2feefe0322d06645553220c4b4630719702fbdb3c10fbce12d1f69c9393e5649a09079d745fd1d99dbfffe12205f16d28c636b49e75b4db4d47b91cb5048a521783b4dc314198e69aa486a26041a204a72235b6606c8fb16f48e811a24166578186b01cd47ce81da6abae391a2ba032220dffa8c8cce4507cd694fbedaf2b7a4de822545eaf13622f8e3250eb14d3d010f0a27fa01240a220a20ba487fd04b54bb0ebef2b6d26957ee667c513f3420ecadfc4c2ce479406063b8124b123b796269636270616d636f66686f7079726e7a646a6a776b666a636769612d34353131323530303736373330313734353037343033393932303238351a0c0a0a08ecd893b78d80a5ce052ab6010a91010a520a5050b73608e40ffee744459614e21f7083eef8d95c28bd981661971b2f2feb1c2e876e45856006d35f53b682ab583220cbdba5a2adc010bb89f73a771638bae22bf70f268af139969ae6dd0baec352512b123b376b386f4e4e38752020663878396a796747692051203445654173202050614820574a77394f6920587420206e6755307859327430444364584f761220a18c4afce0ad4177b4b83d5350f33fa8e88c810169d0195ab29321aa3962d985", + "output": [ + "0 | Chain ID [1/2] : ybicbpamcofhopyrnzdjjwkfjcgia-45112500", + "0 | Chain ID [2/2] : 767301745074039920285", + "1 | Fee [1/3] : 404360797882739820 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/13] : Swap", + "2 | Action [2/13] : Input 485066686168618458 passet1984fct", + "2 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [4/13] : yt9fdggqxmanqm", + "2 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "2 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "2 | Action [7/13] : qm", + "2 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "2 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "2 | Action [10/13] : m", + "2 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [12/13] : SIGN (claim address in Swap not contro", + "2 | Action [13/13] : lled by user)", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1hfy8l5zt2jasa0hjkmfx", + "3 | Action [3/3] : j4lwve79z0e5yrk2mlzv9nj8jsrqvwuqq83lzk", + "4 | Sender Address : Sub-account #81", + "4 | Memo Text [1/2] : 7k8oNN8u f8x9jygGi Q 4EeAs PaH WJw9O", + "4 | Memo Text [2/2] : i Xt ngU0xY2t0DCdXOv" + ], + "output_expert": [ + "0 | Chain ID [1/2] : ybicbpamcofhopyrnzdjjwkfjcgia-45112500", + "0 | Chain ID [2/2] : 767301745074039920285", + "1 | Fee [1/3] : 404360797882739820 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/13] : Swap", + "2 | Action [2/13] : Input 485066686168618458 passet1984fct", + "2 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [4/13] : yt9fdggqxmanqm", + "2 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "2 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "2 | Action [7/13] : qm", + "2 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "2 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "2 | Action [10/13] : m", + "2 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [12/13] : SIGN (claim address in Swap not contro", + "2 | Action [13/13] : lled by user)", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1hfy8l5zt2jasa0hjkmfx", + "3 | Action [3/3] : j4lwve79z0e5yrk2mlzv9nj8jsrqvwuqq83lzk", + "4 | Sender Address : Sub-account #81", + "4 | Memo Text [1/2] : 7k8oNN8u f8x9jygGi Q 4EeAs PaH WJw9O", + "4 | Memo Text [2/2] : i Xt ngU0xY2t0DCdXOv" + ] + }, + { + "index": 52, + "blob": "0a099a0106089284aebe030a6a9201670a5a0a29657069707a75727567776a6677667a69767a622d393331373633363534353132353039373831303234122b736b72666c75797264637563742d32353836363832313330313038373335373839383231323738373631382a001a0908c9c0ba88d9c3941c124408a0ef27123075696f78656869647677687377656c71797368726c6a706b61636471682d3938323232343339353839313134393239381a0c0a0a08fce4df86f399c9f6032aca020aa5020a520a501aeac1df68bf246c0f088de0f6f42a1702316783cb5ed881292c1d376fa697f1c160c874e9385d2d93d02b86cdc2e6bd17c7c134939433937157dc71ca0791b59ba8f6873cb251d8c3abffa173fc2f4212ce0130424f374d44375420205335523363786e49636376204f326a3220472020573932204536643247766635206b7a206f424e35464675376a394242653447317435666f4b6870346b2037303766206934462020334445344f57206b314669784e71654456337063202034416d50476c57366e4e614564503138386a45326932313420646820342020553334304e346c4a49764d4b5349776a7a304b20594f3439354a652036466b736e6e4965466258206532524a71775920574659505838363220506d4d4353594338686f7534647512207cd4d713b9f8e6789b908e77bf57c4b497797ec4ba84fff04aa5dd050ec27ceb", + "output": [ + "0 | Chain ID [1/2] : uioxehidvwhswelqyshrljpkacdqh-98222439", + "0 | Chain ID [2/2] : 5891149298", + "1 | Expiry Height : 653216", + "2 | Fee [1/3] : 282922823890498172 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Sender Address : penumbra1rt4vrhmghujxcrcg3hs0dap2…", + "3 | Memo Text [1/6] : 0BO7MD7T S5R3cxnIccv O2j2 G W92 E6d2", + "3 | Memo Text [2/6] : Gvf5 kz oBN5FFu7j9BBe4G1t5foKhp4k 707f", + "3 | Memo Text [3/6] : i4F 3DE4OW k1FixNqeDV3pc 4AmPGlW6nN", + "3 | Memo Text [4/6] : aEdP188jE2i214 dh 4 U340N4lJIvMKSIwjz", + "3 | Memo Text [5/6] : 0K YO495Je 6FksnnIeFbX e2RJqwY WFYPX86", + "3 | Memo Text [6/6] : 2 PmMCSYC8hou4du" + ], + "output_expert": [ + "0 | Chain ID [1/2] : uioxehidvwhswelqyshrljpkacdqh-98222439", + "0 | Chain ID [2/2] : 5891149298", + "1 | Expiry Height : 653216", + "2 | Fee [1/3] : 282922823890498172 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Sender Address : penumbra1rt4vrhmghujxcrcg3hs0dap2…", + "3 | Memo Text [1/6] : 0BO7MD7T S5R3cxnIccv O2j2 G W92 E6d2", + "3 | Memo Text [2/6] : Gvf5 kz oBN5FFu7j9BBe4G1t5foKhp4k 707f", + "3 | Memo Text [3/6] : i4F 3DE4OW k1FixNqeDV3pc 4AmPGlW6nN", + "3 | Memo Text [4/6] : aEdP188jE2i214 dh 4 U340N4lJIvMKSIwjz", + "3 | Memo Text [5/6] : 0K YO495Je 6FksnnIeFbX e2RJqwY WFYPX86", + "3 | Memo Text [6/6] : 2 PmMCSYC8hou4du" + ] + }, + { + "index": 53, + "blob": "0a9602c20c92020a0a088cb98fc6ce83cea90412050a036862391a8f0170656e756d627261316e796676367973747836796377397165656638787974306e70326438676c776164676b76716b3832706b7736657a786a6a79367579797863756d33377a786776746c6d743071373065716179687a64377a377439797674636e743037776c656873776e61637377797130736c6733686e7a6778326a79376334686b357930377277677670747022520a5036f2ac1826927b7791b13f2c2ea6ed13f86938fb618d80fa3aad157fca1da805db9995900adcdda205e7055d8a3d1ae15e07a447011f36eb207cc31a701291ba86a483f22bcd4590cafdd8d668bd9afa2a0c089f919da10310d3f59899033a096368616e6e656c2d300a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab30108db97e9a604120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08e6aec16a10cce5afbc024098ef8e8599e584871812020a001a0b08e6aec16a10cce5afbc02228f0170656e756d62726131347078676e346d737068363032677330337672346561306b72387564377367387a7065727072797a753767707a667736363371347a65667475337577757374337364736d336a653275346832763361656d71326734377061723334336663666b343576677764736871766764787874307574777a767968616368753671776d346b356537766e0a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108db94ddca04120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c088bb7c0a30110dc9493c40240f8ec819499e584871812020a001a0c088bb7c0a30110dc9493c402228f0170656e756d62726131786c3964637336616763637533673632373333327a396c73306e7a61676b377a6c773235723063686a346c346c74786c39636739347632707732726c70393335776b766b716571666a30666b77676a3430783538353376636b766674757971616d70376d666b346e6c366776776376747179353063396537636c6b723268343476337a706c38121a120a70656e756d6272612d311a0c0a0a08d9e5c2eda29bcdf7012aca020aa5020a520a5008d9b45f98d9559a862560a3e0de24491331108d4f4919530426d46eb07f0af0a51b10ed2ae410e759d36ee4298e42c4381dc9359a261a3c7cfe35c2682797d97e5bef9894035db46c49fe990d988be012ce01307720516c3820612031416333354158382066357241426931775238473361456a63444e204f2054207230203420386449206957766f716458596e574e326b3830202020204e204d364f206455716e7a39626f4833562020324e306b326168322061644a696175392072332061644a3279736d342056356269372055414a20202038642044206d5648552063393937304b20354b714c36384a757063726e76616f7763317437675420314f7049756f202020622033666c20664161205420384e4120206668636a205545556f49461220ba34671d6eed0a625f84a9fd48fa5367a202fa7f5025beec58d483f769c82a42", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 139388225145.844441 penumbra", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 311654496034086028 passet1y0knx", + "2 | Action [4/12] : vjg9p6dj63xzmhus8pe9lhpuage4cyejkqqrh8", + "2 | Action [5/12] : 3umd035fqceat25", + "2 | Action [6/12] : To penumbra1nyfv6ystx6ycw9qeef8xyt0np2", + "2 | Action [7/12] : d8glwadgkvqk82pkw6ezxjjy6uyyxcum37zxgv", + "2 | Action [8/12] : tlmt0q70eqayhzd7z7t9yvtcnt07wlehswnacs", + "2 | Action [9/12] : wyq0slg3hnzgx2jy7c4hk5y07rwgvptp", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)", + "3 | Sender Address : Sub-account #6", + "3 | Memo Text [1/6] : 0w Ql8 a 1Ac35AX8 f5rABi1wR8G3aEjcDN O", + "3 | Memo Text [2/6] : T r0 4 8dI iWvoqdXYnWN2k80 N M6O d", + "3 | Memo Text [3/6] : Uqnz9boH3V 2N0k2ah2 adJiau9 r3 adJ2ys", + "3 | Memo Text [4/6] : m4 V5bi7 UAJ 8d D mVHU c9970K 5KqL68", + "3 | Memo Text [5/6] : Jupcrnvaowc1t7gT 1OpIuo b 3fl fAa T ", + "3 | Memo Text [6/6] : 8NA fhcj UEUoIF" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 139388225145.844441 penumbra", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 311654496034086028 passet1y0knx", + "2 | Action [4/12] : vjg9p6dj63xzmhus8pe9lhpuage4cyejkqqrh8", + "2 | Action [5/12] : 3umd035fqceat25", + "2 | Action [6/12] : To penumbra1nyfv6ystx6ycw9qeef8xyt0np2", + "2 | Action [7/12] : d8glwadgkvqk82pkw6ezxjjy6uyyxcum37zxgv", + "2 | Action [8/12] : tlmt0q70eqayhzd7z7t9yvtcnt07wlehswnacs", + "2 | Action [9/12] : wyq0slg3hnzgx2jy7c4hk5y07rwgvptp", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)", + "3 | Sender Address : Sub-account #6", + "3 | Memo Text [1/6] : 0w Ql8 a 1Ac35AX8 f5rABi1wR8G3aEjcDN O", + "3 | Memo Text [2/6] : T r0 4 8dI iWvoqdXYnWN2k80 N M6O d", + "3 | Memo Text [3/6] : Uqnz9boH3V 2N0k2ah2 adJiau9 r3 adJ2ys", + "3 | Memo Text [4/6] : m4 V5bi7 UAJ 8d D mVHU c9970K 5KqL68", + "3 | Memo Text [5/6] : Jupcrnvaowc1t7gT 1OpIuo b 3fl fAa T ", + "3 | Memo Text [6/6] : 8NA fhcj UEUoIF" + ] + }, + { + "index": 54, + "blob": "0aa901aa03a5010aa2010a300a0a08a183b8bc90e0d7f60612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a089de7aca1fa96d3cf04220a08ebb1d1c283c6878d0128c0dbf0ae0330c1dbf0ae0338b6bfdbe30242208233b51dbb8545a740bd2f982327c5e237d5272a3194e310b35c23520b27b6cd0a35a203320a300a0a08d88deee9f3cec39f0c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abb01a201b7010a7108dda6d859120208031a220a20b9bc4ab4b2a3adcd59420278d1f72373b33f2a8d1082ab6bcd8192a791dc52fc22220a2022345b780f8a48976c66e6cf38c40344d24456b98025d63f45f9c729573ba3002a1e0a1c7a6e6e497472394d654534774555517646543477704d6d737179504512420a40ea9f0b53e43d096db685714369b18a99ec725b49773a06290d73f9bc74f9e10c27755ce1a2ef2a410b8008f834622f4226bf8539b1b59656d1762f1596b08c030a27b203240a220a201adfa3f03e7e5c7ddace958c5ff0175170f342e264d1290f3e6169a56b654b50121e08dc8536120a70656e756d6272612d311a0c0a0a08d8a5aba1b8ccf69b04", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 885468", + "2 | Fee : 303951620824.814296 penumbra", + "3 | Action [1/10] : DutchAuctionSchedule", + "3 | Action [2/10] : Selling: 499159591734.346145 penumbra", + "3 | Action [3/10] : For: penumbra", + "3 | Action [4/10] : Starting price: 333069249065726877 pen", + "3 | Action [5/10] : umbra for 499159591734346145 penumbra", + "3 | Action [6/10] : Ending price: 79409135884720363 penumb", + "3 | Action [7/10] : ra for 499159591734346145 penumbra", + "3 | Action [8/10] : Start block height: 903622080", + "3 | Action [9/10] : End block height: 903622081", + "3 | Action [10/10] : Steps: 745988022", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid1rt068up70ew8mkkwjk", + "4 | Action [3/4] : x9luqh29c0xshzvngjjre7v95626m9fdgqd8mk", + "4 | Action [4/4] : jp" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 885468", + "2 | Fee : 303951620824.814296 penumbra", + "3 | Action [1/10] : DutchAuctionSchedule", + "3 | Action [2/10] : Selling: 499159591734.346145 penumbra", + "3 | Action [3/10] : For: penumbra", + "3 | Action [4/10] : Starting price: 333069249065726877 pen", + "3 | Action [5/10] : umbra for 499159591734346145 penumbra", + "3 | Action [6/10] : Ending price: 79409135884720363 penumb", + "3 | Action [7/10] : ra for 499159591734346145 penumbra", + "3 | Action [8/10] : Start block height: 903622080", + "3 | Action [9/10] : End block height: 903622081", + "3 | Action [10/10] : Steps: 745988022", + "4 | Action [1/4] : DutchAuctionEnd", + "4 | Action [2/4] : Auction ID: pauctid1rt068up70ew8mkkwjk", + "4 | Action [3/4] : x9luqh29c0xshzvngjjre7v95626m9fdgqd8mk", + "4 | Action [4/4] : jp" + ] + }, + { + "index": 55, + "blob": "0a27b203240a220a20c5f13373d46a7249784b201315020846e55fe0e3b7569ddb280018338596f3b40a6292015f0a510a396262706273787477777961616e6379626674726a6f6c6d776e71632d3435313431373230303934383735383636353536393231353132353630121265612d3232323332383433303338383334332a001a0a089d8197baaee29399040a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08bd8082f195b89aa80322020a002a520a50dd8196e583419b04d21323ec17f268a1fe00ceed410adee0ff6b336f95ab056685f8e7c5f6bbb43d2cd869f40e398dce7e743c9a8a6f2de458790c16765fe8e0b087d81ff19dceb9caee1385824677f73220f9847ee2399700e064e15b0b5c76edf5298f005643d1ed744f2ae08eec6c8cc51a6e0a0608feeb92ac07120608a4b8e9e4041a0308fa0c220308fb072a0308c20d320308eb0642480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20c5c9826b2fd1eaf7666c87ea8a29bec916dbf9e1e537ff976b29efc215f268033220568f77d391e4c32435991cc39c7103e369db86b7568d6487642824bfcde5f40b0a27b203240a220a20ad0974086d044be60739baa7ef83e33d4a02c71bb6c074ce9aa0a1f32e48801a121a120a70656e756d6272612d311a0c0a0a08a0e6b4a1d3ffcddd0c2ab8030a93030a520a509f7cb6b6db63726af5cc7f79be784cf330ca30585770dbe110312dfcfc0a81b312bec40edc4efe7c974b8b4c992a98526eaffdb3dc45b5935e425e9abc5c49aac173c6d1249031ee257a137e2f945afe12bc0236367420614e446e764d6b77457520326220764b31683639777344302034525732434d33203770202020775554744f796b333731643339617a59656f4b49203852434a4339586e674238334d314d20326779434735336957207a20374d76302075523568416c30786131547a2020703132624150456a71337130346b4858202032717063314a37204a77583762322020356f69207974352037484730326d33375a2076554f3744206e42736467207379454932454e4c202075684a2078763120534f73504d202020204a204f6d71346f7733616b5720766a663720796c326a37426775767853424a5374795147776270446a536936706e5020206f205249372038392041635620375a7768474520336439716e4f20397164204354303741526430396e6f374c3620446f6f4c564a304b61565875204b2037353020311220893a208ec31b3be5a3390f7b777880353b3e3570443c87db42c2b6b32d26423c", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 917388509741.658912 penumbra", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1chcnxu75dfeyj7ztyq", + "2 | Action [3/4] : f32qsggmj4lc8rkatfmkegqqvr8pvk7w6q30yx", + "2 | Action [4/4] : 0q", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid145yhgzrdq397vpeeh2", + "3 | Action [3/4] : n7lqlr849q93cmkmq8fn565zslxtjgsqdqcykp", + "3 | Action [4/4] : ac", + "4 | Sender Address : Sub-account #46", + "4 | Memo Text [1/9] : 66t aNDnvMkwEu 2b vK1h69wsD0 4RW2CM3 7", + "4 | Memo Text [2/9] : p wUTtOyk371d39azYeoKI 8RCJC9XngB83M", + "4 | Memo Text [3/9] : 1M 2gyCG53iW z 7Mv0 uR5hAl0xa1Tz p12b", + "4 | Memo Text [4/9] : APEjq3q04kHX 2qpc1J7 JwX7b2 5oi yt5 ", + "4 | Memo Text [5/9] : 7HG02m37Z vUO7D nBsdg syEI2ENL uhJ xv", + "4 | Memo Text [6/9] : 1 SOsPM J Omq4ow3akW vjf7 yl2j7Bguv", + "4 | Memo Text [7/9] : xSBJStyQGwbpDjSi6pnP o RI7 89 AcV 7Zw", + "4 | Memo Text [8/9] : hGE 3d9qnO 9qd CT07ARd09no7L6 DooLVJ0K", + "4 | Memo Text [9/9] : aVXu K 750 1" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 917388509741.658912 penumbra", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1chcnxu75dfeyj7ztyq", + "2 | Action [3/4] : f32qsggmj4lc8rkatfmkegqqvr8pvk7w6q30yx", + "2 | Action [4/4] : 0q", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid145yhgzrdq397vpeeh2", + "3 | Action [3/4] : n7lqlr849q93cmkmq8fn565zslxtjgsqdqcykp", + "3 | Action [4/4] : ac", + "4 | Sender Address : Sub-account #46", + "4 | Memo Text [1/9] : 66t aNDnvMkwEu 2b vK1h69wsD0 4RW2CM3 7", + "4 | Memo Text [2/9] : p wUTtOyk371d39azYeoKI 8RCJC9XngB83M", + "4 | Memo Text [3/9] : 1M 2gyCG53iW z 7Mv0 uR5hAl0xa1Tz p12b", + "4 | Memo Text [4/9] : APEjq3q04kHX 2qpc1J7 JwX7b2 5oi yt5 ", + "4 | Memo Text [5/9] : 7HG02m37Z vUO7D nBsdg syEI2ENL uhJ xv", + "4 | Memo Text [6/9] : 1 SOsPM J Omq4ow3akW vjf7 yl2j7Bguv", + "4 | Memo Text [7/9] : xSBJStyQGwbpDjSi6pnP o RI7 89 AcV 7Zw", + "4 | Memo Text [8/9] : hGE 3d9qnO 9qd CT07ARd09no7L6 DooLVJ0K", + "4 | Memo Text [9/9] : aVXu K 750 1" + ] + }, + { + "index": 56, + "blob": "0aae01a201aa010a64089fb88d9f02120208011a220a203574a8f3552740054329863fe994302a945b769cf1fe6974ede34029de84f40b22220a20269c6ea199f8f99d3d62fd8720139f6ed6178bbca2406c63ae4458036ae8f1012a100a0e39437269793867456a6c44344a3312420a406865aba40a3529799cdd69ae6bb76e7790698c5b502f3a4b4751b273e781bf02558c9b7c209bc56d8b6614feefdbb48f428941e0a6339b324f0c8be6fcde33020a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08bd89e49e89be999a0d22020a002a520a50c968cc8a1d3aadd242c807a34502a01ea0c88a5996a23fa28cd07c840e1488b24778570106373bd783267eaf93cd8d490578171850ed4d51d73db7cb1a5d061e4b0fdd9fcf0c2056f8ef687325e9c6773220d389496fcf9d04f626e110efc23ca6aaeb80bb95132e5bf14a94ef117239ecf51a6e0a0608cd8be5d104120608aaa5f6a1051a0308c80d2203088e092a0308e90a320308c90142480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20f631865de5f7c4a00cd8185161c80ff1df0a1b703109a063e1cd404febc55d023220ff5d639ecfa64a0d587aa152371bf3c7e5731350f4d60cb85c8c47f53c461b030a8e03228b030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a0887dee9c9e5c3ef93051a0022020a002a520a504bb9c2fa06f3437e98758987d3d66749d1b379e38ac9687d375886ec0d0fd98d7733fd9c14df164dda53cd1b8fee015c8dea76ce172c0f44740c11baf9f5662b3a7d83b4dadf2f7aaf4fbbe99246f7b032206d421151ed6d82ec74c21332730484eed5505603fa2c5f4f50851bf66571856d1a6d0a0608f4c1aea404120608bff9b286041a02087e220308890d2a0308d207320308950442480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a2083cd312a8d4d2df40e02d863ea0f4290e897d327564a2a279f99659561fae1093220126d6104686bbcea03a90db0402f99df4ce419095ff32d39dd3202c333c02508123608899a251222652d37393531333534373735313432323237363836393431303837353934313731371a0c0a0a08d0aceeda9aa19af80c2ae9020ac4020a520a50b3fec2af915496f0dd12f78ef34c64002d7c3131a3211d442194484e8476fd593806f7eb16844b0ab460eb00e6735f1db8dc28f48a46a05faf7cd5e2e3976c6910ed9f61d26ff63e9e274831a616c3e312ed015720767834344620327a43202066435320204320323348446a2051703320336666686d386e2020766320786a2062774620352032724330207847554d383536324d6b67562046205a4c2072203567596e704567323632736735375236657572344957757471323642525920543859353770536a3079636c7a2020316e36684c4c204c207055494d3920343920772043334e652033346257636b346c7443644a47702034355142325166205444506863566934474f4a574e44544a505659316920586c342020734465516d346e7a675138326a5a553520203120334c2037714a507878203363625731755a204c341220678b825b9c8d1f24637ea7b526ccb2387c7b3ea4dec25eabac2fe1fbf07189fa", + "output": [ + "0 | Chain ID : e-79513547751422276869410875941717", + "1 | Expiry Height : 609545", + "2 | Fee [1/3] : 932360613116221008 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Sender Address : Sub-account #88", + "3 | Memo Text [1/7] : W vx44F 2zC fCS C 23HDj Qp3 3ffhm8n ", + "3 | Memo Text [2/7] : vc xj bwF 5 2rC0 xGUM8562MkgV F ZL r ", + "3 | Memo Text [3/7] : 5gYnpEg262sg57R6eur4IWutq26BRY T8Y57pS", + "3 | Memo Text [4/7] : j0yclz 1n6hLL L pUIM9 49 w C3Ne 34bWc", + "3 | Memo Text [5/7] : k4ltCdJGp 45QB2Qf TDPhcVi4GOJWNDTJPVY1", + "3 | Memo Text [6/7] : i Xl4 sDeQm4nzgQ82jZU5 1 3L 7qJPxx 3", + "3 | Memo Text [7/7] : cbW1uZ L4" + ], + "output_expert": [ + "0 | Chain ID : e-79513547751422276869410875941717", + "1 | Expiry Height : 609545", + "2 | Fee [1/3] : 932360613116221008 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Sender Address : Sub-account #88", + "3 | Memo Text [1/7] : W vx44F 2zC fCS C 23HDj Qp3 3ffhm8n ", + "3 | Memo Text [2/7] : vc xj bwF 5 2rC0 xGUM8562MkgV F ZL r ", + "3 | Memo Text [3/7] : 5gYnpEg262sg57R6eur4IWutq26BRY T8Y57pS", + "3 | Memo Text [4/7] : j0yclz 1n6hLL L pUIM9 49 w C3Ne 34bWc", + "3 | Memo Text [5/7] : k4ltCdJGp 45QB2Qf TDPhcVi4GOJWNDTJPVY1", + "3 | Memo Text [6/7] : i Xl4 sDeQm4nzgQ82jZU5 1 3L 7qJPxx 3", + "3 | Memo Text [7/7] : cbW1uZ L4" + ] + }, + { + "index": 57, + "blob": "0a8a019a0386010a300a0a08bcf08598afc8a9c10812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50e367b7d110aa1ff1f8dcb0cd0f6fd9d38859d558c2ef21a28e2f36651c6e26d60e81b7b6ef5b1e6176112f28a0f055c29f1e810b2ed0ccb123f2c249beb3d816040436c4b359a6b2b3189394bf0f24e10a9602c20c92020a0a08ede6f0c89283aacd0112050a0370344e1a8f0170656e756d62726131723536327a7936386b383537736467736461686365646e717361656d30687061386d72716c77377271307032703630307134753078336d387a6d32777a34763075616339326d3979677a71373776307079756a3933656b356b71653779366366336a3478326d64397a666d756b376c70366361666a687133323375736c657a7433673935386a22520a5034a5b5a1f061be00db5cf3fe76b4ebe7f72df5940661e92b805ce0a266c2c7121f62294303ec43b4215d948dfde3e83d6bbd764694259eb879cac657b3e3b5a8f931bda1b688d6f7d5a89d7e919c09c62a0c08dcf39a9e0210d6b290cd033a096368616e6e656c2d300a19b20116089ea7d1cb03120a08bdc6bdafd69bd9a7041a020a000ac4018201c0010a7c0a220a2068331a9c1b18c040c63a7372e7a3258cc60ba54b195ad08713e59d42097a0e0a1220ea268be93c4fdeaea9516a7d6f63fab2f960d40cdc6610c99354def32300525d1a0e746573742076616c696461746f7240014a220a2068331a9c1b18c040c63a7372e7a3258cc60ba54b195ad08713e59d42097a0e0a12407a7d5d86e3337a4170039ffaeb14cb8dfa282b08340a8e423113ec64f574fc0a02dee6d0d3d834769ed1c8961de3143979a63a427f6320e8a11e8639f2453502121e08a6981b120a70656e756d6272612d311a0c0a0a0886b09ea096d5a4f307", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 445478", + "2 | Fee : 569303659134.294022 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 115589566468731757 passet1475pw", + "3 | Action [4/12] : 3u6we7x59s9r9d2mknlmggm77h90ykyqr7t94l", + "3 | Action [5/12] : s0783ayzqfqv4zu", + "3 | Action [6/12] : To penumbra1r562zy68k857sdgsdahcednqsa", + "3 | Action [7/12] : em0hpa8mrqlw7rq0p2p600q4u0x3m8zm2wz4v0", + "3 | Action [8/12] : uac92m9ygzq77v0pyuj93ek5kqe7y6cf3j4x2m", + "3 | Action [9/12] : d9zfmuk7lp6cafjhq323uslezt3g958j", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 445478", + "2 | Fee : 569303659134.294022 penumbra", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 115589566468731757 passet1475pw", + "3 | Action [4/12] : 3u6we7x59s9r9d2mknlmggm77h90ykyqr7t94l", + "3 | Action [5/12] : s0783ayzqfqv4zu", + "3 | Action [6/12] : To penumbra1r562zy68k857sdgsdahcednqsa", + "3 | Action [7/12] : em0hpa8mrqlw7rq0p2p600q4u0x3m8zm2wz4v0", + "3 | Action [8/12] : uac92m9ygzq77v0pyuj93ek5kqe7y6cf3j4x2m", + "3 | Action [9/12] : d9zfmuk7lp6cafjhq323uslezt3g958j", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)" + ] + }, + { + "index": 58, + "blob": "0a19b2011608b4eb82a602120a08f8c8a9c79de8fa99081a021a000aaf01f201ab010aa8010a640a18120a08d7dba6ea8693d88b091a0a08828d91b1c9b795970612480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080122180a0a08aed4caf5cbc7d18c0c120a08d382ddcd93bbee8f0c28010a47ca02440a220a20c913b21faca237a7b526e09124f1383b3bb185556fa8ca271c45e8d91a2ee4b61a0a088399a6cafe87c6d106220a0891e69ee4f49daec4082a0608ad0a10ad0a0a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab30108beb89aa601120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08c88f8e0810f5fac18e0240e0c9ce879be584871812020a001a0b08c88f8e0810f5fac18e02228f0170656e756d627261317a63333761667134346b6d68786b37346c3237786334396163327434666d77716e30303873356d7863646d34393866357533396c33393679686e6768656a756e686d7a3576366168767777337661737a3670743866743663366839777037706c6d71673636377935743239736d36337173773568616e7536746e6c3733706b78326470376338121a120a70656e756d6272612d311a0c0a0a08a9fa99ed91f084c1072ad7020ab2020a520a500953419f5c84737d00ce6b2d1c0996a8e907f2f6fa4e6864076ebdc0c908784610890672acba2d5c9e2f2ea03fb451b3c244f33508acc7120268d325af8e7f834d0893bb014d3db48a2392009068e84512db016e662055304333785675206b52733131663420494720706c20502069616269776155477168702046324f20763738433643207671763472203420337270366549202020593773334220206b2078547820202039203832734d206e6c434f364b447633744b4b3342316a66585a3138686b63203331204b617658774b20353420442020485955207a355941393730713530685a66483333454f4d2030617231206f5a20204e69302046706932443264206b67307139616875203937345671563669354d36747277315877497a78202075713144576d203520392062341220a7ec94df8b28813e3e3203b810aab1282f7ac6184c1d8f523766aa497dfbf9c3", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 541016350507.040041 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 871805229584.263726 penumb", + "2 | Action [3/9] : ra", + "2 | Action [4/9] : Reserves 2: 873621195360.518483 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 655098478590537175", + "2 | Action [7/9] : Trading Function q: 445387681617430146", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1eyfmy8av5gm60dfxuzg", + "3 | Action [3/10] : jfufc8vamrp24d75v5fcugh5djx3wujmq35lgv", + "3 | Action [4/10] : d", + "3 | Action [5/10] : Input 614944687056728849 passet1f7alaz", + "3 | Action [6/10] : 9u7y8r3xgrx7xs4ea5m0m4f506pnpwz93ark6e", + "3 | Action [7/10] : 02qlgqzsah2296", + "3 | Action [8/10] : Output 478252648207322243 passet1ng7j9", + "3 | Action [9/10] : 2jq99ft5z2sq0we583vw866uj59pal24jqjqf2", + "3 | Action [10/10] : xwm2css8sj39j2c", + "4 | Sender Address : Sub-account #84", + "4 | Memo Text [1/6] : nf U0C3xVu kRs11f4 IG pl P iabiwaUGqhp", + "4 | Memo Text [2/6] : F2O v78C6C vqv4r 4 3rp6eI Y7s3B k ", + "4 | Memo Text [3/6] : xTx 9 82sM nlCO6KDv3tKK3B1jfXZ18hkc ", + "4 | Memo Text [4/6] : 31 KavXwK 54 D HYU z5YA970q50hZfH33EO", + "4 | Memo Text [5/6] : M 0ar1 oZ Ni0 Fpi2D2d kg0q9ahu 974VqV", + "4 | Memo Text [6/6] : 6i5M6trw1XwIzx uq1DWm 5 9 b4" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 541016350507.040041 penumbra", + "2 | Action [1/9] : PositionOpen", + "2 | Action [2/9] : Reserves 1: 871805229584.263726 penumb", + "2 | Action [3/9] : ra", + "2 | Action [4/9] : Reserves 2: 873621195360.518483 penumb", + "2 | Action [5/9] : ra", + "2 | Action [6/9] : Trading Function p: 655098478590537175", + "2 | Action [7/9] : Trading Function q: 445387681617430146", + "2 | Action [8/9] : Fee: 0", + "2 | Action [9/9] : Close on fill: true", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1eyfmy8av5gm60dfxuzg", + "3 | Action [3/10] : jfufc8vamrp24d75v5fcugh5djx3wujmq35lgv", + "3 | Action [4/10] : d", + "3 | Action [5/10] : Input 614944687056728849 passet1f7alaz", + "3 | Action [6/10] : 9u7y8r3xgrx7xs4ea5m0m4f506pnpwz93ark6e", + "3 | Action [7/10] : 02qlgqzsah2296", + "3 | Action [8/10] : Output 478252648207322243 passet1ng7j9", + "3 | Action [9/10] : 2jq99ft5z2sq0we583vw866uj59pal24jqjqf2", + "3 | Action [10/10] : xwm2css8sj39j2c", + "4 | Sender Address : Sub-account #84", + "4 | Memo Text [1/6] : nf U0C3xVu kRs11f4 IG pl P iabiwaUGqhp", + "4 | Memo Text [2/6] : F2O v78C6C vqv4r 4 3rp6eI Y7s3B k ", + "4 | Memo Text [3/6] : xTx 9 82sM nlCO6KDv3tKK3B1jfXZ18hkc ", + "4 | Memo Text [4/6] : 31 KavXwK 54 D HYU z5YA970q50hZfH33EO", + "4 | Memo Text [5/6] : M 0ar1 oZ Ni0 Fpi2D2d kg0q9ahu 974VqV", + "4 | Memo Text [6/6] : 6i5M6trw1XwIzx uq1DWm 5 9 b4" + ] + }, + { + "index": 59, + "blob": "0a19b2011608d2dcdbad01120a08a2fd99a09cdca4810d1a021a000a8e0182028a010a180a0a0888e5f2e9979b9ae602120a08d0b9d1b4a5dafdc60212220a20b944adec05e68f5479e9c1a0baa74ffc0b249ad02d92bb58461ea4db4ca0426d1a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010aaf01f201ab010aa8010a640a18120a08f4b9cb82b0fd89b4041a0a08d5858d94e8b2d59f0c12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a08cfcbfec0d8baac8f08120a088e8ba9f4cd899ccd042801121e0899e216120a70656e756d6272612d311a0c0a0a08b1b7b7ccd5d298ca0d2aa0040afb030a520a50cf4929c2020fe90e7dd54676d0cb4532645c875222600bd6898dcdaecc136ffc213cca675b646acff952a94105937faeba45f9b62a3d9884ed20b5fab6b1a879b458a04ba8d90aed3f7be307bdc08d3512a40330594c6f6e3139444f7520697952207520687736697757324a3179483520203367203841505a317859204e4c306520733469672064202036202034512020207969564e67686867574a374479203338767a3473714320207478206656474d5761204772384d693067622068546c7133734d79322076623549376e4f38204f435034706e20302020463137597455342055647834516320666834206e384a65725a6d6d4b4779314f6d20394a20204d6556696c5642507730384720445720674441516555467438376a397448464730354c4b47452020204f363664356320754559395a305420337a53312020443373574620424977782042202077203420395a634b4f6820542034674756453764786f4a4e454b396c4472205720733066644949463456342075683859516b79202075207868206e332020466720206b49395277393136374d3272575a3866465a6a207a39326b4a6b204f7a347643702030445a3879453131516e20207549204162454f206e334f306520777973382067432038397534703536336377363220334c20536c6b326f6a7070382067313420327a20572056201220a66c203b04e1e6d11de76bdadcb5df758e56425271cff9235aa9fe733e647832", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 373017", + "2 | Fee : 978515412638.358449 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1h9z2mmq9u684g70fcxst", + "3 | Action [3/4] : 4f60ls9jfxks9kftkkzxr6jdkn9qgfks4z6ajs", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 585100532274.669007 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 331700998018.581902 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 317547664005848308", + "4 | Action [7/9] : Trading Function q: 882518156911002325", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Sender Address : penumbra1eayjnsszpl5sulw4gemdpj69…", + "5 | Memo Text [1/12] : 0YLon19DOu iyR u hw6iwW2J1yH5 3g 8APZ", + "5 | Memo Text [2/12] : 1xY NL0e s4ig d 6 4Q yiVNghhgWJ7Dy", + "5 | Memo Text [3/12] : 38vz4sqC tx fVGMWa Gr8Mi0gb hTlq3sMy", + "5 | Memo Text [4/12] : 2 vb5I7nO8 OCP4pn 0 F17YtU4 Udx4Qc fh", + "5 | Memo Text [5/12] : 4 n8JerZmmKGy1Om 9J MeVilVBPw08G DW g", + "5 | Memo Text [6/12] : DAQeUFt87j9tHFG05LKGE O66d5c uEY9Z0T", + "5 | Memo Text [7/12] : 3zS1 D3sWF BIwx B w 4 9ZcKOh T 4gGV", + "5 | Memo Text [8/12] : E7dxoJNEK9lDr W s0fdIIF4V4 uh8YQky u ", + "5 | Memo Text [9/12] : xh n3 Fg kI9Rw9167M2rWZ8fFZj z92kJk ", + "5 | Memo Text [10/12] : Oz4vCp 0DZ8yE11Qn uI AbEO n3O0e wys8 ", + "5 | Memo Text [11/12] : gC 89u4p563cw62 3L Slk2ojpp8 g14 2z W ", + "5 | Memo Text [12/12] : V " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 373017", + "2 | Fee : 978515412638.358449 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1h9z2mmq9u684g70fcxst", + "3 | Action [3/4] : 4f60ls9jfxks9kftkkzxr6jdkn9qgfks4z6ajs", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 585100532274.669007 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 331700998018.581902 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 317547664005848308", + "4 | Action [7/9] : Trading Function q: 882518156911002325", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Sender Address : penumbra1eayjnsszpl5sulw4gemdpj69…", + "5 | Memo Text [1/12] : 0YLon19DOu iyR u hw6iwW2J1yH5 3g 8APZ", + "5 | Memo Text [2/12] : 1xY NL0e s4ig d 6 4Q yiVNghhgWJ7Dy", + "5 | Memo Text [3/12] : 38vz4sqC tx fVGMWa Gr8Mi0gb hTlq3sMy", + "5 | Memo Text [4/12] : 2 vb5I7nO8 OCP4pn 0 F17YtU4 Udx4Qc fh", + "5 | Memo Text [5/12] : 4 n8JerZmmKGy1Om 9J MeVilVBPw08G DW g", + "5 | Memo Text [6/12] : DAQeUFt87j9tHFG05LKGE O66d5c uEY9Z0T", + "5 | Memo Text [7/12] : 3zS1 D3sWF BIwx B w 4 9ZcKOh T 4gGV", + "5 | Memo Text [8/12] : E7dxoJNEK9lDr W s0fdIIF4V4 uh8YQky u ", + "5 | Memo Text [9/12] : xh n3 Fg kI9Rw9167M2rWZ8fFZj z92kJk ", + "5 | Memo Text [10/12] : Oz4vCp 0DZ8yE11Qn uI AbEO n3O0e wys8 ", + "5 | Memo Text [11/12] : gC 89u4p563cw62 3L Slk2ojpp8 g14 2z W ", + "5 | Memo Text [12/12] : V " + ] + }, + { + "index": 60, + "blob": "0a27b203240a220a20dea6075b124c4ded5f5b7db801615b811b246bead9512b20fd9b555d5122a7b70ac8021ac5020adc010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08d3a2d58ce18dda9b051a0a08aaa0e9ddc5d8d78a0222020a002a520a5028442e0cc76830b12ba0847c656d569e3fa605e38b51c134544a57b4b200b5d15481407bcc32f79619c077343a1bad824772e0f65bd40a018fed55aad7b2d524df6b021aad55d1ac214122e9c1922ab3322020097f25e64fae30f888f0378ba2537569a1f5b6f1ca0a56d52529d19b9dafa41220555a0b7cc6757dab3d8071a1466c754a8c329910d465d922f922e99495213a001a201d948f4287fd9d2d8476350710e70cb431d708b0bd07ff04e4dfffbdfb52ab002220aeb9566fd9b9136e3947a14b2c56d46a68fa781a1192cb57f81997952d2b0d080a359203320a300a0a0885e2a8a3acbdefe50c12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abd021aba020ad1010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120908ef95dcc4c38aa27c1a0022020a002a520a50ddff0b4a77ce013121a93c41543ed474dcf321df6c0edb3b23c557c70d16702997bce9856a1c98d101b19d83df641f72532f6ced7d2bc8dd52eb7826e70e46d823b960023e9b51adfeb489c2b594761632206b3cf0dc7caa8e635bd4f5884dc124a3e4f1b0c8c0e6e5d333ae26023ccfbb2c1220a5c16d9aaf8eb914ce41bc7287eb1d82e1f3ff9f8c1466ceb47e6f1d7391c0031a200ffdedd80212c0750120f83c385b8cfd11e2ecd3e3dff050f5280a498f0bf20c2220a55741e9f7c4ca2478ab6d3a760759ca93e0f5846d1c64e804def818defd960b124612366a7a6e6f6370767261727970757a666c7a786d6c68776264767a6c6678722d36363730343136323730303736313031373532313535351a0c0a0a08b2f09791e5a6a9a008", + "output": [ + "0 | Chain ID [1/2] : jznocpvrarypuzflzxmlhwbdvzlfxr-6670416", + "0 | Chain ID [2/2] : 2700761017521555", + "1 | Fee [1/3] : 594656803537942578 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1m6nqwkcjf3x76h6m0k", + "2 | Action [3/4] : uqzc2msydjg6l2m9gjkg8and2465fz57ms8mgl", + "2 | Action [4/4] : 5v", + "3 | Action [1/14] : Swap", + "3 | Action [2/14] : Input 150130360032317482 passet1984fct", + "3 | Action [3/14] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [4/14] : yt9fdggqxmanqm", + "3 | Action [5/14] : Output Asset passet1984fctenw8m2fpl8a9", + "3 | Action [6/14] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "3 | Action [7/14] : qm", + "3 | Action [8/14] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "3 | Action [9/14] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "3 | Action [10/14] : m", + "3 | Action [11/14] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [12/14] : SIGN (claim address in Swap not contro", + "3 | Action [13/14] : lled by user) (invalid swap: one delta", + "3 | Action [14/14] : must be nonzero)", + "4 | Action [1/10] : Swap", + "4 | Action [2/10] : Input 69955689532295919 passet1984fcte", + "4 | Action [3/10] : nw8m2fpl8a9wzguzp7j34d7vravryuhft808ny", + "4 | Action [4/10] : t9fdggqxmanqm", + "4 | Action [5/10] : Output Asset passet1984fctenw8m2fpl8a9", + "4 | Action [6/10] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "4 | Action [7/10] : qm", + "4 | Action [8/10] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "4 | Action [9/10] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "4 | Action [10/10] : m" + ], + "output_expert": [ + "0 | Chain ID [1/2] : jznocpvrarypuzflzxmlhwbdvzlfxr-6670416", + "0 | Chain ID [2/2] : 2700761017521555", + "1 | Fee [1/3] : 594656803537942578 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1m6nqwkcjf3x76h6m0k", + "2 | Action [3/4] : uqzc2msydjg6l2m9gjkg8and2465fz57ms8mgl", + "2 | Action [4/4] : 5v", + "3 | Action [1/14] : Swap", + "3 | Action [2/14] : Input 150130360032317482 passet1984fct", + "3 | Action [3/14] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [4/14] : yt9fdggqxmanqm", + "3 | Action [5/14] : Output Asset passet1984fctenw8m2fpl8a9", + "3 | Action [6/14] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "3 | Action [7/14] : qm", + "3 | Action [8/14] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "3 | Action [9/14] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "3 | Action [10/14] : m", + "3 | Action [11/14] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [12/14] : SIGN (claim address in Swap not contro", + "3 | Action [13/14] : lled by user) (invalid swap: one delta", + "3 | Action [14/14] : must be nonzero)", + "4 | Action [1/10] : Swap", + "4 | Action [2/10] : Input 69955689532295919 passet1984fcte", + "4 | Action [3/10] : nw8m2fpl8a9wzguzp7j34d7vravryuhft808ny", + "4 | Action [4/10] : t9fdggqxmanqm", + "4 | Action [5/10] : Output Asset passet1984fctenw8m2fpl8a9", + "4 | Action [6/10] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "4 | Action [7/10] : qm", + "4 | Action [8/10] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "4 | Action [9/10] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "4 | Action [10/10] : m" + ] + }, + { + "index": 61, + "blob": "0a27b203240a220a201617771f2f372b74d02bef7cd9cc9f822b20090ced273e897e4d5385b8e5b31a0a27fa01240a220a20e715c6d551a0b19eb3eb995e0500d3f0702e48646cd7ce0d72a7472e4f88ca370a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab3010891cbc4f201120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08dd8188c503109b998f5a40a0bbb5879ce584871812020a001a0b08dd8188c503109b998f5a228f0170656e756d62726131667775753937737837647068617872343378726138346e386638676d783730723374796b736c6668747a7277637267306d78786877766c616e73326437396a646d666675367875306163713465723032776d38707774713067333671637964366c38366b76326536306b706d666b6b6c39616132376e616d6178667964616173797a7238357a123712276e6663756562626478666876756c6676797266766e63762d3832333134303239303337383134381a0c0a0a08efd9a7fbc6ffc3da022ac9030aa4030a520a5036254f98dbc716fbbeb12f111e911a2a294cac1e6d6e2e0a1709387b868eb7815e9ab3065d0cddc6aa0a2fab8dfbc411f660b2e914aed334b83978ce9ffbb5a6d93ba8d31f1cc0cc38c67906eba230fc12cd027471205150754f315766636f4f5238357a494173735a46636a6757353768553272386562434c562061206663387a6d51663664626d2047484a20204e6159776d554245396f5534484735467245203820656550724e2030722020506d6566712030684f34714b454d53207a4476744a7333336b6a4c3142543836527179776b20446b5a7a74397235395564206f20345945344c74332037367434383535637879203848784d6d643241744d2039454a586e714935587820624c77396637766646637820416b31624637327a3551207644317171596b483661414f663348656575726b2058782020302036204932207620205752756b2020496b63433534357a7120695079207a74627678204b6930373763375320594445202049376a745a426166314b524466713020206f393220484b20206739756f20504b20204c20206b4d766b79564e204a65303553333712203699a001ebca0a2dc460fd6d7d08be3943968216184fd7ce27bb8b8bc55a601c", + "output": [ + "0 | Chain ID [1/2] : nfcuebbdxfhvulfvyrfvncv-82314029037814", + "0 | Chain ID [2/2] : 8", + "1 | Fee [1/3] : 195079735735872751 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1zcthw8e0xu4hf5ptaa", + "2 | Action [3/4] : 7dnnylsg4jqzgva5nnazt7f4fctw89kvdq32hr", + "2 | Action [4/4] : 88", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1uu2ud4235zceavltn90q", + "3 | Action [3/3] : 2qxn7pczujrydntuurtj5arjunugegms5paywy", + "4 | Sender Address : penumbra1xcj5lxxmcut0h0439ug3ayg6…", + "4 | Memo Text [1/9] : tq QPuO1WfcoOR85zIAssZFcjgW57hU2r8ebCL", + "4 | Memo Text [2/9] : V a fc8zmQf6dbm GHJ NaYwmUBE9oU4HG5Fr", + "4 | Memo Text [3/9] : E 8 eePrN 0r Pmefq 0hO4qKEMS zDvtJs33", + "4 | Memo Text [4/9] : kjL1BT86Rqywk DkZzt9r59Ud o 4YE4Lt3 76", + "4 | Memo Text [5/9] : t4855cxy 8HxMmd2AtM 9EJXnqI5Xx bLw9f7v", + "4 | Memo Text [6/9] : fFcx Ak1bF72z5Q vD1qqYkH6aAOf3Heeurk X", + "4 | Memo Text [7/9] : x 0 6 I2 v WRuk IkcC545zq iPy ztbvx", + "4 | Memo Text [8/9] : Ki077c7S YDE I7jtZBaf1KRDfq0 o92 HK", + "4 | Memo Text [9/9] : g9uo PK L kMvkyVN Je05S37" + ], + "output_expert": [ + "0 | Chain ID [1/2] : nfcuebbdxfhvulfvyrfvncv-82314029037814", + "0 | Chain ID [2/2] : 8", + "1 | Fee [1/3] : 195079735735872751 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1zcthw8e0xu4hf5ptaa", + "2 | Action [3/4] : 7dnnylsg4jqzgva5nnazt7f4fctw89kvdq32hr", + "2 | Action [4/4] : 88", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1uu2ud4235zceavltn90q", + "3 | Action [3/3] : 2qxn7pczujrydntuurtj5arjunugegms5paywy", + "4 | Sender Address : penumbra1xcj5lxxmcut0h0439ug3ayg6…", + "4 | Memo Text [1/9] : tq QPuO1WfcoOR85zIAssZFcjgW57hU2r8ebCL", + "4 | Memo Text [2/9] : V a fc8zmQf6dbm GHJ NaYwmUBE9oU4HG5Fr", + "4 | Memo Text [3/9] : E 8 eePrN 0r Pmefq 0hO4qKEMS zDvtJs33", + "4 | Memo Text [4/9] : kjL1BT86Rqywk DkZzt9r59Ud o 4YE4Lt3 76", + "4 | Memo Text [5/9] : t4855cxy 8HxMmd2AtM 9EJXnqI5Xx bLw9f7v", + "4 | Memo Text [6/9] : fFcx Ak1bF72z5Q vD1qqYkH6aAOf3Heeurk X", + "4 | Memo Text [7/9] : x 0 6 I2 v WRuk IkcC545zq iPy ztbvx", + "4 | Memo Text [8/9] : Ki077c7S YDE I7jtZBaf1KRDfq0 o92 HK", + "4 | Memo Text [9/9] : g9uo PK L kMvkyVN Je05S37" + ] + }, + { + "index": 62, + "blob": "0a359203320a300a0a08c892c4f4b2d5acc80112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a9102128e020a300a0a0892e6cfe6d4e7c2b50812220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50f7638c2da66674f059ea6b96c3221fdec046b5a2e3a37404918e2292031a9eaf6ce933b7417dcd314690efdf713f74ad40c535e6999ba534f8855ff4e174b4974ae176b1d9aa81a409e6013e443d81d91a202cbda8b8869deedf38847a1df983fa88f89b72f967bf67dce349705ddd2402cc2220bdfb279ef70264678c945445da1a59134fe26b216b0e3ba8cd0e1d4977db94022a208c13ac7af9d3455ed58829d74c668fa04b923967edfc6b8ed4951e9af2ea0409322068db4a781810a04fa0580291be2acd9e7351b8c2e98e9169d6b5b4707c77590c0ab301a201af010a6908a3bbbca502120208011a220a204d188182ca97d6ef71432739e7b98ee4bd96780e78a2eb21aa6ea6ee8765ff0b22220a2062b2e29f9ef10aa6eeb6553d2e0140a05937281abbb7a86cb65cfb50d3cc24022a150a1372324a424e5a31456c6972764b4a6d3772524c12420a4024adf6ad894829b63817c7d17dc5e11eaf04cfce984eb41611016a61840a020f3af7c02b06c8d84e312e21af44bb112fc9c0f4280ed2f2f3dcdeab895f7428000aaf01f201ab010aa8010a640a18120a08d4beedecb681bbfb051a0a08b2e3a3eff0cde8b90d12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a0887ebbdb59af889b206120a08b2d99aeaede780ca0d280112430883cf0b122f746c66787161716c7878727461696b746371617876796c6d2d343839383736343938313037373933363231313236351a0c0a0a08f8b3ccbfa2edebe90c2af3010ace010a520a508de2deff6822e65cc0d0e98fb9e01443235790479c9fe867baa45687f8ed01744b45f0c187e2c3806a115fc6a2cc9b9315185c465fdef82c7e86f83563dcafc5d95d6475584a810638224952c23e898b12786470207a3943205679396f20523039376a45312057743548546367383031352077437667323920335244794265206d554420374e4662657a4f41333735204a55204242516e3254572073736c43434c4d59356b304c79373832552063724c4e6337206944205a31654548492041455144203820706d416f35122021049eaeb7cc93ec51302bbeec566e04f260f55d05dcbedfec6ebb19781ba91f", + "output": [ + "0 | Chain ID [1/2] : tlfxqaqlxxrtaiktcqaxvylm-4898764981077", + "0 | Chain ID [2/2] : 936211265", + "1 | Expiry Height : 190339", + "2 | Fee [1/3] : 924275219012721144 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Output 606590932721333010 passet1984fc", + "3 | Action [2/3] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "3 | Action [3/3] : nyt9fdggqxmanqm to Sub-account #23", + "4 | Action [1/11] : PositionOpen", + "4 | Action [2/11] : Reserves 1: 460536774577321351 passet1", + "4 | Action [3/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [4/11] : ft808nyt9fdggqxmanqm", + "4 | Action [5/11] : Reserves 2: 978410587581492402 passet1", + "4 | Action [6/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [7/11] : ft808nyt9fdggqxmanqm", + "4 | Action [8/11] : Trading Function p: 429790348288155476", + "4 | Action [9/11] : Trading Function q: 969296942673228210", + "4 | Action [10/11] : Fee: 0", + "4 | Action [11/11] : Close on fill: true", + "5 | Sender Address : Sub-account #14", + "5 | Memo Text [1/4] : dp z9C Vy9o R097jE1 Wt5HTcg8015 wCvg29", + "5 | Memo Text [2/4] : 3RDyBe mUD 7NFbezOA375 JU BBQn2TW ssl", + "5 | Memo Text [3/4] : CCLMY5k0Ly782U crLNc7 iD Z1eEHI AEQD 8", + "5 | Memo Text [4/4] : pmAo5" + ], + "output_expert": [ + "0 | Chain ID [1/2] : tlfxqaqlxxrtaiktcqaxvylm-4898764981077", + "0 | Chain ID [2/2] : 936211265", + "1 | Expiry Height : 190339", + "2 | Fee [1/3] : 924275219012721144 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Output 606590932721333010 passet1984fc", + "3 | Action [2/3] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "3 | Action [3/3] : nyt9fdggqxmanqm to Sub-account #23", + "4 | Action [1/11] : PositionOpen", + "4 | Action [2/11] : Reserves 1: 460536774577321351 passet1", + "4 | Action [3/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [4/11] : ft808nyt9fdggqxmanqm", + "4 | Action [5/11] : Reserves 2: 978410587581492402 passet1", + "4 | Action [6/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [7/11] : ft808nyt9fdggqxmanqm", + "4 | Action [8/11] : Trading Function p: 429790348288155476", + "4 | Action [9/11] : Trading Function q: 969296942673228210", + "4 | Action [10/11] : Fee: 0", + "4 | Action [11/11] : Close on fill: true", + "5 | Sender Address : Sub-account #14", + "5 | Memo Text [1/4] : dp z9C Vy9o R097jE1 Wt5HTcg8015 wCvg29", + "5 | Memo Text [2/4] : 3RDyBe mUD 7NFbezOA375 JU BBQn2TW ssl", + "5 | Memo Text [3/4] : CCLMY5k0Ly782U crLNc7 iD Z1eEHI AEQD 8", + "5 | Memo Text [4/4] : pmAo5" + ] + }, + { + "index": 63, + "blob": "0abe020abb020aa8010a300a0a089ab988d487f89ba50b12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012202253c963e26481b6bed5ae474073c8e45953d5cf025fa3f3d1644cd6ac011c4f1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710c2c4c6da8183221a20441c6da9fc0ac8bf46c4dd9e1da483c079a0afe31ca931580aa417cb9a71820422204c564db73baa69e482f10ede4bf731aac61ffc3129dea35af67bdf2b2d7480012a2072a485417728915b1d9edec950a1791e7a248beecc27544826ba1a138db0320b3220d6228283f34b7f7e55cf05b008829560b5926b0bd0f0427ca2611ab5831b7e050a9102128e020a300a0a08bd81eed897bed1ed0a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50af993bf6f204585821792b35716da3190bd4d0f5369b38b3b42bee8692b1795e8d9a3743ff4b548ac6b1d6010797ef062704aa385e91e7d395c71e107202b19f2958ea5ff0afed7fd6e3e7abae75566e1a20444440454ffafa5ed21cb2e3d231173a91fc5474ff6cfa7b761ed0ff85e0340f2220bcd9f552ccb89861bda719226dca2a35e8be3e3da2963fef26cbbe78724c95042a204801001b36f59101672a4b096ff33432d4c6a903caf08ea39fc3ce2d663fc2103220103f41412da69b9c5b3861f0e811c2762628751a24a31469790d31fbf423710b123f0880be0a122b786f6e6a636d74676a69746867696a7073726775657a7163696d6b69772d353836343332303234343737391a0c0a0a08b292cdb092ad93e0012ac5010aa0010a520a501cc27d4f38b9f69affa94df70c4f6ee7f8e17bca6b650834f285e06f7536ca87b95da2031384b960fda5e452cfe3b44fa4ccc0491d242bde82cb0176242d564da2be57012ba8fce87bd9aed275a5399e124a4746442075396f6279204a4c444c467132335a654920203573204b206b5a39202039206d6a39206442597820494a674e4753465830204169756e34206757313448546f7345686d206e2012201f9273922f3fbed79108809b25299e85dae1d2a1595f0162540398f01ff59023", + "output": [ + "0 | Chain ID [1/2] : xonjcmtgjithgijpsrguezqcimkiw-58643202", + "0 | Chain ID [2/2] : 44779", + "1 | Expiry Height : 171776", + "2 | Fee [1/3] : 126185903572076850 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Spend 813585555173547162 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/4] : Output 782295863733747901 passet1984fc", + "4 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "4 | Action [3/4] : nyt9fdggqxmanqm to penumbra147vnhahjq3", + "4 | Action [4/4] : v9sgte9v6hzmdr…", + "5 | Sender Address : penumbra1rnp86nech8mf4laffhmscnmw…", + "5 | Memo Text [1/2] : GFD u9oby JLDLFq23ZeI 5s K kZ9 9 mj9", + "5 | Memo Text [2/2] : dBYx IJgNGSFX0 Aiun4 gW14HTosEhm n " + ], + "output_expert": [ + "0 | Chain ID [1/2] : xonjcmtgjithgijpsrguezqcimkiw-58643202", + "0 | Chain ID [2/2] : 44779", + "1 | Expiry Height : 171776", + "2 | Fee [1/3] : 126185903572076850 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/3] : Spend 813585555173547162 passet1984fct", + "3 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "4 | Action [1/4] : Output 782295863733747901 passet1984fc", + "4 | Action [2/4] : tenw8m2fpl8a9wzguzp7j34d7vravryuhft808", + "4 | Action [3/4] : nyt9fdggqxmanqm to penumbra147vnhahjq3", + "4 | Action [4/4] : v9sgte9v6hzmdr…", + "5 | Sender Address : penumbra1rnp86nech8mf4laffhmscnmw…", + "5 | Memo Text [1/2] : GFD u9oby JLDLFq23ZeI 5s K kZ9 9 mj9", + "5 | Memo Text [2/2] : dBYx IJgNGSFX0 Aiun4 gW14HTosEhm n " + ] + }, + { + "index": 64, + "blob": "0a98032295030adc010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08b8e0fccc8edf9692091a0a08c3aee9d9ffbfbecf0122020a002a520a5069bb72bf614b273a93087163c5b5cbc19ab50e93eada3b7a71cfa57e70539e04aaa911a8b7cdd8b5efa9de43524c77702881831e7fa1aec7ce886deefbdcccaed9f0de75c4f1ae9cb99351b32119dba73220839e0d7ac1a5ed5b3dff74833f5401cf4c49d9385022b06244c5b9e4c89cf9221a6d0a0508addebc19120608c195f79b041a0308f503220308c40f2a0308ad023203088b0b42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a2027fae4c9126035dd1bb448f27a6895434fde1d4fa5dde8c19bce771bf8891e023220a446758f3bb3f9955c3b1452860a16b373d34c495886fe235e90279f471f880e0a099a010608b4abf8f802123012207a636d61686d74677a767873676c6e72636264716d6f6c65756d676e766d2d301a0c0a0a0880ba84ab9b8da4da08", + "output": [ + "0 | Chain ID : zcmahmtgzvxsglnrcbdqmoleumgnvm-0", + "1 | Fee [1/3] : 627285031800347904 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : zcmahmtgzvxsglnrcbdqmoleumgnvm-0", + "1 | Fee [1/3] : 627285031800347904 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm" + ] + }, + { + "index": 65, + "blob": "0a9e02c20c9a020a0a08a1e8c4b1a5eb9fc903120d0a0b796f4d31375665595838781a8f0170656e756d627261317466766c747a64376e7838653477363079776c636d66706532387034786b373767703839346732647a78766e34673264337a777a306a67726c6438387466676c77776b656b75617438673876636438777278646c7837737775616d3379636a3371386e6c74636b646677617076786b6168387077376b667a7a6a7067686a677370656e61353922520a504edb00fe7cf04de7f4a4db5d0f2f8558895165dec0b3fd9afc3309a5ecec90df07df83312363a3335a00f2c12f8d183cdb838f6067848986640ade5ddc0b31add60735aaed6cbef4b14856e94a17d7262a0c0886f7cd92031084d7c7d2023a096368616e6e656c2d300a8e0182028a010a180a0a08d4bea3a7aac6e4e30b120a08f9bb93ddffd59de60812220a20c2a1b53dfc6ded6e8c5f2f4434bb9b280acca26d6b69fb05b29d963fdb9465761a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a102001121e120e707575716a616c6963642d3134301a0c0a0a08afcec6b2afcfd0fa06", + "output": [ + "0 | Chain ID : puuqjalicd-140", + "1 | Fee [1/3] : 501380029407668015 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 257408154683388961 passet1pjlgd", + "2 | Action [4/12] : 6duusgqe74et6tkk6rnc4gz7d6dk8fumy3mfze", + "2 | Action [5/12] : acwd9pyyq5g8gct", + "2 | Action [6/12] : To penumbra1tfvltzd7nx8e4w60ywlcmfpe28", + "2 | Action [7/12] : p4xk77gp894g2dzxvn4g2d3zwz0jgrld88tfgl", + "2 | Action [8/12] : wwkekuat8g8vcd8wrxdlx7swuam3ycj3q8nltc", + "2 | Action [9/12] : kdfwapvxkah8pw7kfzzjpghjgspena59", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1c2sm200udhkkarzl9azr", + "3 | Action [3/4] : fwum9q9vegnddd5lkpdjnktrlku5v4mqgfx3fq", + "3 | Action [4/4] : Sequence number 1" + ], + "output_expert": [ + "0 | Chain ID : puuqjalicd-140", + "1 | Fee [1/3] : 501380029407668015 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 257408154683388961 passet1pjlgd", + "2 | Action [4/12] : 6duusgqe74et6tkk6rnc4gz7d6dk8fumy3mfze", + "2 | Action [5/12] : acwd9pyyq5g8gct", + "2 | Action [6/12] : To penumbra1tfvltzd7nx8e4w60ywlcmfpe28", + "2 | Action [7/12] : p4xk77gp894g2dzxvn4g2d3zwz0jgrld88tfgl", + "2 | Action [8/12] : wwkekuat8g8vcd8wrxdlx7swuam3ycj3q8nltc", + "2 | Action [9/12] : kdfwapvxkah8pw7kfzzjpghjgspena59", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1c2sm200udhkkarzl9azr", + "3 | Action [3/4] : fwum9q9vegnddd5lkpdjnktrlku5v4mqgfx3fq", + "3 | Action [4/4] : Sequence number 1" + ] + }, + { + "index": 66, + "blob": "0ac201d202be010a220a209131d3ef513c08fb6518a9e348f6305e7b8872c59e6a1f22c4c2ea9b8d11026c22220a2000000000000000000000000000000000ffcb923a29c779a6b50b0f27bb2fec572a0a08bc9e96e9b9aec0c5093220e320e87e10e4cf3800ffa72414d2fed4d9066b35c6e7043e3704834d82f9b8003a2067806b283e8990741e17bdbf48d37a729176d501ef91490a7206c20faf4fd90142207574f1602d8aeee177c6b3fc2c1369fcb68e5a7b46144357198862b3e3f2630c48a59d050a27fa01240a220a2024f80d9951e15a4a0b12d83284ce8dab16a0c27d953a52869eb730a431e795aa0aa501a201a1010a5b08f2eef96f120208011a220a20fcbea989cd5d2dcfaabf47217dd1206746368aab82faeb38a6bf729cbca602af22220a2020bebc44d4582bd51c25087c4ccbfdb71e7a02ffe481dff3b1bf9950b7a869062a080a0638706642506612420a40b45c97d21a8d2b88c6b0d1f5723d5fb593c948bfd1248a0fe4529b78a0a1af060ee638d04b54083b900fa798586b46b6407f16f111d328ae53665b883ff03b020ac8021ac5020adc010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08fcb681eabbc2cafa041a0a08c0af9ccdd4e8dfb90222020a002a520a509912cd120b3689871419ca4e622df30a9a747ddd6a2cc058ea0d9dac88d29135c210d8e6e3e1190c5ff6b783cfc83a4b89be17965231789adfe77f3783a7dc41c403e1f446f3120ca913d8aded423fc33220bb7db740a18e31c10c08a1f87a6b2207f3a03cb0eaf7e5a5f255d4a07569c1991220a14af664fa6f30475743d8cf7a87edf2fb4bbbce5d4ed74631eb4d1135cab9031a2063007c1bab4e4a2691797c28f0a73c22e7a0f139f05dccb8543c830692160511222026595b4372ce05dbc73d41a6a364ce71b216ad7a8bce7695c7bb115ef692aa01122f08b6ed2a121b796869686269686d7274697268737772762d3233383537353634311a0c0a0a08aad6a2abe6adb9da02", + "output": [ + "0 | Chain ID : yhihbihmrtirhswrv-238575641", + "1 | Expiry Height : 702134", + "2 | Fee [1/3] : 195032946194295594 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 687644964173483836 passet15q8qcp", + "3 | Action [3/4] : yljlzx8e6qnwrmeweqjyzp54ak9m5ple5k268f", + "3 | Action [4/4] : prlymqzqrmh4ra", + "4 | Action [1/3] : PositionClose", + "4 | Action [2/3] : Position ID plpid1ynuqmx23u9dy5zcjmqeg", + "4 | Action [3/3] : fn5d4vt2psnaj5a99p57kuc2gv08jk4qczpgqk", + "5 | Action [1/13] : Swap", + "5 | Action [2/13] : Input 176624745962739648 passet1984fct", + "5 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "5 | Action [4/13] : yt9fdggqxmanqm", + "5 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "5 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "5 | Action [7/13] : qm", + "5 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "5 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "5 | Action [10/13] : m", + "5 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "5 | Action [12/13] : SIGN (invalid swap: one delta must be ", + "5 | Action [13/13] : nonzero)" + ], + "output_expert": [ + "0 | Chain ID : yhihbihmrtirhswrv-238575641", + "1 | Expiry Height : 702134", + "2 | Fee [1/3] : 195032946194295594 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 687644964173483836 passet15q8qcp", + "3 | Action [3/4] : yljlzx8e6qnwrmeweqjyzp54ak9m5ple5k268f", + "3 | Action [4/4] : prlymqzqrmh4ra", + "4 | Action [1/3] : PositionClose", + "4 | Action [2/3] : Position ID plpid1ynuqmx23u9dy5zcjmqeg", + "4 | Action [3/3] : fn5d4vt2psnaj5a99p57kuc2gv08jk4qczpgqk", + "5 | Action [1/13] : Swap", + "5 | Action [2/13] : Input 176624745962739648 passet1984fct", + "5 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "5 | Action [4/13] : yt9fdggqxmanqm", + "5 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "5 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "5 | Action [7/13] : qm", + "5 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "5 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "5 | Action [10/13] : m", + "5 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "5 | Action [12/13] : SIGN (invalid swap: one delta must be ", + "5 | Action [13/13] : nonzero)" + ] + }, + { + "index": 67, + "blob": "0a539201500a420a1369766f767677656a762d3835323135333935341229666a66706f61666f656c752d33333733383134313036343133393631323935383537323436383431352a001a0a08bee696d78df5fba2040a27b203240a220a20ec2340fcc04588316e3ba963f06f7f9edba383af9a3f6780ab6c16524095236d0a659201620a540a1a68776d6e776b6879706766756b742d353037373636323634393012346b6a76696866776170776a78647078697777676479697a7a6a6d776d2d35323138333830313131353637323533373932323537342a001a0a08cc9399d59ec9d0df030a8a019a0386010a300a0a088cc4dff0cedce2aa0912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a507fa31730220ce46fb13396d6ba6a60c556c9e5ebd78ed32dcc91ff36ca423648f80b10b7c9c85979948f3fd2e37963cf9dc24947b0370757a0eb976f08cda44670edde674a6115318b58fbbace47cfad121a120a70656e756d6272612d311a0c0a0a088fd6bf889ffa8ef202", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 208357255644.441359 penumbra", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1as35plxqgkyrzm3m49", + "2 | Action [3/4] : 3lqmmlnmd68qa0nglk0q9tdst9ysy4ydksjtcz", + "2 | Action [4/4] : np" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 208357255644.441359 penumbra", + "2 | Action [1/4] : DutchAuctionEnd", + "2 | Action [2/4] : Auction ID: pauctid1as35plxqgkyrzm3m49", + "2 | Action [3/4] : 3lqmmlnmd68qa0nglk0q9tdst9ysy4ydksjtcz", + "2 | Action [4/4] : np" + ] + }, + { + "index": 68, + "blob": "0a599201560a480a2070796e646c797964696a677a7472786e74752d343031373933313234353839361222706f7761626165616a796f796f766c79657968707568686a6366777261632d3835352a001a0a08d3f1aef082deb3dd060a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108dd988bf502120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c0886aefc820210dfe9bac60140a0a697b79ee584871812020a001a0c0886aefc820210dfe9bac601228f0170656e756d6272613172766c796d687275663930707a6a78396b6b6336396b6b656168776a75687065767a74733039726a367272786361647a346c3378796a3633326539716d3378716a7634653663396b6165656d617179617366786e6166357961746a32327234656b366478766a6377773774637375687563673364326c34306b726a38333277787832613966740abe021abb020ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08ff8390ecf8998fca0722020a002a520a508b78fc5295facf78510171787b33289fdccf75c567a13c7472b7619fada87eb8efabd4e42127ea853e1f2951c1292b336a8463a5811ee605cbb40c42df9feabba12a76ef58904eb29587754df996c12b32205c16ae8b372e817f00d0bdaa2bafd27f9118e8b89ad722d1f39d78e521be534912205a1cbe95326d080cd17c47c24060a85f09b03287bf97cb581478934f2919d6031a2042fe8b340005b260c8c2c8b6dc0c1a57f6a5a75868e225a17e6a423bcd73a7122220e1c767b5758bec1582591b0148e630a6dc00b2cef68242e6a0d4003687dbdd0c0a47ca02440a220a20fb56295a145d13d172428756c812daa8923608251bf985386318745f9a8aea971a0a0887e9b187fff6d0dc0d220a0885da88e485b29ec50b2a0608bf1910bf1912401230777a737077697164617065717a657a6669737374647968777a70766276632d34343931323235373630313436323734341a0c0a0a088be7e0b99fcab3d105", + "output": [ + "0 | Chain ID [1/2] : wzspwiqdapeqzezfisstdyhwzpvbvc-4491225", + "0 | Chain ID [2/2] : 7601462744", + "1 | Fee [1/3] : 406113767852094347 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/13] : Swap", + "2 | Action [2/13] : Input 546128316948808191 passet1984fct", + "2 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [4/13] : yt9fdggqxmanqm", + "2 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "2 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "2 | Action [7/13] : qm", + "2 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "2 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "2 | Action [10/13] : m", + "2 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [12/13] : SIGN (claim address in Swap not contro", + "2 | Action [13/13] : lled by user)", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1ldtzjks5t5fazujzsat", + "3 | Action [3/10] : vsyk64zfrvzp9r0uc2wrrrp69lx52a2ts56vuq", + "3 | Action [4/10] : q", + "3 | Action [5/10] : Input 831610742137564421 passet1yvwca0", + "3 | Action [6/10] : 33mtvyegrwe935e2u8kw9hqx44rerhhnl66d63", + "3 | Action [7/10] : tu854sxsljq034", + "3 | Action [8/10] : Output 988896050484638855 passet1vfe0e", + "3 | Action [9/10] : 7t27v7e3fmepamyxcc732ksysnt899l0e3xdqs", + "3 | Action [10/10] : w3c5505xq4sna4d" + ], + "output_expert": [ + "0 | Chain ID [1/2] : wzspwiqdapeqzezfisstdyhwzpvbvc-4491225", + "0 | Chain ID [2/2] : 7601462744", + "1 | Fee [1/3] : 406113767852094347 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/13] : Swap", + "2 | Action [2/13] : Input 546128316948808191 passet1984fct", + "2 | Action [3/13] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [4/13] : yt9fdggqxmanqm", + "2 | Action [5/13] : Output Asset passet1984fctenw8m2fpl8a9", + "2 | Action [6/13] : wzguzp7j34d7vravryuhft808nyt9fdggqxman", + "2 | Action [7/13] : qm", + "2 | Action [8/13] : Claim Fee 0 passet1984fctenw8m2fpl8a9w", + "2 | Action [9/13] : zguzp7j34d7vravryuhft808nyt9fdggqxmanq", + "2 | Action [10/13] : m", + "2 | Action [11/13] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [12/13] : SIGN (claim address in Swap not contro", + "2 | Action [13/13] : lled by user)", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1ldtzjks5t5fazujzsat", + "3 | Action [3/10] : vsyk64zfrvzp9r0uc2wrrrp69lx52a2ts56vuq", + "3 | Action [4/10] : q", + "3 | Action [5/10] : Input 831610742137564421 passet1yvwca0", + "3 | Action [6/10] : 33mtvyegrwe935e2u8kw9hqx44rerhhnl66d63", + "3 | Action [7/10] : tu854sxsljq034", + "3 | Action [8/10] : Output 988896050484638855 passet1vfe0e", + "3 | Action [9/10] : 7t27v7e3fmepamyxcc732ksysnt899l0e3xdqs", + "3 | Action [10/10] : w3c5505xq4sna4d" + ] + }, + { + "index": 69, + "blob": "0aab02aa01a70208b698e993011a02080322a8010a300a0a08c08fa1cfe0fbc7830212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122051bfd92422a60b06adc00396a6df9905519a379e5661861e472f59b92600cd631a520a508ccde4385db9a57096f523dd26435ae25155fbf0eacb5ac86ece6a24c0ddceb174d6b12400ca08e61a0adc4dd1985b0a9628151ab0b5645c0a28047c55d123c341537e6b3d5c1785982c90723b1f61c5320a08a1ffc0b6b7c6e8f7073a20d7170b9ba8307d6ee5fd17eaebfeb81b5626274fa3707acf07c48c17bd39de034220c39ac684d956806c37f53bd400dbc8aa8c09159351f7bbb7504699b5a4f2f9074a20aba83245714a4666649e70ef439de900ae9db850b54cbcf9974809f4c41106120a9f02c20c9b020a0a08dccde4ba9c90b0c80a120e0a0c6c7a4d73416e62386a77464b1a8f0170656e756d627261317a65736d7a7432346372646164636839726c37386439616a796d6436617975336e656a73747a737566723879746a7574773274656c6376337a747371686c3867617863307a37393567333370663370716a76366b30766d6639733377726b3278376a667832687a363330367a33767770376a7034636379356872646335727a7532326a68776822520a50a3a8e27d40be03e865537cff924cfc0231e3788f687bc2b49fe903d90b1c8f78cbfa580e06a00c1ba77b03b9985288f493f94e1d0ee58c03e1b2bd3328f7110621cafcee3da104da9a78e7743e0849c22a0c08bec2c3fb0110cdb08990023a096368616e6e656c2d300aaf01f201ab010aa8010a640a18120a08fba28e93b7f3a1ce031a0a08eeb7eda781f3e3bd0c12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a08ccd3f5d3a484aadc05120a0889aca2e9deabb4c50a280112341224676e7562782d3035313030353036313331343239353835363230373735393738373936301a0c0a0a08d4be81e5a48b95c30a2a96010a720a520a5090dd872d637ebfa2ceb42899f7ecfcd903c072e60101f612e8bdc15aea89cdad10624c1111f8646ce0949bbce05f2f5fcf9f476ba508beb4174ad98ec3f4ab0e72efdf70a9dc87721b7abbcc7cdf6e3d121c51595067334f79436136207a584971623338532047384c306e33205912200695bf890706451f8e878ee46921289fb8917a5830ab34a2b5609183bbfd4694", + "output": [ + "0 | Chain ID : gnubx-051005061314295856207759787960", + "1 | Fee [1/3] : 758386334067875668 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/5] : DelegatorVote on Proposal 310004790", + "2 | Action [2/5] : Vote No", + "2 | Action [3/5] : Voting Power: 571854019619733409 passe", + "2 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 761320000653436636 passet1x8cmc", + "3 | Action [4/12] : dmsfcdjkgnrh966tdednegdgy29am5t3hdpluc", + "3 | Action [5/12] : 2ndn5ls8qxhhzd2", + "3 | Action [6/12] : To penumbra1zesmzt24crdadch9rl78d9ajym", + "3 | Action [7/12] : d6ayu3nejstzsufr8ytjutw2telcv3ztsqhl8g", + "3 | Action [8/12] : axc0z795g33pf3pqjv6k0vmf9s3wrk2x7jfx2h", + "3 | Action [9/12] : z6306z3vwp7jp4ccy5hrdc5rzu22jhwh", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/11] : PositionOpen", + "4 | Action [2/11] : Reserves 1: 412264231136487884 passet1", + "4 | Action [3/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [4/11] : ft808nyt9fdggqxmanqm", + "4 | Action [5/11] : Reserves 2: 759649688506373641 passet1", + "4 | Action [6/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [7/11] : ft808nyt9fdggqxmanqm", + "4 | Action [8/11] : Trading Function p: 260231980189454715", + "4 | Action [9/11] : Trading Function q: 899470433940364270", + "4 | Action [10/11] : Fee: 0", + "4 | Action [11/11] : Close on fill: true", + "5 | Sender Address : Sub-account #60", + "5 | Memo Text : QYPg3OyCa6 zXIqb38S G8L0n3 Y" + ], + "output_expert": [ + "0 | Chain ID : gnubx-051005061314295856207759787960", + "1 | Fee [1/3] : 758386334067875668 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/5] : DelegatorVote on Proposal 310004790", + "2 | Action [2/5] : Vote No", + "2 | Action [3/5] : Voting Power: 571854019619733409 passe", + "2 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "2 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "3 | Action [1/12] : ICS20Withdrawal", + "3 | Action [2/12] : Channel channel-0", + "3 | Action [3/12] : Amount 761320000653436636 passet1x8cmc", + "3 | Action [4/12] : dmsfcdjkgnrh966tdednegdgy29am5t3hdpluc", + "3 | Action [5/12] : 2ndn5ls8qxhhzd2", + "3 | Action [6/12] : To penumbra1zesmzt24crdadch9rl78d9ajym", + "3 | Action [7/12] : d6ayu3nejstzsufr8ytjutw2telcv3ztsqhl8g", + "3 | Action [8/12] : axc0z795g33pf3pqjv6k0vmf9s3wrk2x7jfx2h", + "3 | Action [9/12] : z6306z3vwp7jp4ccy5hrdc5rzu22jhwh", + "3 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "3 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "3 | Action [12/12] : l not controlled by user)", + "4 | Action [1/11] : PositionOpen", + "4 | Action [2/11] : Reserves 1: 412264231136487884 passet1", + "4 | Action [3/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [4/11] : ft808nyt9fdggqxmanqm", + "4 | Action [5/11] : Reserves 2: 759649688506373641 passet1", + "4 | Action [6/11] : 984fctenw8m2fpl8a9wzguzp7j34d7vravryuh", + "4 | Action [7/11] : ft808nyt9fdggqxmanqm", + "4 | Action [8/11] : Trading Function p: 260231980189454715", + "4 | Action [9/11] : Trading Function q: 899470433940364270", + "4 | Action [10/11] : Fee: 0", + "4 | Action [11/11] : Close on fill: true", + "5 | Sender Address : Sub-account #60", + "5 | Memo Text : QYPg3OyCa6 zXIqb38S G8L0n3 Y" + ] + }, + { + "index": 70, + "blob": "0a42c2023f0a220a208b0257b39d4614cbdd3d138fe1d20d9eb14b4e846b020d7b5f8ae9bd8ecf129a10814e1a0a08d5bcc286c7c1fcf104220a08c7acb198e2ceb88d0c0a42c2023f0a220a2064f3710bc86ec9da6f447088398037db31c43dc0af7392a4cea491f1737baeed1090061a0a08b9c09b86b19d9ba50d220a08dbe98dfde7c9e7f701123c08c18d1b12296d6562696375627a2d31323837353930383831363835343235373031373632303634343433323136301a0b0a090880c0bcf9a0aaa5542a86020ae1010a520a50dd8454781c6d16984708c576ff163d508919953a51f84aa01648e244ed839c9b7887a6a67550c12c9cf284bad2e4d046003b9a6322cc3ceb02227634d28ebd58b76cee775700c9ede4977ded39e31fb7128a017642206244315220327a62544c734c6720512070654570206d6b4a727172444a6637437674654679656c6c717537457520682050717872344375343866686f6c4876325061487a33206a7850743043324444783961632020633635326563204a556d38553170203561207739334b4c38793445547920207234424733492068594f67562071544f46206d122063af01c0ddcef4e7b54301dc3ec758187849c0ebdbf5277eeba6495f31651b90", + "output": [ + "0 | Chain ID [1/2] : mebicubz-12875908816854257017620644432", + "0 | Chain ID [2/2] : 160", + "1 | Expiry Height : 444097", + "2 | Fee [1/3] : 47451975761993728 passet1984fctenw8m2f", + "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "2 | Fee [3/3] : qxmanqm", + "3 | Action [1/6] : Delegate", + "3 | Action [2/6] : To penumbravalid13vp90vuagc2vhhfazw87r", + "3 | Action [3/6] : 5sdn6c5kn5ydvpq676l3t5mmrk0z2dq6y3q2j", + "3 | Action [4/6] : Input 352391331111280213 passet1984fct", + "3 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [6/6] : yt9fdggqxmanqm", + "4 | Action [1/6] : Delegate", + "4 | Action [2/6] : To penumbravalid1vnehzz7gdmya5m6ywzyrn", + "4 | Action [3/6] : qphmvcug0wq4aee9fxw5jglzumm4mks8wq53m", + "4 | Action [4/6] : Input 957697627624235065 passet1984fct", + "4 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "4 | Action [6/6] : yt9fdggqxmanqm", + "5 | Sender Address : penumbra1mkz9g7qud5tfs3cgc4m0793a…", + "5 | Memo Text [1/4] : vB bD1R 2zbTLsLg Q peEp mkJrqrDJf7Cvte", + "5 | Memo Text [2/4] : Fyellqu7Eu h Pqxr4Cu48fholHv2PaHz3 jxP", + "5 | Memo Text [3/4] : t0C2DDx9ac c652ec JUm8U1p 5a w93KL8y4", + "5 | Memo Text [4/4] : ETy r4BG3I hYOgV qTOF m" + ], + "output_expert": [ + "0 | Chain ID [1/2] : mebicubz-12875908816854257017620644432", + "0 | Chain ID [2/2] : 160", + "1 | Expiry Height : 444097", + "2 | Fee [1/3] : 47451975761993728 passet1984fctenw8m2f", + "2 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "2 | Fee [3/3] : qxmanqm", + "3 | Action [1/6] : Delegate", + "3 | Action [2/6] : To penumbravalid13vp90vuagc2vhhfazw87r", + "3 | Action [3/6] : 5sdn6c5kn5ydvpq676l3t5mmrk0z2dq6y3q2j", + "3 | Action [4/6] : Input 352391331111280213 passet1984fct", + "3 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [6/6] : yt9fdggqxmanqm", + "4 | Action [1/6] : Delegate", + "4 | Action [2/6] : To penumbravalid1vnehzz7gdmya5m6ywzyrn", + "4 | Action [3/6] : qphmvcug0wq4aee9fxw5jglzumm4mks8wq53m", + "4 | Action [4/6] : Input 957697627624235065 passet1984fct", + "4 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "4 | Action [6/6] : yt9fdggqxmanqm", + "5 | Sender Address : penumbra1mkz9g7qud5tfs3cgc4m0793a…", + "5 | Memo Text [1/4] : vB bD1R 2zbTLsLg Q peEp mkJrqrDJf7Cvte", + "5 | Memo Text [2/4] : Fyellqu7Eu h Pqxr4Cu48fholHv2PaHz3 jxP", + "5 | Memo Text [3/4] : t0C2DDx9ac c652ec JUm8U1p 5a w93KL8y4", + "5 | Memo Text [4/4] : ETy r4BG3I hYOgV qTOF m" + ] + }, + { + "index": 71, + "blob": "0ac4018201c0010a7c0a220a20306553c128988722a7bb80aef1c430ca2fd0de76d3bc18880213222f8b1006001220ed6c19032b8132c239af634b68a73c7b933d4a5678d7de0c05526a0aac7665471a0e746573742076616c696461746f7240014a220a20306553c128988722a7bb80aef1c430ca2fd0de76d3bc18880213222f8b1006001240f4a1ca87a383744b383858c40da146d2a547f7bfa1c1be017d26b3ab2a32e6064cdcbfb1dde5a31e5f3834ee922262a2684dcd766c634b0769b8ac56d7b730020ac101d202bd010a220a208978d46ed047392d3e07db215779ed3e00e0844b10cbac3847bc39d7d98881f222220a2000000000000000000000000000000000fe69ad42c3c9eecbfb15b573eab367a12a09088492abd6b1a2e06432202c2120de230ae9fcd93e4f558796ec3b1e6fcf84a44e0a0e7dca08584fa70f033a208c84b750096af1991a33c72bcf744befff1810dc77d7cf39641bb42adfbc0e0f42205ef19188a88d4980fa9994c2719efe679e354a03345cc4fde471e7bcba5ca81148c0d9020a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a0885a987d0dfdacda3031a0022020a002a520a5014c24728d09d1df90302fa2bc95adf30090724756763261c87714682f7814f40b8b492194f492d6a7a95ed1edc0aed047caeadaa30915b923aa2e0548e1a57247184b0c2d1d5cf065518ae9d3206ca6e3220e203d3a0c66298e04a7b3586859c397cb96d589f5c13dde65cf69e46bd38cfd21a6e0a0608f3e7fda70412060894d0becd031a0308d509220308ce062a0308dd0b320308810a42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20bb46a1acf03b0c50f1bac71e45f1e2d421d6cd9c853f0a58584e0ee8e712551032201f9c1e50f11ae05cec773af70cb8f1663e2b9aa173495d327b737f4a113a25010a46ca02430a220a20aba1984e29cb45eb25658be785ce116c852c114f19ff63bb9349588ebaf3927f1a090893d8ed9af1a0e90f220a08d698f6ebb9a89482052a0608c90710c907121a120a70656e756d6272612d311a0c0a0a08d1a0a7aff1b1eac805", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 401288273825.747025 penumbra", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 56718389372700932 passet1tmufd2v", + "2 | Action [3/4] : 6jlkl26kcwv9n2cu4ru6he640mw3uvxujq0hk4", + "2 | Action [4/4] : rxewy9szy3fa0", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid14wsesn3fedz7kft930n", + "3 | Action [3/10] : ctns3djzjcy20r8lk8wunf9vgawhnjflsy6ske", + "3 | Action [4/10] : z", + "3 | Action [5/10] : Input 361503220943391830 passet14u2j22", + "3 | Action [6/10] : zvenvz9uf4pzu2dar6wgczkmekvfzrh097qxwv", + "3 | Action [7/10] : xynjwyyqe86she", + "3 | Action [8/10] : Output 8907174086142995 passet1a7x0sut", + "3 | Action [9/10] : te8a65qwt2lyr26937e8t6px454jtcqeydktqz", + "3 | Action [10/10] : r2lusgshck392" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 401288273825.747025 penumbra", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 56718389372700932 passet1tmufd2v", + "2 | Action [3/4] : 6jlkl26kcwv9n2cu4ru6he640mw3uvxujq0hk4", + "2 | Action [4/4] : rxewy9szy3fa0", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid14wsesn3fedz7kft930n", + "3 | Action [3/10] : ctns3djzjcy20r8lk8wunf9vgawhnjflsy6ske", + "3 | Action [4/10] : z", + "3 | Action [5/10] : Input 361503220943391830 passet14u2j22", + "3 | Action [6/10] : zvenvz9uf4pzu2dar6wgczkmekvfzrh097qxwv", + "3 | Action [7/10] : xynjwyyqe86she", + "3 | Action [8/10] : Output 8907174086142995 passet1a7x0sut", + "3 | Action [9/10] : te8a65qwt2lyr26937e8t6px454jtcqeydktqz", + "3 | Action [10/10] : r2lusgshck392" + ] + }, + { + "index": 72, + "blob": "0a41c2023e0a220a2070a1f9009c844ac22c8124af4ac9e209608f4500e1ea078e733f723695cefc8410c52a1a0a08b088f9b0e681d3e20c220908fdc2d5fee6c1b94b0ab102c20cad020a0a08e8bbff829ba6f5eb0a12210a1f38364a41557379626a64453461306b556e4e483438564f3847793061774c441a8f0170656e756d62726131776e6d3367396177776e617061307435757677716877777961386175347175387767786e6336657a67633034663861647336633576333861706a70657577767a647a397937636436646a7661686a656b707a7336306a39797965343633776771726e726a30716a79793632756b7938343232386567667133647137686e36347a6e356338393422520a50dc44fa0e51d7298d92d73161c38de8a714c02a5776bda1e432af73e8fbe08e44258cac00548d7b080f0f490ac8a9c26291d863f76eed92d273531d8ada783805198d308a1c0ec24517020c26873295692a0b08e0dae87e1097c0df83033a096368616e6e656c2d300aaf01f201ab010aa8010a640a18120a08fa8bd4c3a1e59de70b1a0a08aeefe49fc998e59c0d12480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222180a0a08cfd5ff9aa9c6ae8a05120a08f0c2efac82aee3db0b2801121a120a70656e756d6272612d311a0c0a0a08a3d2c4be87bda1af0a", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 747181821679.184163 penumbra", + "2 | Action [1/4] : Delegate", + "2 | Action [2/4] : To penumbravalid1wzsljqyus39vytypyjh54", + "2 | Action [3/4] : j0zp9sg73gqu84q0rnn8aerd9wwljzq5nv8sf", + "2 | Action [4/4] : Input 920225323593.647152 penumbra", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 781327469761256936 passet14ld53", + "3 | Action [4/9] : 0rkvm5hkuva0t0aluaz625eegxyh6u9gqvdvpq", + "3 | Action [5/9] : pq9zut5gss0erjd", + "3 | Action [6/9] : To penumbra1wnm3g9awwnapa0t5uvwqhwwya8", + "3 | Action [7/9] : au4qu8wgxnc6ezgc04f8ads6c5v38apjpeuwvz", + "3 | Action [8/9] : dz9y7cd6djvahjekpzs60j9yye463wgqrnrj0q", + "3 | Action [9/9] : jyy62uky84228egfq3dq7hn64zn5c894", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 366122196107.520719 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 844298967962.083696 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 850748402302256634", + "4 | Action [7/9] : Trading Function q: 952956368182654894", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 747181821679.184163 penumbra", + "2 | Action [1/4] : Delegate", + "2 | Action [2/4] : To penumbravalid1wzsljqyus39vytypyjh54", + "2 | Action [3/4] : j0zp9sg73gqu84q0rnn8aerd9wwljzq5nv8sf", + "2 | Action [4/4] : Input 920225323593.647152 penumbra", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 781327469761256936 passet14ld53", + "3 | Action [4/9] : 0rkvm5hkuva0t0aluaz625eegxyh6u9gqvdvpq", + "3 | Action [5/9] : pq9zut5gss0erjd", + "3 | Action [6/9] : To penumbra1wnm3g9awwnapa0t5uvwqhwwya8", + "3 | Action [7/9] : au4qu8wgxnc6ezgc04f8ads6c5v38apjpeuwvz", + "3 | Action [8/9] : dz9y7cd6djvahjekpzs60j9yye463wgqrnrj0q", + "3 | Action [9/9] : jyy62uky84228egfq3dq7hn64zn5c894", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 366122196107.520719 penumb", + "4 | Action [3/9] : ra", + "4 | Action [4/9] : Reserves 2: 844298967962.083696 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 850748402302256634", + "4 | Action [7/9] : Trading Function q: 952956368182654894", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true" + ] + }, + { + "index": 73, + "blob": "0aaf01f201ab010aa8010a640a18120a08a59ed79f8998d79e0b1a0a08e78d84d487b2bdb00712480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080122180a0a08c1a1e9e1c09cd8b30b120a089de1fde786fbae9d0328010a42c2023f0a220a208f371582742f0322e91f2f8dd47225cc2dfdbc051a26da172c1989d0ebf062e710db341a0a08d8efd5d987bfcfe004220a089c86e5fe9ae0faf00c0a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108afb49aea06120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c08b7a7878e0210a9d581b60140d896cba4a0e584871812020a001a0c08b7a7878e0210a9d581b601228f0170656e756d6272613166646d706767736a6c32366e72717975766e30717274636d79367a393076727667336b3461773964656167766a37357961757a7271777167353466347573356d3574737564386137367937307575706174367637737833367a3666376671713032713671397a66736635397a74336a65396b776c67396672376c33676437707165786663346c0a359203320a300a0a0882a399a8eeb6b1e80d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10121e08828c19120a70656e756d6272612d311a0c0a0a08fa85d3ac9bf3dcea0b2a9c020af7010a520a508db38c4c5818f90307e94d83eb11f07b88c1036d925994ecd9d4fb970f0dc5cb3160680431810c6e768ff704763c4ada5fced17c7d8525d4dec1c126234d2708a725dce76a63c01a9858d1dbd1ae381512a00120203045207820444a372020385661206650206171206b5533465569396a353357642020434767203339724b3039206850203748446e207920744e4458346d6e334d206736326220526f20206d51766d6839467056594536776161313631314e205a4e4c526c20415050204d754633676b38387a3420204d6366372034557239206f30207a454f6820796d7820207971674d48334e666757494c45344768392012206680f1f9ebc1874324775d37e15555a527469ae92aab83694eab10276a18dbe9", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 411138", + "2 | Fee : 852714808470.19289 penumbra", + "3 | Action [1/9] : PositionOpen", + "3 | Action [2/9] : Reserves 1: 821731989592.363201 penumb", + "3 | Action [3/9] : ra", + "3 | Action [4/9] : Reserves 2: 232704868979.011741 penumb", + "3 | Action [5/9] : ra", + "3 | Action [6/9] : Trading Function p: 809905490182393637", + "3 | Action [7/9] : Trading Function q: 531694756909090535", + "3 | Action [8/9] : Fee: 0", + "3 | Action [9/9] : Close on fill: true", + "4 | Action [1/4] : Delegate", + "4 | Action [2/4] : To penumbravalid13um3tqn59upj96gl97xag", + "4 | Action [3/4] : u39esklm0q9rgnd59evrxyap6lsvtnsvfaqfx", + "4 | Action [4/4] : Input 342623184085.153752 penumbra", + "5 | Sender Address : penumbra13keccnzcrrusxplffkp7ky0s…", + "5 | Memo Text [1/5] : 0E x DJ7 8Va fP aq kU3FUi9j53Wd CG", + "5 | Memo Text [2/5] : g 39rK09 hP 7HDn y tNDX4mn3M g62b Ro ", + "5 | Memo Text [3/5] : mQvmh9FpVYE6waa1611N ZNLRl APP MuF3gk8", + "5 | Memo Text [4/5] : 8z4 Mcf7 4Ur9 o0 zEOh ymx yqgMH3NfgW", + "5 | Memo Text [5/5] : ILE4Gh9 " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 411138", + "2 | Fee : 852714808470.19289 penumbra", + "3 | Action [1/9] : PositionOpen", + "3 | Action [2/9] : Reserves 1: 821731989592.363201 penumb", + "3 | Action [3/9] : ra", + "3 | Action [4/9] : Reserves 2: 232704868979.011741 penumb", + "3 | Action [5/9] : ra", + "3 | Action [6/9] : Trading Function p: 809905490182393637", + "3 | Action [7/9] : Trading Function q: 531694756909090535", + "3 | Action [8/9] : Fee: 0", + "3 | Action [9/9] : Close on fill: true", + "4 | Action [1/4] : Delegate", + "4 | Action [2/4] : To penumbravalid13um3tqn59upj96gl97xag", + "4 | Action [3/4] : u39esklm0q9rgnd59evrxyap6lsvtnsvfaqfx", + "4 | Action [4/4] : Input 342623184085.153752 penumbra", + "5 | Sender Address : penumbra13keccnzcrrusxplffkp7ky0s…", + "5 | Memo Text [1/5] : 0E x DJ7 8Va fP aq kU3FUi9j53Wd CG", + "5 | Memo Text [2/5] : g 39rK09 hP 7HDn y tNDX4mn3M g62b Ro ", + "5 | Memo Text [3/5] : mQvmh9FpVYE6waa1611N ZNLRl APP MuF3gk8", + "5 | Memo Text [4/5] : 8z4 Mcf7 4Ur9 o0 zEOh ymx yqgMH3NfgW", + "5 | Memo Text [5/5] : ILE4Gh9 " + ] + }, + { + "index": 74, + "blob": "0a35a203320a300a0a08fda19dda8fe7bed80a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a98032295030adc010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10120a08eec3eeb3a6de9af3071a0a08d3df86a6818e96f40a22020a002a520a5050b73608e40ffee744459614e21f7083eef8d95c28bd981661971b2f2feb1c2e876e45856006d35f53b682ab583220cbdba5a2adc010bb89f73a771638bae22bf70f268af139969ae6dd0baec352512b3220b6d60b12e66377f9e6271ac52afc07afb1dffbf2fa415faff7de2b38b90f6d0c1a6d0a0608e0899bab01120608d086b8f6061a020870220308f00b2a0308a105320308df0942480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20d9182f6d4f59d8c8b2166f25d6345a10ea6dd9b55e09b66e59701f87aa3ed3033220537bf8ba3449cf9f5d4888e8a3048903d45b9da6640af4169fa07afcef31110b0ac201d202be010a220a2018f4373dfe141607c052797d5bdaf4f02bf4a413911fc90381f8fdcc67dce92022220a2000000000000000000000000000000000ff212d77318fc504816f0068db8bac722a0a08b4d3c294e08bdfca043220185c1f4f5f0c32c4bcfdaf2911bc3d59556046cb1f9f069e2b7de1a8b2d72f003a20635c8ad952033df93e46609f013b26b80516eb90749770b1dd31d5d817cf4f0342204eca72faf2c1673a9322799149071e2085c4e6ede7bf2e765998eaa61247c80e48a58a02123408af862512206374657875786e666f627161697567712d3538343432323537373234343733321a0c0a0a08ceb6d9c58de7eab0042aa6040a81040a520a5039895527703ac032c3add506b71fb7c5b43091a236d5ff0ae231f72d0851758b3fcb607c7f625b08a9d21f0074f3af17ff4441387ad76a0dd811375688a02ce8ddbbc471b18c83cfd52aed27f5c3721212aa0320382049736237372039204f6f327034723270737a633965202034304962527664516e205750704d4444503575202034356f74784e206120473032206c33524e3838533155627232205020393350792038206751483368314736656f3058204e372047446b537552207320577333206d20643336386c392020643832555132446f7320355a4974315850374d446648205830327a7a58394b346b204d394556597169526120395079334a686b6f32202020422038364e796873355820763870332020553241304f743274303838394c792044493920203146532020547161463832394a4d206c7749342066727645205a472020716c697255324a504620354d326a20797131207441346b6b58462020756e5638737175564d7336206236204163345a347533206b20464920612062467a3932205433567270324d523420704e58334e506b6837394c44793820316a4d45716465316366314356564e4367202020204b6369383744376e2020303520753976616f32206e34507056207035653147316b20712031666232336520203352753669367720356542207444205839346f7a462031574e567733711220f52496e31e571403d85e1e99cfa7ed860e67030a84b4a0bcca5cd5245b3a319d", + "output": [ + "0 | Chain ID : ctexuxnfobqaiugq-584422577244732", + "1 | Expiry Height : 607023", + "2 | Fee [1/3] : 315721709534993230 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 330306890893404596 passet1xh7cny", + "3 | Action [3/4] : 4zmngalyvr3mykgtq4je5p8ll8kkv5xqcmwgjp", + "3 | Action [4/4] : g456du8s2c0a3x", + "4 | Sender Address : penumbra18xy42fms8tqr9sad65rtw8ah…", + "4 | Memo Text [1/12] : 8 Isb77 9 Oo2p4r2pszc9e 40IbRvdQn WP", + "4 | Memo Text [2/12] : pMDDP5u 45otxN a G02 l3RN88S1Ubr2 P 9", + "4 | Memo Text [3/12] : 3Py 8 gQH3h1G6eo0X N7 GDkSuR s Ws3 m d", + "4 | Memo Text [4/12] : 368l9 d82UQ2Dos 5ZIt1XP7MDfH X02zzX9K", + "4 | Memo Text [5/12] : 4k M9EVYqiRa 9Py3Jhko2 B 86Nyhs5X v8", + "4 | Memo Text [6/12] : p3 U2A0Ot2t0889Ly DI9 1FS TqaF829JM", + "4 | Memo Text [7/12] : lwI4 frvE ZG qlirU2JPF 5M2j yq1 tA4k", + "4 | Memo Text [8/12] : kXF unV8squVMs6 b6 Ac4Z4u3 k FI a bFz", + "4 | Memo Text [9/12] : 92 T3Vrp2MR4 pNX3NPkh79LDy8 1jMEqde1cf", + "4 | Memo Text [10/12] : 1CVVNCg Kci87D7n 05 u9vao2 n4PpV p", + "4 | Memo Text [11/12] : 5e1G1k q 1fb23e 3Ru6i6w 5eB tD X94ozF", + "4 | Memo Text [12/12] : 1WNVw3q" + ], + "output_expert": [ + "0 | Chain ID : ctexuxnfobqaiugq-584422577244732", + "1 | Expiry Height : 607023", + "2 | Fee [1/3] : 315721709534993230 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 330306890893404596 passet1xh7cny", + "3 | Action [3/4] : 4zmngalyvr3mykgtq4je5p8ll8kkv5xqcmwgjp", + "3 | Action [4/4] : g456du8s2c0a3x", + "4 | Sender Address : penumbra18xy42fms8tqr9sad65rtw8ah…", + "4 | Memo Text [1/12] : 8 Isb77 9 Oo2p4r2pszc9e 40IbRvdQn WP", + "4 | Memo Text [2/12] : pMDDP5u 45otxN a G02 l3RN88S1Ubr2 P 9", + "4 | Memo Text [3/12] : 3Py 8 gQH3h1G6eo0X N7 GDkSuR s Ws3 m d", + "4 | Memo Text [4/12] : 368l9 d82UQ2Dos 5ZIt1XP7MDfH X02zzX9K", + "4 | Memo Text [5/12] : 4k M9EVYqiRa 9Py3Jhko2 B 86Nyhs5X v8", + "4 | Memo Text [6/12] : p3 U2A0Ot2t0889Ly DI9 1FS TqaF829JM", + "4 | Memo Text [7/12] : lwI4 frvE ZG qlirU2JPF 5M2j yq1 tA4k", + "4 | Memo Text [8/12] : kXF unV8squVMs6 b6 Ac4Z4u3 k FI a bFz", + "4 | Memo Text [9/12] : 92 T3Vrp2MR4 pNX3NPkh79LDy8 1jMEqde1cf", + "4 | Memo Text [10/12] : 1CVVNCg Kci87D7n 05 u9vao2 n4PpV p", + "4 | Memo Text [11/12] : 5e1G1k q 1fb23e 3Ru6i6w 5eB tD X94ozF", + "4 | Memo Text [12/12] : 1WNVw3q" + ] + }, + { + "index": 75, + "blob": "0a42c2023f0a220a2068180e5b77b86cf545da2d07f08f2e66049de2c4c74513b8e06c22d6078b328d10dc061a0a08f983a8efdaabce8a05220a08d887b2d88cc587fa030ac4018201c0010a7c0a220a205cec29d89656639bdd8e9c9ae1462de7984adfc0d25690ceed27639fc69bfa091220652e2e5938c9c1f6205c689d1c345a84270b66d2cde2a48fa6ba25c5dd4c338f1a0e746573742076616c696461746f7240014a220a205cec29d89656639bdd8e9c9ae1462de7984adfc0d25690ceed27639fc69bfa091240209919a297ee6c7e53d29454e7c5c414cc6f48b362af02e1ed211a7f757ce311a4ffcb7d352c4cfe728e46bffcec2de6980b83fcf6b524f1a1d25f69688d3101121e08a9de19120a70656e756d6272612d311a0c0a0a08feeb9abca0c98a8401", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 421673", + "2 | Fee : 74355891293.828606 penumbra", + "3 | Action [1/4] : Delegate", + "3 | Action [2/4] : To penumbravalid1dqvqukmhhpk023w695rlp", + "3 | Action [3/4] : rewvczfmckycaz38w8qds3dvputx2xs7fr9hs", + "3 | Action [4/4] : Input 366262019213.099513 penumbra" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 421673", + "2 | Fee : 74355891293.828606 penumbra", + "3 | Action [1/4] : Delegate", + "3 | Action [2/4] : To penumbravalid1dqvqukmhhpk023w695rlp", + "3 | Action [3/4] : rewvczfmckycaz38w8qds3dvputx2xs7fr9hs", + "3 | Action [4/4] : Input 366262019213.099513 penumbra" + ] + }, + { + "index": 76, + "blob": "0abf01a201bb010a7508e5a0f6b401120208011a220a20dbd212518783c3b8ddd4faf3b5cfbcb40a79d645d2017a1a7d46a945b5041a5422220a20f008cd3e0eee208eec6ef6eb7ea4f1dfe8b7877dc769a6d32178baf2cd3b8f012a210a1f366364536130476c385272575067355368673653535535335635533138413712420a40523f52b765ef94f85f107746a36c433f03ff87d8f9aa09109dba3ea27a9b4f0a5be334635f5510302cbdda90c30315efb2e20af5cb0052dc8aa09abc89a08a020a8e0182028a010a180a0a0887a0f6ac9990f6da0a120a0881dbbbc3ffced2cb0a12220a20c2bcffbb82f273afea951bc553400dcce756cd51a37c6cf58285ae8de592c0041a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010a9201ba038e010a220a2049423e0baae70b82592cdcce14f8a9b165024fdd6d25db573eb4ad62bcb2fbbe10d9a5a0cf011a300a0a089c87c3dea79ddfe60612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08e2f1b5c3f8bf9fdf0612220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100abe020abb020aa8010a300a0a08c8bfc6b4eef9f9d00512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101220cd29bac23e123db5b67cecbe6edd0d19dc140cb93fce9bbf6061820b49833c7b1a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710b4de8da197d4131a2094c2f065f266e50e71ca78c2eef6849eb1254b7899e70cb953a026f16cfde80122209250ca74b1cf6f39c547243d943c32c4ea9dac4e5d7474462673d76191aad1022a20600095000c269baf724a09e0bcb01034ad1dcf4e9658d2b6b0ddcfb73d3d4e0632202b49c6581607486dc53c7ab58ddd3ea6b5ff4036d5fd8a4620ae621650b31901121e08f1e804120a70656e756d6272612d311a0c0a0a08d387d6bec4fa90ec0d", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 78961", + "2 | Fee : 997621896479.867859 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1c270lwuz7fe6l654r0z4", + "3 | Action [3/4] : xsqdenn4dn235d7xeavzskhgmevjcqzqspp0r0", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/7] : DutchAuctionWithdraw", + "4 | Action [2/7] : Auction ID: pauctid1f9pruza2uu9cykfvmn", + "4 | Action [3/7] : 8pf79fk9jsyn7ad5jak4e7kjkk909jlwlqad0z", + "4 | Action [4/7] : 38", + "4 | Action [5/7] : Unsold: 490185280994.722716 penumbra", + "4 | Action [6/7] : Proceeds: 485964346261.600482 penumbra", + "4 | Action [7/7] : Sequence number: 434639577", + "5 | Action [1/2] : Spend 405860317257.637832 penumbra fro", + "5 | Action [2/2] : m Main Account" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 78961", + "2 | Fee : 997621896479.867859 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1c270lwuz7fe6l654r0z4", + "3 | Action [3/4] : xsqdenn4dn235d7xeavzskhgmevjcqzqspp0r0", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/7] : DutchAuctionWithdraw", + "4 | Action [2/7] : Auction ID: pauctid1f9pruza2uu9cykfvmn", + "4 | Action [3/7] : 8pf79fk9jsyn7ad5jak4e7kjkk909jlwlqad0z", + "4 | Action [4/7] : 38", + "4 | Action [5/7] : Unsold: 490185280994.722716 penumbra", + "4 | Action [6/7] : Proceeds: 485964346261.600482 penumbra", + "4 | Action [7/7] : Sequence number: 434639577", + "5 | Action [1/2] : Spend 405860317257.637832 penumbra fro", + "5 | Action [2/2] : m Main Account" + ] + }, + { + "index": 77, + "blob": "0a27fa01240a220a20b5e0e689b97e9350207312ef674051344ed9e7243cc24ad6b1444c7e83e606030aaa02aa01a60208a0e4c8501a02080322a8010a300a0a089be298a7d890e4970712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122007764f255293656d65f68c0a4b97b770e6f971864edc6683749e752451214ff81a520a504737f838d0b81a242fefe0292f0cb7b56e0b49a03903987395145633096942cc188bc7af46eda86d654ea950721a8d4aca6e5cc939f8e048f93eeb4c4930637e9bd0920a394c47393b96cde028cee6a8320a089e82a7b4c79391e40d3a202ad53a0a169dc898a71aa439a071bcfeefde80e87173dac28b58ee0919240a004220f2345dc127ec285735d7dac3edd0816cefa9b6ecd9fe068662b6501a96f26f104a204289f7e74b4820a6863a23adc3ef67e8e8dcf7d36a8ffc61fcf2df54306bc8050a19b2011608e6a2b3a101120a08fda8a6af8fe8e487041a021200121e08c3bf2b120a70656e756d6272612d311a0c0a0a08d1aebf9faacdc2fb06", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 712643", + "2 | Fee : 501881336608.315217 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1khswdzde06f4qgrnzthk", + "3 | Action [3/3] : wsz3x38dneey8npy4443g3x8aqlxqcpsmjdnhv", + "4 | Action [1/4] : DelegatorVote on Proposal 168964640", + "4 | Action [2/4] : Vote No", + "4 | Action [3/4] : Voting Power: 993119156629.52067 penum", + "4 | Action [4/4] : bra" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 712643", + "2 | Fee : 501881336608.315217 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid1khswdzde06f4qgrnzthk", + "3 | Action [3/3] : wsz3x38dneey8npy4443g3x8aqlxqcpsmjdnhv", + "4 | Action [1/4] : DelegatorVote on Proposal 168964640", + "4 | Action [2/4] : Vote No", + "4 | Action [3/4] : Voting Power: 993119156629.52067 penum", + "4 | Action [4/4] : bra" + ] + }, + { + "index": 78, + "blob": "0a4b9201480a3a0a1c666b646b627077672d3130323532303331363035363432323233303912186f7a666b76762d35323032323234353137333036393531322a001a0a08c8d8e8d2c6b4a4fb0c0ac201d202be010a220a205366bc51b05cc2b67533358c5bff55eb38275c1cb3089d38d7f71a10d118653b22220a2000000000000000000000000000000000ff9db22d0e5604189374bc6a7ef9db232a0a08deedc2aa92e8c0df01322011b4589c11c09b48196efe27b5b3e5900c462923abbde13d1f2508d88f201b003a20dbaacb6a0bede22a2e6646d5963d959e4bfb7f23295dbf29680fb614c0a3f2064220650c089fa0571724eafd50c7ec891640992b194f50bd5ab66be3e67b454f450d48df8e03121e08fbf002120a70656e756d6272612d311a0c0a0a08de86d39be2a786830b", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 47227", + "2 | Fee : 794350138950.992734 penumbra", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 125822892923467486 passet1u88u40", + "3 | Action [3/4] : zv588v53r3cvm4cggasa9vwz2e4chg4vpe99fq", + "3 | Action [4/4] : ys05hu8qhksq0z" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 47227", + "2 | Fee : 794350138950.992734 penumbra", + "3 | Action [1/4] : UndelegateClaim", + "3 | Action [2/4] : Value 125822892923467486 passet1u88u40", + "3 | Action [3/4] : zv588v53r3cvm4cggasa9vwz2e4chg4vpe99fq", + "3 | Action [4/4] : ys05hu8qhksq0z" + ] + }, + { + "index": 79, + "blob": "0a9201ba038e010a220a2021b7aca3ebaf5ef9ad1295e53ee18a2b62bca11cae36bc71c5e4ce335fe87d7610c593a18e011a300a0a08b49db2a8dc9e88ff0b12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08dc958fe7afd4e39f0412220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100ac4018201c0010a7c0a220a20887414c25dfb04f7cb6ed78e7ea33f7c8c0b917e4d988ada569a3a4ba5d551031220b50ebc1def4a583a50ce7a7574f25666b49d54dfd56dfb0df2cb37280fa4989e1a0e746573742076616c696461746f7240014a220a20887414c25dfb04f7cb6ed78e7ea33f7c8c0b917e4d988ada569a3a4ba5d55103124006887e0cbd334b7a78bfdabaa258e0f9be5364727f81ae86392217b9ce4d0e03bc95d843b9f262201ffd6b5dff0de23d9fe4df6c7de1b78588efbfc41a3b8304121a120a70656e756d6272612d311a0c0a0a08c6acd0b8968fc28e07", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 512575250103.53927 penumbra", + "2 | Action [1/7] : DutchAuctionWithdraw", + "2 | Action [2/7] : Auction ID: pauctid1yxm6eglt4a00ntgjjh", + "2 | Action [3/7] : jnacv29d3teggu4cmtcuw9un8rxhlg04mqqeh6", + "2 | Action [4/7] : 6a", + "2 | Action [5/7] : Unsold: 864164418446.724788 penumbra", + "2 | Action [6/7] : Proceeds: 306120130363.116252 penumbra", + "2 | Action [7/7] : Sequence number: 298338757" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 512575250103.53927 penumbra", + "2 | Action [1/7] : DutchAuctionWithdraw", + "2 | Action [2/7] : Auction ID: pauctid1yxm6eglt4a00ntgjjh", + "2 | Action [3/7] : jnacv29d3teggu4cmtcuw9un8rxhlg04mqqeh6", + "2 | Action [4/7] : 6a", + "2 | Action [5/7] : Unsold: 864164418446.724788 penumbra", + "2 | Action [6/7] : Proceeds: 306120130363.116252 penumbra", + "2 | Action [7/7] : Sequence number: 298338757" + ] + }, + { + "index": 80, + "blob": "0a4b9201480a3a0a1e6b78767a2d383733393639393731363230383034363139393531353538321216636363662d37333837343433323438303134363837352a001a0a08debdc2a7a4dad884010a8e0182028a010a180a0a08e8c6a7c3f1d4cca305120a08a49adcaba982d7d40112220a20b1fddd018e58ce74947e44278225dfc748e5e9c2657c3fc695a4ffc3476231db1a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a102001121d08a571120a70656e756d6272612d311a0c0a0a088cdaf0ab918afbad032a8a020ae5010a520a50e56fd5e5e42ec397fb58388a51c23b90b3b44b3de9ab60f42330051207a31f66aec7cd8b66d2096bfee328bc2ebc395eb4eac3c9f425c8499ca56863f0094db9da84c745f992edfa057dcf2d26be0f2f128e01546820206c6420424e614c203278204920567834515739204120394720203676654857205a4632387720206c3335206331206b3331313034736965207832325465755259206d7a2050534f36543236206c5220337179323868674b56383520556d745248446346207535584d3873472056327338427a474d5143777442203572696a203020207a20206820477962122056d99ff34bcd42dff4e41dadc0d8f94a76c41b0e5e46c080aed8a7d8dab7a86e", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 14501", + "2 | Fee : 242046837991.419148 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1k87a6qvwtr88f9r7gsnc", + "3 | Action [3/4] : yfwlcaywt6wzv47rl3545nlux3mzx8ds7de54g", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1u4hate0y9mpe076c8z99rs3m…", + "4 | Memo Text [1/4] : Th ld BNaL 2x I Vx4QW9 A 9G 6veHW ZF", + "4 | Memo Text [2/4] : 28w l35 c1 k31104sie x22TeuRY mz PSO6", + "4 | Memo Text [3/4] : T26 lR 3qy28hgKV85 UmtRHDcF u5XM8sG V2", + "4 | Memo Text [4/4] : s8BzGMQCwtB 5rij 0 z h Gyb" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 14501", + "2 | Fee : 242046837991.419148 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1k87a6qvwtr88f9r7gsnc", + "3 | Action [3/4] : yfwlcaywt6wzv47rl3545nlux3mzx8ds7de54g", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1u4hate0y9mpe076c8z99rs3m…", + "4 | Memo Text [1/4] : Th ld BNaL 2x I Vx4QW9 A 9G 6veHW ZF", + "4 | Memo Text [2/4] : 28w l35 c1 k31104sie x22TeuRY mz PSO6", + "4 | Memo Text [3/4] : T26 lR 3qy28hgKV85 UmtRHDcF u5XM8sG V2", + "4 | Memo Text [4/4] : s8BzGMQCwtB 5rij 0 z h Gyb" + ] + }, + { + "index": 81, + "blob": "0a19b2011608b6a9d8ad03120a0889f3f5a9b3e9f0e4071a021a000a42c2023f0a220a20dbfc185d08349489caa353e2f2e238202e6096e7deaad58e4f4b287bdf85b1b610cb371a0a08b0ddf6cdbcf6c7c90b220a08dcaa80eadee8cab1040a85038a0181030afe020a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d7020ab20108c4abedbe05120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0a08edfa5310bac1f38e0340e8f6fb8ca2e584871812020a001a0a08edfa5310bac1f38e03228f0170656e756d627261317278756a3677396171643972386b30386e6a7967346861617a32386178377a6b7264777971743834723636716b36706461636533653471327072686a337733303276783067643072676a636e6474716366346a33306c6c79356d683275723873776c39683077376c727a736e64776e303372716e79356a6c367172326434766a6d3067653067122b08eed21212176d6b69617a687466617466702d373030373738343934361a0c0a0a08edf09095a787d4c306", + "output": [ + "0 | Chain ID : mkiazhtfatfp-7007784946", + "1 | Expiry Height : 305518", + "2 | Fee [1/3] : 470432898045196397 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/6] : Delegate", + "3 | Action [2/6] : To penumbravalid1m07pshggxj2gnj4r20309", + "3 | Action [3/6] : c3cyqhxp9h8m64dtrj0fv58hhu9kxmqfr2uz6", + "3 | Action [4/6] : Input 834045213037932208 passet1984fct", + "3 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [6/6] : yt9fdggqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : mkiazhtfatfp-7007784946", + "1 | Expiry Height : 305518", + "2 | Fee [1/3] : 470432898045196397 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/6] : Delegate", + "3 | Action [2/6] : To penumbravalid1m07pshggxj2gnj4r20309", + "3 | Action [3/6] : c3cyqhxp9h8m64dtrj0fv58hhu9kxmqfr2uz6", + "3 | Action [4/6] : Input 834045213037932208 passet1984fct", + "3 | Action [5/6] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "3 | Action [6/6] : yt9fdggqxmanqm" + ] + }, + { + "index": 82, + "blob": "0a7f92017c0a6e0a3c79787a746b686f6d78786472686c796c706b6f68726f6861636a752d3039323835313736333137343237363835313632333034313934333530393637122c6a677679696e786f6e786a65656e6373776f662d3333373838313334383935323935393430383537333039372a001a0a0893b1c3bcc6fbe2da050a8e0182028a010a180a0a08b4dac1c281f8f4d10d120a08d0f3c1f6f3d0ee940812220a2079e0e24b3ae1109227393b3e108e4c3e79accacd81d272c5f199f096e2d29b491a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010aa701aa03a3010aa0010a300a0a08e0cad0edb0a1f8e90512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a08f5a298c7ee84c4d5062209088cfb948fec8bbd2e28f2bff8ab0130f3bff8ab0138f0c7f8514220ddd9eb9b929ce9875c00a37aea9dbcffd249a01ba0b34bdbeebfc75ed04ef052121e08baaa11120a70656e756d6272612d311a0c0a0a088a8aa4e5d8909ea80c", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 283962", + "2 | Fee : 887341641577.858314 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid108swyje6uygfyfee8vlp", + "3 | Action [3/4] : prjv8eu6ejkds8f89303n8cfdckjndysc4c9cv", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/10] : DutchAuctionSchedule", + "4 | Action [2/10] : Selling: 419926627866.387808 penumbra", + "4 | Action [3/10] : For: penumbra", + "4 | Action [4/10] : Starting price: 480495544547283317 pen", + "4 | Action [5/10] : umbra for 419926627866387808 penumbra", + "4 | Action [6/10] : Ending price: 26164385674509708 penumb", + "4 | Action [7/10] : ra for 419926627866387808 penumbra", + "4 | Action [8/10] : Start block height: 360587250", + "4 | Action [9/10] : End block height: 360587251", + "4 | Action [10/10] : Steps: 171844592" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 283962", + "2 | Fee : 887341641577.858314 penumbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid108swyje6uygfyfee8vlp", + "3 | Action [3/4] : prjv8eu6ejkds8f89303n8cfdckjndysc4c9cv", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/10] : DutchAuctionSchedule", + "4 | Action [2/10] : Selling: 419926627866.387808 penumbra", + "4 | Action [3/10] : For: penumbra", + "4 | Action [4/10] : Starting price: 480495544547283317 pen", + "4 | Action [5/10] : umbra for 419926627866387808 penumbra", + "4 | Action [6/10] : Ending price: 26164385674509708 penumb", + "4 | Action [7/10] : ra for 419926627866387808 penumbra", + "4 | Action [8/10] : Start block height: 360587250", + "4 | Action [9/10] : End block height: 360587251", + "4 | Action [10/10] : Steps: 171844592" + ] + }, + { + "index": 83, + "blob": "0a8d03228a030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08e485c4c5aa86c2b80822020a002a520a502ffbd50e5aa62918c0dd399678a5e289ccc0dc9746d6e7aa01c52d09ef41c4eee190189adf02e4a69299bbc4102231f60f50c075d6af93242057f3a3e284a526a55426f0bd9c2b38821c50ff72b6e10c3220611828925c6653b162621168e5e23fd2b4539b14d5ac6cee319ebdcc9cf3c8251a6c0a0608fed1d0fa03120608bef1fdad071a0308eb07220208642a02083b320308ff0c42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20a920e281f7bf2c34b15e79a9cf19d6a81f6ae3fee348f95676e0152f1f8f570a3220efebfc8c12ec74cd31c7ab64d07519b08bda3ea87a4d84f9da1f628fe60dab110a5a9201570a4a0a2a786a63667a676676736263766f7478752d36363531363339303137393833303337393031303131303734121a756b6a65672d38313134343732333731303930373333333235342a001a0908a6d2bdbce6b7d74d121a120a70656e756d6272612d311a0c0a0a08f1d9f9c8f9e9d0dc03", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 268319661955.640561 penumbra" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 268319661955.640561 penumbra" + ] + }, + { + "index": 84, + "blob": "0a42c2023f0a220a20412ecd11bbab742dc75c26b1eaaeb6dd16a9a1d8a3235090877e6fd0fc647c6310e02b1a0a08a2e886c2bde0de8f01220a089ce5dbe6d4c1cb86040a8e03228b030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08c292d097d8a7efa70422020a002a520a50474c1cc4d20759648361c830d87da03c99321d2c2c284734623857d8064ef58b5895e0d874f67ab9ef9a5c27226d4f8933e0bba7a18201f70b73ea46c5ba71d37a36900cc94e82a67cfaab7dd07577983220762c133254df8a07b74a2a08534762eac577163ca69afd2de28900e39d46c35d1a6d0a0608c0c6fec702120608b480d6bb041a03089304220208262a03088708320308f30142480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a2096a3a4b3914427e16827b8bc94105bb85ef08f86b44b83f490720423227190053220c36f442787d44b143ffac75b791d6b9e9884590aa6d94eeabce8eaaab090b90e0a89038a0185030a82030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412db020ab40108fb8eb38a01120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c0881dfb79f0210a3ebb0860140f8def7eca2e584871812020a001a0c0881dfb79f0210a3ebb08601228f0170656e756d6272613176327870726364636a386636646e74716165676c7a677930736b386434356d646b727a6b6b6d7a6a76676e67386d67656e34713773736d7577667065356a366e6b796433747766753538306d777677766c65777870716a6a67337979396571717630756d677a6b67686568633964616864336d70376338326d717077366d687278636c7537670aab02aa01a70208d487facb011a02080222a8010a300a0a08e9c3c484add18b890712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012207b74164bd7b57f19035182e8d413ddd1434ac8957ba6ae0d2a7c43538655e9341a520a505702eb2394a27a195b7ea258b2e5072febb6f004761ed393ad654925a6d40d377eeeaa7aa4845bc20153dfe8a8eb385f4185103ecf9eb12206e223edfecd83e3e4a436a9fd56bd8df52008c34cf9ba24320a08e2b1b8e9b4c3f6a80c3a206996eab7e28f599133d643c3a38d6221ff355610c63174202705286a27a8840242206cafc29bf52ad002b557104d416bf9b8270b5b67e631231e1acf2fd2362f6c124a201c0d5f96a2b51a0b358df556c76d0bed967f620c40efe428fa2fbb8ebb1e9c011221121162786b6a6a646d61636c616d6a2d3136351a0c0a0a08a5a08fd6f6bacd850c", + "output": [ + "0 | Chain ID : bxkjjdmaclamj-165", + "1 | Fee [1/3] : 867846552524410917 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/6] : Delegate", + "2 | Action [2/6] : To penumbravalid1gyhv6ydm4d6zm36uy6c74", + "2 | Action [3/6] : t4km5t2ngwc5v34pyy80ehaplry033sz79pyu", + "2 | Action [4/6] : Input 80918574759261218 passet1984fcte", + "2 | Action [5/6] : nw8m2fpl8a9wzguzp7j34d7vravryuhft808ny", + "2 | Action [6/6] : t9fdggqxmanqm", + "3 | Action [1/5] : DelegatorVote on Proposal 427721684", + "3 | Action [2/5] : Vote Yes", + "3 | Action [3/5] : Voting Power: 887730412362537186 passe", + "3 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [5/5] : uhft808nyt9fdggqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : bxkjjdmaclamj-165", + "1 | Fee [1/3] : 867846552524410917 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/6] : Delegate", + "2 | Action [2/6] : To penumbravalid1gyhv6ydm4d6zm36uy6c74", + "2 | Action [3/6] : t4km5t2ngwc5v34pyy80ehaplry033sz79pyu", + "2 | Action [4/6] : Input 80918574759261218 passet1984fcte", + "2 | Action [5/6] : nw8m2fpl8a9wzguzp7j34d7vravryuhft808ny", + "2 | Action [6/6] : t9fdggqxmanqm", + "3 | Action [1/5] : DelegatorVote on Proposal 427721684", + "3 | Action [2/5] : Vote Yes", + "3 | Action [3/5] : Voting Power: 887730412362537186 passe", + "3 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "3 | Action [5/5] : uhft808nyt9fdggqxmanqm" + ] + }, + { + "index": 85, + "blob": "0a9201ba038e010a220a20cebb2690d208fb8828c56f7264c23ca339da7fa6d85d5f5e8cf1990f60226d6710b994c79d011a300a0a08dce6aebd8aeffaee0a12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1022300a0a08a7dfeeb6a6a6d2e80212220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a099a010608f69780b5030a19b20116089c8bf0b101120a08f4b1ca85d28fdec80c1a021a00122512156569746a757862652d3034303737313433393837381a0c0a0a0892ededbfda8bb9a00a2a88020ae3010a520a50f007d1226bc5cb3c35adfe740ab197d2820920d142a2cab753933b0365a71b9609eff0302da1f43da208ae34b0c9326ef74af66798233fed018d38311d0bbf15ddeeda6726078023087da957c10c7147128c0167422042354f52534862476f203620396b66424d4420203549585920644d33433420663834203533506f796277695566533248356220703252764b454272467a43396d346b4c48312043346a5220544920356637493420206f4574323375334f374e3467334b20662061346234416539204f785966204d202030207a374e37704877723471775047334757201220688719b92f13326aab69ee23850784fe769532d860c15ad6d0eb435ebb5f4674", + "output": [ + "0 | Chain ID : eitjuxbe-040771439878", + "1 | Fee [1/3] : 738841429790127762 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/11] : DutchAuctionWithdraw", + "2 | Action [2/11] : Auction ID: pauctid1e6ajdyxjpracs2x9da", + "2 | Action [3/11] : exfs3u5vua5laxmpw47h5v7xvs7cpzd4nsrtgm", + "2 | Action [4/11] : kr", + "2 | Action [5/11] : Unsold: 783040813673984860 passet1984f", + "2 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "2 | Action [7/11] : 8nyt9fdggqxmanqm", + "2 | Action [8/11] : Proceeds: 203023939031248807 passet198", + "2 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "2 | Action [10/11] : 808nyt9fdggqxmanqm", + "2 | Action [11/11] : Sequence number: 330418745", + "3 | Sender Address : Sub-account #24", + "3 | Memo Text [1/4] : gB B5ORSHbGo 6 9kfBMD 5IXY dM3C4 f84 ", + "3 | Memo Text [2/4] : 53PoybwiUfS2H5b p2RvKEBrFzC9m4kLH1 C4j", + "3 | Memo Text [3/4] : R TI 5f7I4 oEt23u3O7N4g3K f a4b4Ae9 O", + "3 | Memo Text [4/4] : xYf M 0 z7N7pHwr4qwPG3GW " + ], + "output_expert": [ + "0 | Chain ID : eitjuxbe-040771439878", + "1 | Fee [1/3] : 738841429790127762 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/11] : DutchAuctionWithdraw", + "2 | Action [2/11] : Auction ID: pauctid1e6ajdyxjpracs2x9da", + "2 | Action [3/11] : exfs3u5vua5laxmpw47h5v7xvs7cpzd4nsrtgm", + "2 | Action [4/11] : kr", + "2 | Action [5/11] : Unsold: 783040813673984860 passet1984f", + "2 | Action [6/11] : ctenw8m2fpl8a9wzguzp7j34d7vravryuhft80", + "2 | Action [7/11] : 8nyt9fdggqxmanqm", + "2 | Action [8/11] : Proceeds: 203023939031248807 passet198", + "2 | Action [9/11] : 4fctenw8m2fpl8a9wzguzp7j34d7vravryuhft", + "2 | Action [10/11] : 808nyt9fdggqxmanqm", + "2 | Action [11/11] : Sequence number: 330418745", + "3 | Sender Address : Sub-account #24", + "3 | Memo Text [1/4] : gB B5ORSHbGo 6 9kfBMD 5IXY dM3C4 f84 ", + "3 | Memo Text [2/4] : 53PoybwiUfS2H5b p2RvKEBrFzC9m4kLH1 C4j", + "3 | Memo Text [3/4] : R TI 5f7I4 oEt23u3O7N4g3K f a4b4Ae9 O", + "3 | Memo Text [4/4] : xYf M 0 z7N7pHwr4qwPG3GW " + ] + }, + { + "index": 86, + "blob": "0abe020abb020aa8010a300a0a08ddbab6cc9cd9dbd60d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012204a3c517920417f0362dec60157ce82f16a59d3d991b2ec2d947499377a1618921a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f710caaed3eac7b4061a20d6f60cbc3672d0ce3be5081606a658fd3e30416c808ac895ffc9ce8eda3454012220bc5fbd07fedc3f5c226137ab6b4d7aebcaf51a573c201d30c2e53bbac7b479032a20336d25aadc73700921ca9613db21b310dff93ab290bd436858692c72cb074f01322099942e678602c927e1ecfa28aef7c62fe7d34b967975fc8d49800c9067bab7000a47ca02440a220a203e2eddca549c0e7c144107c860eccda1e44b9710729b48a942ae7888f882775c1a0a0893eab1dfe5b5d99108220a08fac5f783cdbc94a0052a0608f83210f8321230122075736a69797161776a666565756a687271737779676c2d3639363137333638321a0c0a0a08db80d29a9df084b504", + "output": [ + "0 | Chain ID : usjiyqawjfeeujhrqswygl-696173682", + "1 | Fee [1/3] : 318088172000280667 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 985565706412989789 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid18chdmjj5ns88c9zpqly", + "3 | Action [3/10] : xpmxd58jyh9csw2d5322z4eug37yzwawq35spf", + "3 | Action [4/10] : 6", + "3 | Action [5/10] : Input 378392411891426042 passet129kw07", + "3 | Action [6/10] : 80rmnl94qy773hdtycrk20rd0kj4uz3q6ttffz", + "3 | Action [7/10] : rnl8tuqsxdm7ns", + "3 | Action [8/10] : Output 586424176029234451 passet1hf42p", + "3 | Action [9/10] : 7yg9nerkt48en4uk982kk9w4q9un33ghfad8qn", + "3 | Action [10/10] : rwvydccgqz35xce" + ], + "output_expert": [ + "0 | Chain ID : usjiyqawjfeeujhrqswygl-696173682", + "1 | Fee [1/3] : 318088172000280667 passet1984fctenw8m2", + "1 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "1 | Fee [3/3] : gqxmanqm", + "2 | Action [1/3] : Spend 985565706412989789 passet1984fct", + "2 | Action [2/3] : enw8m2fpl8a9wzguzp7j34d7vravryuhft808n", + "2 | Action [3/3] : yt9fdggqxmanqm from Main Account", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid18chdmjj5ns88c9zpqly", + "3 | Action [3/10] : xpmxd58jyh9csw2d5322z4eug37yzwawq35spf", + "3 | Action [4/10] : 6", + "3 | Action [5/10] : Input 378392411891426042 passet129kw07", + "3 | Action [6/10] : 80rmnl94qy773hdtycrk20rd0kj4uz3q6ttffz", + "3 | Action [7/10] : rnl8tuqsxdm7ns", + "3 | Action [8/10] : Output 586424176029234451 passet1hf42p", + "3 | Action [9/10] : 7yg9nerkt48en4uk982kk9w4q9un33ghfad8qn", + "3 | Action [10/10] : rwvydccgqz35xce" + ] + }, + { + "index": 87, + "blob": "0a779201740a660a2e6a6272776b6b747a79696b666f6e706a6972727277632d313836393539303139343738333737363233363138303712326f687a717778746470756a7a686c65766d2d36383932323336353636393331303835303334303838323632353635383634342a001a0a0897c89cd58ecebf8f010a349203310a2f0a0908eeb7ecaba7f7ae0712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100aa901aa03a5010aa2010a300a0a08b39394c2a68895970112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a101a0a08a8e5aaf7a1c3bec20b220a0888d08091cde8b1a00d28a7978ee20230a8978ee20238c4a4f5af0142203fecc9b33126b586eb82e4e295d5392fa1e121603c2feb67e48bafaa7d375f550a47ca02440a220a20b70e67345f34bdf3414e695c738c6445e329859f13bff0b130704d4b120d3a331a0a08efc1adf0f5f7e39307220a08bc9a808fe282a1e8042a0608b62d10b62d121e08bac41d120a70656e756d6272612d311a0c0a0a08c3b79ed486adb98c042a9c020af7010a520a5077f113c6454a66f3ef27236b8dadc9d3cd6956b11547b93a9933753c36d3884388ea181ab94ac501b33463a2589afbe082e973cb177bc13e814168d6db63069bece7b61e62239b48299bcf62286f31eb12a0016e206c346b394d70203371354620396554204c6a202062687937656b204a686c6333784c304a63365539457a61204147764c6866764f34767120774820634f644e2076583647304a7620484d7572576d593171503239523670332059377362655a556c67204e41664134334e2020325254206c2046204e3320492033624a5a3620205a48202038206b3020727a78414e20204e4243304b7571335a33775420201220ff9dc9298f64a37064fddc440a72ed7d2cd991b04f1c03846634cdadd372995b", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 483898", + "2 | Fee : 295238012219.399107 penumbra", + "3 | Action [1/10] : DutchAuctionSchedule", + "3 | Action [2/10] : Selling: 85098087160.547763 penumbra", + "3 | Action [3/10] : For: penumbra", + "3 | Action [4/10] : Starting price: 830063221437805224 pen", + "3 | Action [5/10] : umbra for 85098087160547763 penumbra", + "3 | Action [6/10] : Ending price: 954982219399571464 penum", + "3 | Action [7/10] : bra for 85098087160547763 penumbra", + "3 | Action [8/10] : Start block height: 742624167", + "3 | Action [9/10] : End block height: 742624168", + "3 | Action [10/10] : Steps: 368923204", + "4 | Action [1/10] : Undelegate", + "4 | Action [2/10] : From penumbravalid1ku8xwdzlxj7lxs2wd9w", + "4 | Action [3/10] : 88rrygh3jnpvlzwllpvfswpx5kysd8ges37fad", + "4 | Action [4/10] : 8", + "4 | Action [5/10] : Input 346922401900006716 passet1zxqdck", + "4 | Action [6/10] : ujew83wuv77hlvlq2e4j6qyt9aqqhmtkusx67k", + "4 | Action [7/10] : m4dqturqzlcqn4", + "4 | Action [8/10] : Output 515538734436540655 passet1qj3rw", + "4 | Action [9/10] : vu64875ef9z820sjzhgt5f0rqtskpqhzg7x85m", + "4 | Action [10/10] : xtpqxvcrqxt6fgk", + "5 | Sender Address : penumbra1wlc383j9ffn08me8yd4cmtwf…", + "5 | Memo Text [1/5] : n l4k9Mp 3q5F 9eT Lj bhy7ek Jhlc3xL0J", + "5 | Memo Text [2/5] : c6U9Eza AGvLhfvO4vq wH cOdN vX6G0Jv HM", + "5 | Memo Text [3/5] : urWmY1qP29R6p3 Y7sbeZUlg NAfA43N 2RT ", + "5 | Memo Text [4/5] : l F N3 I 3bJZ6 ZH 8 k0 rzxAN NBC0Ku", + "5 | Memo Text [5/5] : q3Z3wT " + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 483898", + "2 | Fee : 295238012219.399107 penumbra", + "3 | Action [1/10] : DutchAuctionSchedule", + "3 | Action [2/10] : Selling: 85098087160.547763 penumbra", + "3 | Action [3/10] : For: penumbra", + "3 | Action [4/10] : Starting price: 830063221437805224 pen", + "3 | Action [5/10] : umbra for 85098087160547763 penumbra", + "3 | Action [6/10] : Ending price: 954982219399571464 penum", + "3 | Action [7/10] : bra for 85098087160547763 penumbra", + "3 | Action [8/10] : Start block height: 742624167", + "3 | Action [9/10] : End block height: 742624168", + "3 | Action [10/10] : Steps: 368923204", + "4 | Action [1/10] : Undelegate", + "4 | Action [2/10] : From penumbravalid1ku8xwdzlxj7lxs2wd9w", + "4 | Action [3/10] : 88rrygh3jnpvlzwllpvfswpx5kysd8ges37fad", + "4 | Action [4/10] : 8", + "4 | Action [5/10] : Input 346922401900006716 passet1zxqdck", + "4 | Action [6/10] : ujew83wuv77hlvlq2e4j6qyt9aqqhmtkusx67k", + "4 | Action [7/10] : m4dqturqzlcqn4", + "4 | Action [8/10] : Output 515538734436540655 passet1qj3rw", + "4 | Action [9/10] : vu64875ef9z820sjzhgt5f0rqtskpqhzg7x85m", + "4 | Action [10/10] : xtpqxvcrqxt6fgk", + "5 | Sender Address : penumbra1wlc383j9ffn08me8yd4cmtwf…", + "5 | Memo Text [1/5] : n l4k9Mp 3q5F 9eT Lj bhy7ek Jhlc3xL0J", + "5 | Memo Text [2/5] : c6U9Eza AGvLhfvO4vq wH cOdN vX6G0Jv HM", + "5 | Memo Text [3/5] : urWmY1qP29R6p3 Y7sbeZUlg NAfA43N 2RT ", + "5 | Memo Text [4/5] : l F N3 I 3bJZ6 ZH 8 k0 rzxAN NBC0Ku", + "5 | Memo Text [5/5] : q3Z3wT " + ] + }, + { + "index": 88, + "blob": "0a88038a0184030a81030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412da020ab30108a4eec028120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0c08a68098dc0110a4fcf8ed0240b08ca9f3a3e584871812020a001a0c08a68098dc0110a4fcf8ed02228f0170656e756d6272613173757937307a75706d356b63386d763277683039716d66757066646e6e333039793764786a786b726371636479796676636d77346a32676b787264667530396733306637356b6568717638683464767a643934396865306165667065366737367536747a36726b39736630326a63303434767363766c65717a74337564367a7961767674726d0a34a203310a2f0a0908e588f6c4c4ccca2512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a099a010608cedcbd9d010a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab30108a6b4c89301120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08d3c0ce4310a1aef1c40340a0a8ac82a4e584871812020a001a0b08d3c0ce4310a1aef1c403228f0170656e756d6272613137356b756d61797030797075327777356566687a3474616a356e6a373073736c7338686b68617878776e366837713272773233756178633678746d6d64326b71716539777230306b6a7179786a35666e767873616a337a6633773279683334717868777875613879687475326b36753832613063386b35366639396e6a76706a7370776a306a121a120a70656e756d6272612d311a0c0a0a08ddc5fed8c0d3f9bc052abd030a98030a520a50afb69effef10f5ddd075a02cebafc60006d8068fc09b9f67616788054ed111c844dcb62d14f6b51075b62e8d4a65c456b97ccefdc339e022d2167bf6880ad09f18eb9499d30789c69ee2dd16d098f6f712c10220204447564d6c68767030446f207920337667203839346247575062702048346476636a3320203634583237204262714235206c2071556a395a785a57772066596f544a4730742073414558305546205a724c6f705048454e323678203148314220506a3448333453684336462047316d742041363920564361323120393032325032316f6a7920644e7a73442031632034744d672030437036463920363978473320332068204a384b3454207a4b6d33377820505a205575485020525552507255785a59545163616c776d525a65783520203220384f4e787a4d3720664b34483056366a20753432204f206f20624e3071332054466c666e32676b575a7974205455204f58736420202030667479692038393420206a30785920344b395a65204f6f535a73577a4a706a51483334677a5836506220594c494d203061317a67391220cd4648de4483cc1230b6ebb41da8791fa0de6a93bc5a7996a6a404154a2407ed", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 394600000247.538397 penumbra", + "2 | Sender Address : Main Account", + "2 | Memo Text [1/9] : DGVMlhvp0Do y 3vg 894bGWPbp H4dvcj3 ", + "2 | Memo Text [2/9] : 64X27 BbqB5 l qUj9ZxZWw fYoTJG0t sAEX", + "2 | Memo Text [3/9] : 0UF ZrLopPHEN26x 1H1B Pj4H34ShC6F G1mt", + "2 | Memo Text [4/9] : A69 VCa21 9022P21ojy dNzsD 1c 4tMg 0C", + "2 | Memo Text [5/9] : p6F9 69xG3 3 h J8K4T zKm37x PZ UuHP RU", + "2 | Memo Text [6/9] : RPrUxZYTQcalwmRZex5 2 8ONxzM7 fK4H0V6", + "2 | Memo Text [7/9] : j u42 O o bN0q3 TFlfn2gkWZyt TU OXsd ", + "2 | Memo Text [8/9] : 0ftyi 894 j0xY 4K9Ze OoSZsWzJpjQH34g", + "2 | Memo Text [9/9] : zX6Pb YLIM 0a1zg9" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 394600000247.538397 penumbra", + "2 | Sender Address : Main Account", + "2 | Memo Text [1/9] : DGVMlhvp0Do y 3vg 894bGWPbp H4dvcj3 ", + "2 | Memo Text [2/9] : 64X27 BbqB5 l qUj9ZxZWw fYoTJG0t sAEX", + "2 | Memo Text [3/9] : 0UF ZrLopPHEN26x 1H1B Pj4H34ShC6F G1mt", + "2 | Memo Text [4/9] : A69 VCa21 9022P21ojy dNzsD 1c 4tMg 0C", + "2 | Memo Text [5/9] : p6F9 69xG3 3 h J8K4T zKm37x PZ UuHP RU", + "2 | Memo Text [6/9] : RPrUxZYTQcalwmRZex5 2 8ONxzM7 fK4H0V6", + "2 | Memo Text [7/9] : j u42 O o bN0q3 TFlfn2gkWZyt TU OXsd ", + "2 | Memo Text [8/9] : 0ftyi 894 j0xY 4K9Ze OoSZsWzJpjQH34g", + "2 | Memo Text [9/9] : zX6Pb YLIM 0a1zg9" + ] + }, + { + "index": 89, + "blob": "0a6b9201680a5a0a2e63716d6961686279716e6269746d666d68692d35383138343937363335373531383833313334313332343631313712267a6a677a6f6c6f71686d777261786571666d717875747a65666372622d3738303231363130362a001a0a088eadf4fcf2f6a6d0070a47ca02440a220a203bdf0eb6bb02c28cb3bcdf79637ae30bc293b2e8755dace7bcc98f882d5d24d71a0a08afa8ccc0bd9ab4b801220a0899fdeee7ffa3ddd20c2a0608f90b10f90b0aab02aa01a70208a0e7ecba021a02080122a8010a300a0a08c3daa9e99f81f69a0312220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122017f319091b076d008eb2f231f9d631a32616eac45f36fe0bba8502e18c5277491a520a50a36e8a78b38ed89288fe24fbbc0533c93d1784cd468cf902a2f720fe9f723ecad218f79d41fcc552803e892e9cd1383bb93560bdfc3cf5c8262851be747c6bc7c45428c21ba71d8fd6b32ac307758a21320a089ddcc9e4eb90dbaa053a20d4d1183508bc62b2d15b2585d97fada9c9a094c0ab5c47e678f85622a36c000342209db2c0069295ac53fe05347d45069bed96475cc514a0ff25e1b4b61e2ac7d4024a202f0d15271f893c497e7c42f649e0d7ba49c07cd5752945d9fa4de47edb9a5b0e124c08b4a13b1238656e706d676d6564736a797a636d697870706a79686c6e6a726175652d3330323438323939323134353830333939393139333332333037351a0c0a0a08ca8c8497e7d2e1eb032aba030a95030a520a50a07cab9a87cbe5489bfaed097bdd0644fb58b2883e6c073d02e4bce9c5b0862a02b9ce18c1572db516a468490a8986e6d8df0a8540298b5015b45e9c85eaba0bff3668977d8f0d153cae0064befbb91f12be022035387976733120384f3820202020794475394654337a48206638317135207930724d59392037204c3035206b48205053394e3520372067356e35447a76734d204b386b694f57667a6f7120324f394f207734206f203273563861755620676c7120203632353336555520462050443438206d70205165204e2034367620202020563146762030206b55316f20417631765178574d782020206a20334a3134317578594d746f337049786d636c372032203071317751352041344143202044577037364a762065204834204f5220344356356c4e3643564a2048566e6c314b394f344a34366c31326852374970304970206f39322030205a353020317534613675546f566b6c37386b3972394b49506931333978692078575931466d4b2062795233736655597a46305530666a206f20314c37415354334420207a6b64201220c7866ee01b776d5940aefee3c86d3fdf04732edb79d5c65f85ce1cb5c80c0815", + "output": [ + "0 | Chain ID [1/2] : enpmgmedsjyzcmixppjyhlnjraue-302482992", + "0 | Chain ID [2/2] : 145803999193323075", + "1 | Expiry Height : 970932", + "2 | Fee [1/3] : 276837882837141066 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1800sad4mqtpgevaumau", + "3 | Action [3/10] : kx7hrp0pf8vhgw4w6eeauex8cst2ayntst4upr", + "3 | Action [4/10] : 8", + "3 | Action [5/10] : Input 911263279861186201 passet1ve9ug3", + "3 | Action [6/10] : kxvw5em342rwtzwx5qex7kfyetdm5znm0nq8jk", + "3 | Action [7/10] : uylpfvxssnlf9p", + "3 | Action [8/10] : Output 103812399711327279 passet1ap4hg", + "3 | Action [9/10] : t0644upgh45d3myzfg98l3q95j2lkgff9sr6jm", + "3 | Action [10/10] : vwxduvqpsnm6kr9", + "4 | Action [1/5] : DelegatorVote on Proposal 660288416", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 384332669155175965 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "5 | Sender Address : penumbra15p72hx58e0j53xl6a5yhhhgx…", + "5 | Memo Text [1/9] : 58yvs1 8O8 yDu9FT3zH f81q5 y0rMY9 ", + "5 | Memo Text [2/9] : 7 L05 kH PS9N5 7 g5n5DzvsM K8kiOWfzoq ", + "5 | Memo Text [3/9] : 2O9O w4 o 2sV8auV glq 62536UU F PD48 ", + "5 | Memo Text [4/9] : mp Qe N 46v V1Fv 0 kU1o Av1vQxWMx ", + "5 | Memo Text [5/9] : j 3J141uxYMto3pIxmcl7 2 0q1wQ5 A4AC ", + "5 | Memo Text [6/9] : DWp76Jv e H4 OR 4CV5lN6CVJ HVnl1K9O4J4", + "5 | Memo Text [7/9] : 6l12hR7Ip0Ip o92 0 Z50 1u4a6uToVkl78k9", + "5 | Memo Text [8/9] : r9KIPi139xi xWY1FmK byR3sfUYzF0U0fj o ", + "5 | Memo Text [9/9] : 1L7AST3D zkd " + ], + "output_expert": [ + "0 | Chain ID [1/2] : enpmgmedsjyzcmixppjyhlnjraue-302482992", + "0 | Chain ID [2/2] : 145803999193323075", + "1 | Expiry Height : 970932", + "2 | Fee [1/3] : 276837882837141066 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/10] : Undelegate", + "3 | Action [2/10] : From penumbravalid1800sad4mqtpgevaumau", + "3 | Action [3/10] : kx7hrp0pf8vhgw4w6eeauex8cst2ayntst4upr", + "3 | Action [4/10] : 8", + "3 | Action [5/10] : Input 911263279861186201 passet1ve9ug3", + "3 | Action [6/10] : kxvw5em342rwtzwx5qex7kfyetdm5znm0nq8jk", + "3 | Action [7/10] : uylpfvxssnlf9p", + "3 | Action [8/10] : Output 103812399711327279 passet1ap4hg", + "3 | Action [9/10] : t0644upgh45d3myzfg98l3q95j2lkgff9sr6jm", + "3 | Action [10/10] : vwxduvqpsnm6kr9", + "4 | Action [1/5] : DelegatorVote on Proposal 660288416", + "4 | Action [2/5] : Vote Abstain", + "4 | Action [3/5] : Voting Power: 384332669155175965 passe", + "4 | Action [4/5] : t1984fctenw8m2fpl8a9wzguzp7j34d7vravry", + "4 | Action [5/5] : uhft808nyt9fdggqxmanqm", + "5 | Sender Address : penumbra15p72hx58e0j53xl6a5yhhhgx…", + "5 | Memo Text [1/9] : 58yvs1 8O8 yDu9FT3zH f81q5 y0rMY9 ", + "5 | Memo Text [2/9] : 7 L05 kH PS9N5 7 g5n5DzvsM K8kiOWfzoq ", + "5 | Memo Text [3/9] : 2O9O w4 o 2sV8auV glq 62536UU F PD48 ", + "5 | Memo Text [4/9] : mp Qe N 46v V1Fv 0 kU1o Av1vQxWMx ", + "5 | Memo Text [5/9] : j 3J141uxYMto3pIxmcl7 2 0q1wQ5 A4AC ", + "5 | Memo Text [6/9] : DWp76Jv e H4 OR 4CV5lN6CVJ HVnl1K9O4J4", + "5 | Memo Text [7/9] : 6l12hR7Ip0Ip o92 0 Z50 1u4a6uToVkl78k9", + "5 | Memo Text [8/9] : r9KIPi139xi xWY1FmK byR3sfUYzF0U0fj o ", + "5 | Memo Text [9/9] : 1L7AST3D zkd " + ] + }, + { + "index": 90, + "blob": "0ac4018201c0010a7c0a220a2014227004dc4ad2fd496989e52c4b046ac160de8f29d074f23e6a14c1b15290001220ed2f8f610e3e4cc7e800caea34087ee49dc6cdbd558cecdb780468fc87904bfa1a0e746573742076616c696461746f7240014a220a2014227004dc4ad2fd496989e52c4b046ac160de8f29d074f23e6a14c1b1529000124000ba2d05eb53f44ccfb11440513b213d5c82730f7b15719749da142f07fd6d083baa0040bc3088747873befab625f922428c22e82fa85964100ac7ddc8e4f4020aab02aa01a7020882e89af8011a02080322a8010a300a0a08a7a6f1b191fceee90912220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012202a28b9640aaa7c97c60fee501756ed2771ec78b9e5dea0942c8f8b72876749421a520a50d9dfaadc94706aaf8e115a2a42e09eb4691bfc311d5cb9b4ed61143ff7ffe9cbc5e368290698a3d62d22b0b0f8d7a3c88ddda206b2734e6a6171d9d8ded38adae52b2ff3f4c403ddc09b0d4cebaff5a1320a08a19de782dee6b49c0a3a202ea6a12515359de22131152a145853d790aa224bc444ae96c293f1b6345f2f03422042b53982860bbc875f9fc51f31d665d38b2b846ade167544d720739b002f260f4a202eada52755945168180cde60c8b204a13cb8a643a76a95d9c8cc4f959c245c0a0a35a203320a300a0a08f1cbe4e48ed0bcc40112220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a8e0182028a010a180a0a08afd9d5a2c4efe8a60c120a08d8c8ec98b5c6dd940812220a203142cb6d34bf8db75e03d7bbd41581e4bec0c7a40183c1174fdde2e4d490cc231a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a102001121a120a70656e756d6272612d311a0c0a0a08b1bae4d9ea81f4d7062ae1030abc030a520a509e8dd082849a3ddfc0e6d5cf13cfd8e9501568ddf905f37d78bd309f1489af86c6b3c5a6e9d23b440f52fc04be66e6600917d2a61382c0c2776f9569345d183fe6c363903151db8c6dd44016f6b2cc4612e50220204d6149365637202020673520206c556d5738566d44503720364f313532686c7733392032426b4f62324262204d6150632020205a5420556d66204a205579556a33337039594d5231206347384b6f765a5949446b4d596820444e207176303378206362204734617057203955313041386268204c4a392020656f572036317636672071303347204a20334132624d567854384159396e2039206f6b41306f4c7170363843757777716c6e4c54424836204e553758313332726232205937336763625241766966665943516b3620205462795232202074736f4a79596f4c7a31566d524220202036313367204c417a7658385843203362797a5a2051316b4272723456207a45494b6b476a6a6e394e57596d6334364676205020615120204b71206751204b205a324f32364a546134206c207044783320204a3537205a3520727a466c5a6f4220504e325363717a363720472048382054536c42335620447830444e364d12206d4a5032c0bd49caf1f69fa587210a40e788a94a842f62f50dbae9ed79a76294", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 481832446572.698929 penumbra", + "2 | Action [1/4] : DelegatorVote on Proposal 520532994", + "2 | Action [2/4] : Vote No", + "2 | Action [3/4] : Voting Power: 736570767425.785505 penu", + "2 | Action [4/4] : mbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1x9pvkmf5h7xmwhsr67aa", + "3 | Action [3/4] : g9vpujlvp3ayqxpuz960mh3wf4yses3sazv5xy", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1n6xapq5yng7als8x6h838n7c…", + "4 | Memo Text [1/10] : MaI6V7 g5 lUmW8VmDP7 6O152hlw39 2", + "4 | Memo Text [2/10] : BkOb2Bb MaPc ZT Umf J UyUj33p9YMR1 c", + "4 | Memo Text [3/10] : G8KovZYIDkMYh DN qv03x cb G4apW 9U10A8", + "4 | Memo Text [4/10] : bh LJ9 eoW 61v6g q03G J 3A2bMVxT8AY9n", + "4 | Memo Text [5/10] : 9 okA0oLqp68CuwwqlnLTBH6 NU7X132rb2 Y", + "4 | Memo Text [6/10] : 73gcbRAviffYCQk6 TbyR2 tsoJyYoLz1VmR", + "4 | Memo Text [7/10] : B 613g LAzvX8XC 3byzZ Q1kBrr4V zEIKk", + "4 | Memo Text [8/10] : Gjjn9NWYmc46Fv P aQ Kq gQ K Z2O26JTa4", + "4 | Memo Text [9/10] : l pDx3 J57 Z5 rzFlZoB PN2Scqz67 G H8", + "4 | Memo Text [10/10] : TSlB3V Dx0DN6M" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 481832446572.698929 penumbra", + "2 | Action [1/4] : DelegatorVote on Proposal 520532994", + "2 | Action [2/4] : Vote No", + "2 | Action [3/4] : Voting Power: 736570767425.785505 penu", + "2 | Action [4/4] : mbra", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1x9pvkmf5h7xmwhsr67aa", + "3 | Action [3/4] : g9vpujlvp3ayqxpuz960mh3wf4yses3sazv5xy", + "3 | Action [4/4] : Sequence number 1", + "4 | Sender Address : penumbra1n6xapq5yng7als8x6h838n7c…", + "4 | Memo Text [1/10] : MaI6V7 g5 lUmW8VmDP7 6O152hlw39 2", + "4 | Memo Text [2/10] : BkOb2Bb MaPc ZT Umf J UyUj33p9YMR1 c", + "4 | Memo Text [3/10] : G8KovZYIDkMYh DN qv03x cb G4apW 9U10A8", + "4 | Memo Text [4/10] : bh LJ9 eoW 61v6g q03G J 3A2bMVxT8AY9n", + "4 | Memo Text [5/10] : 9 okA0oLqp68CuwwqlnLTBH6 NU7X132rb2 Y", + "4 | Memo Text [6/10] : 73gcbRAviffYCQk6 TbyR2 tsoJyYoLz1VmR", + "4 | Memo Text [7/10] : B 613g LAzvX8XC 3byzZ Q1kBrr4V zEIKk", + "4 | Memo Text [8/10] : Gjjn9NWYmc46Fv P aQ Kq gQ K Z2O26JTa4", + "4 | Memo Text [9/10] : l pDx3 J57 Z5 rzFlZoB PN2Scqz67 G H8", + "4 | Memo Text [10/10] : TSlB3V Dx0DN6M" + ] + }, + { + "index": 91, + "blob": "0ac4018201c0010a7c0a220a202af48ec36a139e1804eaec127db4a9cf065e02675cb8609210946095f277c1001220365e2b937fd3a7346418922dd6e565a21d6e1982e9664ed43b5b87c01e0822871a0e746573742076616c696461746f7240014a220a202af48ec36a139e1804eaec127db4a9cf065e02675cb8609210946095f277c10012409066d10ea3582c06a57f8ee8cdd02b790bee71824070e61673dbb05083debe0fe60480f6deb103f3a4212f4a771cd59ad4198e9943542eeb916b54c04bf412020a099a010608c181d7e2010a8f03228c030ad2010a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012001a0a08dfaca29e8bb3cb890122020a002a520a50a84c89d7700df4f5220f8b075cf5f619f8df41071072308c82e7901125dad44151652be478ee41718361b8cb2ae56ea647b9d8148af83d1c6b14e136ad188736170310d3196fe2dc2612fdc5f9a03b7532202bb66f25a7033fe1fd3fc24ea77a92d66a34d7827303cd24d272bb3d2b4bd7d61a6e0a0608d6a0deb802120608ca81f6a4051a0308ce01220308cb0a2a0308c804320308e10b42480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020e8072a20b95f9b29b32c1fe965fd8cc3f65e9b7c3d2aed64d5724f4a1942275ef3af910d32206dcb62388a2d26f13c53bee212f7ef5c5556185f5df927e755ce776f84875f0a122a08c6ff23121665646f6f7573726861797a7968726e737464686b2d331a0c0a0a08d087a7d2b5e0e8eb0d", + "output": [ + "0 | Chain ID : edoousrhayzyhrnstdhk-3", + "1 | Expiry Height : 589766", + "2 | Fee [1/3] : 997445077280867280 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm" + ], + "output_expert": [ + "0 | Chain ID : edoousrhayzyhrnstdhk-3", + "1 | Expiry Height : 589766", + "2 | Fee [1/3] : 997445077280867280 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm" + ] + }, + { + "index": 92, + "blob": "0a9e02c20c9a020a0a089ebab3ac82b1ba8a0d120d0a0b5832414658336c356c45491a8f0170656e756d62726131757974636e6b75366477766575777639357061366474357734777438357235336672666b6c71636475676675656d6b776c7a796338766571397039307a387636346b733838753836746e6e366b686d7361726735786c776e30613763776e673972706e766e7a756c78367a6b65703074717a6874647972637630677064647a6c366361387a3222520a50e2029b6cc460a041aaa9c620d2db0577dab5ca9012a48461846e93404635e35f37a7433846bde23d22c7e0af89a2bb5a67121c256e48519c5cfa9b1f5619f57c1fb57600d1bb888bdb10234eeba319642a0c08b1a4e4b0011090cda5af023a096368616e6e656c2d300a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab301089a979ccc06120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b08acd6ecf3021090bde77a4080dfabd7a5e584871812020a001a0b08acd6ecf3021090bde77a228f0170656e756d627261316b716a617132737132327663726835347179676a366b6835656b34726c7764766163797863616772346576753461727038677278367371646e616d377537637170727a6c7a63713865677633636c6161613072366d78667a6d6e6163776c79737863646b6a737379373866777476397a7161663263716767677363777637647a636b653836370a8a019a0386010a300a0a088ec8a6f4cee1a8840712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50016e64f2126471f2ffed0eadcdd8d5a66188ecdb4ce5b22701b9a267c0922001a4294126d874be5bd94d222cd726eb70e8f2415d83563d3d398d7999adf24c336ed6a3823a5b9fbc1bc6f75e162f5a190aa701a201a3010a5d08f7c1f98502120208011a220a2084cc7239baee57a47a50384ff2f4d88c80aaa9f9a07abb82a00939f8722970c822220a203614f9854ace40f80edea9f45d35db9428feba74464cdc21e0feb253df38b2052a090a0756303841454d6b12420a404465bd3ac095ed2c4923ae2aa819cbd3e0cd562e59af81f17a7d3afed2a6080b126c20e72b8c74d3887c828049940d4ea2a95b5b3db5d2c18b19d1ce33602003122708df890f1213766b766a6c7a786571746167726f2d383436331a0c0a0a08a58ce4df91e086de062abe020a99020a520a5059b6edf6d8dabdb2d43f0878adf2fe3d8f4cbda79b65799ac2b5a169f4e824f165e28d9f82197f6783419e2078e8079678b0416f9a99e269ef1d048b6862baf62342a5fae7d414e42ae37d3e34207cf612c2016e38206b33373220206835665958463539336b612072206741202037586e4a205a793732413862714e346731343142206120522053627a3433594e20495837387020363833204f206d772036205162783920446b76457168336d3044485547773730563475437864202032456b4d38324333206b395269343973395439393674356d756e336f4962383448787420616335204f4a486f56306d3031204c20204455376568753041653836757533446832204d32723269524839637437463143706c4a12202e09c0d6847758316c8847771e7c275010b1cbfe179fa2ea11ec117fc55691c0", + "output": [ + "0 | Chain ID : vkvjlzxeqtagro-8463", + "1 | Expiry Height : 247007", + "2 | Fee [1/3] : 485292551427393061 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 942634992982088990 passet18k79j", + "3 | Action [4/9] : qd9fmf057gjr6dch0pg6d9fat0vpxhlgs29kym", + "3 | Action [5/9] : 3x9v32syqaqwpc6", + "3 | Action [6/9] : To penumbra1uytcnku6dwveuwv95pa6dt5w4w", + "3 | Action [7/9] : t85r53frfklqcdugfuemkwlzyc8veq9p90z8v6", + "3 | Action [8/9] : 4ks88u86tnn6khmsarg5xlwn0a7cwng9rpnvnz", + "3 | Action [9/9] : ulx6zkep0tqzhtdyrcv0gpddzl6ca8z2", + "4 | Sender Address : penumbra1txmwmakcm27m94plppu2muh7…", + "4 | Memo Text [1/6] : n8 k372 h5fYXF593ka r gA 7XnJ Zy72A8", + "4 | Memo Text [2/6] : bqN4g141B a R Sbz43YN IX78p 683 O mw 6", + "4 | Memo Text [3/6] : Qbx9 DkvEqh3m0DHUGw70V4uCxd 2EkM82C3", + "4 | Memo Text [4/6] : k9Ri49s9T996t5mun3oIb84Hxt ac5 OJHoV0", + "4 | Memo Text [5/6] : m01 L DU7ehu0Ae86uu3Dh2 M2r2iRH9ct7F1", + "4 | Memo Text [6/6] : CplJ" + ], + "output_expert": [ + "0 | Chain ID : vkvjlzxeqtagro-8463", + "1 | Expiry Height : 247007", + "2 | Fee [1/3] : 485292551427393061 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 942634992982088990 passet18k79j", + "3 | Action [4/9] : qd9fmf057gjr6dch0pg6d9fat0vpxhlgs29kym", + "3 | Action [5/9] : 3x9v32syqaqwpc6", + "3 | Action [6/9] : To penumbra1uytcnku6dwveuwv95pa6dt5w4w", + "3 | Action [7/9] : t85r53frfklqcdugfuemkwlzyc8veq9p90z8v6", + "3 | Action [8/9] : 4ks88u86tnn6khmsarg5xlwn0a7cwng9rpnvnz", + "3 | Action [9/9] : ulx6zkep0tqzhtdyrcv0gpddzl6ca8z2", + "4 | Sender Address : penumbra1txmwmakcm27m94plppu2muh7…", + "4 | Memo Text [1/6] : n8 k372 h5fYXF593ka r gA 7XnJ Zy72A8", + "4 | Memo Text [2/6] : bqN4g141B a R Sbz43YN IX78p 683 O mw 6", + "4 | Memo Text [3/6] : Qbx9 DkvEqh3m0DHUGw70V4uCxd 2EkM82C3", + "4 | Memo Text [4/6] : k9Ri49s9T996t5mun3oIb84Hxt ac5 OJHoV0", + "4 | Memo Text [5/6] : m01 L DU7ehu0Ae86uu3Dh2 M2r2iRH9ct7F1", + "4 | Memo Text [6/6] : CplJ" + ] + }, + { + "index": 93, + "blob": "0a18b2011508d59ce904120a08c59ffea9a8bde1c60a1a0212000a27fa01240a220a20a4e9382f2d15bc10026939e10ff73d961c1d6d3c8bc55ed81af4cc2dd73ee5270aae01f201aa010aa7010a640a18120a08a4dde6b8efb9cfad0c1a0a08fec4d9b887dfddcb0912480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122000000000000000000000000000000000000000000000000000000000000000001a02080222170a0908e2c2a0fd9991e712120a0887b09fb7edd9bbd00128010ac101d202bd010a220a203b27296d9d206c747fab596b714258b0d72b00e083a513df0c37711f8588a4fd22220a2000000000000000000000000000000000ff6fd21ff2e48e8a71de69ad42c3c9ef2a0908e7e4b7c9a3fafe1232202164d14d51e3ab56dfd622de53a1af700024d53ce1eff66e2967c2a531208b023a208cc4f315c8e0c739c51598a3b988191ae046b3fec05ecd30da254761acd02e084220306f6217d8ed46997050fd7f5636a861ed0a3c9d63fc09a731423359939df00f489a9105121e08a8cb35120a70656e756d6272612d311a0c0a0a08c382cc89a897b9fa012a8c030ae7020a520a50edcb5f97ca6d9b748712864857b44e6b2ac741de924b073c275f475802e8bfe924aa418a393ff8883074bb86a93ddea97dcd4eb37ac6b2d713a312fd7cb9af5f8470fec7b7147c5b8f021b81bfd97702129002454e435339203732372020567876694f776f3835514d545278306220473377204a203131366564496b6e4875365a204d73465420586c206d6c205920795951366720207866206e507a5976486b707a333156482030754e64416b3441206f39204c69326d7433205720575951364e206437635245656d794d206a726c514f2036654e674931346b48206d53685a6739363334654d512049343352204a534d3647763777705777687846325770744c206a204e5174423820205635392035772047477420476264514a4f6a554a5064506a74656c7835464e326b49757638443637204739325631664d792036624f5a684920206f6d4767382053436f747632526444355859642031393132534c2020387512205df27e19b490fdc78e373b6dcda1c3ccfe16c86ead2b4fa42085826c96557c5e", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 877992", + "2 | Fee : 140988978037.981507 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid15n5nstedzk7pqqnf88ss", + "3 | Action [3/3] : laeajcwp6mfu30z4akq67nxzm4e7u5ns2kw4kv", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 10586689041.342818 penumbr", + "4 | Action [3/9] : a", + "4 | Action [4/9] : Reserves 2: 117356162447.824903 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 890373310454017700", + "4 | Action [7/9] : Trading Function q: 691151877346583166", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/4] : UndelegateClaim", + "5 | Action [2/4] : Value 10691454459310695 passet1xxw6ln9", + "5 | Action [3/4] : jg9vlhx6v0ssryz9f0vkrsz947n4k6d587kv58", + "5 | Action [4/4] : uh4759qcm9vta", + "6 | Sender Address : penumbra1ah94l972dkdhfpcjsey90dzw…", + "6 | Memo Text [1/8] : ENCS9 727 VxviOwo85QMTRx0b G3w J 116e", + "6 | Memo Text [2/8] : dIknHu6Z MsFT Xl ml Y yYQ6g xf nPzYvH", + "6 | Memo Text [3/8] : kpz31VH 0uNdAk4A o9 Li2mt3 W WYQ6N d7c", + "6 | Memo Text [4/8] : REemyM jrlQO 6eNgI14kH mShZg9634eMQ I4", + "6 | Memo Text [5/8] : 3R JSM6Gv7wpWwhxF2WptL j NQtB8 V59 5w", + "6 | Memo Text [6/8] : GGt GbdQJOjUJPdPjtelx5FN2kIuv8D67 G92", + "6 | Memo Text [7/8] : V1fMy 6bOZhI omGg8 SCotv2RdD5XYd 1912", + "6 | Memo Text [8/8] : SL 8u" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 877992", + "2 | Fee : 140988978037.981507 penumbra", + "3 | Action [1/3] : PositionClose", + "3 | Action [2/3] : Position ID plpid15n5nstedzk7pqqnf88ss", + "3 | Action [3/3] : laeajcwp6mfu30z4akq67nxzm4e7u5ns2kw4kv", + "4 | Action [1/9] : PositionOpen", + "4 | Action [2/9] : Reserves 1: 10586689041.342818 penumbr", + "4 | Action [3/9] : a", + "4 | Action [4/9] : Reserves 2: 117356162447.824903 penumb", + "4 | Action [5/9] : ra", + "4 | Action [6/9] : Trading Function p: 890373310454017700", + "4 | Action [7/9] : Trading Function q: 691151877346583166", + "4 | Action [8/9] : Fee: 0", + "4 | Action [9/9] : Close on fill: true", + "5 | Action [1/4] : UndelegateClaim", + "5 | Action [2/4] : Value 10691454459310695 passet1xxw6ln9", + "5 | Action [3/4] : jg9vlhx6v0ssryz9f0vkrsz947n4k6d587kv58", + "5 | Action [4/4] : uh4759qcm9vta", + "6 | Sender Address : penumbra1ah94l972dkdhfpcjsey90dzw…", + "6 | Memo Text [1/8] : ENCS9 727 VxviOwo85QMTRx0b G3w J 116e", + "6 | Memo Text [2/8] : dIknHu6Z MsFT Xl ml Y yYQ6g xf nPzYvH", + "6 | Memo Text [3/8] : kpz31VH 0uNdAk4A o9 Li2mt3 W WYQ6N d7c", + "6 | Memo Text [4/8] : REemyM jrlQO 6eNgI14kH mShZg9634eMQ I4", + "6 | Memo Text [5/8] : 3R JSM6Gv7wpWwhxF2WptL j NQtB8 V59 5w", + "6 | Memo Text [6/8] : GGt GbdQJOjUJPdPjtelx5FN2kIuv8D67 G92", + "6 | Memo Text [7/8] : V1fMy 6bOZhI omGg8 SCotv2RdD5XYd 1912", + "6 | Memo Text [8/8] : SL 8u" + ] + }, + { + "index": 94, + "blob": "0ac101d202bd010a220a20a74772b2116fad0c477260711bedd5fb46b785368f3816aacc8b430fd385e14122220a2000000000000000000000000000000000fde69ad42c3c9eecbfb15b573eab367b2a0a08ed9295fc96eaede10132205140fcba93a94c2a026a27e654d496ad5762a156122f9a1c0fa66ae41ae660043a208bed7115ec410c9af7d3627b0d55407b1b76bae0439a7d34c645b1729fbae60042201da2bc3ddcb5e7ec9a13d67bdc143e58681467bdd934afb651a3decfe595630348c62a0a19b20116088dde97fd02120a08e68b81b483cc80940a1a021a00121a120a70656e756d6272612d311a0c0a0a08ffeeaed395be8df9032a7d0a590a520a50c205247c223f0d599085776df08588689fbaf75ee757daef27c0ff3a646fa83d1a54b6cae072299fd3dc153d423e25d2b6f637a90de6fe1b3cb42ad3560d3a65168e2500b81e16c7351c49af4a3bd94a120337206812205c415dd6a5de82f9bd1bbf1ed01ea8a7e367382925562e00e90fc7a858dae6cb", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 284349037198.161791 penumbra", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 127146774887745901 passet1gnstad", + "2 | Action [3/4] : 938cnvjtcpv7vz8e6d4ruxdpdjsxxpzmalc6rk", + "2 | Action [4/4] : xg7rruxqjs0jrg", + "3 | Sender Address : Sub-account #33", + "3 | Memo Text : 7 h" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Fee : 284349037198.161791 penumbra", + "2 | Action [1/4] : UndelegateClaim", + "2 | Action [2/4] : Value 127146774887745901 passet1gnstad", + "2 | Action [3/4] : 938cnvjtcpv7vz8e6d4ruxdpdjsxxpzmalc6rk", + "2 | Action [4/4] : xg7rruxqjs0jrg", + "3 | Sender Address : Sub-account #33", + "3 | Memo Text : 7 h" + ] + }, + { + "index": 95, + "blob": "0a19b2011608bbb1f3cf01120a089e9bd9f5e597b2d0071a020a000ab002c20cac020a0a08c689ff9fe2f9fdb404121f0a1d526478627131664537754c34664b4c6862694a64576b5331336d464c561a8f0170656e756d627261313430616638706e6d64636c6d6e687376337a65647673707677756c766d716565356c68337877307473657a3039366d6a776a347033676564327a7a6568376a6b7963747a746d78366863753436717371356777723539366a64656e3877676678386567736173356379347171663278736a306139676464656e71747571326e6d6e676e35716422520a509c6886aa343bd29897218bf13a99f8daf2f5af5189a57111fa1c0afc410091836d9296ded5da35e3d2259796d98658e0fbd09fdcbbbd2df0efb445b8c9487fad08abfbead79b5b9858ab84ed2d278a292a0c08e0adbe9d0310f3d986e1013a096368616e6e656c2d300a359203320a300a0a08a884e3b1eaf3e3c80512220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a10122e0894af0b121a6e7166676c78716b616d6f6d746d2d30343933343032373231391a0c0a0a0893d596cefeaa81af042af6020ad1020a520a50610955ca7817ab63dd9f868d9faa77222599615986a7c652d6d8cc14a16ee6353173208c182950ec70877a6d997d61dabe2db9c25061765f0904be46037bc6d7342e91fb9efb4073c345bbed120b15f312fa016337492074494b523620734149204863483538206e32662066375956324b4754206a2030744f202020396c704466333865206c2020674839363057514d6e205549206a6d6d203420386c362043786151732042635149664d4c6f3878204336712039206a726b20354764367a6e5975654620375a6732386b663139565a645749204675514936426156436d67716f6457495920383834373920394e4c37664258204b35735a486d20374a3461204c36316120207044636b48472064426f4b6b4634372063204b512020453875307420206d374f206c5347356a346e4d533448336f2065797531747631694930617062336f5a35413763313220391220cc3e4cd24983305696cf46e09c7fa297ab0a996715d4c9ee75ba445bf31950f4", + "output": [ + "0 | Chain ID : nqfglxqkamomtm-04934027219", + "1 | Expiry Height : 186260", + "2 | Fee [1/3] : 314694899104852627 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 318057713445618886 passet12cuck", + "3 | Action [4/9] : aqnkzyqmj2vrrzd5pup8dd3ughk77qkyh5fl0a", + "3 | Action [5/9] : mtteptugqgxuhrj", + "3 | Action [6/9] : To penumbra140af8pnmdclmnhsv3zedvspvwu", + "3 | Action [7/9] : lvmqee5lh3xw0tsez096mjwj4p3ged2zzeh7jk", + "3 | Action [8/9] : yctztmx6hcu46qsq5gwr596jden8wgfx8egsas", + "3 | Action [9/9] : 5cy4qqf2xsj0a9gddenqtuq2nmngn5qd", + "4 | Sender Address : penumbra1vyy4tjncz74k8hvls6xel2nh…", + "4 | Memo Text [1/7] : c7I tIKR6 sAI HcH58 n2f f7YV2KGT j 0tO", + "4 | Memo Text [2/7] : 9lpDf38e l gH960WQMn UI jmm 4 8l6 ", + "4 | Memo Text [3/7] : CxaQs BcQIfMLo8x C6q 9 jrk 5Gd6znYueF ", + "4 | Memo Text [4/7] : 7Zg28kf19VZdWI FuQI6BaVCmgqodWIY 88479", + "4 | Memo Text [5/7] : 9NL7fBX K5sZHm 7J4a L61a pDckHG dBoK", + "4 | Memo Text [6/7] : kF47 c KQ E8u0t m7O lSG5j4nMS4H3o ey", + "4 | Memo Text [7/7] : u1tv1iI0apb3oZ5A7c12 9" + ], + "output_expert": [ + "0 | Chain ID : nqfglxqkamomtm-04934027219", + "1 | Expiry Height : 186260", + "2 | Fee [1/3] : 314694899104852627 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/9] : ICS20Withdrawal", + "3 | Action [2/9] : Channel channel-0", + "3 | Action [3/9] : Amount 318057713445618886 passet12cuck", + "3 | Action [4/9] : aqnkzyqmj2vrrzd5pup8dd3ughk77qkyh5fl0a", + "3 | Action [5/9] : mtteptugqgxuhrj", + "3 | Action [6/9] : To penumbra140af8pnmdclmnhsv3zedvspvwu", + "3 | Action [7/9] : lvmqee5lh3xw0tsez096mjwj4p3ged2zzeh7jk", + "3 | Action [8/9] : yctztmx6hcu46qsq5gwr596jden8wgfx8egsas", + "3 | Action [9/9] : 5cy4qqf2xsj0a9gddenqtuq2nmngn5qd", + "4 | Sender Address : penumbra1vyy4tjncz74k8hvls6xel2nh…", + "4 | Memo Text [1/7] : c7I tIKR6 sAI HcH58 n2f f7YV2KGT j 0tO", + "4 | Memo Text [2/7] : 9lpDf38e l gH960WQMn UI jmm 4 8l6 ", + "4 | Memo Text [3/7] : CxaQs BcQIfMLo8x C6q 9 jrk 5Gd6znYueF ", + "4 | Memo Text [4/7] : 7Zg28kf19VZdWI FuQI6BaVCmgqodWIY 88479", + "4 | Memo Text [5/7] : 9NL7fBX K5sZHm 7J4a L61a pDckHG dBoK", + "4 | Memo Text [6/7] : kF47 c KQ E8u0t m7O lSG5j4nMS4H3o ey", + "4 | Memo Text [7/7] : u1tv1iI0apb3oZ5A7c12 9" + ] + }, + { + "index": 96, + "blob": "0a42c2023f0a220a200f844f174d68544beee2562f1f408d0d3ef9442db72a2d397ace192df1ec6dea10f2181a0a08d1abece2ea9de4f107220a08c3908fd3d988f2e00a0a9102128e020a300a0a0890b38aa1dabebbd20d12220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012520a50547e8301be038786c5e38370a5a878c2bfabe691e2ad1ea4f5b0de1c777e46ac8d7cd617de848f40a4d6097948a6143583e0a86373310412538a98bd5dd400b705ee6a4c70796ea0b214fd43f92d1d651a20fd2fa1b0e73a4d3f568ac37387bda33cf3874d252519d2004752c6315388394a2220f69b61833175aa34afa919cbc8d4ec6e25d3f555c0c85ce69c19ca2dd28b13012a203000a827b1ea4c3d5ef555e6869f411bab70bd812b4fe6960df9fbe0ee51e00932208bf42a5ee13e71d95f361649530eacc889118f31697f66b4466b8b2511bc39070a35a203320a300a0a08e0c6ffeaa2eaa68b0712220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a100a659201620a540a1f68656f776565642d3834373236363231323733373336383932313331393839122f666d6662647273656378716967726a7a682d31373033373734313035323534333534393738353933303933353735392a001a0a08ab9ad48bfdd1869f05121e0887e622120a70656e756d6272612d311a0c0a0a08f8e9a7ab9aed8cc70a", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 570119", + "2 | Fee : 760601915911.9598 penumbra", + "3 | Action [1/4] : Delegate", + "3 | Action [2/4] : To penumbravalid1p7zy796ddp2yhmhz2ch37", + "3 | Action [3/4] : sydp5l0j3pdku4z6wt6ecvjmu0vdh4q7sj6q9", + "3 | Action [4/4] : Input 568457332747.081169 penumbra", + "4 | Action [1/2] : Output 983172257950.112144 penumbra to", + "4 | Action [2/2] : penumbra123lgxqd7qwrcd30rsdc2t2rc…" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 570119", + "2 | Fee : 760601915911.9598 penumbra", + "3 | Action [1/4] : Delegate", + "3 | Action [2/4] : To penumbravalid1p7zy796ddp2yhmhz2ch37", + "3 | Action [3/4] : sydp5l0j3pdku4z6wt6ecvjmu0vdh4q7sj6q9", + "3 | Action [4/4] : Input 568457332747.081169 penumbra", + "4 | Action [1/2] : Output 983172257950.112144 penumbra to", + "4 | Action [2/2] : penumbra123lgxqd7qwrcd30rsdc2t2rc…" + ] + }, + { + "index": 97, + "blob": "0a8e0182028a010a180a0a0887e0e3a8d8d693f405120a08b2f4d5bcb9c595860712220a2047f223e4be6ad514da1fcd003d854bad77198cfec833e134446a404a288bd7251a480a220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1020010a27fa01240a220a20d1111136ac9d8e51fcb66f060c862e3337b6a4e91b057183f2e7f168c222a76a124f08c2c335123b70736a6d68616f6463666c66736665706e6f767772747a696d662d38373333363531323534353038393336393837313535383233363633343237351a0c0a0a08a094b68ebe9793d1012a81040adc030a520a50a1c6c20ccf876d4674ab8b089a8210d2391c7d61301689584e404cdb52aacafb9ffc7b4f7de3447210a26a79231bf82e3e9e92962e1a99395f5693d131beb207f076ef14b7ba560f7b6f67a36239c6c91285036620564f593139206b45487a472071442038394d207820363920436e5347685576714e204b4934693720353920736e6f4f43302053342075204c717635455737204f6358663476496a4a7533517320344c3920497a642020313458536861786c31316a334c546247384d316f34565645363120397a56336f78205a20326278314351206f464d57556830342057203757346c545a4b45374120303938202031646630376d4d4342737620795968203620206c20322033677266692041206443684e303130207733787738397a48397752204d48354320303439554420422074364f413333433462653245544e31724c71346c70354b382020416830476e7872207a325359346c3145384f7062675a72616b6468203220663420755145544b574341454133382020206b20206820632047393258323820394f37384d3738635a204b2033206e39203330355837576720784e34664f6348614d5338356d48206d534a4c4e342064443220206c746758506e624e38204c427920762020734f20472037444634771220f667a69ce5fb2165bcea65cdb24b019b8380ea199fa867265f8d933a6e312757", + "output": [ + "0 | Chain ID [1/2] : psjmhaodcflfsfepnovwrtzimf-87336512545", + "0 | Chain ID [2/2] : 089369871558236634275", + "1 | Expiry Height : 876994", + "2 | Fee [1/3] : 117740910095993376 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1glez8e97dt23fksle5qr", + "3 | Action [3/4] : mp2t44m3nr87eqe7zdzydfqy52yt6ujsu9u9lw", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/3] : PositionClose", + "4 | Action [2/3] : Position ID plpid16yg3zd4vnk89rl9kdurq", + "4 | Action [3/3] : ep3wxvmmdf8frvzhrqljulck3s3z5a4qslzwpq", + "5 | Sender Address : Sub-account #64", + "5 | Memo Text [1/11] : f VOY19 kEHzG qD 89M x 69 CnSGhUvqN KI", + "5 | Memo Text [2/11] : 4i7 59 snoOC0 S4 u Lqv5EW7 OcXf4vIjJu3", + "5 | Memo Text [3/11] : Qs 4L9 Izd 14XShaxl11j3LTbG8M1o4VVE61", + "5 | Memo Text [4/11] : 9zV3ox Z 2bx1CQ oFMWUh04 W 7W4lTZKE7A", + "5 | Memo Text [5/11] : 098 1df07mMCBsv yYh 6 l 2 3grfi A d", + "5 | Memo Text [6/11] : ChN010 w3xw89zH9wR MH5C 049UD B t6OA33", + "5 | Memo Text [7/11] : C4be2ETN1rLq4lp5K8 Ah0Gnxr z2SY4l1E8O", + "5 | Memo Text [8/11] : pbgZrakdh 2 f4 uQETKWCAEA38 k h c G", + "5 | Memo Text [9/11] : 92X28 9O78M78cZ K 3 n9 305X7Wg xN4fOcH", + "5 | Memo Text [10/11] : aMS85mH mSJLN4 dD2 ltgXPnbN8 LBy v s", + "5 | Memo Text [11/11] : O G 7DF4w" + ], + "output_expert": [ + "0 | Chain ID [1/2] : psjmhaodcflfsfepnovwrtzimf-87336512545", + "0 | Chain ID [2/2] : 089369871558236634275", + "1 | Expiry Height : 876994", + "2 | Fee [1/3] : 117740910095993376 passet1984fctenw8m2", + "2 | Fee [2/3] : fpl8a9wzguzp7j34d7vravryuhft808nyt9fdg", + "2 | Fee [3/3] : gqxmanqm", + "3 | Action [1/4] : PositionWithdraw", + "3 | Action [2/4] : Position ID plpid1glez8e97dt23fksle5qr", + "3 | Action [3/4] : mp2t44m3nr87eqe7zdzydfqy52yt6ujsu9u9lw", + "3 | Action [4/4] : Sequence number 1", + "4 | Action [1/3] : PositionClose", + "4 | Action [2/3] : Position ID plpid16yg3zd4vnk89rl9kdurq", + "4 | Action [3/3] : ep3wxvmmdf8frvzhrqljulck3s3z5a4qslzwpq", + "5 | Sender Address : Sub-account #64", + "5 | Memo Text [1/11] : f VOY19 kEHzG qD 89M x 69 CnSGhUvqN KI", + "5 | Memo Text [2/11] : 4i7 59 snoOC0 S4 u Lqv5EW7 OcXf4vIjJu3", + "5 | Memo Text [3/11] : Qs 4L9 Izd 14XShaxl11j3LTbG8M1o4VVE61", + "5 | Memo Text [4/11] : 9zV3ox Z 2bx1CQ oFMWUh04 W 7W4lTZKE7A", + "5 | Memo Text [5/11] : 098 1df07mMCBsv yYh 6 l 2 3grfi A d", + "5 | Memo Text [6/11] : ChN010 w3xw89zH9wR MH5C 049UD B t6OA33", + "5 | Memo Text [7/11] : C4be2ETN1rLq4lp5K8 Ah0Gnxr z2SY4l1E8O", + "5 | Memo Text [8/11] : pbgZrakdh 2 f4 uQETKWCAEA38 k h c G", + "5 | Memo Text [9/11] : 92X28 9O78M78cZ K 3 n9 305X7Wg xN4fOcH", + "5 | Memo Text [10/11] : aMS85mH mSJLN4 dD2 ltgXPnbN8 LBy v s", + "5 | Memo Text [11/11] : O G 7DF4w" + ] + }, + { + "index": 98, + "blob": "0a27b203240a220a2054f4d700b0cf58cca24dcb9c3e7e09b2e0d7a5e5d201030c6d28c65eb83f8a6f0a099a010608b7f5d8b3020a449201410a330a1f6a6e636e676f617779646a73786767706b7a7676697161776467752d303433120e652d3235373930353236393732392a001a0a08a3a3ac82bda887cc010aaa02aa01a60208bedcafc2021a02080122a7010a2f0a0908d681e2fb81859c5312220a2029ea9c2f3371f6a487e7e95c247041f4a356f983eb064e5d2b3bcf322ca96a1012209ee02424bc0647f39752acf528b5d7b72adf79582db7a43e64236311e3ae25811a520a50ab06cf4c49edf7de7786350f3812a8e28d80f576e2afc5aff372d1e146fdcfd4e1fc73436fdece03fdf196a2acd669500f957c795341a86a9ffb9dc6af9a24583d483ecd75c49ad0208eb759ac751a1b320a08bdffdec6d5b9ac81093a205fe5c8cd58849b62e512d4bf8738d9b6fad2c79fa561e2c5664d44545722b9024220a65e6c14ac6e9480b88fe28b052c358a19bf55b5ea663c63e9a1e4b3214aff094a20100e2a04e6eb17672f52a7b42cc11f2e9c0f3dbd54db396f83e362e4a3213b0d121e08ee9b23120a70656e756d6272612d311a0c0a0a08cfd79784a5c0faad0a2aa6040a81040a520a502e7ed5b9c080bd0c46c4354f70981b3bc2bd1703f405824d364e80b2c069ffb1b87bb66a6c0e90ad548fdf4b4b435d4b269f61d297f708d9d8ebfa298dcbfd6dba06aacaf39b75ab64c2bdd55e9e83e912aa0347364e326b2077784c59666720334239206a72206f7a61306e592054683820203831517320455141416f73203972202050454f3120324d75206b3132635920355575303366546636522074486b20333846203165765375692047472058304e20523732352020345a38797320364f465877207254366448773533692020476b51754e2035495020202032386c4b49354532327044205535316839536170767a652066336c4f6f206b30367543396775204970363263206f3020376b346f33344d207974205063794455204a374d3520727a2036454165752036333533784c4e67335239766e7267753972344c6d4c4a20543938366920332073714e206d68202064206859204f6d7a206f44314b67475558356a384520206f3820363062205339747570706761714a207647546d3775646750395954415a3962745020755a20634167325335654f707837637a315739664369644e33206a307a5520723634203069203338204c2038697a3320434a4a366c3838534d356b3268627465353220425139685a3143202064206b525a53395a7062203920516a206c7a4234366f4a206b70484f45666841586e1220c2a7b828ece521c283cb4ed92d8a7f244802e97aac15eb7ae0c3faf539864e79", + "output": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 577006", + "2 | Fee : 746447458921.737167 penumbra", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid12n6dwq9seavvegjdew", + "3 | Action [3/4] : wrulsfktsd0f096gqsxrrd9rr9awpl3fhs2k4k", + "3 | Action [4/4] : s7", + "4 | Action [1/4] : DelegatorVote on Proposal 676064830", + "4 | Action [2/4] : Vote Abstain", + "4 | Action [3/4] : Voting Power: 649276791811.719101 penu", + "4 | Action [4/4] : mbra", + "5 | Sender Address : Sub-account #29", + "5 | Memo Text [1/12] : G6N2k wxLYfg 3B9 jr oza0nY Th8 81Qs E", + "5 | Memo Text [2/12] : QAAos 9r PEO1 2Mu k12cY 5Uu03fTf6R tH", + "5 | Memo Text [3/12] : k 38F 1evSui GG X0N R725 4Z8ys 6OFXw ", + "5 | Memo Text [4/12] : rT6dHw53i GkQuN 5IP 28lKI5E22pD U51", + "5 | Memo Text [5/12] : h9Sapvze f3lOo k06uC9gu Ip62c o0 7k4o3", + "5 | Memo Text [6/12] : 4M yt PcyDU J7M5 rz 6EAeu 6353xLNg3R9v", + "5 | Memo Text [7/12] : nrgu9r4LmLJ T986i 3 sqN mh d hY Omz o", + "5 | Memo Text [8/12] : D1KgGUX5j8E o8 60b S9tuppgaqJ vGTm7ud", + "5 | Memo Text [9/12] : gP9YTAZ9btP uZ cAg2S5eOpx7cz1W9fCidN3 ", + "5 | Memo Text [10/12] : j0zU r64 0i 38 L 8iz3 CJJ6l88SM5k2hbte", + "5 | Memo Text [11/12] : 52 BQ9hZ1C d kRZS9Zpb 9 Qj lzB46oJ kp", + "5 | Memo Text [12/12] : HOEfhAXn" + ], + "output_expert": [ + "0 | Chain ID : penumbra-1", + "1 | Expiry Height : 577006", + "2 | Fee : 746447458921.737167 penumbra", + "3 | Action [1/4] : DutchAuctionEnd", + "3 | Action [2/4] : Auction ID: pauctid12n6dwq9seavvegjdew", + "3 | Action [3/4] : wrulsfktsd0f096gqsxrrd9rr9awpl3fhs2k4k", + "3 | Action [4/4] : s7", + "4 | Action [1/4] : DelegatorVote on Proposal 676064830", + "4 | Action [2/4] : Vote Abstain", + "4 | Action [3/4] : Voting Power: 649276791811.719101 penu", + "4 | Action [4/4] : mbra", + "5 | Sender Address : Sub-account #29", + "5 | Memo Text [1/12] : G6N2k wxLYfg 3B9 jr oza0nY Th8 81Qs E", + "5 | Memo Text [2/12] : QAAos 9r PEO1 2Mu k12cY 5Uu03fTf6R tH", + "5 | Memo Text [3/12] : k 38F 1evSui GG X0N R725 4Z8ys 6OFXw ", + "5 | Memo Text [4/12] : rT6dHw53i GkQuN 5IP 28lKI5E22pD U51", + "5 | Memo Text [5/12] : h9Sapvze f3lOo k06uC9gu Ip62c o0 7k4o3", + "5 | Memo Text [6/12] : 4M yt PcyDU J7M5 rz 6EAeu 6353xLNg3R9v", + "5 | Memo Text [7/12] : nrgu9r4LmLJ T986i 3 sqN mh d hY Omz o", + "5 | Memo Text [8/12] : D1KgGUX5j8E o8 60b S9tuppgaqJ vGTm7ud", + "5 | Memo Text [9/12] : gP9YTAZ9btP uZ cAg2S5eOpx7cz1W9fCidN3 ", + "5 | Memo Text [10/12] : j0zU r64 0i 38 L 8iz3 CJJ6l88SM5k2hbte", + "5 | Memo Text [11/12] : 52 BQ9hZ1C d kRZS9Zpb 9 Qj lzB46oJ kp", + "5 | Memo Text [12/12] : HOEfhAXn" + ] + }, + { + "index": 99, + "blob": "0a9902c20c95020a0a08d7f3819ad9dba98f0112090a07393236764e76591a8f0170656e756d62726131636868617735666a66786e3066703538666777306b6b7736666366687566723266757a333830373037686a75796a667466357334783579663771716e373732617737686d6c6d756c33643564763268333064733832337330676a34706b66346d6d3775356835787a6d72396e39326a71756b7768736a6c306d33777339367066776b766a743322520a503e40bf7c0576a37023c1f0f86dc611ad222bbd1ca902d5a5c62f7ce93994dd69471b9891b1c7086d5eae1873d6412891957d4f7807d80a5b2674139e3690a26c1e2fca8756a0d3312a3d9f7a4403b9922a0b089de9ac6b10ddd7e387023a096368616e6e656c2d300a87038a0183030a80030a222f6962632e636f72652e6368616e6e656c2e76312e4d7367526563765061636b657412d9020ab3010891a7ffc506120b64656661756c74506f72741a096368616e6e656c2d30220b64656661756c74506f72742a096368616e6e656c2d303264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a0b0894becb1510db9bd8b90340c0b1c1a9a8e584871812020a001a0b0894becb1510db9bd8b903228f0170656e756d627261316e6779713839366830736836636574366b793365783575346765376465386e3974617a65396b306b67667371303972796570683776333379357337757768646a6e77747232797636337161667373376a326370687a6471383838746e39377072767237617a68797176706a6e6b3670706c66356579756b70363261326d776b656138323037360ac4018201c0010a7c0a220a204cff6383e55f5a0bb275910f3835befa082ac1836faebdacb1ea52d6f1e77f0a12202bfa71eaea38a043ad6d637c25afcc61a631fc7263804b5454a8062591eb0b051a0e746573742076616c696461746f7240014a220a204cff6383e55f5a0bb275910f3835befa082ac1836faebdacb1ea52d6f1e77f0a124014755e7bfd43fc3c2e6e7079e28e76150b751484729511502c074a17e3b5cc075081e58246fd38142fc2ba801c959dea44cda69574e720fefc4414dffbf973031219120a777673632d37363234361a0b0a0908dfa4c1cddda7e349", + "output": [ + "0 | Chain ID : wvsc-76246", + "1 | Fee [1/3] : 41532118361199199 passet1984fctenw8m2f", + "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "1 | Fee [3/3] : qxmanqm", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 80685313927707095 passet1js4zn3", + "2 | Action [4/12] : 62sqqc6kqxwhs9pkmj5jrmnzranyr7xwjz8ws4", + "2 | Action [5/12] : dyk7vszq9d7wv3", + "2 | Action [6/12] : To penumbra1chhaw5fjfxn0fp58fgw0kkw6fc", + "2 | Action [7/12] : fhufr2fuz380707hjuyjftf5s4x5yf7qqn772a", + "2 | Action [8/12] : w7hmlmul3d5dv2h30ds823s0gj4pkf4mm7u5h5", + "2 | Action [9/12] : xzmr9n92jqukwhsjl0m3ws96pfwkvjt3", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)" + ], + "output_expert": [ + "0 | Chain ID : wvsc-76246", + "1 | Fee [1/3] : 41532118361199199 passet1984fctenw8m2f", + "1 | Fee [2/3] : pl8a9wzguzp7j34d7vravryuhft808nyt9fdgg", + "1 | Fee [3/3] : qxmanqm", + "2 | Action [1/12] : ICS20Withdrawal", + "2 | Action [2/12] : Channel channel-0", + "2 | Action [3/12] : Amount 80685313927707095 passet1js4zn3", + "2 | Action [4/12] : 62sqqc6kqxwhs9pkmj5jrmnzranyr7xwjz8ws4", + "2 | Action [5/12] : dyk7vszq9d7wv3", + "2 | Action [6/12] : To penumbra1chhaw5fjfxn0fp58fgw0kkw6fc", + "2 | Action [7/12] : fhufr2fuz380707hjuyjftf5s4x5yf7qqn772a", + "2 | Action [8/12] : w7hmlmul3d5dv2h30ds823s0gj4pkf4mm7u5h5", + "2 | Action [9/12] : xzmr9n92jqukwhsjl0m3ws96pfwkvjt3", + "2 | Action [10/12] : PANIC [X/X] : LEDGER SHOULD REFUSE TO ", + "2 | Action [11/12] : SIGN (return address in Ics20Withdrawa", + "2 | Action [12/12] : l not controlled by user)" + ] + } +] \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.json index c2de0e410a..9efec74f60 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.json @@ -1,104 +1,57 @@ { "actions": [ { - "validatorVote": { - "body": { - "proposal": "734178146", - "vote": { - "vote": "VOTE_YES" + "positionWithdraw": { + "reserves": { + "r1": { + "lo": "573951400795470529" }, - "identityKey": { - "ik": "M+KCjFBoz26jhphK5GxrofTA5S1FjNumOTpvxDql5FU=" - }, - "governanceKey": { - "gk": "0K9/IhGDnY0HM7cKc6BzfZqH+woUX8N5BFzt9+t97gg=" - }, - "reason": { - "reason": "MaTOG8ZA81BaGY6snYzK" + "r2": { + "lo": "612492313603430905" } }, - "authSig": { - "inner": "erfSdVw34DGkIbzsI5fD4G3YzsV0NuCJxPl1wEB8MwNdrOmqIXIy9ecDDozV3yW1NdH1EO0Rz23scMbiFIiPAw==" - } - } - }, - { - "positionOpen": { - "position": { - "phi": { - "component": { - "p": { - "lo": "398983242223267371" - }, - "q": { - "lo": "174252255376395430" - } - }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - } - }, - "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", - "state": { - "state": "POSITION_STATE_ENUM_CLOSED" - }, - "reserves": { - "r1": { - "lo": "9696041976274794" - }, - "r2": { - "lo": "462018430045093463" - } - }, - "closeOnFill": true - } - } - }, - { - "actionDutchAuctionWithdraw": { - "auctionId": { - "inner": "xsRCOlxNHiX/h9AeLtuHVj2+c7JWQXmLz8UFuTTO0Ts=" + "positionId": { + "inner": "My9VnaripMGSbFea3cZohOE6TwglPBIubn2TYE3eY2k=" }, - "seq": "45580760", - "reservesInput": { - "amount": { - "lo": "12303585269341678" + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "assetId": { + "asset2": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "reservesOutput": { + "sequence": "1" + } + }, + { + "communityPoolDeposit": { + "value": { "amount": { - "lo": "324597899784941655" + "lo": "783431003686502062" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } } } - }, - { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrIBCMq4tpgEEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgoI5NbuKxD/vetKQKCW5+KZteqBGBICCgAaCgjk1u4rEP+960oijwFwZW51bWJyYTF4aHhqN3Z5ejRydWxhdXh3enF4NGNsdnltd2w4d2szcXA3enU4cWpqdW5yMGt2ZXo0aGd0bnpudnJyNmhoc2g5djU3bjJseGFsZHdxMmpzd2QyNW1jYTk0YzZ1MnQ0dXd6Z2c1azgycDM1Mmp1OG14NTcwaDB0M2R4eG5xcGw1cmo4OXQweg==" - } - } } ], "transactionParameters": { - "expiryHeight": "1826436459", - "chainId": "jmuxcavzgvycljsrxop-0521683", + "chainId": "prdgyvxtusougyhypkigefhg-89803925341", "fee": { "amount": { - "lo": "427956015384633665" + "lo": "382666538980931129" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "F1TxadNJSNL1/QKm4QGZuAMpwpgriiWSmXbwpgG4a0+bdqTFOT8bAE68h6eHJRDzQH174d/4hUIY+KmOUXR0uU4y3F8aDI9A2N9pfs6nn9c=" + }, + "text": "52KK VsOufOU86 vzy l433xsUj IE 6 2 L j 3ZMboIPclbK 0DW88YP86 L15TVC 485pqytD L emC vE0QP xl62d 9enPWncC9MdZ Vs uWi U L w1Vkelwi3JuZ 8L3mROdS8TGzy5x8t F c81rzuZ o 3ySZW7QM7 7s76e" + }, + "key": "hsFCfBRf5oloY1YayW3W3LfWcD4V2kSEWyL4Kr0daPw=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.proto index 42e07d6378..807e1b7094 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_0.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.json index 0300054b52..3afcbb1354 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.json @@ -1,71 +1,61 @@ { "actions": [ { - "spend": { - "note": { + "delegatorVote": { + "proposal": "801204120", + "vote": { + "vote": "VOTE_ABSTAIN" + }, + "stakedNote": { "value": { "amount": { - "lo": "249542111138297168" + "lo": "513637182171825351" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "rseed": "af2HMr6hiFiXbXL7hxqASnkIu4v1nWyH091K1IR87CY=", + "rseed": "ZLBtAeiBMUn5JAy6QuSqLxBWxZuYuzQM0M/OaQM3+EY=", "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" + "inner": "NbZcAwwaujYAy6l1jYeiDl3q99ckihWXQgld0ga1961Tjbs9oVqxyEwjVSA1TBzpuLZYbmIJ9sDwH6waNTwXDt+NFU9gHYfLm/P2AnXsAqs=" } }, - "position": "200439803088859", - "randomizer": "MCGyFbsV3GXSA+WA5Ipt21wV+fJ0Y3TEJWg5/qNjaQQ=", - "valueBlinding": "MzF0d53Fx5MjUtLfICPna/fGWcXRzpM5ecGlQhuTSQA=", - "proofBlindingR": "VOPP3EWjk0VjNaGU/f66PnyiojOzZCWT7e+FQlFJ1RA=", - "proofBlindingS": "dmxCcD7H9/cFaASVo9gI/bux4kLZjZy2qtDI9MWr8QI=" - } - }, - { - "ics20Withdrawal": { - "amount": { - "lo": "335778073335232026" - }, - "denom": { - "denom": "a6leIUKF1" + "unbondedAmount": { + "lo": "257866548735848717" }, - "destinationChainAddress": "penumbra1fzzu6myekvlxnzm4x46wadwc76kl9lkxf2t82ursjvrrdj7mvv8uuhf7a2u5mctfr023gzymv8hdjefwgllzefxcj6v062t6dqsfhvn086lf7dxzfa5dqnmhkz68ejkpgg5ses", - "returnAddress": { - "inner": "otLSCSQj8/hbrdG9hRRy4ZpdFxNl8tfb4LzYBsW/3joqFEVDUrjiNgIXJBVMkI2dxh7Zsg4L/4dMY5OyBlb1Y4Jt7yvUw2B8ECiEfDng0+8=" - }, - "timeoutHeight": { - "revisionNumber": "737713399", - "revisionHeight": "776870533" - }, - "sourceChannel": "channel-0" + "randomizer": "BK81sc5oontcmNfiVzz5MCRnvWcEMSggcL3r9iPeXQA=", + "proofBlindingR": "Vc+Ijcg7z8oPbUf+Lm8Osy4QHY7JqAbdJphiLvGELgA=", + "proofBlindingS": "4fLScASNkkx+36NM+RWKHQY2/wkP2nSdZDRV5LhyCgk=" } }, { - "validatorDefinition": { - "validator": { - "identityKey": { - "ik": "0scIlCi+81Xi9nz30a163DEm0weNm+Oov7iYrx+18RE=" + "communityPoolSpend": { + "value": { + "amount": { + "lo": "305750260530914684" }, - "consensusKey": "93yzpXc188/5cD/ZlWUFh6b+iaQYy8Tb1qrDlx7WMXo=", - "name": "test validator", - "enabled": true, - "governanceKey": { - "gk": "0scIlCi+81Xi9nz30a163DEm0weNm+Oov7iYrx+18RE=" + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "authSig": "MN69gIpNoQoELJ47xVpuP2bHP8oHgB0mZYhPj4y+Jg6/dNPrDaiVmo8v5EBcQORRh/8BzUqgXAriW3RYE5feAg==" + } } } ], "transactionParameters": { - "expiryHeight": "6438003618", - "chainId": "pddecmnehumdhrpq-22107829567509516577", + "chainId": "kilihedxdhpgw-1229160119015168312", "fee": { "amount": { - "lo": "795664371410932296" + "lo": "449573423572930199" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "diBZ9Od88a9jZQJyJ4PAZyPgOpeoAGZJxEVcp1mqBwk+x8UDcN8B3T7MyH6mThj5Ro5dF/YocBImJjEyriLNsbOY/p4Xb//DRyOSmYRTyUA=" + }, + "text": " 2 BD 78jl m7cL SA4x63 SN8oez7 ca02g2r6 0uC S0 9s5Jq w2XMqmXy N6 0 3O 7ff bAVF2k03g90156IufY 2Wc4W 9Sfm7kVfSksI2B17euP J4 o E 09 H0S71OX01W8Eu6gxJaLbjzPXi 55 G Jl I4 B Rtzrhv 413QDxMIVT goPN0 Y F ID6Yi 609Kr 32z t 6K6B62bGiN N 3 saTkG 3CQGn7q 1ZGAz n34SzM0OZUe 1jLaJ04v3H DI703X7cj2VrA5" + }, + "key": "JmWeNHWubm8KceZXlOrAw7WTNWhVKQMC2vgkY7Yk5/8=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.proto index a4582aab1d..4e7f72cde1 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_1.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.json index 035ac52c29..cfccb611e3 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.json @@ -1,67 +1,83 @@ { "actions": [ { - "delegate": { + "undelegateClaim": { "validatorIdentity": { - "ik": "2DD/chk5YdK22L1I3rTCZx/w58xmyEcBwGyhNQYaliw=" + "ik": "MmgSq5ctTxz7gK+RaEVz8O16d2WqJvCXTfdod+PDBfk=" }, - "epochIndex": "669", - "unbondedAmount": { - "lo": "270330855486289586" + "penalty": { + "inner": "AAAAAAAAAAAAAAAAAAAAAP/Lkjopx3mmtQsPJ7sv7Fc=" }, - "delegationAmount": { - "lo": "328798106370388332" - } + "unbondingAmount": { + "lo": "460540514399308905" + }, + "balanceBlinding": "gYtCC3Nt4YywYMtDb3/UOlpvHcQFqSnvecKtipUh6wA=", + "proofBlindingR": "sCJewt8AdAJ2QqcRr8H0RunKBteMANDDJzUW+oejLwY=", + "proofBlindingS": "9ZOgPi67DKWFHGryku5lfQhGpFm7XkmDxpiaYtWKQwA=", + "unbondingStartHeight": "94921" } }, { - "proposalSubmit": { - "proposal": { - "title": "ywvqymndsk-75270024643337517299763461", - "description": "kxfokuhbfdqzuxijmqgaidkatkq-690630951763", - "signaling": {} + "undelegate": { + "validatorIdentity": { + "ik": "fRTE8z0YLbFjbblEhU7VHWqtuflHSEBs103efG0Wouc=" }, - "depositAmount": { - "lo": "216221221416320389" + "unbondedAmount": { + "lo": "809651088237661027" + }, + "delegationAmount": { + "lo": "72584514381454800" + }, + "fromEpoch": { + "index": "3783", + "startHeight": "3783" } } }, { "delegatorVote": { - "proposal": "432345648", + "proposal": "106012376", "vote": { "vote": "VOTE_ABSTAIN" }, "stakedNote": { "value": { "amount": { - "lo": "550593064295398233" + "lo": "348204008134862750" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "rseed": "bwyn4V7Tfmc9yXPHIBJFkmX7c681Y9DlmZYcf6pSn7I=", + "rseed": "IFIGblOL0kgHTehtLy/ULmrp6X2UuzL0e/AO7y7cSis=", "address": { - "inner": "lsaxy+MS9biAcPNVyhx3bUpjbDFkA28S3kfC9nSVzmzSHfqADz+XPPOQCIu1YSugfrBAKN2YVxDDYDsvrvuEuY70+NUYNPwLdfzPWwsRMnk=" + "inner": "GnNpsylbEud7kGH2kjnMs9AHMxI1P+IlVK4McLBki8nhDY6KmXfWZCjtuwZmPRShZOAwDnKVnvwsJtyJ7GJ9IyMkMzRmds1nz7RSnKUZc7k=" } }, "unbondedAmount": { - "lo": "21769842851469698" + "lo": "583269823174415253" }, - "randomizer": "0ny8l9DX6ysyFucrB9D41g4aNXW4WyPCARE9io7epQA=", - "proofBlindingR": "3OJ0tnH7l8fdEvGzqCgQk+kjvUI24caRhJIfl4JJQAw=", - "proofBlindingS": "n2mdBevmqaNlrVEuEPowouYfx7NAOUuuyZJb2A9TVws=" + "randomizer": "WydMZytyp2swPKwXqRYe61Y8qf1VBnqpOUhBvaemUAM=", + "proofBlindingR": "Dc9CxbJxauJmynwT0/u3aJ7vjmjdGGTTWDfbgiXMWQ8=", + "proofBlindingS": "cI8syZpK0EaQ1Ro6S1f7rW+btRJNMMUbc6i3XXE1Hw4=" } } ], "transactionParameters": { - "expiryHeight": "8313699849", - "chainId": "inqirnjanjgtgxedavvxghxm-46721656813046370851", + "chainId": "iiwqlwg-350627463532", "fee": { "amount": { - "lo": "37721920543956097" + "lo": "938263014591707419" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "sQoiTi+20pcYIwvPpaAi32GKs8XwN9S7IYP/EDfvFmgtFNRDnDpsvQu56Jmv03mrd2uruv3oSlLNZE8iipbTxIwsIHsoiVHFHVx5aFyUAV8=" + }, + "text": "62Mo Ws70p 114NE4 np 5 h29jOndfZmbUIiT79jUE4 a7Whh Ib01vSUGJEdm SN r 83E wfTgM2 B QFfNH1H0 F1KX2UYbZP1 KC oYi P YESr lPIt7BUk4v4UU1m W 9 CBcX ic4YrTKov b33QBFr6920i v82z68xNhY U0bLE3b1AC8jfot3 544 I97JuDN7DB49m o35St OVF56lXft2 mJ KZd f0xcA BCen2G36S6MY6tyM9b54o e EiX dOrtLCu9Y3OnWq vAY3 V5hMrlMuWLvyB3m lErW485 6B 8Uzd OpafhvPgMEG x3DX SNFyd 4 X95p63s 3 1Wa5dMHOp1K7 0mY NGEtq0 6OqX4AaaWjQ" + }, + "key": "zClW9zRQWTH+XWowBRF5w2MBGjRXwqNGMVvxMRboOiY=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.proto index f1d4eb52ea..3d0e4c4520 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_10.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.json index eeca148317..bc4f1a851e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.json @@ -1,109 +1,75 @@ { "actions": [ { - "positionOpen": { - "position": { - "phi": { - "component": { - "p": { - "lo": "865621029223473641" - }, - "q": { - "lo": "567864319188342557" - } - }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - } - }, - "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", - "state": { - "state": "POSITION_STATE_ENUM_CLOSED" - }, - "reserves": { - "r1": { - "lo": "938832450736689138" - }, - "r2": { - "lo": "220353419636592453" - } - }, - "closeOnFill": true + "positionClose": { + "positionId": { + "inner": "XGRAPuU5jrh8h2Ogy0b1BZ+YQ+RovgL2qbKbrg297S8=" } } }, { - "undelegate": { - "validatorIdentity": { - "ik": "xjH3q4FsVhNAtt7ISWe4yeXT/F+MruUB9+WDYreHUBg=" - }, - "unbondedAmount": { - "lo": "341356978208017584" + "proposalSubmit": { + "proposal": { + "title": "qunmfwnkbpxuueaibxbikqqrezkhe-49041", + "description": "j-18799734", + "signaling": {} }, - "delegationAmount": { - "lo": "846223282829032270" + "depositAmount": { + "lo": "611329442973706357" + } + } + }, + { + "proposalDepositClaim": { + "proposal": "99886236", + "depositAmount": { + "lo": "994949534812299174" }, - "fromEpoch": { - "index": "1915", - "startHeight": "1915" + "outcome": { + "failed": {} } } }, { - "output": { - "value": { - "amount": { - "lo": "99812450319143273" + "positionWithdraw": { + "reserves": { + "r1": { + "lo": "455052409326967733" }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + "r2": { + "lo": "14149680995370649" } }, - "destAddress": { - "inner": "rZRFbfrM59o7a7+lolfPl0BJX9mPT5S8vPG08wlPS1TJDVj5fHo3f/WRa17i2IpY5anUyUmeLIE3lKjRBNV2LHlByAbcRVUhp/132yzteVk=" + "positionId": { + "inner": "cCPp+i8qXnVTu2UBkVxVkkSdBIkehmjpbkfVMWvAh78=" }, - "rseed": "3FafkTL4oUuD+/v2PTLmrXVLH4KwFfdQq0XGFOanm+c=", - "valueBlinding": "LBJkisKxlgIN9uX7x5U92JF+4IsVxRB8oHtnWGKBUAQ=", - "proofBlindingR": "2aAiHFlj++GqzA9dLqliVJB2rz3svGtTKX6JydP2DAQ=", - "proofBlindingS": "P1Ax3awrhXZRkj55xvnY7SvsB+bRMqxCyQk1IsxPMQM=" - } - }, - { - "spend": { - "note": { - "value": { - "amount": { - "lo": "940466547384632123" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "rseed": "i9nIgnNYF55sp8uQpRD5kjYNAKqcmb1VpI+8o2aCrk0=", - "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "position": "149669412111651", - "randomizer": "T3LUefDmpsP2/7UJMXrU2Drjaz8dikboSA+DmK7eYQA=", - "valueBlinding": "FI7wp6A/PNp+zBMWXJTjrRBR/EWGZlNV0hR6CEPrygA=", - "proofBlindingR": "SKJdII9hVPr3CUpx6Rys4LkvBcBX5BRUS5yQjSABVQo=", - "proofBlindingS": "4RO4d31wAx6maHCh/zLC/7qE/60N24Upv95tQlhDPw4=" + "sequence": "1" } } ], "transactionParameters": { - "expiryHeight": "6803636500", - "chainId": "slkpgwkdatdteqoarghkztadqh-015356829677349995503", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "964126453046043546" + "lo": "219107474285685849" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "uVYBWH3JaKnlligng8uNy8kWe+01rDaI7dEt70yssbasK+k72GtyHFm5WnO7JPzsfx8ogNPulTeCSMHfgdHrgIS8URKa10DAVgTf49UsZ5c=" + }, + "text": "Y3 jtn 6eFr o554la1 IJN36c3oSF6Y z5 T2E 9lM97bz ab 7x xR7ELDiK8xS H9pQ nzh sjYWLhn12w Y87mTpqzD A8tXi0 rH3w9lzIDln1RVRmbf XT 1U C8 tH6pQTcCkvm 1T M9yY Vr314Vex jo RUa6z a O3k f0 7uHL D0n1Ohl s1 oGo" + }, + "key": "YXEWc2GLl+u5QGehaoY+tMpOTpa46KoZw+VAu1h+jM0=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.proto index 2d3ba809f9..120624a6a5 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_11.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.json index 6a54185220..23952c9879 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.json @@ -1,49 +1,63 @@ { "actions": [ { - "communityPoolDeposit": { + "communityPoolOutput": { "value": { "amount": { - "lo": "842479024237700718" + "lo": "493945479446625426" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } + }, + "address": { + "inner": "4/dtt5jtAtPSByIXSpYLgwhAVAAXUgSYsWig0CpNC3qM2D3EqroP90O9xQl4SvSQFKY21CYpGIG7TlV8aK5d7v6D+atHsj05g1jEDrdv53I=" } } }, { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrQBCPKY0aUCEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgwI2J/62gIQioDf5wFA+PD3o5216oEYEgIKABoMCNif+toCEIqA3+cBIo8BcGVudW1icmExMGxkamV0MGdrZGxlMjdqenhjcG04ZXIwanFuZXZqdnhseDJqdnBlMzNnM2dzNXBkdWhodjhhd3NmOHp5bXIzODUwNHJuOTlnODNuZXhyY3NjenZuNWhtcm5qc3p5dThoZTByN3ZrNThqMDRodDQ4N2N0eTBkeDM2eDR1OHRwc2VnZ2h5ZnU=" + "positionOpen": { + "position": { + "phi": { + "component": { + "p": { + "lo": "155749437526121098" + }, + "q": { + "lo": "136437895030673570" + } + }, + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } + }, + "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "state": { + "state": "POSITION_STATE_ENUM_CLOSED" + }, + "reserves": { + "r1": { + "lo": "576841969221700520" + }, + "r2": { + "lo": "876211369091788057" + } + }, + "closeOnFill": true } } - }, - { - "undelegateClaim": { - "validatorIdentity": { - "ik": "t1Oeu+lPkxKLBOapLc4pfn6AFVKYXWZfEUfEg1uaKls=" - }, - "penalty": { - "inner": "AAAAAAAAAAAAAAAAAAAAAP7FbVz6rNnoPkJa7mMfigo=" - }, - "unbondingAmount": { - "lo": "801434380644204905" - }, - "balanceBlinding": "kZoXFQc+EG9iJspeEjjurco7HwTtH49pssWng7WktgM=", - "proofBlindingR": "T2scn3ZvdkoA07DNLRtT2sR5O3xvhBt8KAWvhJOxNg0=", - "proofBlindingS": "z8N4Q7nfBP4mONZviIoU7A7XFNbmZvqA3XJcI4yG/gY=", - "unbondingStartHeight": "21401" - } } ], "transactionParameters": { - "expiryHeight": "4435935439", - "chainId": "jtdlkbidulz-665965532517491243", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "767764384364047948" + "lo": "381965512774180796" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.proto index 3aeb9dd429..c9e6ed4d22 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_12.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.json index 6dae7ba65e..cd184423bc 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.json @@ -1,27 +1,72 @@ { "actions": [ { - "positionClose": { - "positionId": { - "inner": "mSHwo2i5YzvPusdoOrhcYl1stJIFrRR7mOTlufZ9mK0=" + "communityPoolSpend": { + "value": { + "amount": { + "lo": "537655406618368418" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } } } }, { - "positionClose": { - "positionId": { - "inner": "KrohYFW3AiAxd3Sdfuydpbp7Lp2G9fNQwra0eFnPQkk=" - } + "ics20Withdrawal": { + "amount": { + "lo": "497585297784736158" + }, + "denom": { + "denom": "VLC5wbH" + }, + "destinationChainAddress": "penumbra19eldtwwqsz7sc3kyx48hpxqm80pt69cr7szcynfkf6qt9srfl7cms7akdfkqay9d2j8a7j6tgdw5kf5lv8ff0acgm8vwh73f3h9l6md6q64v4uumwk4kfs4a640faqlfwu7n6x", + "returnAddress": { + "inner": "TpboGvhRz3C6ilXyFDrod5JEbGiRYq3yHBCyp56W+ykrZbeCAAS4Df3aVMjvzr+cPOe8+8yQYbEmGBqD8PxA2CUjRLQhk4EHp9CciOyVlBI=" + }, + "timeoutHeight": { + "revisionNumber": "29322802", + "revisionHeight": "666051503" + }, + "sourceChannel": "channel-0" + } + }, + { + "ics20Withdrawal": { + "amount": { + "lo": "984986416064174702" + }, + "denom": { + "denom": "RO7QO550Lt2D2Q3T1wU9HvLvOMQRzJD" + }, + "destinationChainAddress": "penumbra1r55xve73pmqtvg6t03439wq6pwnhqrvxwcqqr9ulrlfjp48crxwwkf6t8w20z34qvctsrjm2z2n6ulvypqmrhjfagmu2y8kuxp2rq47my25w8dmwgsw6xq76nc00fqhz09xfes", + "returnAddress": { + "inner": "MZ3c9cooqOLdtJ25+QOSeIy4wvC2h/RIfd38JwYCw6of9C7pXSpQC2rWJQuwZTAVazrGF05CNTu9pnb18HMx5li6Z8ENVxlVE5ZcuCms4Ls=" + }, + "timeoutHeight": { + "revisionNumber": "753301247", + "revisionHeight": "233732556" + }, + "sourceChannel": "channel-0" } } ], "transactionParameters": { - "expiryHeight": "3949352929", - "chainId": "qrfschiqxdgzxb-892924459211469308974498987534", + "expiryHeight": "229631", + "chainId": "ietabnrliz-1452561949851277", "fee": { "amount": { - "lo": "769594145860330082" + "lo": "209360847549446994" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "s/7Cr5FUlvDdEveO80xkAC18MTGjIR1EIZRIToR2/Vk4BvfrFoRLCrRg6wDmc18duNwo9IpGoF+vfNXi45dsaRDtn2HSb/Y+nidIMaYWw+M=" + }, + "text": "d1kDbw dXB1N Vg 2zdbGFf32dz1WW7 5p X D 6dBd TmE rp3pq1hmDxQgGJP1lf wxM nI Ne1VJ96hjST r e2 Kp2j4v8 x8r1vH8y SHi6bWKnI9Bf MVQ Y1M92k a8 9 OH7nqngU2EQhl4 86EO4u" + }, + "key": "xdchUpKe/YO4fgTgFMDqP/YP+bFirmoXfauIzGUk75g=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.proto index d4d37d1b9e..2a1cd0b151 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_13.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.json index 01e3641917..6c568b4fdc 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.json @@ -1,37 +1,83 @@ { "actions": [ { - "proposalDepositClaim": { - "proposal": "689883150", - "depositAmount": { - "lo": "169393152499615694" - }, - "outcome": { - "failed": {} - } + "ics20Withdrawal": { + "amount": { + "lo": "829638704875316428" + }, + "denom": { + "denom": "69bCAv63H1dM1fGsLjVqEsI8O02" + }, + "destinationChainAddress": "penumbra19f0f4tpqnsf7xv6cyqrx0tma7ac6n72yclee6rnntcd76hp5evz8w9q0e9lqp7qp8eulyq9kk3tujle0d97k9avkej5azcva9g6xtr2gev6g3jcaggu3h9fxlfmd5v9puhmalf", + "returnAddress": { + "inner": "8RYg8wToFYNf1q9THJb3bsaDiAiFazFLB+EEkttqgj/4j3A4s/snnM/ObYClh8spO49Q6xKJzQl8xaIgruwN6Twoim5j8Jwcu0Uq7oMX/K8=" + }, + "timeoutHeight": { + "revisionNumber": "268928358", + "revisionHeight": "622512702" + }, + "sourceChannel": "channel-0" } }, { - "delegate": { + "undelegateClaim": { "validatorIdentity": { - "ik": "wqA9fnZGn9YTV8TB7X9XmyYUMdcDvA7aW1KNHGa1TJE=" + "ik": "BGziArvW/Vuel0Oh+jqgicHM9cFE2DBnfhk++YHWj8c=" + }, + "penalty": { + "inner": "AAAAAAAAAAAAAAAAAAAAAP52yLQ5WBBiTdLxqfvnbIw=" + }, + "unbondingAmount": { + "lo": "794039666172814010" + }, + "balanceBlinding": "TsdY8FvhcSDRFsEHV0ViOMBgQrVlkmI0PWcHSn03aQE=", + "proofBlindingR": "hGPWj6By6lvucMJJdgcO+gCfXXBMwXwlDDUSkOH+2RE=", + "proofBlindingS": "suDnuTjwcFkGXwFKJVFzKZp3lhJ8Mb74l9em9FhjCA8=", + "unbondingStartHeight": "72041" + } + }, + { + "validatorDefinition": { + "validator": { + "identityKey": { + "ik": "dpWgYpmo82gOkdkABYk6CNkCoOOFFBvdga6WBcnzzw8=" + }, + "consensusKey": "tLotOuXMtCjv64to1PmKSMZxlBN7L8QQd/Io3k2rlsw=", + "name": "test validator", + "enabled": true, + "governanceKey": { + "gk": "dpWgYpmo82gOkdkABYk6CNkCoOOFFBvdga6WBcnzzw8=" + } + }, + "authSig": "1sa/Gv57J/hlT+g9lTvCgsP1BLIEBmtT7PZR24ToYQJ9JgJKKkKUDX2vGDD1Uz5+WTVE8AFLOnYvo1xcOBCAAg==" + } + }, + { + "output": { + "value": { + "amount": { + "lo": "63912114026635919" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "epochIndex": "6726", - "unbondedAmount": { - "lo": "972176713087358483" + "destAddress": { + "inner": "XVDwfgXxAmEYDCtAxOqlwlWEdGpC699C7KV9WBERLdRvKOswpwkrkYihfURZvtXyXQ7Zz00W6ELSaH4h81i65kMWOuPHpk7VLFJtY31JdZU=" }, - "delegationAmount": { - "lo": "885414211593882465" - } + "rseed": "UPkIWlzbg0zl3GM07AkTW/YcgBPsfLXLDQcVTS46NRU=", + "valueBlinding": "AiZqkBKHI0Nl0Tu3ykhnBu3k0DncoBLOy9F9hSieVwM=", + "proofBlindingR": "YpkUEi8h/LhmswpDQGpZIbVRV+VJWBfAU2N3SrEsuAQ=", + "proofBlindingS": "vyfibcpjeSszpVslOl36RNgpX6OpMmUUp/KGUlEY8gE=" } } ], "transactionParameters": { - "expiryHeight": "3715525953", - "chainId": "jolxe-84624395377984128911110845038766", + "expiryHeight": "762978", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "646445886750715744" + "lo": "996956207705382530" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.proto index a3eed28f2d..1b02d099ac 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_14.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.json index 932276b4a1..b63bbd71ac 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.json @@ -1,95 +1,60 @@ { "actions": [ { - "actionDutchAuctionSchedule": { - "description": { - "input": { - "amount": { - "lo": "231578760967679311" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "output": { + "value": { + "amount": { + "lo": "920830166985368782" }, - "outputId": { + "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "maxOutput": { - "lo": "360702053577727975" - }, - "minOutput": { - "lo": "591896268862969971" - }, - "startHeight": "320984777", - "endHeight": "320984778", - "stepCount": "19059694", - "nonce": "DgLu0ujwXu6r+0U1HpbNZUpfE/iS6vbiMjIzmKgm3AU=" - } - } - }, - { - "validatorVote": { - "body": { - "proposal": "384177720", - "vote": { - "vote": "VOTE_ABSTAIN" - }, - "identityKey": { - "ik": "O6xPGcRRVrK0042t4m+J8PBVSlOM0xlwS4LJkzX4KE0=" - }, - "governanceKey": { - "gk": "oOW+9MNtd4PRe0UZmXSTnbXuOv74R7+vJoJ6LlZi2Qo=" - }, - "reason": { - "reason": "r07EPg2ECnZ" } }, - "authSig": { - "inner": "Rjw/r4oM7JUaZcahZlBRumOF/sINrJ/vFwlaqPkudgYM3rqxrKFa8VxA9gUhM+SXgyShCjh2GmwQWjzma6S1Ag==" - } + "destAddress": { + "inner": "K6ugCOVleF2/1qf2zZxKCWFP8EkAMG634gF4PnmdBDuamhkDCf6D1YskliVXEf5tGjZ863FDLUkBkiU+1MUM/0idct43dMdDDTDIQnrWOBY=" + }, + "rseed": "9CenFT5xyvgotHN+Etesj2x9UMZqHCZ+rgoAPorix8E=", + "valueBlinding": "GiPFeGtYRI42HKebJqhEpBkhFWWma+nyDPLv1nDqeQI=", + "proofBlindingR": "cMbMBMiAf8WTjXzuY4BrJ+8nVR0NyJlJ60YGB+twDwo=", + "proofBlindingS": "KN3qofeLdm/S8sdM+yi/q+Wt1WJ+XVsQfe2YHfgeTQY=" } }, { - "proposalDepositClaim": { - "proposal": "691542328", - "depositAmount": { - "lo": "418660932352186677" - }, - "outcome": { - "failed": {} + "actionDutchAuctionEnd": { + "auctionId": { + "inner": "oWdV6puBbjQ1GZudX671STtZKpzEi3iY5KbsuwFVloU=" } } }, { - "validatorVote": { - "body": { - "proposal": "595107598", - "vote": { - "vote": "VOTE_NO" - }, - "identityKey": { - "ik": "D4p1+/sXPi2xJ1v2PHnl5omrdyxWgjaX8vAc/WIjeBw=" + "communityPoolSpend": { + "value": { + "amount": { + "lo": "302086273689982475" }, - "governanceKey": { - "gk": "JjiCtDXSugaWvP3XVVoaA6X2PuzCOuPG2u9LsbE+QQg=" - }, - "reason": { - "reason": "r0nwI6OflMNRPU9dozwvop" + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "authSig": { - "inner": "btD6IH7D6iH8B26GsYJ9bl0jCZZ8hrZJkuV95IweFA4J1uy/8f4qjm9rrjWs4MJ006QZ8yNgo2TtdYTdX3lsAQ==" } } } ], "transactionParameters": { - "expiryHeight": "9386398041", - "chainId": "hiosqhjfhw-080", + "expiryHeight": "247057", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "240731926496182685" + "lo": "559021632414787795" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "+VIeZsO/r5ZWpE2dmdI3i4eibv0EJ2ise/gVJkMnLZcoiJfvfnbg8a5TphTT0tVJPAjQMOxXQVoIM4x/E/0mspRVWVAQR7fbDN3bJvHxGvw=" + }, + "text": "1Qi0 ny7YSp XO1Y1Q7A6x ZeY P0TCrQ6 ZDP fN LIRl6HZxwd3 67og q2coDFf x e8bt v9bV4 fU X6abG 4BnCWr2Rf7Gr4tg6Np V2eJOJi 2gpESmy1iNj pnz0 9 9BA mRbZ5Iqi6AYK72h d7kv" + }, + "key": "riGa4yNOj4m4Gh7vkIZuswULJUVMIg4ZMEcehnpnfjc=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.proto index c435d0f3ad..6659a1a7fa 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_15.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.json index 182122b81d..56de2af48e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.json @@ -1,76 +1,71 @@ { "actions": [ { - "output": { - "value": { - "amount": { - "lo": "665243018704234334" + "positionWithdraw": { + "reserves": { + "r1": { + "lo": "252987898512674386" }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + "r2": { + "lo": "810761055933082163" } }, - "destAddress": { - "inner": "puRp8NgFocLXMDpXf2y63cuji9w3tMH+icEs6KQB7JqYyruGjmUv71JnwR7CmbaB20COEmdvq6cV3TTddICCOdPQkdRwFQe8OtWEI2fRUG8=" + "positionId": { + "inner": "8sz4pnuLB3kefdcN2go0ZSqLG2o/AT3jA9CuTniKsWk=" }, - "rseed": "UtaNH374qOTRLFP2gClqi8vwqqlM0QU4x0IVzrCPK7Y=", - "valueBlinding": "P2/M83YwziB4lZo2M5LAHx133bXHqhGotjU9LA2QeAE=", - "proofBlindingR": "WOxubf85he0s/TmzLuevDKznRbdWN6KnlXlmQv3HHQE=", - "proofBlindingS": "6cHNZ83GZJH9j5gE/wcgLDvoP4XnaY/nXYfg5es12Ao=" - } - }, - { - "output": { - "value": { - "amount": { - "lo": "548954363798842727" + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "assetId": { + "asset2": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "destAddress": { - "inner": "nCrK2JVnC+mRPi8CZwJFxsqmvfAT9u2UHDvUW0bgBx+mhXCLMWAThHXOew8LHv2SxkIKFOChd2br0lczfIbQorfe+gzfIKACNvhmu8GQf90=" - }, - "rseed": "34TaN76I7FbIUw1//Ej/maokRw8FMmu1oNVuK5nGgE4=", - "valueBlinding": "z7Ozu8zHAJoEHo7ZiSYio/3JcwuJ3baHexE5A4VjtQM=", - "proofBlindingR": "w1eBEhcL1NW6yScs314mLnIz6W9EsnAvrRGqqH47/AU=", - "proofBlindingS": "VY9lnY7BFZc/NqxmpTcRURObxxAbytnll0TCE52EEwo=" + "sequence": "1" } }, { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrMBCJzB/pQCEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgsI6PD0yQIQpoXkdECgh6mWnrXqgRgSAgoAGgsI6PD0yQIQpoXkdCKPAXBlbnVtYnJhMWc5eTQzODk5ZXNycXM0ZnVhZmhyOWo1dWUydjl1anRkbHM2eTM5NjVjbnU2cWh3ZHprY2xtejd4bXRwZjhhcnpjcWZqOGg1a3k1cHFodnk3NGtzam5zZTNjMnM4c3BtZzhrcGtzbjZza3k1cXQ5Zjd1cGVjNHV1NGFkYW5xNTZyNTR3NGVs" - } - } - }, - { - "undelegate": { - "validatorIdentity": { - "ik": "lORJ0OqoRdtKpIyybfzjmoR/NXffzc3T2AGt++oPUVY=" + "ics20Withdrawal": { + "amount": { + "lo": "336327892533590220" }, - "unbondedAmount": { - "lo": "178683478111234115" + "denom": { + "denom": "21LK7N566625yMXk7xfB0QvtfQ9NJD7" }, - "delegationAmount": { - "lo": "570675219026179388" + "destinationChainAddress": "penumbra1ftf5gnyktsdeamqfxjamvmyhxpn53prqplqkh042ruger8xuj25xy3u4qt4keqyvumzsdppyf9w4esf904jqyru0eqfu68mnj653p4prqlygrqtue36lp38g8hdgsx9td4mhmu", + "returnAddress": { + "inner": "iXgwAhhLIVh0WDEvUpbpzZ24P2nLim6cYTkjdmmdkNVfAfYQkWz4f5lArtNOmcwcMZSyBpl5HRXagqY2dZZqkApZJjgzh6LlD7J1zTFYNiE=" }, - "fromEpoch": { - "index": "7429", - "startHeight": "7429" + "timeoutHeight": { + "revisionNumber": "753266343", + "revisionHeight": "14427492" + }, + "sourceChannel": "channel-0" + } + }, + { + "actionDutchAuctionEnd": { + "auctionId": { + "inner": "xAZY0DHpOPscP8i5kwnt5vVM4uqRjU772Icq6eXhbr4=" } } } ], "transactionParameters": { - "expiryHeight": "9325916248", - "chainId": "ghwhyscwxe-1815907713", + "chainId": "swyvpiwgekl-840456989885491031230791466218", "fee": { "amount": { - "lo": "677300168596627378" + "lo": "508275047644521661" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "9ZsYE7zVg3KsKrkXgtgR1JL8AAtJ1FfPqhJtvlHagQaLaXHLZWo23JtizBHCaGmNFleLBfI5zRQYZvQxnU+XER7oG5howjHSff+ex/3Qt7E=" + }, + "text": " YsR6H3D 6s0 wZh ddq0 9iNnhLvw TCk83ZvA8pj74" + }, + "key": "+J7SEtRJb01k8ux1vcU14WCbNj/MfCNXPMNAQVAu9i4=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.proto index afb6464f70..ee11874e88 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_16.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.json index 6d20c57e41..fbb59aec50 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.json @@ -1,33 +1,94 @@ { "actions": [ { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrIBCNny78ABEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgoIsaHPLhDVifVjQLiBv8aeteqBGBICCgAaCgixoc8uENWJ9WMijwFwZW51bWJyYTEyOGxyZzBwM2owdWdmazY0OGF4OTQ3emN1c3V0NWx6NGRhc3Izc3VkNzh2YTI0ejM0c2tla2h5YTBjbDl3eXRodG10enBqOXFnNHN3OGxzeDh0Y3NtNHc0eHl0ZHo4aDVzZHBuN2tkc2RlNXE2YXU4OWg0c3FjbHZlemQweHJ5anV6YW1hbg==" + "undelegate": { + "validatorIdentity": { + "ik": "Ty6hCu3bVqGowv3FKEucegQEOr8kMV4+QGtsE9hx6eU=" + }, + "unbondedAmount": { + "lo": "875653376023739605" + }, + "delegationAmount": { + "lo": "238521376096936052" + }, + "fromEpoch": { + "index": "6515", + "startHeight": "6515" + } + } + }, + { + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "340460174642155797" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } } } }, { - "proposalSubmit": { - "proposal": { - "title": "ukhtnhaurljoogduvrtu-8886604389569723108242099", - "description": "dcfkvrcduxgvpufyfpxvwdis-8399792816821765872420", - "signaling": {} + "actionDutchAuctionWithdraw": { + "auctionId": { + "inner": "rwo0VCNwP88ieeq/bk5NtN4V0xFXH1l4PVC2FbYM5yM=" }, - "depositAmount": { - "lo": "321526110022575246" + "seq": "282242158", + "reservesInput": { + "amount": { + "lo": "486736152296546071" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "reservesOutput": { + "amount": { + "lo": "234277418874828062" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } } } + }, + { + "output": { + "value": { + "amount": { + "lo": "902760964753812672" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "destAddress": { + "inner": "n3y2tttjcmr1zH95vnhM8zDKMFhXcNvhEDEt/PwKgbMSvsQO3E7+fJdLi0yZKphSbq/9s9xFtZNeQl6avFxJqsFzxtEkkDHuJXoTfi+UWv4=" + }, + "rseed": "rxy0/stqaytAiQecdCUVde7l5EllIY4u7TQPnSvHO20=", + "valueBlinding": "bOGYYjmzbBzsCXRagoIxQP9A7ZdZfjVFbzw9ktyRjAQ=", + "proofBlindingR": "PYJ+nxkVJwKIeDnmXUWNW96BiZWuMa2cK9X2bi5Rywo=", + "proofBlindingS": "hFX7kBgM34T+Qb8IzedDhy+TnircnZqpjGJ0VFR1VRI=" + } } ], "transactionParameters": { - "expiryHeight": "8869240622", - "chainId": "ejncirwpcmcnhwqfbueioddpxl-552696602438162813836332962848", + "expiryHeight": "897650", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "719278308610776819" + "lo": "168973135505879018" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "+cgxJz1DfKQTHSHR41rhsjOggi2FZ8QNOPZdL5cDhrRmVM7aoHrs9LpENXXCwdislfxnqLbDc68kCac+X9BeW4K334j8oIDT2ZaDCWJqhFc=" + }, + "text": "Mf 6wud6 6P 0RLaE4FP28Vyi8d TqA AzHJ l1 L9ceuEPsT5w Yd HpK 6zAu3aXUCI eV99871U44 r63Oohancwwz rHNWrCV 8F5fekq 4FUzc k az kJN6KR 5PZ h3RiQT7wCz92tc R6 n KH9vwWo18 K8 oB8zxWfv GP e53 wHdwh06 6 Y7c8Vj bxs5H 8xMXBIdfG ybpukDnZL9K5 nbVxURY 4ySC8rD8YC21X0RN904 iAfM8ygC1HFy 2xr 0FogR4y0 h tT BPvn Iii7 cX M2N8bItA 4F65 0 9 kj7 Wi0Xb bKYt 4Hu3 D QKL " + }, + "key": "iJ0W0RuOn//eEITRjCZDjvGZiSS5/Ez06xFdTOCaCxE=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.proto index d682c2642f..e7cf3867a6 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_17.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.json index 3562285edd..408529c365 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.json @@ -1,126 +1,65 @@ { "actions": [ { - "validatorVote": { - "body": { - "proposal": "433868762", - "vote": { - "vote": "VOTE_ABSTAIN" + "positionWithdraw": { + "reserves": { + "r1": { + "lo": "238229340010295564" }, - "identityKey": { - "ik": "yJF7/ir86z9K3eqh+snchgVsoEAGDXwaWe1WIMiIGXE=" - }, - "governanceKey": { - "gk": "WrIbtJlyIHOBaxtMPTGL+8n004KJyVMvlrZMNyRm7QM=" - }, - "reason": { - "reason": "WSvLXG4muw" + "r2": { + "lo": "96234028767659256" } }, - "authSig": { - "inner": "Iu+RtCKmmSEl9eBqebhuCP/LbXXgtP7TMi7IHHkDXAx5nPg2mX3n0MnB6/4gRQQFOuGoF6f/g4s0XEpo3bjWAA==" - } - } - }, - { - "swapClaim": { - "swapPlaintext": { - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "delta1I": { - "lo": "465829374333220447" - }, - "delta2I": { - "lo": "389404366201733039" - }, - "claimFee": { - "amount": {} - }, - "claimAddress": { - "inner": "0yIYHUybwtBLPJRAJ5oz7BGZpNCnymWZhskANWNYIJQfk28YKNXiv9SKseFBbmc+U775aAWXmhnq1aBDIFF8K0q4ASW3yJFayBin6Ewm2Jw=" - }, - "rseed": "48Mi68EtOvpNOm9Wqq51eKYrT/WnkJs7KkE4OVR38yk=" + "positionId": { + "inner": "ORDMUfMaJjlSk04J+LDcAxnu0ahGv0MnGhr+5leUxa4=" }, - "outputData": { - "delta1": { - "lo": "1143809394" + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "delta2": { - "lo": "1844876929" - }, - "lambda1": { - "lo": "385" - }, - "lambda2": { - "lo": "791" - }, - "unfilled1": { - "lo": "971" - }, - "unfilled2": { - "lo": "1804" - }, - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "epochDuration": "1000", - "proofBlindingR": "CfFvwjnrqD67ft4nN/eVwOLc/cy/mr1xxLcPoF2kbQ8=", - "proofBlindingS": "CM4A5MbjLTKDCOfeDmo1i/FQrDdwl4k8j5mJegejqgo=" + "sequence": "1" } }, { - "proposalDepositClaim": { - "proposal": "671185253", - "depositAmount": { - "lo": "666618712589078695" + "undelegateClaim": { + "validatorIdentity": { + "ik": "oayoWY8KRqq54Xy1TiHDxCg8pRPzPOEOC20xgh/bwwM=" }, - "outcome": { - "failed": {} - } + "penalty": { + "inner": "AAAAAAAAAAAAAAAAAAAAAP2X9itq59Vmz0HyEtdzGP0=" + }, + "unbondingAmount": { + "lo": "195063427068932497" + }, + "balanceBlinding": "fIkOH9yneBEEiC1YPqhjsTB+FpJHH09AUdkAch5YkgM=", + "proofBlindingR": "lPvPFH942bQEQaqCB5v8XKkIJUqIJhiWiZVZ25IajQU=", + "proofBlindingS": "ooM3KOIsg4mT7ywmXg9UeCbUvcletDtrBFJ5L8vszQY=", + "unbondingStartHeight": "13255" } }, { - "spend": { - "note": { - "value": { - "amount": { - "lo": "962700825601223425" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "707233607847636802" }, - "rseed": "fw6l4n267ydP+FhsT5t3ycPgFONk7/pe0wqAEe4iVZc=", - "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "position": "128408031194944", - "randomizer": "gMLA/74F63g/N8UM+OIeVm+mduZHjirsIl/bqKzHiAM=", - "valueBlinding": "FL4tJUpwkfNdtnnHdNT5CUIOhztk3d1JiaKqrAjRwAE=", - "proofBlindingR": "ls1c0Q4tIxf1X1sXC+hCz1vTxWhPhlOeOiBmpXMM0w8=", - "proofBlindingS": "1Yoo9U5k9QLlWy3l0XT8/Jc4xmWbifGtaGTztuTTSBI=" + } } } ], "transactionParameters": { - "expiryHeight": "8541370643", - "chainId": "brcmtu-524583", + "expiryHeight": "182855", + "chainId": "itctzuturdbgemcwbz-27208100297064657591535", "fee": { "amount": { - "lo": "384877841729248457" + "lo": "138504967210586129" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.proto index 1dab4560d9..77abc1b84d 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_18.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.json index e1d6941cd1..9985d6d2d4 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.json @@ -1,52 +1,60 @@ { "actions": [ { - "spend": { - "note": { - "value": { - "amount": { - "lo": "228486500547001620" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "undelegateClaim": { + "validatorIdentity": { + "ik": "bJljp+5zBxYS4m9hClPFugdBBniJaxy5vY6XQKKrzZQ=" + }, + "penalty": { + "inner": "AAAAAAAAAAAAAAAAAAAAAP5jH4oJAt4A0bcXWOIZZSw=" + }, + "unbondingAmount": { + "lo": "733751016540389389" + }, + "balanceBlinding": "j/3TvPcPfYzBkxF3rN+RqQXtQ6l8wL1h58E/7d1dFwE=", + "proofBlindingR": "fgH2uoHiymk6eM5FQcX/I83cnnT5TnRrRusOHf+FNRI=", + "proofBlindingS": "lmsCwKQZW1gPz0JSj78evv4mYB1C8gqsMmqcAZY5VRI=", + "unbondingStartHeight": "8529" + } + }, + { + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "889416716705904505" }, - "rseed": "xw+w2iczOily4Bmg9rhwyNvmKa7+Ro3OXycf/wYc4+o=", - "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "position": "191064233123894", - "randomizer": "QmtBrveSkpfEHougeurA2mxXatitIfUyKVVhD2tfQAM=", - "valueBlinding": "H/U0LiwlCiEdvlPMNEPwTZNo3kM3awxsyAvMUaozZAQ=", - "proofBlindingR": "MQf3qCecQ0me3cbTSajlk/R7opNXFangjO+AZ+zovwc=", - "proofBlindingS": "P05XWu6efIOJLSXEMj8dAwKJZDkN049/iqV+INLQGg4=" + } } }, { - "undelegateClaim": { - "validatorIdentity": { - "ik": "D2QCjRUFQ8AGjzhxjaUXVDCps1XNZvl7tt0C5KVMpso=" + "ics20Withdrawal": { + "amount": { + "lo": "809664571042618641" }, - "penalty": { - "inner": "AAAAAAAAAAAAAAAAAAAAAP8uSOinHeaa1Cw8nuy/sVw=" + "denom": { + "denom": "VP1LzHcICdD32HHbdjsc10xC2x" }, - "unbondingAmount": { - "lo": "892544287019598744" + "destinationChainAddress": "penumbra15v8j3duuyy7klsnnw4gjynnz97htazjs049fgdj5h3ynr7kngj7ymk2ql4mv3ts89e6t0fahyt6kn873wun4jsnkeghqjzfrugln03hen8gp50f0l9aeec2dqp4zleq9vak53n", + "returnAddress": { + "inner": "YqdTrnkifV3epz+AKg/c1tNlWNruSX9jysu9Q22tLrq4itkqvO4tpzw4SytMgqbhD0gRFGC/APiWcqC07GDv0sdxV9XoWERgOTx2FoKw4sw=" + }, + "timeoutHeight": { + "revisionNumber": "305700358", + "revisionHeight": "348772504" }, - "balanceBlinding": "mjYsMVw0OwxBVQ3tn/iznkFqZVqfFT4knlbP7kd8sAM=", - "proofBlindingR": "nkuCJkhdID0lifnPFr8cXANIr5bPo/WznHMoMZ9GSg8=", - "proofBlindingS": "OKjF1U8UKmNSRt30GiLb5RWP1kr7/aA4Rk7HslqB2AI=", - "unbondingStartHeight": "69459" + "sourceChannel": "channel-0" } } ], "transactionParameters": { - "expiryHeight": "7871232772", - "chainId": "i-38738156725540269211759315", + "expiryHeight": "199184", + "chainId": "kte-07197451140696052891", "fee": { "amount": { - "lo": "834034513930156666" + "lo": "507875345789093674" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.proto index a4e7182830..a9f146e75d 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_19.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.json index 371a01d0e6..161a72fdb2 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.json @@ -1,56 +1,37 @@ { "actions": [ { - "positionWithdraw": { - "reserves": { - "r1": { - "lo": "448142028566267796" - }, - "r2": { - "lo": "159939578440165984" - } - }, - "positionId": { - "inner": "BI2WURu9pwvwJKDnC9cwjFSnunkzpqQEo1HhNJ6i2Lc=" - }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "sequence": "1" + "ibcRelayAction": { + "rawAction": { + "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", + "value": "CrMBCO3x6cQEEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgsIyo3HvQMQ9oeUfUCA5OKyhuWEhxgSAgoAGgsIyo3HvQMQ9oeUfSKPAXBlbnVtYnJhMWtxamFxMnNxMjJ2Y3JoNTRxeWdqNmtoNWVrNHJsd2R2YWN5eGNhZ3I0ZXZ1NGFycDhncng2c3FkbmFtN3U3Y3FwcnpsemNxOGVndjNjbGFhYTByNm14ZnptbmFjd2x5c3hjZGtqc3N5Nzhmd3R2OXpxYWYyY3FnZ2dzY3d2N2R6Y2tlODY3" + } } }, { - "output": { - "value": { - "amount": { - "lo": "453684090974683838" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "destAddress": { - "inner": "dd95Ud+vmNutjKWK+7UJPgtHizVjx45bEokyQtR7oT4/JYCruYZMzhsBvhmqjFA5eXEFhbk4yb66rfWp8ja3KdEo/PksHMdMmOcO2FpBP3w=" - }, - "rseed": "Jh0drx757DZE3ndNdnopPf/SuPIIxVrGTujOSvmu3Z0=", - "valueBlinding": "lq+gtuIgMgT3n+MbhMmtk7SxGh+QIHZWQmSe3HxC8AM=", - "proofBlindingR": "FG0uL0Of+v8LBP82ixIQ24Ljr6fDEjkLP0HVcZqApwY=", - "proofBlindingS": "4uaJAArj6b69w+seF29Cv9hRfnWmL9kZT7jsVh+FjwM=" + "positionClose": { + "positionId": { + "inner": "BrS4LxNlXvyHpDQE46V46n585uWb9bLrWQOgyJrSBYY=" + } } } ], "transactionParameters": { - "expiryHeight": "5511246800", - "chainId": "fvbnjrbyirmhgsrtpnwtykibntihvt-688696", + "expiryHeight": "599103", + "chainId": "jerubkwtol-203", "fee": { "amount": { - "lo": "228194173552427870" + "lo": "542081428684510802" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "9S3N9IF5A8U51MpuKq+ypOXnwh+B72v0xnT1fwFDcqPOmxoy97aqwAZK4b32kAhpUTNhodlESYuUS8agNdxudOS6+Ktrh1dfg9qaSUs5MDI=" + }, + "text": "mmUIuZ1 hdp vd1E B9 dF6U 0wVUm2cWNY8k03nfcFs vh6rKSx uJ2k K h YYeBvv 960 O NPuKG" + }, + "key": "ru+lhshYadIfn9dTj0QH297SjKWWoPn4bJSdtpAWLuc=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.proto index 4c766050c1..74971101af 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_2.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.json index 97775a9f08..66ba94752e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.json @@ -1,31 +1,115 @@ { "actions": [ { - "communityPoolSpend": { - "value": { - "amount": { - "lo": "917708635555222740" + "ibcRelayAction": { + "rawAction": { + "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", + "value": "CrMBCP3ryOYFEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgsI+qDnPhCHs8evA0Dw2ZfpjOWEhxgSAgoAGgsI+qDnPhCHs8evAyKPAXBlbnVtYnJhMXA5Y2U5aGFlcnF3aDBjcXUyazU5a3NrbHR6M3Zqcmpsa2N2djBkdDYwcWh5dXBtNHIyZTI1ejlobmM0OHh3NHhwbDZncXJrcHZqd2wyeGU3a21kemhmNjYwN3JleGdwdjUzZ2ZjcHcwc2N5ZnM4dWV5emxwOHdud3ZxYTJ4eWZuamNqMzk5" + } + } + }, + { + "positionOpen": { + "position": { + "phi": { + "component": { + "p": { + "lo": "521921615638411959" + }, + "q": { + "lo": "759363362662811216" + } + }, + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "state": { + "state": "POSITION_STATE_ENUM_CLOSED" + }, + "reserves": { + "r1": { + "lo": "14735248232232931" + }, + "r2": { + "lo": "258464880580773497" + } + }, + "closeOnFill": true + } + } + }, + { + "positionOpen": { + "position": { + "phi": { + "component": { + "p": { + "lo": "982839654257141218" + }, + "q": { + "lo": "517231770229985733" + } + }, + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } + }, + "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "state": { + "state": "POSITION_STATE_ENUM_CLOSED" + }, + "reserves": { + "r1": { + "lo": "187672130370805677" + }, + "r2": { + "lo": "927699001200503232" + } + }, + "closeOnFill": true } } }, { - "actionDutchAuctionEnd": { - "auctionId": { - "inner": "szCiZisOXrERqpzOkyvnLAYj1m6nJiuM5gXysKNJWqQ=" + "validatorVote": { + "body": { + "proposal": "523274100", + "vote": { + "vote": "VOTE_NO" + }, + "identityKey": { + "ik": "hsyQPPgLqACRUoMMI+W5mkaWjYATjjtKjvIM3ofwP74=" + }, + "governanceKey": { + "gk": "7GfdOUfIJp9oYQxfXz48d6UNJkZefpJbu4GY9GzcHA8=" + }, + "reason": { + "reason": "Ka1XE1sHm8R2yyiW4THthLMo68M" + } + }, + "authSig": { + "inner": "8uaVxHpAtKCJIlEPOUxfuu1L7c2/hRD70fCmWI6CwAlZ0iy0fvqMihWygAIM0J5VRdfWgV2/9Ty1XngWTdNoAw==" } } } ], "transactionParameters": { - "expiryHeight": "5861263868", - "chainId": "q-921525899986864461645755934", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "194766905819855844" + "lo": "512895846613106513" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.proto index 88ae7e136d..650237c066 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_20.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.json index 4464d5d3d9..338e51db91 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.json @@ -1,133 +1,44 @@ { "actions": [ { - "delegatorVote": { - "proposal": "121003569", - "vote": { - "vote": "VOTE_NO" - }, - "stakedNote": { - "value": { - "amount": { - "lo": "659701247588815343" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "rseed": "eVXL+cwVvEbw94yx6Y4GwdT7fD74D5arK577wavN3L0=", - "address": { - "inner": "Ues2mUiCHO1TLPpiZ5nhS1KOkAq5oBQ0bhT4YQJWq069kBkcsnu4wVXTHo+OKYELBddtTDK3GtkVXaGbb/10kOfRb7JedlL1fsJ3OJhG49A=" - } - }, - "unbondedAmount": { - "lo": "489765041566529319" - }, - "randomizer": "qDmxGszrYPzqiRi8pRDriYo0XeluMaY+LaeBsfLPSAE=", - "proofBlindingR": "0ci8CrVKQYvh0brJHYN/XphpE5aCtTXkb6ZnB2fvpRE=", - "proofBlindingS": "8JxyowxnuAzm6TrvuKXPmlZANCbgABRP67RBigLeNg4=" + "proposalWithdraw": { + "proposal": "827840804" } }, { - "swapClaim": { - "swapPlaintext": { - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "delta1I": { - "lo": "856865201767983171" - }, - "delta2I": { - "lo": "669679229868599527" - }, - "claimFee": { - "amount": {} - }, - "claimAddress": { - "inner": "XbdvNRhbP4luPjXFjLAuvdKyoNzTSdZy3ccMZr35Mf5kNZgFWoDu+EvkAP/ZHgwuJq6XyvaGDQomyfIyk58ffd+PFoCJAoe5nTr1DW4NeD4=" - }, - "rseed": "Y14bb0icw5Dqm2m6HSANFRjAzrt8PQKkjzQ7I0flZ7E=" - }, - "outputData": { - "delta1": { - "lo": "1789764782" - }, - "delta2": { - "lo": "263535163" - }, - "lambda1": { - "lo": "322" - }, - "lambda2": { - "lo": "1415" - }, - "unfilled1": { - "lo": "338" - }, - "unfilled2": { - "lo": "1392" - }, - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "validatorDefinition": { + "validator": { + "identityKey": { + "ik": "hszCqsDktB26t/iAaZvc+XZJfHBBFBYT8d554Xq1ywE=" + }, + "consensusKey": "hHzcknJmsxkZQEyWZsWYyhhr0D/5EgC3roqZXUIsvy4=", + "name": "test validator", + "enabled": true, + "governanceKey": { + "gk": "hszCqsDktB26t/iAaZvc+XZJfHBBFBYT8d554Xq1ywE=" } }, - "epochDuration": "1000", - "proofBlindingR": "OfCsd2XlcOA85BwRjol+QPoFOE5vUvvUvMgEf5y76Ag=", - "proofBlindingS": "YbH+W2oXNb1MKmKl8KxGx8iYHmwwpmzVzmFWoYvCSQY=" + "authSig": "EIDLpfxcQlkeXwGRfVSyWEGEg9Al95b1F2aVaWPRfg+ldpKpcNpkql1XtdK737L26T/8JYYvtKJGeT7vQvAtAw==" } }, { - "swap": { - "swapPlaintext": { - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "delta1I": { - "lo": "145727323355446220" - }, - "delta2I": { - "lo": "432213987928087988" - }, - "claimFee": { - "amount": {} + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "113683463153487754" }, - "claimAddress": { - "inner": "0Q5F3OVQoSL982AQLDfegNpwIE8I4I3cvEEh7JUlUr8MH7dGPLORXsvbUEVai2wvht/Ug/tdjz4l0z4wa3VnsIb7TYTih5nbpGC3IbyxdUc=" - }, - "rseed": "cOGPni5ZhqvZMo8/R4OeVarCjqn6ASQLXMQmqXRic28=" - }, - "feeBlinding": "IJLrByzc+Mo8f7yIHFk0ii8VAaouqg/8QOSEajMCugI=", - "proofBlindingR": "TgFi8UTAISRBmw4RyV7Wf+Q7Ib5+fGX4hxl7eA0QVgE=", - "proofBlindingS": "WjtjjKRqGfUwYFX70NNu0/LV0eEjVp15w7kifmPpNgo=" - } - }, - { - "proposalWithdraw": { - "proposal": "368149084" + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } } } ], "transactionParameters": { - "expiryHeight": "6138363882", - "chainId": "ccsdv-258389131009338200158065480", + "chainId": "lqlfhsz-799880975401963", "fee": { "amount": { - "lo": "930887027958765775" + "lo": "711553076297875702" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.proto index fee9f006af..cfeac68b9b 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_21.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.json index f08c732734..9d022ee6c4 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.json @@ -1,18 +1,7 @@ { "actions": [ { - "proposalDepositClaim": { - "proposal": "347679757", - "depositAmount": { - "lo": "39878010524424389" - }, - "outcome": { - "passed": {} - } - } - }, - { - "swap": { + "swapClaim": { "swapPlaintext": { "tradingPair": { "asset1": { @@ -22,33 +11,127 @@ "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "delta1I": { - "lo": "440428726584271908" - }, + "delta1I": {}, "delta2I": { - "lo": "429081527681360989" + "lo": "838048891549027154" }, "claimFee": { "amount": {} }, "claimAddress": { - "inner": "btIatxMHVsfJzP8cJlEZhpw7QzCB0kqLa7fhKV9KM7As3xwueWnEjfh9MAv6/6EDQAVJm+x1mq+/dzGi7OIjVxvqJns5hp0h87f96ZzHBTc=" + "inner": "47LpYyjAL6oPoUcEjd1K/j4tqwiDkHIjHa93jgfXVgFwyI6eK47i6CT61YhYHD6+QxJtditjHcGL5cNHetG2OPwqbb8B9yUpbF3ii8g1Hdg=" + }, + "rseed": "iMy9A2i3nGEBbR7WnslvajheTDinsSY4/I5pxSuiMb4=" + }, + "outputData": { + "delta1": { + "lo": "613197821" + }, + "delta2": { + "lo": "1760277293" + }, + "lambda1": { + "lo": "696" + }, + "lambda2": { + "lo": "1382" }, - "rseed": "0TJR8ExhmjYVlHjJ+fAdH2SSR50UYS5pDCN3N2pPNQs=" + "unfilled1": { + "lo": "167" + }, + "unfilled2": { + "lo": "1137" + }, + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } }, - "feeBlinding": "3Qmcx7XB08EfEMpYp/9GcAF7ZTf9Qm9N37uFErdZ2wE=", - "proofBlindingR": "jvGIwY/gcXg2G73YnyW6AfeGVCVpCrNY7VcIQsq8DwE=", - "proofBlindingS": "F4qHttIr3R/UNFdEm1U805YiRaXcMgIhj5IGpxiFIQc=" + "epochDuration": "1000", + "proofBlindingR": "yUOmfMx+kBgxRUbcndORsCnXT07GTYWEpX4LsZsitwQ=", + "proofBlindingS": "cwL/Wv3C9Dw/B+ZpJ4LYhPisJbQEa9287RjMVTm6PQU=" + } + }, + { + "validatorVote": { + "body": { + "proposal": "792994485", + "vote": { + "vote": "VOTE_YES" + }, + "identityKey": { + "ik": "pFV2BJ3ExwKJeggRcgofTtVHJzrrzNLlA3eJuumLmy0=" + }, + "governanceKey": { + "gk": "MsZwKymHh2x4aphI4kVHFy3AYf0ke4kPYZHo6zn5pAQ=" + }, + "reason": { + "reason": "Jv6EO7rHU3iso256697i3882O82" + } + }, + "authSig": { + "inner": "+AJDNxGhR7ldgiH73rcSqxcYlyuGmf3MMoPKfdt/SQ7LDZTp03BeIUJpafA7MCpTdHZZfboG5IrvYUW0lu6DBA==" + } + } + }, + { + "delegate": { + "validatorIdentity": { + "ik": "Rf1oENwyXV8nivDmmMmx3Ze5Ves9jOGr3UUsSHAlWi8=" + }, + "epochIndex": "8620", + "unbondedAmount": { + "lo": "972610448368646565" + }, + "delegationAmount": { + "lo": "892015457257747303" + } + } + }, + { + "positionWithdraw": { + "reserves": { + "r1": { + "lo": "558130589213463190" + }, + "r2": { + "lo": "114136200404323793" + } + }, + "positionId": { + "inner": "Ql6XPtutTzy/2NYP5dkyzMuREuamEIsFtplhElNH4Tc=" + }, + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "sequence": "1" } } ], "transactionParameters": { - "expiryHeight": "4115851543", - "chainId": "ibtrcnbbmgtashboaxr-27900", + "chainId": "irkbhmfnij-2017489", "fee": { "amount": { - "lo": "471103972333688096" + "lo": "117137833691394479" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "92OMLaZmdPBZ6muWwyIf3sBGtaLjo3QEkY4ikgManq9s6TO3QX3NMUaQ799xP3StQMU15pmbpTT4hV/04XS0l0rhdrHZqoGkCeYBPkQ9gdk=" + }, + "text": "yW3z88y13 A lS q4jG7w8M8 KHBK xc cIS h4 7XagbCZJmPz0zPTV50 BoHkOL4XaFFK6hO s8mfl6l7OjWv1F6JaIQEf b 5QR yB9TBh5Ms7xzm wgO 06Y3m4y0PmuG 6HKBxV r6fU Ju " + }, + "key": "hu2Wtpfo5b6Dmw/qAMRVbxF1z5wLEqPwr07LEre3nJM=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.proto index 18b65cf6cf..8fd446cf21 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_22.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.json index c2538bae0a..9dc5faaecb 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.json @@ -1,92 +1,96 @@ { "actions": [ { - "validatorDefinition": { - "validator": { - "identityKey": { - "ik": "DvwiJ9bN60KPMzHMs1KIUMuppPKPmXn5lizNuCGB6wk=" - }, - "consensusKey": "aBWF1uPo9dVfwcMoROQnHNxy+iuE7eMdj8sECh8cB1g=", - "name": "test validator", - "enabled": true, - "governanceKey": { - "gk": "DvwiJ9bN60KPMzHMs1KIUMuppPKPmXn5lizNuCGB6wk=" - } + "ics20Withdrawal": { + "amount": { + "lo": "795484757745048376" }, - "authSig": "TjiZTZRWMEoFa5UnPF4scItN8DPsmGgK0R6uoAa39Qbw5/MAmyne9gt5ARVm5gND8hLMaDpi1eDgi+u5BbDzAg==" - } - }, - { - "proposalSubmit": { - "proposal": { - "title": "nrgko-809545601310671678", - "description": "gxewuzssoyxxiznqopxkse-65537443", - "signaling": {} + "denom": { + "denom": "CNmjsoFR2DMusQaKc" + }, + "destinationChainAddress": "penumbra12zsfyyfn8uuwq76wwrgdnk74navfcwxvtdvmmnvfe5ckvm8plm7c6jjngg6uvlkemxepcjtycl8zwn9lpzsyxdknmkwx8jhd538mh62tqj4ktwsrsmmvj35vmk3pfmk6u5gh4t", + "returnAddress": { + "inner": "igYpnj3+i4nErMjCIoFLYxBOKgumZuO6a92Kx7XhCaxUOnRRLLVSKhPchincemfICx29BIlbVimO7/sn++1id6pmbbmZLw1EFJVOhQzQGGc=" + }, + "timeoutHeight": { + "revisionNumber": "470411408", + "revisionHeight": "794168758" }, - "depositAmount": { - "lo": "647327870098465088" - } + "sourceChannel": "channel-0" } }, { - "delegatorVote": { - "proposal": "23311205", - "vote": { - "vote": "VOTE_YES" - }, - "stakedNote": { - "value": { - "amount": { - "lo": "635944744656676444" + "swapClaim": { + "swapPlaintext": { + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "assetId": { + "asset2": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "rseed": "0rQLhLFlR3y785DdJ6OlMq49j56TmdUY5lwi/YfRg7k=", - "address": { - "inner": "G+R6IvqDsCJcuStriBxbiql+VXCQkOGh90AIftnrSltId15fo8QdUuCZsOyy9qC2GiXNwvSxXsiWJSGRNaXpC/7Rk5jLWXpZY5MDIWQPn1s=" - } - }, - "unbondedAmount": { - "lo": "767165115394179115" + "delta1I": {}, + "delta2I": { + "lo": "592283381392241488" + }, + "claimFee": { + "amount": {} + }, + "claimAddress": { + "inner": "AUNc7oNJIcKieifT7fJzpmVXeq8FL2mkNSPncYT8zEAkt9P4t+6jyYzUVtbfrxn/N2Okbe9K7C3iQZSi53BKk21lRK/GatyGQBkP3YXjbwo=" + }, + "rseed": "hcDsy0bPtWOe7VF8ZplBAYGMAWB01Jq6nfnDS8CibFU=" }, - "randomizer": "8GllYi3tpIMlHho4Z4gZgg9iEJJheIzhimLYwtp1NgE=", - "proofBlindingR": "/alTSasPEKJn0xiqwF5qlCV2x4Qwy/oqWYV6uKJzoQA=", - "proofBlindingS": "Di02t6dpSzo0K5RzwV+mPaPVAp0CkUKfHBD1qi8tKgc=" - } - }, - { - "spend": { - "note": { - "value": { - "amount": { - "lo": "500462582178833477" + "outputData": { + "delta1": { + "lo": "663415008" + }, + "delta2": { + "lo": "450441446" + }, + "lambda1": { + "lo": "1878" + }, + "lambda2": { + "lo": "1553" + }, + "unfilled1": { + "lo": "1721" + }, + "unfilled2": { + "lo": "1475" + }, + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "assetId": { + "asset2": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "rseed": "xxpg24o6wn0pNp4ybxgeBCH5Xw4kbrUIdRLtouYPmsw=", - "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" } }, - "position": "47329853871088", - "randomizer": "vq3SgPTqdcDt0eZI7mpikA3RrVicRftI7SrvXcbkvgM=", - "valueBlinding": "k+6ARtUryFLoovYGXrGDsRlA1B9Et6YnSxK4ae7sjwI=", - "proofBlindingR": "CosujW/HLe7W5I81tpE8vvjw0rw6sK+R3q91tj25pgM=", - "proofBlindingS": "4JGEFlHAHGbESb3xfWm1cW1t4N2boYHu1NTbqXLDdww=" + "epochDuration": "1000", + "proofBlindingR": "RFma7w2tdYLAv919XP/1vRZSKlljJchMbbbwYdN7XQo=", + "proofBlindingS": "OWt8vpvXPIAglOL0W14alj7ZH1qURaH10QF90YWqOAo=" } } ], "transactionParameters": { - "expiryHeight": "5300559743", - "chainId": "wjwtdknusjcorzupfwmosxoyil-13456808", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "806313302663231749" + "lo": "745086138424646239" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "JYcS+Sdbx4KoE1TWRdTC36782DL4ootl6LkmTFJ12jl5iaj5xsTanWmiomLSL0FXGGPT/ZTZ7BV3I3w60CD7uvpX6oB18CSa+224KsA4TCc=" + }, + "text": "8 BC KcI5rkO JzU KBWplRSCWv HGK 1 8V2qI7n5h2s8n 6Nf cdMVyJz 1646v99 u U s j0J18 63ZU Sl 1T5S y0p G34EK0d6GPH 5W914e88xPl85 1PxpWCxQ5p 6qZ2 DWOn g4 8nqJ1cJ6W0VY6mZ4Ho ubR9whMgv5Efa102M3Qf qsowO Q708e R8 g8Zttjl9 Itj08fd8 O65n8VLI J6 LCwPi9JxY6Tq0f 8UXfr92 h5 14 TL0 E ym5E5 Q1BJ4eEv n8 mCaqf 6 mSiK7blMUDWJC6vUIh0xupOcgm pRpM nDgiU A26Mnj7V bNN1GxK ksI0Wp 1gDo" + }, + "key": "GCMBKHhosvsSnPqbyNdkbqLd6KlzOB22bvsbRHOd5oc=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.proto index fb37894049..4211aaa58e 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_23.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.json index f9e072907d..dc7080032b 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.json @@ -1,73 +1,86 @@ { "actions": [ { - "spend": { - "note": { - "value": { - "amount": { - "lo": "922384207425927935" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "rseed": "8y15DjAPg/i2TPCAOJlgKrTQSQNm2UHKLpJl52H7SKs=", - "address": { - "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" - } - }, - "position": "41332451622106", - "randomizer": "pYbb7GzU1/8FGbOriG+C4LGm1oqnbI2tA4+ZggADmQI=", - "valueBlinding": "/pP8i12FCmrOPB8IF6toWO0/UqCRnSf1/2nXtEptngE=", - "proofBlindingR": "tvJYTWTz/Hw0yraNTwlbUioB8tAx73k8jalIutF7rQ4=", - "proofBlindingS": "Bh38gN8X7P1gFK/ZR59ERQPEpLxnZpmuXRau5tjIMws=" + "positionClose": { + "positionId": { + "inner": "7cR7f0+YoJPxBSTOr+VOvcoqe9wGh+Ytmf2Ue3Yg7Nk=" + } } }, { - "positionOpen": { - "position": { - "phi": { - "component": { - "p": { - "lo": "432506193895602060" - }, - "q": { - "lo": "155003316029288568" - } + "swapClaim": { + "swapPlaintext": { + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", - "state": { - "state": "POSITION_STATE_ENUM_OPENED" + "delta1I": { + "lo": "168617564177941038" + }, + "delta2I": { + "lo": "156409653166224252" + }, + "claimFee": { + "amount": {} + }, + "claimAddress": { + "inner": "yaTSKvxzmaR/d7wgQe9bgjgSexvcwVb11SmQOi5MtjgM9q3rV5+DKW3PafOu2tf5i7ha0PKxB7k/CCYIbAkUki/3xR2Tb1I0j1qejdDAsbc=" + }, + "rseed": "afYonWLgXM4GGB1VhuQDh3UnVsZ06MJFe358/Z33nak=" + }, + "outputData": { + "delta1": { + "lo": "187829811" + }, + "delta2": { + "lo": "691950481" + }, + "lambda1": { + "lo": "1844" + }, + "lambda2": { + "lo": "1210" }, - "reserves": { - "r1": { - "lo": "34496988622358459" + "unfilled1": { + "lo": "1144" + }, + "unfilled2": { + "lo": "1474" + }, + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "r2": { - "lo": "779446111142524338" + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "closeOnFill": true - } + } + }, + "epochDuration": "1000", + "proofBlindingR": "6z7VmlJz86s7T/jKYqMfp6P8rgM7L0B7EuQdfJeeTgc=", + "proofBlindingS": "oe8sCSQeYKeOqVnKN+qDDGgthwDhC+yj6KV9SRih9gM=" } } ], "transactionParameters": { - "expiryHeight": "4919243771", - "chainId": "xcfzzb-445743933420689579348779436", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "673851707019371333" + "lo": "71219465656896597" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "MFa67WhR43coxI6ecXqiuvhtTbDhhUviOAO/IRFBPq0bnPSuu1PSeYAPYzqqULBoiBWEi69pH3HxqaX1R1TaeSIFYM9uGOqQM5k4Kp1Gj/o=" + }, + "text": "WljC8f u J Ik7iPH0x9sW0Vxk9W58v1Ga6D02ZKKl6JwxdZ97hw 8MRTh6U Yn54 TwF07vO 6Y 0 Kg P1S mnY93j48 zinh Q7w4xt8863 4Eg V8ZHr4 N2Qesc0D 869z 703506yka8QOF 8tIxim C Kaz 6t mg6z2Wr 3pI9n3BDw M1I QGLTFzl 3qs5I9M SAA DDux4 Lp6 s Dh1 rYrH Wp a4kvv5mU 35pkRNwF 3u4vTN8tNu073Z t6e XX1 Y34 bq76WW Ygk q X tZCl 232pbbqjNBs9 8h160L8vqUGZoAZol6uBRK2o CH 9130n4B7 8kxI uGdhwp7 uGR N Px0NDV" + }, + "key": "wdTDaqVGKvt07mLRq54tZZ5Mu/CAE2kV138weTXPM4w=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.proto index 42893199d5..606260ff25 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_24.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.json index f68407aaea..5f7b23caeb 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.json @@ -1,78 +1,70 @@ { "actions": [ { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrMBCPP8zbICEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgsIxvbjSxCL0fqiA0DAmL7QoLXqgRgSAgoAGgsIxvbjSxCL0fqiAyKPAXBlbnVtYnJhMXJ3bmo2Y3k5Nm42NXhodjhkZW1hNG02MGZnOWdxamd2aDA3bnA4ODNlY3dxdHJlMGY5NnR2MDRyeDU3dXlwa2YydDQ5YXVlZjM4a2h2d2tmNWprc3hzOXl3Njl3cDh0emo3NTB4MjBlbHRlcDdzdHRjbXZjd241aDRhMHNsNGs5eTlzaDcy" - } - } - }, - { - "proposalSubmit": { - "proposal": { - "title": "kcrksmeyxustsnjbr-60", - "description": "krcxzlpefqzl-75956368", - "signaling": {} - }, - "depositAmount": { - "lo": "38351685330180206" - } + "proposalWithdraw": { + "proposal": "849172967" } }, { - "communityPoolOutput": { - "value": { - "amount": { - "lo": "415888003349099833" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "address": { - "inner": "zK3UmgXb59dD/4C9/L7P4htU0Ee1rPiWWdUU5AoyqgkW4nLr3VF6ORk2JhOyQlZKIvievUOuytmQvtylncSglmyC0qDP8zz+DWw+/FYHFCo=" - } - } - }, - { - "swap": { - "swapPlaintext": { - "tradingPair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + "actionDutchAuctionSchedule": { + "description": { + "input": { + "amount": { + "lo": "109397479692560573" }, - "asset2": { + "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "delta1I": { - "lo": "920853597152247593" - }, - "delta2I": { - "lo": "677865656587699464" + "outputId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" }, - "claimFee": { - "amount": {} + "maxOutput": { + "lo": "120724015254597903" }, - "claimAddress": { - "inner": "i9huSFlTnxHEv1AumWjld1PfJ9s63YrojO92xAVyzfIcVG0Z3SCKJQOFUDc0GbzEqz9IWdvFshvu5KQ0T8djRxauxxR1w3RiD0oMuYoRMCM=" + "minOutput": { + "lo": "868757827477768235" }, - "rseed": "++fkdOajvAONYLoezkuIU6nXn/mC+2ndEgwdHS4FMcg=" + "startHeight": "449995961", + "endHeight": "449995962", + "stepCount": "236698755", + "nonce": "kVr17T+EaKD3ZQQAnPb/aGGqZHhPap653HdfFculEaU=" + } + } + }, + { + "undelegateClaim": { + "validatorIdentity": { + "ik": "sOSe02K1ZgHFHRxhXZf3YH647p9EMmYYNoxVe3aJVbQ=" + }, + "penalty": { + "inner": "AAAAAAAAAAAAAAAAAAAAAP/SH/Lkjopx3mmtQsPJ7sw=" }, - "feeBlinding": "Q0DcLLLIqaOvq7gv2Y1rZ7/w29SF94i8cR5VQxly7QE=", - "proofBlindingR": "2NRy+/3HlDXi9fCZaKrlJQ7IN5T6yaep4lKDe2t7zQo=", - "proofBlindingS": "3WBWe6fyQgkjStsyOQjW/n1y/prYDzB2Gr7f4PCfsws=" + "unbondingAmount": { + "lo": "992608670465340337" + }, + "balanceBlinding": "kGkT69pVbI4pnCLIuHeyDcL7468XShNEggAL1EV4DAM=", + "proofBlindingR": "WQlEmXhxAPIYdmY4rZopg7Ejesv5jv0lXk7s/SCfFgU=", + "proofBlindingS": "/eCBaDHr8kMr/9G9Usi+W3gch5c0DqjWPjYEKrtE5AI=", + "unbondingStartHeight": "93297" } } ], "transactionParameters": { - "expiryHeight": "8982080025", - "chainId": "hwbwaix-06083225540254", + "chainId": "ymgjmuzdjqcy-728841970545290", "fee": { "amount": { - "lo": "516487876813519810" + "lo": "425720506294444717" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "viMnfFhi60+Jtv00DzP3+gfeLHOgzENwt7cU18WCkP3BMycu1kctfORHAKIIljUZkbDPB09iNfCwPMzrNkzw5xFNl4cxMfQlP5wGOtCBDYc=" + }, + "text": "Yk 8OP1 f0qUZ8GzSY 94cJ b 5t15 QGl31N5w6c 9I0 Vcf5m2e2 MV 0orxu ps27 h2Jb5 x1t VHMD9RcW1iOXE3K hqn0RC T EjD16fT6T RixFIAteo CO5CAlr " + }, + "key": "HVjc7mWMbe6FVTdqXfub9AGEUslYCQ1PkcEcCcEr1f4=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.proto index a2e7175dd4..65b331715a 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_25.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.json index 3a583e3c6b..46cbf67c78 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.json @@ -1,50 +1,46 @@ { "actions": [ { - "delegate": { - "validatorIdentity": { - "ik": "/QXLeKKs5nNDGUlootWZo28F38EKtleJ2Dxmz877u5M=" - }, - "epochIndex": "3335", - "unbondedAmount": { - "lo": "268055427198280602" - }, - "delegationAmount": { - "lo": "311754073549817714" - } - } - }, - { - "actionDutchAuctionWithdraw": { - "auctionId": { - "inner": "lBXbj4Fgh8SAUcCnvlW0iL9mC1F+Hjr4h2GmuK7hr4Y=" - }, - "seq": "477900847", - "reservesInput": { + "communityPoolDeposit": { + "value": { "amount": { - "lo": "494921779002903251" + "lo": "506904508504112616" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } - }, - "reservesOutput": { - "amount": { - "lo": "229786067440132976" + } + } + }, + { + "spend": { + "note": { + "value": { + "amount": { + "lo": "888670871373814434" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + "rseed": "A6vsEAkyDytJcKSj8DOG3V828ptLNHrzbTsekKPCTV8=", + "address": { + "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" } - } + }, + "position": "100172228580753", + "randomizer": "1dmM8ppbhuCMz4R91hfgUpNU5LPTjJrJ4R8be21lLgM=", + "valueBlinding": "57JMDxQI8Q6PR9uif6LoJgnrVdL/q/iPIWTasLBZQAQ=", + "proofBlindingR": "3OYi43winsPqUd53hlPQBOk/wnpZF0p5r4QG61KJMwc=", + "proofBlindingS": "DDfIN2Hao/DPq0pAYpDmj2q2Uqk0x4d3H2/tOK631hA=" } } ], "transactionParameters": { - "expiryHeight": "3655773457", - "chainId": "cobadoodnjhaiy-3702176186175231025", + "chainId": "ytdzrlb-786607087246194378494654901815", "fee": { "amount": { - "lo": "398478972940299008" + "lo": "762725718869105195" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.proto index ee9c97ef96..a853044f1f 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_26.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.json index 7d56648601..05595a3383 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.json @@ -1,64 +1,87 @@ { "actions": [ { - "proposalDepositClaim": { - "proposal": "783703894", - "depositAmount": { - "lo": "541796731181788074" - }, - "outcome": { - "failed": {} + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "441072890715428689" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } + } + }, + { + "actionDutchAuctionSchedule": { + "description": { + "input": { + "amount": { + "lo": "564498516894421217" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "outputId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "maxOutput": { + "lo": "245842211535340831" + }, + "minOutput": { + "lo": "313559350034584058" + }, + "startHeight": "105792829", + "endHeight": "105792830", + "stepCount": "283868100", + "nonce": "HRFujLAH5QP9YPZ8ycCnbtsvHNqvbKnH/xHlL1gXuA8=" } } }, { "ics20Withdrawal": { "amount": { - "lo": "743252449930510089" + "lo": "883697938176550748" }, "denom": { - "denom": "w9T8N98Xtft1poSBQ1jezl1Xmck7WH" + "denom": "dReRcjiS5R1Wc9F" }, - "destinationChainAddress": "penumbra1hvtr8r7rmtnrq3jn2mrlnhsktekj8zlskuf25q3d22f3v50v55y2npqzyf9y89ctn6kmepzj9nqz52x2pyvvva4cuqsmeze0zjm49qq9qc8z29pxyh3dnf9y0e43nendsehn0h", + "destinationChainAddress": "penumbra1g905fywf94g2kkf35h5cc3zzz32qm9pvfr7zaamsa27twv65yyh6tgcpwucm6a7cah5my8plf83lm6uj4z5dh4uks24k3s6gg2lntsr58nfeudr8djvk6r8j5ew2yqv79was06", "returnAddress": { - "inner": "Ie/tWniyp+44jUlOZ/KSu4KFuLu+Mkws94JRU3nsFgeLM4PJeYoDYfOmqa7Te4szDUw58IWoobdWbjJAFqJc4PhuYO3Bd1kt5EeQlO8xBQg=" + "inner": "Ln7VucCAvQxGxDVPcJgbO8K9FwP0BYJNNk6AssBp/7G4e7ZqbA6QrVSP30tLQ11LJp9h0pf3CNnY6/opjcv9bboGqsrzm3WrZMK91V6eg+k=" }, "timeoutHeight": { - "revisionNumber": "741829678", - "revisionHeight": "639300954" + "revisionNumber": "936395912", + "revisionHeight": "173569373" }, "sourceChannel": "channel-0" } }, { - "delegate": { + "undelegate": { "validatorIdentity": { - "ik": "6jpPsfC8Gf4MZQAEyzqse4OqVDAh0fnL56zaW18vxpo=" + "ik": "kNjJa5WSn40qUDAvbQ5wAayvTFGKQvGQSnEqEiFRMgE=" }, - "epochIndex": "7014", "unbondedAmount": { - "lo": "906211565715551935" + "lo": "182413407261486540" }, "delegationAmount": { - "lo": "299646488738841482" - } - } - }, - { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrQBCL708JQFEgtkZWZhdWx0UG9ydBoJY2hhbm5lbC0wIgtkZWZhdWx0UG9ydCoJY2hhbm5lbC0wMmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgwIy86PzgEQl6S5lwJAoJi0v6G16oEYEgIKABoMCMvOj84BEJekuZcCIo8BcGVudW1icmExenByNTBmYXhxY2VseWh0OTRndmV2NGR2cjJjcWV1bTlkZmVremhzd25tNm1jdTdranNrY2FwYzh1NXRkc3VuZnk4ajhnaGhzbngwbHBuZmZ2MGx4aHp4dm1tOWM3bW1hMmxydnJrMnIydHhzaDI0ZHE5NnZxeHNycXh4bjY4Z2drM3phMjQ=" + "lo": "161573688867151958" + }, + "fromEpoch": { + "index": "2689", + "startHeight": "2689" } } } ], "transactionParameters": { - "expiryHeight": "8445758137", - "chainId": "xvpoqcklthqfksylyqqsfgejn-514070812", + "expiryHeight": "606468", + "chainId": "esqgrfzgaqaw-47167173356119390146929248081", "fee": { "amount": { - "lo": "62518833093538551" + "lo": "206933644044795099" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.proto index 2695477b4e..1a9ed3b283 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_27.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.json index 391ca92071..bb335de836 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.json @@ -1,101 +1,108 @@ { "actions": [ { - "ibcRelayAction": { - "rawAction": { - "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", - "value": "CrMBCLyz6zQSC2RlZmF1bHRQb3J0GgljaGFubmVsLTAiC2RlZmF1bHRQb3J0KgljaGFubmVsLTAyZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6DAjg27KVARDrgt/YA0Dwx/PeobXqgRgSAgoAGgwI4NuylQEQ64Lf2AMijwFwZW51bWJyYTE3NjM3bWZoaHk5am04OGx6anEyeDY0NzZmamp3azc5ankycTBodnEwOXgwcGxrM2dsbGRreG4yenFranp6a2hwamx1MDJoMGY4YXZ5OTZ2cDVodXNtOXVrcHF5cHJ6OXB4ZW53N2p3Z2Q4c2FwZnpycTR4cWZsc2RrdWNrMmNlZzZzdmNtag==" - } - } - }, - { - "positionOpen": { - "position": { - "phi": { - "component": { - "p": { - "lo": "774789359106044111" - }, - "q": { - "lo": "402420811295523927" - } - }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - } - }, - "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", - "state": { - "state": "POSITION_STATE_ENUM_OPENED" - }, - "reserves": { - "r1": { - "lo": "763030398612671458" - }, - "r2": { - "lo": "649126515653168617" - } - }, - "closeOnFill": true - } - } - }, - { - "positionWithdraw": { - "reserves": { - "r1": { - "lo": "750752079886260961" - }, - "r2": { - "lo": "897781783702494740" - } + "undelegate": { + "validatorIdentity": { + "ik": "pD10MytHQpbwvWGdal8TTotbcC5GN9svbyiacWb0ths=" }, - "positionId": { - "inner": "y0uPPUR3gz4uFZdtwKALgY3H0lL+8IRMIZTAIPnDxk8=" + "unbondedAmount": { + "lo": "262419004592174630" }, - "pair": { - "asset1": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - }, - "asset2": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "delegationAmount": { + "lo": "49887393930784885" }, - "sequence": "1" + "fromEpoch": { + "index": "8602", + "startHeight": "8602" + } } }, { "ics20Withdrawal": { "amount": { - "lo": "409200163497891676" + "lo": "647008669651871623" }, "denom": { - "denom": "Mbuwd8yp3q5YAmM1V2hN5885" + "denom": "E8P3SLl" }, - "destinationChainAddress": "penumbra17syd3uwnfjdfsvu7k3amnd7n3azg7eqz8p5mpd0k54hn6efgptg5zk69j9hmfzdwcyml9gp37ke3s9qt6j7nsm2d4psqajr8weel2pdv9dj92p4mfksy8y7wu870kwvalyqlq8", + "destinationChainAddress": "penumbra1jcu0w3ayemvpw78z0rnz2khm3yg8mqp8jjmsrqajpa535w9xnws8fza0czzazwxscvxxgg08w4t5cnlajuryt5g0qtd8ufas0l8yw5k40l22gjjazs749hx3js5fradf0uzq6p", "returnAddress": { - "inner": "s0I1iXp2esXR6gQl6NhRHjhHX0ZsStm02CTMO4AugfdFOOmpwkVNr++7M+gasvMXb0Lxu+UCVdlQ+IjvJOxQpnZix8+9v1CxXMD/ah+6zLI=" + "inner": "8RYg8wToFYNf1q9THJb3bsaDiAiFazFLB+EEkttqgj/4j3A4s/snnM/ObYClh8spO49Q6xKJzQl8xaIgruwN6Twoim5j8Jwcu0Uq7oMX/K8=" }, "timeoutHeight": { - "revisionNumber": "422915132", - "revisionHeight": "258344837" + "revisionNumber": "781814237", + "revisionHeight": "496519934" }, "sourceChannel": "channel-0" } + }, + { + "spend": { + "note": { + "value": { + "amount": { + "lo": "519234741111085644" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "rseed": "2KbD0WKM6SLCyoC0osbKXkVjKW6MKkOimzEXfSabbic=", + "address": { + "inner": "r7ae/+8Q9d3QdaAs66/GAAbYBo/Am59nYWeIBU7REchE3LYtFPa1EHW2Lo1KZcRWuXzO/cM54CLSFnv2iArQnxjrlJnTB4nGnuLdFtCY9vc=" + } + }, + "position": "211758106471074", + "randomizer": "ODUgeSf5HfCLs7N6ssqD0HEe1EQg5hv9Dv3hOTRicwE=", + "valueBlinding": "b+pQIezST0EQqUcEHxaUf4JINVDFQDprTECe0QmQggI=", + "proofBlindingR": "XDxhGWNLqhvjsTEE5TbmCj7l+qM2XTnNUX7b4bwT7Ac=", + "proofBlindingS": "fFD7BupEl5IvET4u8YSa944d3V2SUr9WFs3q8Qf+KhI=" + } + }, + { + "actionDutchAuctionSchedule": { + "description": { + "input": { + "amount": { + "lo": "342353369970251473" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "outputId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "maxOutput": { + "lo": "204479339806219546" + }, + "minOutput": { + "lo": "48316935250088062" + }, + "startHeight": "515959140", + "endHeight": "515959141", + "stepCount": "86237203", + "nonce": "SObe5zXd96JS0uOMH78CTrGBmvEwHfbDxIMYYPRGg98=" + } + } } ], "transactionParameters": { - "expiryHeight": "4923194389", - "chainId": "ihcgxxqkhbvefbdkdgdnrut-115", + "expiryHeight": "582446", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "664252986094135210" + "lo": "695185584809215913" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "JTaqVZgf4EjNeuUJmvJqA3AH6ZeCHhragL7iWiW+O9JmGteWAeFNb+JGc5jeg3qTLX+JNA3idWCclDjhKu7FFBgtFCOo9fChWEjGEL4unos=" + }, + "text": "wIOM dEJjy89 33P 55CNUlQwG6btZV J5Pj6i H7moQsR Q wPYG5BSZTpW10Nc Ta02 7c ROJ UV JI0 GiRaHx7 0mZI50793KPkgHjYqWKWNs6BgtKMuxMRL03 9PiV 45CanIrz3JIC AiVlMv b8Nk2q6f mHAm0 63n J G fEMjSkRqGzvb5 ec " + }, + "key": "q/890n5/NmMTsMKDNZWG+jti7CXWVvxokmRA9LqAtu4=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.proto index 6ef37b98db..7bed83cd98 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_28.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.json index b24641bf2e..c6936ee2e0 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.json @@ -1,53 +1,131 @@ { "actions": [ { - "validatorVote": { - "body": { - "proposal": "284956779", - "vote": { - "vote": "VOTE_YES" - }, - "identityKey": { - "ik": "zwa90BizdLKHBr7podM1nq1N9nWrmnDPM2vuILNPcSo=" - }, - "governanceKey": { - "gk": "LlsJYxRy7uSVLWAJ/gU5GCJQV6ErMEGJkDliyCUpsAU=" + "delegatorVote": { + "proposal": "84584528", + "vote": { + "vote": "VOTE_ABSTAIN" + }, + "stakedNote": { + "value": { + "amount": { + "lo": "431240150891657896" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "reason": { - "reason": "gOG78117V3KSEJa9Usetiav5" + "rseed": "jl0nLAy06W92XZnrg1yFQvqLkGGeZqbGXzby8K1t68k=", + "address": { + "inner": "qzT22gRMUiIRhPRJLBtqACuxc1xxwdAip0Wt+XbnWH2MwDT9W/BabAeOdb8Q4F/2GOr53W/fuiOydnwQ1TemKBNcG5/pRmZAVU+uhPTQQBU=" } }, - "authSig": { - "inner": "wDyN6yGx6Epnv/P7pK/vPG6R+4jjh1i7cpa8cY2dnQHOy/5YBBo34rcqnjMYcIjglWobb3a07u2ke7xdfdLWAg==" - } + "unbondedAmount": { + "lo": "639182532807790525" + }, + "randomizer": "3AwpDMFg1DKHDYuFpNZXuiwk4h4aPP9JA7Xq8IPKUgM=", + "proofBlindingR": "acjINi9AnTgwC7piA474umq5bEneVOnLyZWEEE6BngY=", + "proofBlindingS": "K/n13vnWYRDA7pQFgHh+VvfM+Jb67eXJmpWtt1xNJg4=" } }, { - "ics20Withdrawal": { - "amount": { - "lo": "724571558176573681" + "actionDutchAuctionWithdraw": { + "auctionId": { + "inner": "h43CumW+KwN7FmiBiz24503r8ULzXY6m//Pi4XdtRv8=" }, - "denom": { - "denom": "OONIY11e" + "seq": "340682627", + "reservesInput": { + "amount": { + "lo": "453294868222332508" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "destinationChainAddress": "penumbra1hrgv7fzh0vgq49adz6ydqnqgy23v6n9qhjrze526uuw4g5dfyaz4aqpjl3kyq0qg3dqh43ecpmuea4yk7f5q0sjqy0ew603tklcj7ya0423szgwd8vzxa7x2h35re99zu7qf7l", - "returnAddress": { - "inner": "F4MDyCqggl2Zynn7rCOdzyeqbBuGObQcGsXvM+KyUsDz7Ku23Pj65ZvN5peYr5xsYTaXnw/asUKrP/HKCrrcw9qkFNIyp2Mh+v7mh1HFAiI=" + "reservesOutput": { + "amount": { + "lo": "89040052635445320" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } + } + }, + { + "swapClaim": { + "swapPlaintext": { + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "delta1I": { + "lo": "253893952148954195" + }, + "delta2I": {}, + "claimFee": { + "amount": {} + }, + "claimAddress": { + "inner": "2hO/fX6ykZ/2cWi8wGhkkN4zv7Dsf9thKtdXl5Wzjr3vAF2AjgGLgtaBpP8SaAXiBprnLA6VZs2KrfuA03vlq7gU9kV9hUIzzcHz0xldZPA=" + }, + "rseed": "oHQO/YMypAEfv6bGaAtC85QXEW+slwDFxNJAWnaOR9s=" }, - "timeoutHeight": { - "revisionNumber": "412249556", - "revisionHeight": "834100005" + "outputData": { + "delta1": { + "lo": "836776271" + }, + "delta2": { + "lo": "393609451" + }, + "lambda1": { + "lo": "1756" + }, + "lambda2": { + "lo": "1456" + }, + "unfilled1": { + "lo": "1047" + }, + "unfilled2": { + "lo": "715" + }, + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } }, - "sourceChannel": "channel-0" + "epochDuration": "1000", + "proofBlindingR": "2I1BTcbr/QuZ2nlCCEEiVS70QUdiwDVSAJbpveN7rgo=", + "proofBlindingS": "wDSYfAWz0U0ms6ibSECjxBDwavc3QeTAkdqlhuIsUgA=" + } + }, + { + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "595773733001945387" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } } } ], "transactionParameters": { - "expiryHeight": "1145458065", - "chainId": "ywhlvhz-2", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "269386633792776289" + "lo": "88915622139790324" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.proto index 7258dece90..47df88c6a0 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_29.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.json index f0d7883931..61407f0aa9 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.json @@ -1,55 +1,63 @@ { "actions": [ { - "positionClose": { - "positionId": { - "inner": "MxfYVdViQku0zvQK8xy1i3XOuLfoG/a2E7d2I5cJZL8=" + "proposalSubmit": { + "proposal": { + "title": "vqdbpeqdplvifwvttujdobmudb-1112237668827187935", + "description": "etswussy-89513061594666339655648", + "signaling": {} + }, + "depositAmount": { + "lo": "858569315349491647" } } }, { - "actionDutchAuctionWithdraw": { - "auctionId": { - "inner": "1UdBQ7NvuyTDgd7GBZ+XTBjKhJeLJwixq3I24n76DFo=" - }, - "seq": "755250957", - "reservesInput": { + "communityPoolOutput": { + "value": { "amount": { - "lo": "244631310223081423" + "lo": "892840631353099121" }, "assetId": { "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" } }, - "reservesOutput": { - "amount": { - "lo": "516329710970286444" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "address": { + "inner": "oVGKFQGLHJYSfgDXE7ixiq0NK9HV84e5q8DOV4O00u5Hi49jfzSGNOsimoITQl6X0vH579RmnveEqIwJ/xnCf6cmYXIosUDse1W+b9YeXOY=" } } }, { - "proposalSubmit": { - "proposal": { - "title": "mibvwkjciemkcrxgtvyvtxkfzfgoacpa-9", - "description": "hgfsyjxyh-5475912394187894970427750187231", - "signaling": {} + "actionDutchAuctionEnd": { + "auctionId": { + "inner": "IWEqxHoLNL64fvLzQ28cub39gdvpbvhd7BbsFRHv/Fw=" + } + } + }, + { + "undelegate": { + "validatorIdentity": { + "ik": "yGO3szpmn6aHajxFUzj6qfCUTz4TM9NfBVha+40c9MM=" }, - "depositAmount": { - "lo": "593187291875051726" + "unbondedAmount": { + "lo": "745012315494337894" + }, + "delegationAmount": { + "lo": "989283979943135496" + }, + "fromEpoch": { + "index": "515", + "startHeight": "515" } } } ], "transactionParameters": { - "expiryHeight": "5396625052", - "chainId": "yljcjoiuafnxvuq-7", + "expiryHeight": "768362", + "chainId": "mpgvvipjifphaclpdrbybvi-37248859417691795744429913", "fee": { "amount": { - "lo": "22479363999064335" + "lo": "680653085337406480" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.proto index 4f7bcdc5d1..381989a863 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_3.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.json index 572bda2a2b..35bb98998e 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.json @@ -1,42 +1,97 @@ { "actions": [ { - "positionClose": { - "positionId": { - "inner": "JNlZbQ6eTfCk3ZvKDIGVpJcMFrHy1FuD8jlgcVhntP8=" - } + "ics20Withdrawal": { + "amount": { + "lo": "77038831297711835" + }, + "denom": { + "denom": "SM" + }, + "destinationChainAddress": "penumbra1exjdy2huwwv6glmhhssyrm6msgupy7cmmnq4daw49xgr5tjvkcuqea4dadtelqefdh8knuawmttlnzacttg09vg8hylssfsgdsy3fy307lz3mym02g6g7k573hgvpvdhdam6dy", + "returnAddress": { + "inner": "S1EsY1bcrnqZojGYnvKyO9gOaxTAdBHvWciKa31MoZjAQ0LUeXEeudJHXKegTq6dfYR2s0eReQ07A1qjeNG4ttIu1fECcPY8Hv4X80EML7w=" + }, + "timeoutHeight": { + "revisionNumber": "935095982", + "revisionHeight": "727930996" + }, + "sourceChannel": "channel-0" } }, { - "validatorVote": { - "body": { - "proposal": "141432201", - "vote": { - "vote": "VOTE_YES" + "positionOpen": { + "position": { + "phi": { + "component": { + "p": { + "lo": "453235433647423928" + }, + "q": { + "lo": "16967896373652085" + } + }, + "pair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } }, - "identityKey": { - "ik": "7ZmADeMHe0sv6lyJSyvZGvR53Z84jbO5C7AOFhBcrfU=" + "nonce": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", + "state": { + "state": "POSITION_STATE_ENUM_OPENED" }, - "governanceKey": { - "gk": "BIHAvjVvjIX5qkvAeH8HhCKP8vn+N3k7R0OL5KI5eAs=" + "reserves": { + "r1": { + "lo": "830132173492325435" + }, + "r2": { + "lo": "492891517255754324" + } }, - "reason": { - "reason": "k" - } - }, - "authSig": { - "inner": "xOjjUPyioMyIcftsbsE4HJTYHYIAHT5Uy+rQkkTKaQrA2XvB2n2YIBEzJD5aeBQmfdqcoTXX1A28mAqvxdtSAA==" + "closeOnFill": true } } + }, + { + "ics20Withdrawal": { + "amount": { + "lo": "704419431400216096" + }, + "denom": { + "denom": "5IeCyC5ynABJyIwq" + }, + "destinationChainAddress": "penumbra1kqjaq2sq22vcrh54qygj6kh5ek4rlwdvacyxcagr4evu4arp8grx6sqdnam7u7cqprzlzcq8egv3claaa0r6mxfzmnacwlysxcdkjssy78fwtv9zqaf2cqgggscwv7dzcke867", + "returnAddress": { + "inner": "gkRQ2Hj2vE6xbXmQX+Jc7Ve1S+9yJedU9P18J6O6cYLF0BWGLgxjJxMpwKHUxHKgndpvOTnj/NZVyLM+MClDacvIVbDdGnMTa+BQxsQmET4=" + }, + "timeoutHeight": { + "revisionNumber": "154213209", + "revisionHeight": "748803269" + }, + "sourceChannel": "channel-0" + } } ], "transactionParameters": { - "expiryHeight": "4260242574", - "chainId": "lnpbgakxdstypxan-148472", + "expiryHeight": "18680", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "726144367654748884" + "lo": "269055943144518918" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "8O8o48DUx1tCQ5bE6KqbNOAr7JO+HoGOVuvtS9lF+btEK9FV26rvOBoqkLNEB0h9se2WlBazti9Cavl7KUmNWw+diBiub3JtjeTpDaEjQzM=" + }, + "text": "0I uAJ12 6Y58qWaF9 Uy dRbeI WPnj aPg8u 2HgG342kTj7n2HW8 SX2A S53j p mX2Pj2 4IXoKu 4PBb XL42E yeJD4Ii4oXfUC L B5 xQ AVSY1sUkVP8tE7bW0" + }, + "key": "at2yX6HJD74XIuwFqfk0EvGRbhOs/MxwPDX3s8BBeA8=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.proto index 486356f0ee..e593986041 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_30.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.json index e6c0a77cd4..1c26b90c57 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.json @@ -1,45 +1,47 @@ { "actions": [ { - "delegate": { - "validatorIdentity": { - "ik": "ueLG2LHLS2GZyPeo/UkATJkEuggas+KdnLmiAs1BWko=" - }, - "epochIndex": "7583", - "unbondedAmount": { - "lo": "15793144669807645" - }, - "delegationAmount": { - "lo": "334282447469022874" + "positionClose": { + "positionId": { + "inner": "CL3aOtPMvlVgXDreJXBJB9ztr7m/pYlDTtdc5UI4MvI=" } } }, { - "communityPoolDeposit": { - "value": { - "amount": { - "lo": "723749552762830993" + "delegatorVote": { + "proposal": "630928382", + "vote": { + "vote": "VOTE_ABSTAIN" + }, + "stakedNote": { + "value": { + "amount": { + "lo": "847651157324771973" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + "rseed": "N0eB3WEaTPSxWCTBX7zW6KDJp4BtYPNKFzQqtpBg6FQ=", + "address": { + "inner": "PU2T+6OEt+2b4zh9alNN348hw9kQFbb3qiuMhGj1ybmyTf7xn64HJUmkBhETwrULjOtsWTsp4TbVHN03ezjvSXY3cctI9TAKf6muW9gQGbs=" } - } - } - }, - { - "positionClose": { - "positionId": { - "inner": "D7uR3PXUhytuF/wIfwgsG7BOPRTb8bJPUJqE5d6zA18=" - } + }, + "unbondedAmount": { + "lo": "23014312230682228" + }, + "randomizer": "jun/FRfYJrKDMT4rxAAbRmP5zCXF3C2gW3zrHOE7rwA=", + "proofBlindingR": "vshTGOrTxHi9OxQ83uXvPZpTVrZlosEnnfsdl8fyZAU=", + "proofBlindingS": "bQ+gjtOBRv/SJYiZPb6a8BQivTAIWIA20WpCJC+0oQw=" } } ], "transactionParameters": { - "expiryHeight": "1442141052", - "chainId": "wptbrepftqnteycltrh-5668754710518", + "expiryHeight": "641326", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "593192677678758686" + "lo": "644153882513138783" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.proto index aba700e5e3..4f7c88e3c0 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_31.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.json index 15afc832ba..fd35c64703 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.json @@ -1,52 +1,68 @@ { "actions": [ { - "communityPoolSpend": { - "value": { - "amount": { - "lo": "830032257325867060" + "swap": { + "swapPlaintext": { + "tradingPair": { + "asset1": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + }, + "asset2": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - } + "delta1I": { + "lo": "685444856727367004" + }, + "delta2I": {}, + "claimFee": { + "amount": {} + }, + "claimAddress": { + "inner": "qjlsYoS508/idOqBP8bh1xqLzS1Ax0tAy0feK6l3MPzK10cSl4+SKgfw5LifOCtFfdSNpAR1IR1SSF2jDu8qozGY10dJh7k0e+njFZ7Xuxo=" + }, + "rseed": "LTT90b6hBliuVyoxVowO2+iOi732XErC5XMxiQCy7kc=" + }, + "feeBlinding": "t9LYB/4VsvOWMs7lbvkSGkS+4sTgYvaP04hO+8TkDQQ=", + "proofBlindingR": "AhNVM9YUI+MqoxraFhGvup9gATyuynOeRL9xJQ882Ac=", + "proofBlindingS": "KlvYC5C6QWAV3TCR4GewHloFQmuVy5C7rqDRAIBI0Qc=" } }, { - "communityPoolOutput": { - "value": { - "amount": { - "lo": "765295340711300336" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } - }, - "address": { - "inner": "q6OGR0MtzNDQt/oJ/Menvk9vDLF+ghUOuNgyRxBuLuTW6nbWjmqSjA4iJtJzxleDIROi11QzHC1WEdXh8tUAzCtKFg08BtYS0KpDoVRKZoM=" + "ibcRelayAction": { + "rawAction": { + "typeUrl": "/ibc.core.channel.v1.MsgRecvPacket", + "value": "CrMBCI7F9RgSC2RlZmF1bHRQb3J0GgljaGFubmVsLTAiC2RlZmF1bHRQb3J0KgljaGFubmVsLTAyZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6DAjY69L0AhCQprzuAUC4tPmtkeWEhxgSAgoAGgwI2OvS9AIQkKa87gEijwFwZW51bWJyYTE2YWxyNXhqdHBkeW55ejY4MnU2emZ1eGtjeGRsOW50cG03ZjAyOGd2dm1sbTdzdzdwbndyOXY0eHBtdzBmbWhkazU2ZTVuYTdlNTJlbXAyajJnbHJwODU3cnR0ZnF1dmxqN3Z4ZjN5OWc1NjQwNHplZDYzdjB0MDZoc2ZtM3lkeGQ1OTRwbQ==" } } }, { - "communityPoolSpend": { - "value": { - "amount": { - "lo": "348142522858618524" - }, - "assetId": { - "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" - } + "proposalDepositClaim": { + "proposal": "626136351", + "depositAmount": { + "lo": "512173603262793206" + }, + "outcome": { + "passed": {} } } } ], "transactionParameters": { - "expiryHeight": "8774516062", - "chainId": "rtmoomqavqvk-603221567641366559425121", + "chainId": "penumbra-1", "fee": { "amount": { - "lo": "699952821662761401" + "lo": "471722490204595273" } } + }, + "memo": { + "plaintext": { + "returnAddress": { + "inner": "VEAJbot0/JQjMD0VdaEndYj8oadGngJkP6o5m2RfBC5FP1jgZB7HIlJyswfSoKRTNJVtq9WsYyarrR26YntYgNiqKRwv69T7PKFTIsT4ePU=" + }, + "text": " s 3wJ ARhoun9aZ BLgf6fiZn o PP S 8uwY9ymcUz vT2rmofLhhG9 us0YDf z5exCpi" + }, + "key": "V85mevGdPWMosNGDdYGR8XUefFprZ43zHJvZ3N+7wlA=" } } \ No newline at end of file diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.proto index 08fbd80986..0762bfecc5 100644 Binary files a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.proto and b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_32.proto differ diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.json b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.json index 757ed8383d..9c46e48c86 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.json +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.json @@ -1,22 +1,42 @@ { "actions": [ { - "proposalWithdraw": { - "proposal": "326690332" + "output": { + "value": { + "amount": { + "lo": "339375808736046686" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + }, + "destAddress": { + "inner": "PeynbkB3t8jbPr4sIS62/iS681TZTyOuplB/3iENonJwEm4J/VCP+j/4VF7bOX9uILbMMLT6Bm/pHD1/12GhwjMslguaC+mOXWrwOr1BC+Y=" + }, + "rseed": "hh7rYv1xEfivn8M+QeTfYQeCiFw5dSPegVyD/lyHOuk=", + "valueBlinding": "PGZsdYeYc3XdLLi3vp5NlYWMpsdKCOe8bm4BP+/vLAI=", + "proofBlindingR": "FfTf2JvE357w/iSrmPM4i85T0Wq1k2QMp08NUNgkCAg=", + "proofBlindingS": "C0L34DFX3pLe9FcVYNISNKrQYvq9fWo9Vt0TS764hQY=" } }, { - "proposalWithdraw": { - "proposal": "32683854" + "communityPoolDeposit": { + "value": { + "amount": { + "lo": "316363875486185869" + }, + "assetId": { + "inner": "KeqcLzNx9qSH5+lcJHBB9KNW+YPrBk5dKzvPMiypahA=" + } + } } } ], "transactionParameters": { - "expiryHeight": "379781162", - "chainId": "vmp-730888803729620", + "chainId": "ekkqxliwoiyedhvvacssmldfswex-8798", "fee": { "amount": { - "lo": "509390978610964123" + "lo": "643850007120936503" } } } diff --git a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.proto b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.proto index c0ed91d76f..5aca3dc823 100644 --- a/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.proto +++ b/crates/core/transaction/tests/signing_test_vectors/transaction_plan_33.proto @@ -1,5 +1,14 @@ -  -)vmp-730888803729620 + +0 -͔֌ \ No newline at end of file +" + )/3q\$pAVN]+;2,jR +P=n@w>,!.$TO#P! rpn P?T^9n 0o=a3, ]j:A  bq>Aa\9u#ށ\\:"