diff --git a/stellar/wraith-names/src/lib.rs b/stellar/wraith-names/src/lib.rs index 4689f04..8dced76 100644 --- a/stellar/wraith-names/src/lib.rs +++ b/stellar/wraith-names/src/lib.rs @@ -1,5 +1,7 @@ #![no_std] +extern crate alloc; + use core::convert::TryInto; use soroban_sdk::xdr::{AccountId, PublicKey, ScAddress}; @@ -12,8 +14,10 @@ mod multisig; pub use multisig::RotationProposal; pub const WRAITH_NAMES_DOMAIN: &[u8] = b"wraith-names:v1"; - -const DELAY_WINDOW: u32 = 100_000; +const MIN_LABEL_LEN: usize = 3; +const MAX_NAME_LEN: usize = 32; +const MAX_SUBDOMAIN_DEPTH: usize = 1; +const BULK_LIMIT: u32 = 20; /// Storage keys. #[contracttype] @@ -109,12 +113,12 @@ pub enum NamesError { QuorumNotMet = 27, /// The rotation timelock has not elapsed yet. TimelockNotElapsed = 28, + NameTooDeep = 29, + BulkLimitExceeded = 30, } const TTL_THRESHOLD: u32 = 17280; // ~1 day const TTL_EXTEND_TO: u32 = 518400; // ~30 days -const MIN_LABEL_LEN: usize = 3; -const MAX_NAME_LEN: usize = 32; #[contract] pub struct WraithNamesContract; @@ -226,6 +230,116 @@ impl WraithNamesContract { Ok(()) } + /// Register multiple names in a single atomic transaction. + /// + /// All names must be valid and not already taken. If any name fails, + /// the entire operation reverts. + pub fn bulk_register( + env: Env, + owner: Address, + names: Vec, + meta_addresses: Vec, + ) -> Result<(), NamesError> { + owner.require_auth(); + + let count = names.len(); + if count > BULK_LIMIT { + return Err(NamesError::BulkLimitExceeded); + } + if meta_addresses.len() != count { + return Err(NamesError::InvalidMetaAddress); + } + + for i in 0..count { + let name = names.get(i).unwrap(); + let meta = meta_addresses.get(i).unwrap(); + // Validate upfront so we fail early + Self::validate_name(&env, &name)?; + if meta.len() != 64 { + return Err(NamesError::InvalidMetaAddress); + } + let name_hash = Self::hash_name(&env, &name); + if env.storage().persistent().has(&DataKey::Name(name_hash)) { + return Err(NamesError::NameTaken); + } + } + + let mut registered: Vec> = Vec::new(&env); + for i in 0..count { + let name = names.get(i).unwrap(); + let meta = meta_addresses.get(i).unwrap(); + Self::register_internal(&env, owner.clone(), name.clone(), meta)?; + let name_hash = Self::hash_name(&env, &name); + registered.push_back(name_hash); + } + + env.events().publish( + (symbol_short!("bulk_reg"), owner.clone()), + registered, + ); + + Ok(()) + } + + /// Renew (extend TTL for) multiple names in a single atomic transaction. + /// + /// All names must exist. If any name is not found, the entire operation + /// reverts. + pub fn bulk_renew( + env: Env, + names: Vec, + extend_to_ledger: u32, + ) -> Result<(), NamesError> { + let count = names.len(); + if count > BULK_LIMIT { + return Err(NamesError::BulkLimitExceeded); + } + + let current_ledger = env.ledger().sequence(); + if extend_to_ledger <= current_ledger { + return Err(NamesError::InvalidExtendLedger); + } + + for i in 0..count { + let name = names.get(i).unwrap(); + let name_hash = Self::hash_name(&env, &name); + let name_key = DataKey::Name(name_hash.clone()); + if !env.storage().persistent().has(&name_key) { + return Err(NamesError::NameNotFound); + } + } + + for i in 0..count { + let name = names.get(i).unwrap(); + let name_hash = Self::hash_name(&env, &name); + let name_key = DataKey::Name(name_hash.clone()); + + let entry: NameEntry = env.storage().persistent().get(&name_key).unwrap(); + let meta_hash = BytesN::from_array(&env, &env.crypto().sha256(&entry.stealth_meta_address).to_array()); + let reverse_key = DataKey::Reverse(meta_hash); + + env.storage().persistent().extend_ttl(&name_key, current_ledger, extend_to_ledger); + env.storage().persistent().extend_ttl(&reverse_key, current_ledger, extend_to_ledger); + + env.events().publish( + (symbol_short!("extend"), name_hash), + extend_to_ledger, + ); + } + + let mut name_hashes: Vec> = Vec::new(&env); + for ni in 0..count { + let n = names.get(ni).unwrap(); + name_hashes.push_back(Self::hash_name(&env, &n)); + } + env.events().publish( + (symbol_short!("blk_renew"),), + (name_hashes, extend_to_ledger), + ); + + Ok(()) + } + fn owner_public_key(env: &Env, owner: &Address) -> Result, NamesError> { let sc_address: ScAddress = owner.try_into().map_err(|_| NamesError::InvalidSigner)?; @@ -252,6 +366,37 @@ impl WraithNamesContract { return Err(NamesError::InvalidMetaAddress); } + // Parse subdomain + let len = name.len() as usize; + let mut name_buf = [0u8; MAX_NAME_LEN]; + name.copy_into_slice(&mut name_buf[..len]); + + let mut dot_count: u32 = 0; + let mut last_dot: usize = 0; + for i in 0..len { + if name_buf[i] == b'.' { + dot_count += 1; + last_dot = i; + } + } + + if dot_count > MAX_SUBDOMAIN_DEPTH as u32 { + return Err(NamesError::NameTooDeep); + } + + let parent_hash = if dot_count > 0 { + let mut parent_buf = [0u8; MAX_NAME_LEN]; + let parent_len = len - last_dot - 1; + for i in 0..parent_len { + parent_buf[i] = name_buf[last_dot + 1 + i]; + } + let parent_str = String::from_str(env, core::str::from_utf8(&parent_buf[..parent_len]).unwrap()); + let ph = Self::hash_name(env, &parent_str); + Some(ph) + } else { + None + }; + let name_hash = Self::hash_name(env, &name); let name_key = DataKey::Name(name_hash.clone()); @@ -260,15 +405,24 @@ impl WraithNamesContract { return Err(NamesError::NameTaken); } - // Subdomain registration is not yet wired to any public entrypoint; - // all names registered via `register` / `register_on_behalf` are - // top-level (parent = None). See NamesError::ParentNotFound for the - // planned subdomain flow. + // Subdomains require an existing parent and that `owner` is the parent + // owner. + if let Some(ref ph) = parent_hash { + let parent: NameEntry = env + .storage() + .persistent() + .get(&DataKey::Name(ph.clone())) + .ok_or(NamesError::ParentNotFound)?; + if parent.owner != owner { + return Err(NamesError::NotOwner); + } + } + let entry = NameEntry { name: name.clone(), stealth_meta_address: stealth_meta_address.clone(), owner, - parent: None, + parent: parent_hash.clone(), }; env.storage().persistent().set(&name_key, &entry); @@ -371,6 +525,21 @@ impl WraithNamesContract { Ok(()) } + fn require_manager(env: &Env, caller: &Address, entry: &NameEntry) -> Result<(), NamesError> { + if entry.owner == *caller { + return Ok(()); + } + // Check if caller is the parent owner + if let Some(ref ph) = entry.parent { + if let Some(parent_entry) = env.storage().persistent().get::<_, NameEntry>(&DataKey::Name(ph.clone())) { + if parent_entry.owner == *caller { + return Ok(()); + } + } + } + Err(NamesError::NotOwner) + } + fn verify_on_behalf_authorization( env: &Env, owner: &Address, @@ -418,7 +587,7 @@ impl WraithNamesContract { .persistent() .get(&name_key) .ok_or(NamesError::NameNotFound)?; - + Self::extend_ttls(&env, &name_key, None); Ok(entry.stealth_meta_address) @@ -440,7 +609,7 @@ impl WraithNamesContract { .persistent() .get(&name_key) .ok_or(NamesError::NameNotFound)?; - + Self::extend_ttls(&env, &name_key, Some(&reverse_key)); Ok(entry.name) @@ -479,15 +648,9 @@ impl WraithNamesContract { let reverse_key = DataKey::Reverse(meta_hash); // Extend TTLs to the specified ledger - env.storage() - .persistent() - .extend_ttl(&name_key, current_ledger, extend_to_ledger); - env.storage() - .persistent() - .extend_ttl(&reverse_key, current_ledger, extend_to_ledger); - env.storage() - .instance() - .extend_ttl(current_ledger, extend_to_ledger); + env.storage().persistent().extend_ttl(&name_key, current_ledger, extend_to_ledger); + env.storage().persistent().extend_ttl(&reverse_key, current_ledger, extend_to_ledger); + env.storage().instance().extend_ttl(current_ledger, extend_to_ledger); // Emit extend event for observability env.events() @@ -519,17 +682,6 @@ impl WraithNamesContract { BytesN::from_array(env, &env.crypto().sha256(&name_bytes).to_array()) } - /// Authorisation check for management operations (update / release / etc). - /// Currently owner-only; guardian-recovery flow is defined in NamesError - /// (`NotGuardian`, `NoProposal`, ...) but not yet wired in. - fn require_manager(_env: &Env, caller: &Address, entry: &NameEntry) -> Result<(), NamesError> { - if caller == &entry.owner { - Ok(()) - } else { - Err(NamesError::NotOwner) - } - } - fn authorization_message( env: &Env, operation: &[u8], @@ -539,10 +691,15 @@ impl WraithNamesContract { ) -> Bytes { let mut message = Bytes::from_slice(env, WRAITH_NAMES_DOMAIN); message.extend_from_slice(operation); - let name_len = name.len() as usize; - let mut name_buf = [0u8; 32]; - name.copy_into_slice(&mut name_buf[..name_len]); - let name_bytes = Bytes::from_slice(env, &name_buf[..name_len]); + let len = name.len() as usize; + let mut name_buf = [0u8; 64]; + if len > 64 { + name.copy_into_slice(&mut name_buf); + } else { + name.copy_into_slice(&mut name_buf[..len]); + } + let actual_len = core::cmp::min(len, 64); + let name_bytes = Bytes::from_slice(env, &name_buf[..actual_len]); message.append(&name_bytes); message.append(stealth_meta_address); message.extend_from_slice(&expiry.to_be_bytes()); @@ -552,6 +709,8 @@ impl WraithNamesContract { /// Validate name: 3-32 chars, lowercase alphanumeric only. fn validate_name(_env: &Env, name: &String) -> Result<(), NamesError> { let len = name.len() as usize; + + // The full name (including possible subdomain prefix) must be within limits if len < MIN_LABEL_LEN { return Err(NamesError::NameTooShort); } @@ -559,15 +718,19 @@ impl WraithNamesContract { return Err(NamesError::NameTooLong); } - let mut buf = [0u8; MAX_NAME_LEN]; - name.copy_into_slice(&mut buf[..len]); + let mut name_buf = [0u8; MAX_NAME_LEN]; + name.copy_into_slice(&mut name_buf[..len]); for i in 0..len { - let c = buf[i]; + let c = name_buf[i]; + if c == b'.' { + continue; + } if !(c >= b'a' && c <= b'z') && !(c >= b'0' && c <= b'9') { return Err(NamesError::InvalidNameCharacter); } } + Ok(()) } @@ -628,6 +791,7 @@ impl WraithNamesContract { #[cfg(test)] mod test { use super::*; + use alloc::format; use ed25519_dalek::SigningKey; use proptest::prelude::*; use soroban_sdk::testutils::Address as _; @@ -669,8 +833,6 @@ mod test { #[test] fn test_register_and_resolve() { - use soroban_sdk::testutils::{Address as _, Ledger}; - let env = Env::default(); env.mock_all_auths(); @@ -1034,149 +1196,187 @@ mod test { let owner = Address::generate(&env); let meta = Bytes::from_slice(&env, &[1u8; 64]); - // Dotted names are rejected (subdomain nesting is not yet supported). + // Dotted names nested more than one level deep are rejected. let result = client.try_register(&owner, &String::from_str(&env, "a.b.alice"), &meta); - assert_eq!(result, Err(Ok(NamesError::InvalidNameCharacter))); + assert_eq!(result, Err(Ok(NamesError::NameTooDeep))); } - fn setup_multisig(env: &Env) -> (WraithNamesContractClient, Vec
) { + #[test] + fn test_bulk_register_happy_path() { + let env = Env::default(); + env.mock_all_auths(); + let contract_id = env.register(WraithNamesContract, ()); - let client = WraithNamesContractClient::new(env, &contract_id); + let client = WraithNamesContractClient::new(&env, &contract_id); - let signers = soroban_sdk::vec![ - env, - Address::generate(env), - Address::generate(env), - Address::generate(env), - Address::generate(env), - Address::generate(env), + let owner = Address::generate(&env); + let names = soroban_sdk::vec![ + &env, + String::from_str(&env, "app"), + String::from_str(&env, "docs"), + String::from_str(&env, "pay"), + ]; + let metas = soroban_sdk::vec![ + &env, + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + Bytes::from_slice(&env, &[3u8; 64]), ]; - client.init_multisig(&signers, &3); - (client, signers) + client.bulk_register(&owner, &names, &metas); + + assert_eq!(client.resolve(&String::from_str(&env, "app")), Bytes::from_slice(&env, &[1u8; 64])); + assert_eq!(client.resolve(&String::from_str(&env, "docs")), Bytes::from_slice(&env, &[2u8; 64])); + assert_eq!(client.resolve(&String::from_str(&env, "pay")), Bytes::from_slice(&env, &[3u8; 64])); } #[test] - fn test_init_multisig_rejects_invalid_threshold() { + fn test_bulk_register_atomic_revert_on_taken() { let env = Env::default(); env.mock_all_auths(); let contract_id = env.register(WraithNamesContract, ()); let client = WraithNamesContractClient::new(&env, &contract_id); - let signers = soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; + let owner = Address::generate(&env); + // Pre-register "taken" + client.register(&owner, &String::from_str(&env, "taken"), &Bytes::from_slice(&env, &[1u8; 64])); - let res = client.try_init_multisig(&signers, &0); - assert_eq!(res, Err(Ok(NamesError::InvalidThreshold))); + let names = soroban_sdk::vec![ + &env, + String::from_str(&env, "free1"), + String::from_str(&env, "taken"), + String::from_str(&env, "free2"), + ]; + let metas = soroban_sdk::vec![ + &env, + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + Bytes::from_slice(&env, &[3u8; 64]), + ]; + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::NameTaken))); - let res = client.try_init_multisig(&signers, &3); - assert_eq!(res, Err(Ok(NamesError::InvalidThreshold))); + // Verify none of the names were registered + assert_eq!( + client.try_resolve(&String::from_str(&env, "free1")), + Err(Ok(NamesError::NameNotFound)) + ); + assert_eq!( + client.try_resolve(&String::from_str(&env, "free2")), + Err(Ok(NamesError::NameNotFound)) + ); } #[test] - fn test_propose_rotate_signers_rejects_invalid_threshold() { + fn test_bulk_register_exceeds_limit() { let env = Env::default(); env.mock_all_auths(); - let (client, signers) = setup_multisig(&env); - let new_signers = soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; - - let res = client.try_propose_rotate_signers(&signers.get(0).unwrap(), &new_signers, &0); - assert_eq!(res, Err(Ok(NamesError::InvalidThreshold))); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - let res = client.try_propose_rotate_signers(&signers.get(0).unwrap(), &new_signers, &3); - assert_eq!(res, Err(Ok(NamesError::InvalidThreshold))); + let owner = Address::generate(&env); + let mut names_vec = soroban_sdk::Vec::new(&env); + let mut metas_vec = soroban_sdk::Vec::new(&env); + for i in 0..21 { + let name_str = format!("name{}", i); + names_vec.push_back(String::from_str(&env, &name_str)); + metas_vec.push_back(Bytes::from_slice(&env, &[i as u8; 64])); + } - assert!(client.pending_rotation().is_none()); + let result = client.try_bulk_register(&owner, &names_vec, &metas_vec); + assert_eq!(result, Err(Ok(NamesError::BulkLimitExceeded))); } #[test] - fn test_rotate_signers_requires_quorum_and_timelock() { - use soroban_sdk::testutils::Ledger; - + fn test_bulk_renew_happy_path() { let env = Env::default(); env.mock_all_auths(); - let (client, signers) = setup_multisig(&env); - - let new_signers = soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; - client.propose_rotate_signers(&signers.get(0).unwrap(), &new_signers, &2); - - // Only one rotation may be pending at a time. - let res = client.try_propose_rotate_signers(&signers.get(1).unwrap(), &new_signers, &2); - assert_eq!(res, Err(Ok(NamesError::RotationAlreadyPending))); - - // Only 1 of 3 required approvals so far (the proposer's). - let res = client.try_execute_rotate_signers(&signers.get(0).unwrap()); - assert_eq!(res, Err(Ok(NamesError::QuorumNotMet))); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - client.approve_rotate_signers(&signers.get(1).unwrap()); - client.approve_rotate_signers(&signers.get(2).unwrap()); + let owner = Address::generate(&env); + let name1 = String::from_str(&env, "alpha"); + let name2 = String::from_str(&env, "beta"); + client.register(&owner, &name1, &Bytes::from_slice(&env, &[1u8; 64])); + client.register(&owner, &name2, &Bytes::from_slice(&env, &[2u8; 64])); + + let names = soroban_sdk::vec![&env, name1.clone(), name2.clone()]; + let extend_to = env.ledger().sequence() + 10000; + let result = client.try_bulk_renew(&names, &extend_to); + assert_eq!(result, Ok(Ok(()))); + } - // Quorum met, but the timelock has not elapsed yet. - let res = client.try_execute_rotate_signers(&signers.get(0).unwrap()); - assert_eq!(res, Err(Ok(NamesError::TimelockNotElapsed))); + #[test] + fn test_bulk_renew_atomic_revert_on_missing() { + let env = Env::default(); + env.mock_all_auths(); - env.ledger().with_mut(|li| { - li.timestamp += multisig::ROTATION_TIMELOCK_SECS; - }); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - client.execute_rotate_signers(&signers.get(0).unwrap()); + let owner = Address::generate(&env); + client.register(&owner, &String::from_str(&env, "exists"), &Bytes::from_slice(&env, &[1u8; 64])); - assert_eq!(client.signers(), new_signers); - assert_eq!(client.threshold(), 2); - assert!(client.pending_rotation().is_none()); + let names = soroban_sdk::vec![ + &env, + String::from_str(&env, "exists"), + String::from_str(&env, "ghost"), + ]; + let extend_to = env.ledger().sequence() + 10000; + let result = client.try_bulk_renew(&names, &extend_to); + assert_eq!(result, Err(Ok(NamesError::NameNotFound))); } #[test] - fn test_cancelled_rotation_clears_state() { + fn test_bulk_renew_exceeds_limit() { let env = Env::default(); env.mock_all_auths(); - let (client, signers) = setup_multisig(&env); - - let new_signers = soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; - client.propose_rotate_signers(&signers.get(0).unwrap(), &new_signers, &2); - client.approve_rotate_signers(&signers.get(1).unwrap()); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - client.cancel_rotate_signers(&signers.get(2).unwrap()); + let mut names_vec = soroban_sdk::Vec::new(&env); + for i in 0..21 { + names_vec.push_back(String::from_str(&env, &format!("name{}", i))); + } + let extend_to = env.ledger().sequence() + 10000; + let result = client.try_bulk_renew(&names_vec, &extend_to); + assert_eq!(result, Err(Ok(NamesError::BulkLimitExceeded))); + } - // Cancelling clears the proposal entirely. - assert!(client.pending_rotation().is_none()); + #[test] + fn test_bulk_register_invalid_meta_length() { + let env = Env::default(); + env.mock_all_auths(); - // The original signer set / threshold are untouched by the aborted rotation. - assert_eq!(client.signers(), signers); - assert_eq!(client.threshold(), 3); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - // A stale approve/execute/cancel against the cleared proposal fails cleanly. - let res = client.try_approve_rotate_signers(&signers.get(3).unwrap()); - assert_eq!(res, Err(Ok(NamesError::NoPendingRotation))); - let res = client.try_execute_rotate_signers(&signers.get(0).unwrap()); - assert_eq!(res, Err(Ok(NamesError::NoPendingRotation))); - let res = client.try_cancel_rotate_signers(&signers.get(0).unwrap()); - assert_eq!(res, Err(Ok(NamesError::NoPendingRotation))); + let owner = Address::generate(&env); + let names = soroban_sdk::vec![&env, String::from_str(&env, "test")]; + let metas = soroban_sdk::vec![&env, Bytes::from_slice(&env, &[1u8; 63])]; - // A fresh proposal can be made immediately — no leftover state blocks it. - let other_signers = - soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; - client.propose_rotate_signers(&signers.get(0).unwrap(), &other_signers, &2); - assert!(client.pending_rotation().is_some()); + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::InvalidMetaAddress))); } #[test] - fn test_non_signer_cannot_propose_or_approve() { + fn test_bulk_register_mismatched_lengths() { let env = Env::default(); env.mock_all_auths(); - let (client, signers) = setup_multisig(&env); - let outsider = Address::generate(&env); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); - let new_signers = soroban_sdk::vec![&env, Address::generate(&env), Address::generate(&env)]; - let res = client.try_propose_rotate_signers(&outsider, &new_signers, &2); - assert_eq!(res, Err(Ok(NamesError::NotSigner))); + let owner = Address::generate(&env); + let names = soroban_sdk::vec![&env, String::from_str(&env, "a"), String::from_str(&env, "b")]; + let metas = soroban_sdk::vec![&env, Bytes::from_slice(&env, &[1u8; 64])]; - client.propose_rotate_signers(&signers.get(0).unwrap(), &new_signers, &2); - let res = client.try_approve_rotate_signers(&outsider); - assert_eq!(res, Err(Ok(NamesError::NotSigner))); + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::InvalidMetaAddress))); } } diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.1.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.1.json index 9351931..518644f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.1.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.1.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1c85c6411185d6fd79e3992e0b0129ac0a7d1ba2a60a5a6e420b1848753bc236" + "bytes": "18629437b58d6262f0edd93bf57387481dcef8840e2cbb7d3bab207689bef8a4" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1c85c6411185d6fd79e3992e0b0129ac0a7d1ba2a60a5a6e420b1848753bc236" + "bytes": "18629437b58d6262f0edd93bf57387481dcef8840e2cbb7d3bab207689bef8a4" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "ggi691chvm8v0zjue" + "string": "12fpwsf" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAOCXJGP5MAJS5TAQPRALJKCCDNEBSGN3KG3VGS7NEFVNTPPB4BEO32K" + "address": "GBBQWXUQHA3SY7VTOYMJO62RVUEHCTWD4OQL32KINP36UHYY3CZFXBVY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a77159687e120f91742dd36077b81355d0156e89c9214b82e4c53baa5ce6c6e3789abc6c8329fbe232f8acef3dca728001c9c34d8502e9ffa6d03522e8169931" + "bytes": "5a613233caa4d9d72670c3a8faba921c61f1ef1f85e14fe6d6d440e9c4f7e92e3c203336ae38c6498b223d10f62ac89a035fdf9915385c7ecf7eaf660b4081bf" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "eb45d8ed8659d01fde2661338677f62b37fdd0e69a82492181eef65ac9999d89" + "bytes": "c705a1a1cbb09294eadc04ec693615c411fb937948a3f1fd2b133c472b18f4bd" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "eb45d8ed8659d01fde2661338677f62b37fdd0e69a82492181eef65ac9999d89" + "bytes": "c705a1a1cbb09294eadc04ec693615c411fb937948a3f1fd2b133c472b18f4bd" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "16a745cd166fae6f4ca9fa8d5cd28694c0ec93bad30d8fddffac436709ad76d5" + "bytes": "75c57f89fcc2ab1098e7ff9858e4d17014b6a598f09eeda01e71cf71db03248c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "16a745cd166fae6f4ca9fa8d5cd28694c0ec93bad30d8fddffac436709ad76d5" + "bytes": "75c57f89fcc2ab1098e7ff9858e4d17014b6a598f09eeda01e71cf71db03248c" } ] }, "durability": "persistent", "val": { - "bytes": "1c85c6411185d6fd79e3992e0b0129ac0a7d1ba2a60a5a6e420b1848753bc236" + "bytes": "18629437b58d6262f0edd93bf57387481dcef8840e2cbb7d3bab207689bef8a4" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.10.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.10.json index b97d83f..27901ea 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.10.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.10.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fb24b73d6677513018a8486841c73256d5e2e579a1d4c423164bcedf74c24c96" + "bytes": "9f8707bd5fa7f4fdf61b662fdc15b2bcc3f7779cbc1e7e5e82926c4eb9468ec7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fb24b73d6677513018a8486841c73256d5e2e579a1d4c423164bcedf74c24c96" + "bytes": "9f8707bd5fa7f4fdf61b662fdc15b2bcc3f7779cbc1e7e5e82926c4eb9468ec7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "03y6d0n7p11c46308w302ce63d" + "string": "22lke" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD23ONXIZH3T65ST6QGTVVSPV3UOZ4XUM2OZKXR56SB3R3T7UU4BIHBI" + "address": "GCJM3Z2R5XIZMPTAQHUQU5B7OAFVRYGQJ2XNI2C5LXDX5JHJ7UQIGSFY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "988edbd1cdb46ff053d5e19507407fa945412c66c2d23c8ba6849364dbc61423ce99c35f3c50574a7a807800a19cdf0f38a439019fbc16aa6aaa59f84dd4763e" + "bytes": "23b71b6192f2b02b65b6365e0c1889d10f8a5d543e7f35ffa7a4736a99d06e5daf675c57670aa3f7093c8fcd8acbb3c56b3f0ca7f4249af2ae7c9355bed6e0ca" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b6bfd960da18a9c4de72d8573ff25344d85adc389b5a8d1cc73e73144b46b97e" + "bytes": "c6b77bc0d106d26f76417c3bcc26ee3f18a9c38cb2165f72871d64519736af47" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b6bfd960da18a9c4de72d8573ff25344d85adc389b5a8d1cc73e73144b46b97e" + "bytes": "c6b77bc0d106d26f76417c3bcc26ee3f18a9c38cb2165f72871d64519736af47" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b5906f00ad09c1dc1397f7e684e6b74eccac7e42a3d9ee442277d336a21afa9d" + "bytes": "57bb5c12f41869678c4ca349a0fc54cbc3517f489fca852ca64b95018875fb5b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b5906f00ad09c1dc1397f7e684e6b74eccac7e42a3d9ee442277d336a21afa9d" + "bytes": "57bb5c12f41869678c4ca349a0fc54cbc3517f489fca852ca64b95018875fb5b" } ] }, "durability": "persistent", "val": { - "bytes": "fb24b73d6677513018a8486841c73256d5e2e579a1d4c423164bcedf74c24c96" + "bytes": "9f8707bd5fa7f4fdf61b662fdc15b2bcc3f7779cbc1e7e5e82926c4eb9468ec7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.100.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.100.json index 430d8ab..7a470b6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.100.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.100.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1ce4965b3c154cf8708b051200ddef6e9811534307d0fc113a7e6a6cecfc0ccd" + "bytes": "0efe29368042c72ef24381813152e99f0404aa8a500152c072ca8e9770eadc67" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1ce4965b3c154cf8708b051200ddef6e9811534307d0fc113a7e6a6cecfc0ccd" + "bytes": "0efe29368042c72ef24381813152e99f0404aa8a500152c072ca8e9770eadc67" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "wpeg794s9u8hmi6463o20ka6z35434" + "string": "w591n5y17yh9707a0g6lh5u961c43u" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA2QWR3NMDDDEM4C55V5RVAPWTTDWKZXPBNRT2I7CFCIWGU4MH3XSKNW" + "address": "GBXVEPZAH5LFSJ35INBBY637CKTQV364I24YTMVQYTTS3MDM3AX7EQUZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c219b1f7601f845fad57fd2771d68f2f038ec43cb0b9887e5952930054eb46c75e1d5c7083658baff2ae2fa3c4fdb0190b5c32e6ae2959ada391cae192695b0f" + "bytes": "2e298f995143306f48a4dc8a5195fa87b45f54e8e2e8abe2a9808024211d19b8853c6bd3178298c8e77ba873e7131c9fca22533b73385bb1b4573e2a7b557cce" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "302de8bc29db7a9a3d453ebfe4e1470a2c43b08a813001f0b123747d581477d9" + "bytes": "a278c28953a2e64637f135ad2a0a933263c1972eb655d9dfb93b2d28722978f6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "302de8bc29db7a9a3d453ebfe4e1470a2c43b08a813001f0b123747d581477d9" + "bytes": "a278c28953a2e64637f135ad2a0a933263c1972eb655d9dfb93b2d28722978f6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9b498805724d91ab01d3915878c40cb5ef6de834fa3f541c1631731f98466f57" + "bytes": "e5509cc3930f1126e27688166bfb4cbc949e4c09a341e25e2adaccb7f6664f13" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9b498805724d91ab01d3915878c40cb5ef6de834fa3f541c1631731f98466f57" + "bytes": "e5509cc3930f1126e27688166bfb4cbc949e4c09a341e25e2adaccb7f6664f13" } ] }, "durability": "persistent", "val": { - "bytes": "1ce4965b3c154cf8708b051200ddef6e9811534307d0fc113a7e6a6cecfc0ccd" + "bytes": "0efe29368042c72ef24381813152e99f0404aa8a500152c072ca8e9770eadc67" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.101.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.101.json index c66a2fe..c6bc688 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.101.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.101.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f8926b95297d0bf5cc8ea7b1b3d019fdc34b68750d0cdc2a3b73c3d1eb03e9a9" + "bytes": "7b36b167a0462336681252ffd547fd6ce11ba0d566dc32a8fc9f5a7a46cddd1e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f8926b95297d0bf5cc8ea7b1b3d019fdc34b68750d0cdc2a3b73c3d1eb03e9a9" + "bytes": "7b36b167a0462336681252ffd547fd6ce11ba0d566dc32a8fc9f5a7a46cddd1e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6bl98ay8qt8m09" + "string": "sz50f96140276a7xj329685nyw7fc3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBXLY43CY2HYC4TYOWTGCDYL75JE4BK36K3AG7NFBCYXFPD5NSQJDJN2" + "address": "GAQYISONDAH7LSYVLGLEZCDE4DOPYPTUMYTVTKOTI3GCHYCHLZRVMZ6W" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "336a6ec0d179d4bf4bed9883fdd26c138fe4f4980959cfa05af9d74e83894a597824d886289f02bb4a37326f93cb44383ee17a7c17d1d28b431b98061230cc6d" + "bytes": "81f427f42a25668bc397e829d1c1e376682e738f4835e96942f78496ea00abc72e47ef2eb9561dd54df8def440a555b3e953c77dd1da0b98ce1a8665ebc3bd05" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d800c46c8e658dae80304cc969a7617589f0aee483a1a6f41f1abe12b7dafe47" + "bytes": "d54c887be52bf99a185b544a55bcd7d259029747537b4dfa39291b66fe27c8db" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d800c46c8e658dae80304cc969a7617589f0aee483a1a6f41f1abe12b7dafe47" + "bytes": "d54c887be52bf99a185b544a55bcd7d259029747537b4dfa39291b66fe27c8db" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a4a540a40859a21e9b8fa815139ba8c4d2d99c800888b5d074e818a851854acd" + "bytes": "b300677a54367b5b9688ca11a29940d253125fa7a1f5c60f526ef90734d392b0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a4a540a40859a21e9b8fa815139ba8c4d2d99c800888b5d074e818a851854acd" + "bytes": "b300677a54367b5b9688ca11a29940d253125fa7a1f5c60f526ef90734d392b0" } ] }, "durability": "persistent", "val": { - "bytes": "f8926b95297d0bf5cc8ea7b1b3d019fdc34b68750d0cdc2a3b73c3d1eb03e9a9" + "bytes": "7b36b167a0462336681252ffd547fd6ce11ba0d566dc32a8fc9f5a7a46cddd1e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.102.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.102.json index a40e0f5..e9c36ed 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.102.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.102.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8bb7aaa8ae3f178fa03cfbac5000d5420df7f463297d968be5fa2017ab93857b" + "bytes": "0c2e2462020938ae64cf1c8510d9399f9d6df6b1d873a560d5b3897d1271fa03" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8bb7aaa8ae3f178fa03cfbac5000d5420df7f463297d968be5fa2017ab93857b" + "bytes": "0c2e2462020938ae64cf1c8510d9399f9d6df6b1d873a560d5b3897d1271fa03" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "uxh76i4uft9416kd6d1s76n" + "string": "00w4j9vu8a9r2xz0m03af" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAINOUOV2FYGA4GQ6ASAN2ZY7R5YUEHXWFEQBGMWHRLVZFDJXDE33HRH" + "address": "GCLPQL6OE5IDE2ILCB7EWBTPNJ7EEQGR3VEZFCNOMFDJ4DEXDIPC4MNZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a421e1a94956179aadb4d5a6740e9d45d642e628c881c750daac1c7da914272beca28100e46f7c744bb71d0bfd1b430b8337b9d35897b923b97c38e9c7a50709" + "bytes": "31e86e98e9a00dd1a3dcda8136a83c8d19fb14cafa779fcf8defbfd4b05445863cf280aff8d24676f44c3cba3d6019ec30825fe1b1890c27a4be61e6e71c1ff0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a9ed618226049ff0457fcc5bde06b82955a9523682fa7f10a50c83a70385cb40" + "bytes": "7da4e484d71ec27625a9a93cdd2eae4cc2bb76c9ee42152a0db59134bf8304e0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a9ed618226049ff0457fcc5bde06b82955a9523682fa7f10a50c83a70385cb40" + "bytes": "7da4e484d71ec27625a9a93cdd2eae4cc2bb76c9ee42152a0db59134bf8304e0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1c9b3eefe99718786de1cf342b7d4d72cadb088fe14b87278d2b92cb3f8b7ca1" + "bytes": "0ccc49860679e03c04024c7067eb24f09cf430d7d877d8b5cebca718f6dbf1bf" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1c9b3eefe99718786de1cf342b7d4d72cadb088fe14b87278d2b92cb3f8b7ca1" + "bytes": "0ccc49860679e03c04024c7067eb24f09cf430d7d877d8b5cebca718f6dbf1bf" } ] }, "durability": "persistent", "val": { - "bytes": "8bb7aaa8ae3f178fa03cfbac5000d5420df7f463297d968be5fa2017ab93857b" + "bytes": "0c2e2462020938ae64cf1c8510d9399f9d6df6b1d873a560d5b3897d1271fa03" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.103.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.103.json index 7c15a98..ee06431 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.103.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.103.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f3643f1d8fde45f0ed3226243a7933cbbbe3602ec97f64b791f603b5445b7d9a" + "bytes": "51595d4db48300c5e4beee045043e624932ad0f63ef60c444319e1679f18eeab" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f3643f1d8fde45f0ed3226243a7933cbbbe3602ec97f64b791f603b5445b7d9a" + "bytes": "51595d4db48300c5e4beee045043e624932ad0f63ef60c444319e1679f18eeab" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "vk47w9j6py32" + "string": "su5p7p4p1l7013v12bq9zfdjt6038" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDZIVVOFETZN4IBHERNNKOI6V643FEFI3P4O56YAYJTASHIFOSNYV66K" + "address": "GBZWPYPSJMJDJVJBE3PDSITPGMWSKNM5IYVNQ344AJHHGWJ3D3LTER3R" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "dd3fc52a05c2a030afeefe780e0dc79b0ad58db5297cf80573951838cba756df261abb648edf0e0f92fd985843074583b521d49f6ca28bc57f55f8d6a5dfa791" + "bytes": "41b36eef7ee9b515f9362859c90660d038f19ed623a0c07775d81a0043f706545658a7a34c29f1518c4b1400a9b764add6a6520e193f04391387dc2fbb10dcc6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f05fd446671507879e3dfa627907008b27069c413103eaf8e20954a834e6cc68" + "bytes": "25154dd7cd8455585ba5eb88ba72adb1e473c11fa6b924cb6fa495f8141d556c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f05fd446671507879e3dfa627907008b27069c413103eaf8e20954a834e6cc68" + "bytes": "25154dd7cd8455585ba5eb88ba72adb1e473c11fa6b924cb6fa495f8141d556c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "35337aa6db41dadfde3b954e6a30c13f671485f1c40714ce520e7215cd3bb950" + "bytes": "798e87c7c0ecc9b5f1db930922d33b34e6730b3991bbde5bc383814a82b9ba00" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "35337aa6db41dadfde3b954e6a30c13f671485f1c40714ce520e7215cd3bb950" + "bytes": "798e87c7c0ecc9b5f1db930922d33b34e6730b3991bbde5bc383814a82b9ba00" } ] }, "durability": "persistent", "val": { - "bytes": "f3643f1d8fde45f0ed3226243a7933cbbbe3602ec97f64b791f603b5445b7d9a" + "bytes": "51595d4db48300c5e4beee045043e624932ad0f63ef60c444319e1679f18eeab" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.104.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.104.json index 41a0bd7..38b4153 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.104.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.104.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "41acd1cd85fec47baf04c4e3dd4c98b2479ab9dd535d4c485995eec8c52c01bf" + "bytes": "de9b731c914e778be3b7c35c4b63765b50eed2a8facf8d1cf5c2965905c00bce" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "41acd1cd85fec47baf04c4e3dd4c98b2479ab9dd535d4c485995eec8c52c01bf" + "bytes": "de9b731c914e778be3b7c35c4b63765b50eed2a8facf8d1cf5c2965905c00bce" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "hbyv09n7jku5w27l73urilxfq40d39" + "string": "g500687i10f0axctye6z71" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBSBGIPFULEJL3WLAKNWHZ7MAFI2AFXUCLJZBMVWE5QCJFXLPIBPXDGE" + "address": "GAK7WSNRM6K6GXIGNKPACTLSLP43E4HPTJO3QZCRXDPVY5M7OEZEGQ5Z" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "867f243c97bc5765fa2233a3b40db24fdfa02940ca875336fb12eca4f0caa1e101aab2a5877467c8da89d1792ffaeb0108e97caf13c148484803d908e83ab5d5" + "bytes": "cda2cbe9f01a67b87418a62bd8f65e840efb5bf1ce8a0a7235d468c525b79511c7ee09d9314e47bc05428704aacda155737e977358831c6fb1a214c1a29462b6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "057eee594b068b7a2ca2387960e4ee236f06996adc7cd9d3f64b43f5a600ba32" + "bytes": "72b7b16f783fa9f771524d35b83459541139d8017d153447d5645b360d159ef6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "057eee594b068b7a2ca2387960e4ee236f06996adc7cd9d3f64b43f5a600ba32" + "bytes": "72b7b16f783fa9f771524d35b83459541139d8017d153447d5645b360d159ef6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d32cb425c08f41a06297d207ed16811ed3bcd4839c1d0af44271e83da1be5730" + "bytes": "4a2df70a7ab42f1bbeb7ef8458a815158a156132f3117bb5de6509a6d5d4df42" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d32cb425c08f41a06297d207ed16811ed3bcd4839c1d0af44271e83da1be5730" + "bytes": "4a2df70a7ab42f1bbeb7ef8458a815158a156132f3117bb5de6509a6d5d4df42" } ] }, "durability": "persistent", "val": { - "bytes": "41acd1cd85fec47baf04c4e3dd4c98b2479ab9dd535d4c485995eec8c52c01bf" + "bytes": "de9b731c914e778be3b7c35c4b63765b50eed2a8facf8d1cf5c2965905c00bce" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.105.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.105.json index c3d4ff7..6587bce 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.105.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.105.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2c0fa3fd82b9dd6cf424990364d046b769de7e45e562b075b3afafeadd612809" + "bytes": "2b8b5fe9e108c4e8751d5f7429205785c581736c2e0c3954c251881f5dfbde93" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2c0fa3fd82b9dd6cf424990364d046b769de7e45e562b075b3afafeadd612809" + "bytes": "2b8b5fe9e108c4e8751d5f7429205785c581736c2e0c3954c251881f5dfbde93" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "mcz16yy0o082xxyegjp54nviuz77" + "string": "eewy48rt6y447s2bb551slj3k4" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDDVI42H4MVS7IV7G2S7YIFLTM74VJUJVUSRFLCJ77ZCHEOM3J5RTIHJ" + "address": "GBEBW4SVCTMEXNT5MSWRZ6V4VXM7JZ76DTOOEIBOSJLAHYJZOVU7WVVB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "adf4023fc4aa6f3570faf71943af3154ae1dee8256dbe12d12d5b444fe12f3813bf3f60b5f4f836c0d13966c607f12dcabb355d79545d842ac86e9d12c94bbb6" + "bytes": "ea28cb64361a0298f7c2970c88b65bb06c5a28d16d932042fc119e060e2a5e937690cac1286a40687514284c6652e09391c4e437f0040d4285c5e600da2deba4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e8e80f1cbc8605da92f633f21e16bf57ed681af3ff2fee432559b37996a50de7" + "bytes": "5090c621815589b4a0e6e00b16e155ca481252320c4674a60ff2d324bcd275a1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e8e80f1cbc8605da92f633f21e16bf57ed681af3ff2fee432559b37996a50de7" + "bytes": "5090c621815589b4a0e6e00b16e155ca481252320c4674a60ff2d324bcd275a1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7692ce2325181f05bd1b538ae8219e0cd0b87da179791c9357bd0222f2a03557" + "bytes": "6668d6625b84c890e8ab862e03ef41f92d664e503b90725f56e3851496335b51" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7692ce2325181f05bd1b538ae8219e0cd0b87da179791c9357bd0222f2a03557" + "bytes": "6668d6625b84c890e8ab862e03ef41f92d664e503b90725f56e3851496335b51" } ] }, "durability": "persistent", "val": { - "bytes": "2c0fa3fd82b9dd6cf424990364d046b769de7e45e562b075b3afafeadd612809" + "bytes": "2b8b5fe9e108c4e8751d5f7429205785c581736c2e0c3954c251881f5dfbde93" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.106.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.106.json index 56d7a49..1470c25 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.106.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.106.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3ca6c04662a950289ab561b9fcb353c2f352249a1f93986a55c02c4b9e8e74b0" + "bytes": "89969d110706b414886d5428163951d523e5e106016fba26616cc090e4b25950" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3ca6c04662a950289ab561b9fcb353c2f352249a1f93986a55c02c4b9e8e74b0" + "bytes": "89969d110706b414886d5428163951d523e5e106016fba26616cc090e4b25950" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "so898n1sq0k4j5u4grjv6tzk6kzu" + "string": "whqn6d1hiak9f05f3mrrg0i13i9o" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAQAP5CDF27BE3CB4PBBZQYKRQCF4BJZUK33DMRKSEKAE6QZSXGPXEF4" + "address": "GAHVMWJBCGIW5DYW5W7VCX6UNAPYN6RQ2L7JM3MUDSLSAYEQNABA2OFI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "63878289bdb13f10ac8cb11fab10e8b514a40ceb9dead4d4a4bda5062aa1164fbdd110f46653abdb45d69302ce3a30d34674100f8fa8e4dbc788386fd83f5509" + "bytes": "eee65f2bcac106f2a0f8ea51953e2a6c7af818c4fa191240d7a9903be137d740fd43a89e1a4dfc0fb67c4f264fc73260234d13fd191902c7d8374454e2e2ce83" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "feb33597fb90c33a38cef77a05f2bdf3aeae029ee3754f3fd23d681752d275f6" + "bytes": "7d4bc4c68fb10ede1875ae9990d1cca2b61b18cb6daa6222a193f83cb840274c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "feb33597fb90c33a38cef77a05f2bdf3aeae029ee3754f3fd23d681752d275f6" + "bytes": "7d4bc4c68fb10ede1875ae9990d1cca2b61b18cb6daa6222a193f83cb840274c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4bfa29ffa6414d11b10038ea6a004df7310239b851e27759d1dc81eb2f2a0365" + "bytes": "53958a341f79cbc5a152c5c4be30f96b98e0959ed33bb5737a97c19935a84bd8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4bfa29ffa6414d11b10038ea6a004df7310239b851e27759d1dc81eb2f2a0365" + "bytes": "53958a341f79cbc5a152c5c4be30f96b98e0959ed33bb5737a97c19935a84bd8" } ] }, "durability": "persistent", "val": { - "bytes": "3ca6c04662a950289ab561b9fcb353c2f352249a1f93986a55c02c4b9e8e74b0" + "bytes": "89969d110706b414886d5428163951d523e5e106016fba26616cc090e4b25950" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.107.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.107.json index 4852a1d..4299e41 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.107.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.107.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5c17cac5569c1ab72a3f009c7608dfc49299ad8f447e4724030ea416383b04fd" + "bytes": "50e0543569c022b520c4c541739018a236e7ae6494c99c74d408c96addd53e25" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5c17cac5569c1ab72a3f009c7608dfc49299ad8f447e4724030ea416383b04fd" + "bytes": "50e0543569c022b520c4c541739018a236e7ae6494c99c74d408c96addd53e25" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "659" + "string": "5cqi" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAOOX7ZTNWRFW5CXPX23HNXJAPHDSCBLLJUBUYE6JOZAV4FNGF6WGSV5" + "address": "GBC7DG6P5N46VJ5NNC7YVBXMNQ3ZH33OR7CNLMK7RIF2TQP7IAHEHSOU" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f92b13ada2f05869ec8641d4c9a437ea83edb9a2bba67afdbe334ca1a16f5bb8ea03a16a8d9626feaa434db0849306d5041cb11457e907184507479c5668015d" + "bytes": "ae8414bf5ba4abe6b8c00dc1fe196b176f62db527438388c9aa15f5642b53476c6d093355a01430ed2dcb2eb95c3378e9d7f12aed46e52f1bbc4ffdc12ed676a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "565a43273fa4ac8754741cb66d68e6b47a49c4b03a9709bd3b0d69fac3f489c2" + "bytes": "19a138b8bae8c3dd3746bf3f99600f03cd88702410714413000943d48cb6557f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "565a43273fa4ac8754741cb66d68e6b47a49c4b03a9709bd3b0d69fac3f489c2" + "bytes": "19a138b8bae8c3dd3746bf3f99600f03cd88702410714413000943d48cb6557f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f3505a48c48388dbfc2483981367094d996f1c0d10f69cffe8f00c2888c81c11" + "bytes": "79bb6aefa08974d11c10bc50f64df2017fac79eec911bca9eae6449116c87bde" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f3505a48c48388dbfc2483981367094d996f1c0d10f69cffe8f00c2888c81c11" + "bytes": "79bb6aefa08974d11c10bc50f64df2017fac79eec911bca9eae6449116c87bde" } ] }, "durability": "persistent", "val": { - "bytes": "5c17cac5569c1ab72a3f009c7608dfc49299ad8f447e4724030ea416383b04fd" + "bytes": "50e0543569c022b520c4c541739018a236e7ae6494c99c74d408c96addd53e25" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.108.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.108.json index b7c546a..7b50397 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.108.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.108.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b45db859c8641547e70d956294639da4d2d139b6947779eb01e8555ecb5b426e" + "bytes": "ca9bd2586875399b1641d2abcf758f790a2293aa1c7c7eab15fbd2f0aec22bb7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b45db859c8641547e70d956294639da4d2d139b6947779eb01e8555ecb5b426e" + "bytes": "ca9bd2586875399b1641d2abcf758f790a2293aa1c7c7eab15fbd2f0aec22bb7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "cx07h4bay" + "string": "71rb2whir46v190dnal9il9b" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GASRMCTFFROJPEKEU36P6KUBIKUCFOMWDUAEZ2W5U6JYQT77HEX5OZPM" + "address": "GBFAZI4SPXXPUFNQ4RMUAGSOWKRIM6WU5KLRR7ZFJFWWLJLSPG2TW5A4" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ef9c22047aeeb4cddee16306e0dfc33bf7d789dd2a764d9a0774ba293d3e59cfea2d8f8b923f44fdbd5780c0199310a33493198ad778c57a3b280e43531f53e2" + "bytes": "35f70dce1c35fa454b6f09c682ea89cd5a828209a6fbe76ec0643ece7eae238c020ea90318bf18ab0daa5d04d9c250c779a0e1d09816219a6b0b7628f16f3809" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2bfb6b7bce8f651f46023fe0e61235e3e03ec4e4576550547784e01c79fa95d5" + "bytes": "d744e67c1072c77674588f53b8a0f25e6b14d95eec9d155b0703fcb4ef946e83" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2bfb6b7bce8f651f46023fe0e61235e3e03ec4e4576550547784e01c79fa95d5" + "bytes": "d744e67c1072c77674588f53b8a0f25e6b14d95eec9d155b0703fcb4ef946e83" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e9558e98ec16fdf87f7d03545ab517b855f52c60ba707fa1de06bb08bb4460cd" + "bytes": "97ce26d51e5b79d42bc047d550cbf9ee84138ba7b6606f07d65599b8ae7b6fec" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e9558e98ec16fdf87f7d03545ab517b855f52c60ba707fa1de06bb08bb4460cd" + "bytes": "97ce26d51e5b79d42bc047d550cbf9ee84138ba7b6606f07d65599b8ae7b6fec" } ] }, "durability": "persistent", "val": { - "bytes": "b45db859c8641547e70d956294639da4d2d139b6947779eb01e8555ecb5b426e" + "bytes": "ca9bd2586875399b1641d2abcf758f790a2293aa1c7c7eab15fbd2f0aec22bb7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.109.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.109.json index 36c5ece..829ea49 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.109.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.109.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e647854842eb0cfa3291d92e63398b1ab44fb835c098405995cf00e4b6262528" + "bytes": "3ae5eebd68979685a40a3c2f56dc20db3f0221b6ccd10c14177aca283fa65b97" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e647854842eb0cfa3291d92e63398b1ab44fb835c098405995cf00e4b6262528" + "bytes": "3ae5eebd68979685a40a3c2f56dc20db3f0221b6ccd10c14177aca283fa65b97" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "tgnz83g34exc518022dv5ff" + "string": "0mdd7y9nknqjbz7n4vjeq4z47838u" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA4MUZLK2JU5JDFLHKM72PEGMD4OVQSFRHAWIVME57EYDQWTRLSTIOB3" + "address": "GATCFMQNY7KRZK2QBCDZSHP2X7V7GT7YGC7VDOASG47MBNMJKVHZJGN3" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c27a737077051569df51f46937f2b43d5d99ae8192d4ddaef633d1727cbe48f667ec8967079487d3323b0f116f6f41a969fc99f2d55cb531bf00a81a4ff371b4" + "bytes": "ea3d896a98928889ef6fc08c465ec5e1cc0a2cc6e1aa9122265baf228b351c53f2517e1043c43a73bc0034a9b47c39d711c8fbef6ad3f385184e47214c6662b4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "dbd40e0636ddf3f4225e26420f423548801ba0560e70afbf4fc1f4e997b0b8df" + "bytes": "1f24acf477256949f43b85dbd77188a4a0bbefb9578fd07bdca4b1cb32714872" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "dbd40e0636ddf3f4225e26420f423548801ba0560e70afbf4fc1f4e997b0b8df" + "bytes": "1f24acf477256949f43b85dbd77188a4a0bbefb9578fd07bdca4b1cb32714872" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "eaca4195e9e2d2a0c3f9669e9f7dc356c87aaf36065f19d85613aba3b2b3eb52" + "bytes": "7512d18eaf381570186f07b1a268b9270609d92ad15020cf0b91755c952d80f5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "eaca4195e9e2d2a0c3f9669e9f7dc356c87aaf36065f19d85613aba3b2b3eb52" + "bytes": "7512d18eaf381570186f07b1a268b9270609d92ad15020cf0b91755c952d80f5" } ] }, "durability": "persistent", "val": { - "bytes": "e647854842eb0cfa3291d92e63398b1ab44fb835c098405995cf00e4b6262528" + "bytes": "3ae5eebd68979685a40a3c2f56dc20db3f0221b6ccd10c14177aca283fa65b97" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.11.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.11.json index 4cee629..f72e906 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.11.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.11.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "862aab0e0c38d8f1efa54add6ebb8a0c99fab1d45feb6edd4f7e24d0c40ee02a" + "bytes": "bc735a9461410f6b9126ac0e0377b0915ac1069ef7fe56fd3127e2bd6da6b838" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "862aab0e0c38d8f1efa54add6ebb8a0c99fab1d45feb6edd4f7e24d0c40ee02a" + "bytes": "bc735a9461410f6b9126ac0e0377b0915ac1069ef7fe56fd3127e2bd6da6b838" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "lk2f82u85kk363e0oh28" + "string": "tl13p" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCIBBSGV5JKXVLZ3NLY6QF2O3YCSL2LSMKDTNVIQUNOVGBG5PHND5X7E" + "address": "GB2YXWFNAPCK7TTT7MUOZX2OISBCYWTGF2CK6NXWQDU2L44LNUQEZIKD" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "030a63f944b8da030732feee2771af0598335cd46aa2c5cb0a44754398f7277fa5df7933d33c20a9cdc5c147bbab1347aa65cbaa5880cc5e4b87160f12f22375" + "bytes": "fa41a57f6fe1f9ac769580a00cb381848061fd2aa87a6a26ce26fef984081e4d6521e5a28f6afc03a675a6a3c211bd17f18e96319d3cda90b427cd2c8feb3e92" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "00656de0f8b36dcb5a656c0c597e8abdf2d39d4007cbe1749ab733b3fb1074c2" + "bytes": "cc109fdfea412aaec7ce67005fe551216118d89468346f61e06354a609b78e3b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "00656de0f8b36dcb5a656c0c597e8abdf2d39d4007cbe1749ab733b3fb1074c2" + "bytes": "cc109fdfea412aaec7ce67005fe551216118d89468346f61e06354a609b78e3b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "286a22857c14dde18c321e72a6909e1e11f7d2f7e38becb57d5fbfaeefc37fd8" + "bytes": "6a800ea4a7f80f0aac2f61dd036808a086d34409984687b367033d7799babd18" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "286a22857c14dde18c321e72a6909e1e11f7d2f7e38becb57d5fbfaeefc37fd8" + "bytes": "6a800ea4a7f80f0aac2f61dd036808a086d34409984687b367033d7799babd18" } ] }, "durability": "persistent", "val": { - "bytes": "862aab0e0c38d8f1efa54add6ebb8a0c99fab1d45feb6edd4f7e24d0c40ee02a" + "bytes": "bc735a9461410f6b9126ac0e0377b0915ac1069ef7fe56fd3127e2bd6da6b838" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.110.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.110.json index 855b676..39a2040 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.110.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.110.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9f393b24e1564d183472bfe6e7947c6fa8312eee9fd96ebcbb65f25e98d1f637" + "bytes": "1f4ebe1d0a3cd92cba437a85d6f5df59c5534a422aed00e3cace74a9b5b01868" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9f393b24e1564d183472bfe6e7947c6fa8312eee9fd96ebcbb65f25e98d1f637" + "bytes": "1f4ebe1d0a3cd92cba437a85d6f5df59c5534a422aed00e3cace74a9b5b01868" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "s7k3n0kbbk8pc31f7sum2" + "string": "5fee7nt9fzku" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBZKBX7XNIP5PJM6YIQKXDSY7FI5TOUHQKYXBCM3IJTAC6EI4A23VCKE" + "address": "GC7HHT6AOOO4GK2LEH7LUDRM64NUVNZGTIYJMRVY3PH2TEKJDWE36MBK" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "343246e334c56845d6f963f3c8cecbf27b8e8b356e64c4f6c197d13a026270106aaa2346e4c2a57d01dd548110f2cf2cac78651bd6d250958bc672034c9bd9e2" + "bytes": "6aab4b1fb44086b98c4afbc0691d2bd592b11f81402f3d616a16cba5fc3b9218f6acbb0a7ebb36a99c05715f6578df3a739216ed673e66f28d9c52b80596624f" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ccf789847ad5fc162d2658ce7a915b5dd4a1fcb55e31e0d3d1ccb23b2b61ea41" + "bytes": "eb8cc00fe466c94a4cdb9a915a140f160ee4b89dfe5c4672ea9bdea457f74b3a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ccf789847ad5fc162d2658ce7a915b5dd4a1fcb55e31e0d3d1ccb23b2b61ea41" + "bytes": "eb8cc00fe466c94a4cdb9a915a140f160ee4b89dfe5c4672ea9bdea457f74b3a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a5261d0e1a14594ac7c922a123cb04b813f3fed8e5fc1b15fc2fa3d363a4f95c" + "bytes": "5a8ed2f75485c0cf984ed5c9c8e41e1f93ca5db5fa87cc54d8b1875273781449" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a5261d0e1a14594ac7c922a123cb04b813f3fed8e5fc1b15fc2fa3d363a4f95c" + "bytes": "5a8ed2f75485c0cf984ed5c9c8e41e1f93ca5db5fa87cc54d8b1875273781449" } ] }, "durability": "persistent", "val": { - "bytes": "9f393b24e1564d183472bfe6e7947c6fa8312eee9fd96ebcbb65f25e98d1f637" + "bytes": "1f4ebe1d0a3cd92cba437a85d6f5df59c5534a422aed00e3cace74a9b5b01868" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.111.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.111.json index aec9bb5..b9a4f78 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.111.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.111.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c84305f1b01854b3a077bfb7fa3b76a8d42307a21dbb5a1830fa73dfca0d4f87" + "bytes": "015f81df2049d13e54dea7dd54b72db4c9ae9b22e9a15c37e0adc690dd5362f2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c84305f1b01854b3a077bfb7fa3b76a8d42307a21dbb5a1830fa73dfca0d4f87" + "bytes": "015f81df2049d13e54dea7dd54b72db4c9ae9b22e9a15c37e0adc690dd5362f2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "yv37ihp5n5o0od023w1l1v31p181hrc" + "string": "b4fge773gq8f2tnamt06oduc" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBGFCXXKM63AKBKCQVLKUTMZGESXW3FBGSZZNN2UFRKZA6G373DEOBXA" + "address": "GCF7PUMVSMD2DFOBNTFQEZYXIZHJIKBHDFNYWOHLGHZYO7EZYRYJ7WDS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "258f7e357877dff4857e2fdf5709f1daaad6398c8a7d011925fa82cbdbd995194d1ba3b81415d9e8065aee873399b32650280b04a6876c908901fe597fad8daa" + "bytes": "b66c51242d3811fffbce8b49714bc0411fd7cda986d24e6baa8df53984ff662b6db5ebb2e83b32332d8a9713f1c6c269a33323af9e6f7ff07a2d6ab9644e9814" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "be363e3c23db6ea54bf5422c3ebe24555fe3b8a5ec306f69aed8d41554351f71" + "bytes": "93d102c8d571316b957cbe3af76bed589966eef46e4d56fb487dcd9e617c8ee7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "be363e3c23db6ea54bf5422c3ebe24555fe3b8a5ec306f69aed8d41554351f71" + "bytes": "93d102c8d571316b957cbe3af76bed589966eef46e4d56fb487dcd9e617c8ee7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0745e7363a40a520a7a5cfcfac73272f938da7fe175d0590fe828edafedee407" + "bytes": "0730adb3330be9a234d713475f1549c1ac174f7e14385243816fcab6f63aed73" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0745e7363a40a520a7a5cfcfac73272f938da7fe175d0590fe828edafedee407" + "bytes": "0730adb3330be9a234d713475f1549c1ac174f7e14385243816fcab6f63aed73" } ] }, "durability": "persistent", "val": { - "bytes": "c84305f1b01854b3a077bfb7fa3b76a8d42307a21dbb5a1830fa73dfca0d4f87" + "bytes": "015f81df2049d13e54dea7dd54b72db4c9ae9b22e9a15c37e0adc690dd5362f2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.112.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.112.json index 954c36a..620d124 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.112.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.112.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bf2d075e0c8934c2dddd1fc36f624fefdf8b4c8fe01886c61a94a6c9831b236f" + "bytes": "762b31f7fe8e997c30644441d0460139cccd019c99db0dae38261fd759960a1c" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bf2d075e0c8934c2dddd1fc36f624fefdf8b4c8fe01886c61a94a6c9831b236f" + "bytes": "762b31f7fe8e997c30644441d0460139cccd019c99db0dae38261fd759960a1c" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1t1m5la35qimrp7h8m2s" + "string": "2opy" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCWFYP6OO3D7KJ43CWWLLIE33RDGJX4NZQSIIZG5ARQ2FNVKMHYFUNZ2" + "address": "GB7LQVCFB7FGNN6RFZNQ4YNJ2DF66KWAXXQUPSXEMWYIOGR7XPVKTEBN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "408dc9da39a696c5f5ec314cf6c2f4580f5151ff17cca1f9b996d3ce56f2b5995f0ec7566dc4acb421cd946c925d10335361739df3894c10ed5513b6ca332037" + "bytes": "f39a627db1252a6227dada3a36460c9e1015fe9debc88e591deffcac440bb30924aa7e309209768dc09327de36f8b2cd74749dd17558b9ae0eb03e09e7553855" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5ad06c3d05d334ac94f80e7289de5198823391a808d5d060d42092ecb6e798ca" + "bytes": "2c5ce8cfc0c8162302963ac226b330a43c11f0d344f037e46de998bf0dcd87ef" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5ad06c3d05d334ac94f80e7289de5198823391a808d5d060d42092ecb6e798ca" + "bytes": "2c5ce8cfc0c8162302963ac226b330a43c11f0d344f037e46de998bf0dcd87ef" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9daa4a611fc4956c1030f1a2f25829937ab0567c9c4717a484a8398420ef28e0" + "bytes": "040961af12ff1c908d40ba5c949f98a0cd2fb257b43151308f351459244575fb" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9daa4a611fc4956c1030f1a2f25829937ab0567c9c4717a484a8398420ef28e0" + "bytes": "040961af12ff1c908d40ba5c949f98a0cd2fb257b43151308f351459244575fb" } ] }, "durability": "persistent", "val": { - "bytes": "bf2d075e0c8934c2dddd1fc36f624fefdf8b4c8fe01886c61a94a6c9831b236f" + "bytes": "762b31f7fe8e997c30644441d0460139cccd019c99db0dae38261fd759960a1c" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.113.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.113.json index a7d51ad..ef06bfc 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.113.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.113.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ede9bda2f831077c592e72b8e53df7ba314b1f8cd453ea12bb9058f40a96d405" + "bytes": "4a281c12c9b1c01a0c5184f9b9ffc7f35a3258203c68e5da609eb1013d290d52" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ede9bda2f831077c592e72b8e53df7ba314b1f8cd453ea12bb9058f40a96d405" + "bytes": "4a281c12c9b1c01a0c5184f9b9ffc7f35a3258203c68e5da609eb1013d290d52" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "hq11pxu8d7kk3c94kt06hj0z57" + "string": "dlhcw12j33vscg46u0rt8rc11" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBG4NXP2FTLM7GUE26EHW6NZQ44CWOTUISJFOSZ2CIGG3BOENPWPVTN2" + "address": "GA5DSLUPMJMZSOC5VBT66EWJXEHRVPGOIKVINPAQK3DEELAEY5Y4L6HW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "9a13ff2651346db886b49c4f5905d033779eeb4e9accc7953f0fd5d6f74a369dfb698a9b3210daf9021c69a0329af39f4a9283a4d98111d1974d1e42d90307fe" + "bytes": "9d6319b6eadd2af27e626b63d381293ea8ef9033be9436b84c26a8b317f8884d2675e7b75223683217c310666b5e9c7f5111801b1b9f71e045191b19b76839c2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "eb82eb6d36f08ed34afb1263c73c8ef65c8d4fb217671189d181cf5908d99eeb" + "bytes": "ff2540458eb58dfe72ad8d3bba90fb5bcbeb769e8693de7f3b57654df95f1d7d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "eb82eb6d36f08ed34afb1263c73c8ef65c8d4fb217671189d181cf5908d99eeb" + "bytes": "ff2540458eb58dfe72ad8d3bba90fb5bcbeb769e8693de7f3b57654df95f1d7d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1e272959262be1c5d4db11afa2aee4684ae6867d7ddcfd161225311c3eee9f86" + "bytes": "05e667d934f1dbf3fe7c468e3283f128882c4136ebb6f85355ad6a6a9ad9edcf" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1e272959262be1c5d4db11afa2aee4684ae6867d7ddcfd161225311c3eee9f86" + "bytes": "05e667d934f1dbf3fe7c468e3283f128882c4136ebb6f85355ad6a6a9ad9edcf" } ] }, "durability": "persistent", "val": { - "bytes": "ede9bda2f831077c592e72b8e53df7ba314b1f8cd453ea12bb9058f40a96d405" + "bytes": "4a281c12c9b1c01a0c5184f9b9ffc7f35a3258203c68e5da609eb1013d290d52" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.114.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.114.json index 85f7951..698fa4b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.114.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.114.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "08e84e3035e97f0f2bf34aff45d5125e146c86c1f11faed9194205097d0276d4" + "bytes": "532ecd0c6be221fbb6961194c300264ff2e3c3dc21177b3995395587f8680663" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "08e84e3035e97f0f2bf34aff45d5125e146c86c1f11faed9194205097d0276d4" + "bytes": "532ecd0c6be221fbb6961194c300264ff2e3c3dc21177b3995395587f8680663" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "25i60eg2k9r7alltihss" + "string": "oooz8o09l04yb57r46028p" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCIRMR5WYDURDJDQ2MDG5W2BKRCQ3SOQHVYNQVYCTPMMGFWRV6W4GM4P" + "address": "GDBLP2XAMVLJLT3GQV4SV27YPLPH5BBIFIKCLXPVRBNHULD3J3BE77E2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0414dba2bd3e4e731d782f78242d0a95a73125d3229935f0bdda79c98ad1c0da55959cfaf5341b7754298e78605776f9ae57e898215d68878a639fca37ff47b0" + "bytes": "7d696f2e637fb0b6fbdac338825a81d79b6f87ed583b2efec5fb34ada6bd5abc940e579032051b4f5b68465a150dbc81cd464a5e8db59cd1ec0effb728a2a713" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0b00cc6fa74f14c6d3b02cf76512740964c8e79471013861d6db2d0a78f88f23" + "bytes": "7e38c8530097072feffac4ef905e4a268464a4814a6beb20f599ad161fa7fab8" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0b00cc6fa74f14c6d3b02cf76512740964c8e79471013861d6db2d0a78f88f23" + "bytes": "7e38c8530097072feffac4ef905e4a268464a4814a6beb20f599ad161fa7fab8" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "96b5fe685e4f9845b1aa47913cd41c44d9ffa54c0cfbfc40717f084ac75286b7" + "bytes": "080273e751e28827c6ae0a2b86b74b0419563fb853826a0ae679a7800402ec01" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "96b5fe685e4f9845b1aa47913cd41c44d9ffa54c0cfbfc40717f084ac75286b7" + "bytes": "080273e751e28827c6ae0a2b86b74b0419563fb853826a0ae679a7800402ec01" } ] }, "durability": "persistent", "val": { - "bytes": "08e84e3035e97f0f2bf34aff45d5125e146c86c1f11faed9194205097d0276d4" + "bytes": "532ecd0c6be221fbb6961194c300264ff2e3c3dc21177b3995395587f8680663" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.115.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.115.json index ddc75ba..d68c6ff 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.115.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.115.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f48d816bb6b90f58e1d1381f74c81e5bd9d1ae43527a0879783f71b2da7cf208" + "bytes": "f948448bcd316a7f27b4c615d77f986b2ae8373c5753249ec025a365a21330d8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f48d816bb6b90f58e1d1381f74c81e5bd9d1ae43527a0879783f71b2da7cf208" + "bytes": "f948448bcd316a7f27b4c615d77f986b2ae8373c5753249ec025a365a21330d8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "cm33v245l2parlu4188h" + "string": "273m0ub6nj" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDC5HUX26BXX36QYVO4QWCRQQGPMWV5IA7I5EBFSMTA6ULEFIXPL5HN7" + "address": "GDJ3EWNOC5YLRU2IFHTMBJ5IRFV74M4VC3ADVFMJKDNZQWXGUOFLSXIG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "df42e4487e12c88ef5705de26dde369c80ee52f63628ecf7e34f3c96f577d76730d514d9d1cc2055f8f4663f174c3d0055b20278e857257c9a3711a59d9d4385" + "bytes": "6ef0140ccae9269ff1b62108d0b2c5ff279c2d514415b9b8583808325dbcbbd228665cb3e8a659c3e3a1e285d37ccdfc9aaec842509cd805f7bad98871ff17ea" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "cc91669bfeadefe4b8d82cde2416b67b5bca9b8f7019c51959f56c1369ee1871" + "bytes": "90372d5450495a46a5c0c4dc0202db24bbfb8e9aeb2ae65c16e17fc949218f8d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "cc91669bfeadefe4b8d82cde2416b67b5bca9b8f7019c51959f56c1369ee1871" + "bytes": "90372d5450495a46a5c0c4dc0202db24bbfb8e9aeb2ae65c16e17fc949218f8d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e4516888afde84ba2fa76a285d8c7d309d8e4221b39bf60770b036a33eb527f5" + "bytes": "d687d90ec4130c7ce287256ad22c63d8a8d8169c6f6831b86dce5c25241431d1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e4516888afde84ba2fa76a285d8c7d309d8e4221b39bf60770b036a33eb527f5" + "bytes": "d687d90ec4130c7ce287256ad22c63d8a8d8169c6f6831b86dce5c25241431d1" } ] }, "durability": "persistent", "val": { - "bytes": "f48d816bb6b90f58e1d1381f74c81e5bd9d1ae43527a0879783f71b2da7cf208" + "bytes": "f948448bcd316a7f27b4c615d77f986b2ae8373c5753249ec025a365a21330d8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.116.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.116.json index 270994a..aef73f8 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.116.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.116.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "88c533e47f46578bf5acb6761632702536acf75bca1ac2d1bb1e498a423a9b46" + "bytes": "9003c3cf7347bf0b28de62ce7d9ae708b20e56c140ce9a9d3731dd07d5a1540d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "88c533e47f46578bf5acb6761632702536acf75bca1ac2d1bb1e498a423a9b46" + "bytes": "9003c3cf7347bf0b28de62ce7d9ae708b20e56c140ce9a9d3731dd07d5a1540d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "fedyuk06014l46" + "string": "x13j2ykbc127" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA5HG7FD74PTFPQTEBHHGWYFQEEZICZXKCKQB5QPVZ2L4AHFS24NILXD" + "address": "GDMKR4YGE7E2RIDLVX7R2PBNSDIFIABLRRRRTSGKZMSSNPLV6KPOABKB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6109589a346b9c64de0a5e8e689f349766bdeeceed3b750602636ada5b04393c9d4783c7af40dc1122c3fbd1c9128bf9bcb6e075bdb2d455b28b560d41a799d5" + "bytes": "de802920f054597e121829499228af256896fbd99f8e017104ef01286ee6703c664b5e6772b21d2d64d8d91c7427ced266c4e24f107c0534cb6253424104fd2a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "15a22d3f55c16dd6abaa4c0bd68d92f4eb6b0c667061606e4ca58f0af9ae370d" + "bytes": "b6548e8edc08292af01dc28a0a22bd8bc4dcf34d5758dfa28864dd0a892c1602" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "15a22d3f55c16dd6abaa4c0bd68d92f4eb6b0c667061606e4ca58f0af9ae370d" + "bytes": "b6548e8edc08292af01dc28a0a22bd8bc4dcf34d5758dfa28864dd0a892c1602" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4af4e943b7dfde22500d83c8967a30a4f4fc81348896f6e1dd90f4298dc1b3cd" + "bytes": "cc61f30e28e1ffd75208df10631c045261d35dcd8e749518b5afd047d6c001c6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4af4e943b7dfde22500d83c8967a30a4f4fc81348896f6e1dd90f4298dc1b3cd" + "bytes": "cc61f30e28e1ffd75208df10631c045261d35dcd8e749518b5afd047d6c001c6" } ] }, "durability": "persistent", "val": { - "bytes": "88c533e47f46578bf5acb6761632702536acf75bca1ac2d1bb1e498a423a9b46" + "bytes": "9003c3cf7347bf0b28de62ce7d9ae708b20e56c140ce9a9d3731dd07d5a1540d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.117.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.117.json index 8142163..4a53cbf 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.117.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.117.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c89074e96ddf27b53d9601b13358753547fb614ee2b60a198b654bd223744d5b" + "bytes": "1b4cc0b5f19bf2d384585774f8c775ea4d4fe640a72e3ea627f6f3a86705e590" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c89074e96ddf27b53d9601b13358753547fb614ee2b60a198b654bd223744d5b" + "bytes": "1b4cc0b5f19bf2d384585774f8c775ea4d4fe640a72e3ea627f6f3a86705e590" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "x89pdwo7d37m0avy78" + "string": "y3q6r249" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDE3TGCCCP5Q6PFRQEOVAGMXITMVAB7RJFFLF5TWXBH7X452VWPEBMNX" + "address": "GBCNICRS4CLHV52K5UTNZHYDKDKZV76R52AKRRH35PKDENNYBQBEM64Y" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "dd7301242c0a6426a429b171a43288597e3d4ec0a353829bef8f55a2492ee8bbe1fde612dceba7afdbd2b014ee841b9efa5d36f335d82aa4f3b8bae7070ee60b" + "bytes": "d6cbc852eb335b0341bd951ae602a0e5e1ad8d9fb11c76373e7b5a5a7231b17d28fa8f775d5b12744154af2baf81bad8209f6e1b563130b5472604172251b808" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d65ab0a79f7dd61d5cf6561dae83f1d5d94838b2bf0b1ac272043bed1b0d036c" + "bytes": "df15869c1e748ed30423a3fdb972d7041a10d29a7d7390534c9403ef48bdcb2a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d65ab0a79f7dd61d5cf6561dae83f1d5d94838b2bf0b1ac272043bed1b0d036c" + "bytes": "df15869c1e748ed30423a3fdb972d7041a10d29a7d7390534c9403ef48bdcb2a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "80dde9b7975d522ddf8cf41837a17dea0e305e21dfbb4b25b0b470473a74f9c0" + "bytes": "f07b947d78e27514590d6f3caab886d28a6d68121cddbc9122ff6b6e3701f6e8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "80dde9b7975d522ddf8cf41837a17dea0e305e21dfbb4b25b0b470473a74f9c0" + "bytes": "f07b947d78e27514590d6f3caab886d28a6d68121cddbc9122ff6b6e3701f6e8" } ] }, "durability": "persistent", "val": { - "bytes": "c89074e96ddf27b53d9601b13358753547fb614ee2b60a198b654bd223744d5b" + "bytes": "1b4cc0b5f19bf2d384585774f8c775ea4d4fe640a72e3ea627f6f3a86705e590" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.118.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.118.json index 3711af2..7cd64d4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.118.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.118.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "25e500dfc1ee6c504448d48d62035a27e26ec1aa733925950c8610ea8faba884" + "bytes": "4daf0b1e6ee57b86dfe7b663c501887d716a5e211da32f3ab8d21c5bb8fba087" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "25e500dfc1ee6c504448d48d62035a27e26ec1aa733925950c8610ea8faba884" + "bytes": "4daf0b1e6ee57b86dfe7b663c501887d716a5e211da32f3ab8d21c5bb8fba087" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "z9t9hqzw5146042" + "string": "97k2z5b00tg60z969ak" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCPK6QG43R2SBO5N5M6QSKU7QYU3GBUKXJPVL62LERZWFOVQ3MPIOLYP" + "address": "GB5RZ7Y4XWKFZ32YUAL6ARF7TORMMAM3ACK7NTOLMDFM7XT266KCPVLB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5f83e137b967b63dfff0a899a6d396ce385974e2717c4c6d22cbf2c056238267d750f378af8a474512bede15ca43704d318d66e24e464283f06ef8c4697c2be6" + "bytes": "d38f2a7071ecd720c0fa7788d8d8255a2be29289e11e3344fc2cbf402ada2e9c84b6f4d992f4e41442e5e192139a5269e11c9f331d4f40285097626a80ceadc4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "14b9463e61c390d73fadf27a769a50739aad7a6c616ac15d818b7079ffb71aaf" + "bytes": "7054d503f16ebf3ee00d5b27d8aebf38eeb603ec46dd02127fa0aa800d5d3a07" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "14b9463e61c390d73fadf27a769a50739aad7a6c616ac15d818b7079ffb71aaf" + "bytes": "7054d503f16ebf3ee00d5b27d8aebf38eeb603ec46dd02127fa0aa800d5d3a07" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "284df3e112d9da76c305a36e20406667b2f0c763a585c0ce5f9afaf8bf80cecd" + "bytes": "47de7b23ecd321cf55ca12bb63d48b5dca562dcb7df129cf7565e5350a028520" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "284df3e112d9da76c305a36e20406667b2f0c763a585c0ce5f9afaf8bf80cecd" + "bytes": "47de7b23ecd321cf55ca12bb63d48b5dca562dcb7df129cf7565e5350a028520" } ] }, "durability": "persistent", "val": { - "bytes": "25e500dfc1ee6c504448d48d62035a27e26ec1aa733925950c8610ea8faba884" + "bytes": "4daf0b1e6ee57b86dfe7b663c501887d716a5e211da32f3ab8d21c5bb8fba087" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.119.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.119.json index 307a229..081c414 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.119.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.119.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "7a609a9671e30a3426fb1def6c71ccae02d6417d48304bbe186f98051fad2984" + "bytes": "f509151a8c897dffe41af28177be30f6a56248ca54794c8fbebc27de7c4a58b0" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "7a609a9671e30a3426fb1def6c71ccae02d6417d48304bbe186f98051fad2984" + "bytes": "f509151a8c897dffe41af28177be30f6a56248ca54794c8fbebc27de7c4a58b0" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "zqqevj71f8hd9gmx2nar" + "string": "3o41z0llk2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDKU2ZJWXSIETKKPZ3YMNQNSQI3FZA36SUS3HEHQ6R2UPOI5JASDN4LT" + "address": "GDFA5SZBHH47MKC4WAWOQCUYUX35Z6NQDUGULIM7W7SNIHGF5XWRZ5RJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "83f57c845b65a49d86d55434c58c8f2c77f02241dd58ffeab1c2bc5cf5edb6b5e2408322d0d82f6d630b1a63bdd8e4e337f7c79f9b6620cc2b08e60164fe9af1" + "bytes": "4a27edec03f25dbc8629e63cd49087675c42318876686a5d1e724eb474e336de3424f13d99b1eb658dfaacab1754eacc670759dd434706b2adf2417f408de0c7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9c43710fa73c9aaa7a6f21d2377cba8b865152c996fa2eb12990c75127e121d2" + "bytes": "2b9fba95e4aa1fb91ed652d7e68595c9c6e67a2c2bba343bd064f4b465f282f7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9c43710fa73c9aaa7a6f21d2377cba8b865152c996fa2eb12990c75127e121d2" + "bytes": "2b9fba95e4aa1fb91ed652d7e68595c9c6e67a2c2bba343bd064f4b465f282f7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8d4c4fbd8486681e66b3eccaac16aa3942035a7771ebeac8aba04d65176780cc" + "bytes": "cface39fe457de783da7610bbabdf98ffa29d6378caacd5b28d1ed609a17ee24" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8d4c4fbd8486681e66b3eccaac16aa3942035a7771ebeac8aba04d65176780cc" + "bytes": "cface39fe457de783da7610bbabdf98ffa29d6378caacd5b28d1ed609a17ee24" } ] }, "durability": "persistent", "val": { - "bytes": "7a609a9671e30a3426fb1def6c71ccae02d6417d48304bbe186f98051fad2984" + "bytes": "f509151a8c897dffe41af28177be30f6a56248ca54794c8fbebc27de7c4a58b0" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.12.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.12.json index 425350c..98cbaeb 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.12.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.12.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "20bc3728a5a3ab25f733a171078a4918b2762f1b889b9217b53523df791a7ec2" + "bytes": "3bbe2763e0f027a1293779ea174567d6d6eb017b4190ba7b6b3d87c52f5f023d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "20bc3728a5a3ab25f733a171078a4918b2762f1b889b9217b53523df791a7ec2" + "bytes": "3bbe2763e0f027a1293779ea174567d6d6eb017b4190ba7b6b3d87c52f5f023d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "kl429ykr7cdm1734k6o86w5" + "string": "8rzuvyd8g57p9pj45q1320" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAI5X7DAMDPQLUIWOGZ46XUBSOL7OZGVQJPTOK6BXQIKX7MKTWVUOZWH" + "address": "GCKOWSJPI75NZX3343ZRWYSSHSPY3JH2Y7BXGJPX2JWD2QE6DH22JSYI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "12eb59488e633b5a7391e2720ea57219dc12eab8686504c66f3b65128155ec5f3dbfe477decb195b123ca410c449248873eae3e4d6e9b45a29769f7581dab3be" + "bytes": "b48a8362e68fb85bdfe708a02918a8c4a22436fcabf30e9da6a02c06371d4a05648704f280c46a3119a54a676c706baa4064fa0e931c915f73364fc50d93d867" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "454cd7ef1f1083c6f5056024f6d9035d2fde28bb3e8b0b9092cc9dc1347eaa84" + "bytes": "885dfcd3396346957471754d94d2b67cc7bdb2e79ce25b63ff02322a5bfc786b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "454cd7ef1f1083c6f5056024f6d9035d2fde28bb3e8b0b9092cc9dc1347eaa84" + "bytes": "885dfcd3396346957471754d94d2b67cc7bdb2e79ce25b63ff02322a5bfc786b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7c7111c28c970fa7d238d41abe483b5a3caf18504c464284588e41449c811ec1" + "bytes": "7405e367627ec3c1bfda2670d9304651c7fd8715c2e3fbcd7295b55000c01784" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7c7111c28c970fa7d238d41abe483b5a3caf18504c464284588e41449c811ec1" + "bytes": "7405e367627ec3c1bfda2670d9304651c7fd8715c2e3fbcd7295b55000c01784" } ] }, "durability": "persistent", "val": { - "bytes": "20bc3728a5a3ab25f733a171078a4918b2762f1b889b9217b53523df791a7ec2" + "bytes": "3bbe2763e0f027a1293779ea174567d6d6eb017b4190ba7b6b3d87c52f5f023d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.120.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.120.json index dd218cf..58c14c5 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.120.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.120.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8625e3a5c92dfe5df2ce68e3e5f36da2506d7f4eac7d801eb586f71e834dc3ab" + "bytes": "67729f3f9cc9c758dcad1d0957ae305de3848af5d4d8ea33eeb5e05cea1b7efa" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8625e3a5c92dfe5df2ce68e3e5f36da2506d7f4eac7d801eb586f71e834dc3ab" + "bytes": "67729f3f9cc9c758dcad1d0957ae305de3848af5d4d8ea33eeb5e05cea1b7efa" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "84847dng5uu8ja417qs40bdyb" + "string": "x589j98s277yx70y51xae5y2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDHPUIESD3A4S7MMGUVIZTOLTAKFKYFXSYAHY66GKPL7F5LW7OG376Y3" + "address": "GDJAZFLHKDBHCXQL6SADZHJLACEB6SDSRZ3FFKDBWYSRQ6WBOHTNE6PC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d0bfb192fa31a32c16f913c4c2f2b317ea222b2c3735d7305a0a6e33e66599333f33e62a650c5df21cc9d8d82d0a0bdebbc2d7ce3f1fbc5a6509f3da6d46120c" + "bytes": "c8ad0e681b6e4e177eb0495f670935dcc80c29d4beb9d1696ee51b357663b75607665392532181d6ef12173d90a7265be267027047171e533e2432af3c97688e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b3af4103d8bec0ef82922571f1273b3199acb5a98205d4f31c3c0aede69cb55c" + "bytes": "c1b05cb447b7f7750b78f9a8a549cead623d6e33797098151637e955a68fd39c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b3af4103d8bec0ef82922571f1273b3199acb5a98205d4f31c3c0aede69cb55c" + "bytes": "c1b05cb447b7f7750b78f9a8a549cead623d6e33797098151637e955a68fd39c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2efb7eab08193b10e7d8a55a2a5fcc698934c87ee8e523aeffa9e47d910b3085" + "bytes": "2f151a10ce7331d409097a9228b180be20fe6f7466c7a0666e8cdc5b865f16d7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2efb7eab08193b10e7d8a55a2a5fcc698934c87ee8e523aeffa9e47d910b3085" + "bytes": "2f151a10ce7331d409097a9228b180be20fe6f7466c7a0666e8cdc5b865f16d7" } ] }, "durability": "persistent", "val": { - "bytes": "8625e3a5c92dfe5df2ce68e3e5f36da2506d7f4eac7d801eb586f71e834dc3ab" + "bytes": "67729f3f9cc9c758dcad1d0957ae305de3848af5d4d8ea33eeb5e05cea1b7efa" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.121.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.121.json index 517e11c..0cb79b4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.121.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.121.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "32807551231cc67cc5e9aed86b663e8f41b7369eb707263166885db72d54ae7d" + "bytes": "061570dba61fc646ac4013ce45ad96dad38e2acf3e21e35158ac13b11aaa6424" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "32807551231cc67cc5e9aed86b663e8f41b7369eb707263166885db72d54ae7d" + "bytes": "061570dba61fc646ac4013ce45ad96dad38e2acf3e21e35158ac13b11aaa6424" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "42yx4lfby0y8" + "string": "n35jozs51l93p9n6y83hbdoe6kg" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCK6EG6JXXBAES6AGN3N6MIMJBMJWX635BBNKHQQTSW4IIC6LS7GO4YW" + "address": "GAQQXKS4CYBYWDDHGNKQO2JGVV3AQK3VBHVCUAIMY3QGJG4NUB2B3RT2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a219dcd687c3be9b4593a0f8778a94ce04c98d40b6c06adb2bc26aa9ec8da96571bc489d9534a12cc53105ec0d49faacedd5df987ce2fbee702049219d3b37ae" + "bytes": "6d5e043777c727b9e424ad0890098471acd87b8ebc3b1b5ee72318dfa8a7fa90f2ce81dac848aa8862302b11aac5080dff5d8f2b5cdffe6dbc635599ec44a46b" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "de910e962cf807091fde8ab52d1b0d690d6d8899805d7724d98a77419f0c0ce6" + "bytes": "65a9ad0b8d687ce647c6e2bf1aa4c40b8614758806a1bfa0971b12587744caf5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "de910e962cf807091fde8ab52d1b0d690d6d8899805d7724d98a77419f0c0ce6" + "bytes": "65a9ad0b8d687ce647c6e2bf1aa4c40b8614758806a1bfa0971b12587744caf5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9b33e66769f2b9ca0d2761e3166a9ccec4a18d74c05dd92bbd63a62ad45ebafe" + "bytes": "6a50aeb5dd69398710210578fa6461bf9c879f9e265741de43643f226f147e5c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9b33e66769f2b9ca0d2761e3166a9ccec4a18d74c05dd92bbd63a62ad45ebafe" + "bytes": "6a50aeb5dd69398710210578fa6461bf9c879f9e265741de43643f226f147e5c" } ] }, "durability": "persistent", "val": { - "bytes": "32807551231cc67cc5e9aed86b663e8f41b7369eb707263166885db72d54ae7d" + "bytes": "061570dba61fc646ac4013ce45ad96dad38e2acf3e21e35158ac13b11aaa6424" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.122.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.122.json index 79d4c5c..20b1340 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.122.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.122.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e980e79506ca37aa8003eec8727000557bd7b4ca13eba70bdaf41a0e94d8e3db" + "bytes": "2ed26ab6e8be1ec35de8f6dd14c57be90eaf3401ef2139597699a229098740ef" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e980e79506ca37aa8003eec8727000557bd7b4ca13eba70bdaf41a0e94d8e3db" + "bytes": "2ed26ab6e8be1ec35de8f6dd14c57be90eaf3401ef2139597699a229098740ef" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "hl90t03sucr73qid7ia16so75y318" + "string": "kp172ji" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAYDLCIO3QMM4M4BVIEO3LJDTYY6DEFXJ5PRBMKY7P6EK3ZXH2HXVQ35" + "address": "GB2PFSEZDHCV24M337GVNJTU7TGDWBUWR2WKUWM3JV35MQBEKOAACZET" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c78dc8dbeeae725acc462ed7f5f3c120348ab15cd49087cc615a259571d2036d8cc0ce3a9a0d15672891f7497913adfa77f365c28097eb6fd815f4180cb7b743" + "bytes": "1def6906eea4ea2070224947e398b2c0b942e450380de9163a82553cffdbc37e9eca80897c9c3cb83a6a4e1f1c7be2ceba273cbb4081c5e53d0f07e3f6d79a2d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "74cfa1f4e02f00cfdd7083303a851497a933637bffa3b459424b4b0f439f86ae" + "bytes": "ab2ea75fe67cf13faa2c9995c8fe86153f6bd03fb1d1b718d4fb365262c7dcae" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "74cfa1f4e02f00cfdd7083303a851497a933637bffa3b459424b4b0f439f86ae" + "bytes": "ab2ea75fe67cf13faa2c9995c8fe86153f6bd03fb1d1b718d4fb365262c7dcae" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "990bd199361138253f2af86cfbaf8625f60db58ed49fc7f2e8ec3ff8d0eb2932" + "bytes": "232b5b7bc6543265f2b17eaf7e7aa5415b38da910a12c7c07814be2800ba545a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "990bd199361138253f2af86cfbaf8625f60db58ed49fc7f2e8ec3ff8d0eb2932" + "bytes": "232b5b7bc6543265f2b17eaf7e7aa5415b38da910a12c7c07814be2800ba545a" } ] }, "durability": "persistent", "val": { - "bytes": "e980e79506ca37aa8003eec8727000557bd7b4ca13eba70bdaf41a0e94d8e3db" + "bytes": "2ed26ab6e8be1ec35de8f6dd14c57be90eaf3401ef2139597699a229098740ef" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.123.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.123.json index 103a20a..f45e077 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.123.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.123.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "4a37e04097c1826f66f38667f55a721cfc49f404434514b1416e784f54cdc1e0" + "bytes": "7c15d5415284c1f30bc7135c7ca00515c73ac938de54a796f7c97a4f7d602adc" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "4a37e04097c1826f66f38667f55a721cfc49f404434514b1416e784f54cdc1e0" + "bytes": "7c15d5415284c1f30bc7135c7ca00515c73ac938de54a796f7c97a4f7d602adc" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "94p9805sr56rxbvr" + "string": "1ti027rg6j70m03r14s6f" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAOBJVJKFNNFGJXADOQFY7AQ2NAPKOYMOK2GTQFLLO7CKWBLUAZEVR54" + "address": "GDWZMQM6ZGWPN45TC5TUKGBFXKVLLWY2I23W5F37Y5W7OUCH6BUETAMA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0ea5e1ec68882e8e4e552effce0828a365fc96521c2ec93b1d81cbe251492240ca8a3b3c1da4dbddda9b828085904044d0b3099920ea0500b340a008137d1bd9" + "bytes": "b54ce6cddf4bfca4688789f7366637abfde79fe67a08df1b25bbc0ed8933afd0de2ec5d678cdbfa51628ae7efe417054fbe169191122f8f139c354fb9cb66daf" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "961441325e155c4d9cadcc2e92d61eb10544deccd5b1c005b8b7fb7e523664b9" + "bytes": "54bd9a923fc3b77469671fa64a9fa7c089909dd6a6f92953f15e2280f4d79ae4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "961441325e155c4d9cadcc2e92d61eb10544deccd5b1c005b8b7fb7e523664b9" + "bytes": "54bd9a923fc3b77469671fa64a9fa7c089909dd6a6f92953f15e2280f4d79ae4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "ecf26afef7d93d6745a59a669a57b27301ed35e707615ebc97e03476510c86b1" + "bytes": "ef7eed571b142c66cd5922c332a07104f11de9cd4bbcb9627078733f26dbee0a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "ecf26afef7d93d6745a59a669a57b27301ed35e707615ebc97e03476510c86b1" + "bytes": "ef7eed571b142c66cd5922c332a07104f11de9cd4bbcb9627078733f26dbee0a" } ] }, "durability": "persistent", "val": { - "bytes": "4a37e04097c1826f66f38667f55a721cfc49f404434514b1416e784f54cdc1e0" + "bytes": "7c15d5415284c1f30bc7135c7ca00515c73ac938de54a796f7c97a4f7d602adc" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.124.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.124.json index 1da28c3..511a011 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.124.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.124.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bc4f27d93a763940bd4cc6a5ec0a580dca2b489697f56a26460f5dc3d6469bae" + "bytes": "09dc7e023a0cc4d19030cc1f0124bd4bc657f92418199e4a238fb473bda5cd7d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bc4f27d93a763940bd4cc6a5ec0a580dca2b489697f56a26460f5dc3d6469bae" + "bytes": "09dc7e023a0cc4d19030cc1f0124bd4bc657f92418199e4a238fb473bda5cd7d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6n02vp0z" + "string": "m27b33h15gkl80" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAPMU4IAEWFQDFEGX4I64BBJNPOM7R4PV453SLC6PNEBY62OKEMPDN4I" + "address": "GDCX6P335MO6AIGH6AOGKUHETTBW5VD557AARTFR5GNJR6SH5ONFWBJF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "624083d2c9e3ddda91b22ebbff4a88e9d9b9fee19f2bb157b367cce3061f50d8624c6694f321dc39c1c999eb3dbe71446ae734fec7dc752e5f436a342502a8e1" + "bytes": "fdf04d5e75d8847b62cc579d47bf1acf1ea9edc32fcc07ded3d35c55040284086efadd0dfa358828fe58f95082dc22613e880669e5368b569d987a5fa6894b60" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "fae7cbf7030d52d1682944e5818c36be7238e83cb5c36dcfbd2a14c05cab711f" + "bytes": "abc143976af518d1cf493ed55f9d2f79307e888e914f5e82ae3d9a768f22c891" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "fae7cbf7030d52d1682944e5818c36be7238e83cb5c36dcfbd2a14c05cab711f" + "bytes": "abc143976af518d1cf493ed55f9d2f79307e888e914f5e82ae3d9a768f22c891" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "129d8af371b6bef21a698dcb5c8c872babea1a69274f1c975452bed4ba50bd57" + "bytes": "48eea0b089843c6a29596613656482a103d3c4bee8e6ccb2adfc5c4b0346e0d6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "129d8af371b6bef21a698dcb5c8c872babea1a69274f1c975452bed4ba50bd57" + "bytes": "48eea0b089843c6a29596613656482a103d3c4bee8e6ccb2adfc5c4b0346e0d6" } ] }, "durability": "persistent", "val": { - "bytes": "bc4f27d93a763940bd4cc6a5ec0a580dca2b489697f56a26460f5dc3d6469bae" + "bytes": "09dc7e023a0cc4d19030cc1f0124bd4bc657f92418199e4a238fb473bda5cd7d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.125.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.125.json index 51e4b04..9e0d772 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.125.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.125.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bfca9d0c567e5c9031d32af0f281650f2fa6a952f225ed648ef58ff3d50a3fe1" + "bytes": "fa736a2c1fc4a0334028d7387260770bad47e2cee4cd62b67cebd6da225885e5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bfca9d0c567e5c9031d32af0f281650f2fa6a952f225ed648ef58ff3d50a3fe1" + "bytes": "fa736a2c1fc4a0334028d7387260770bad47e2cee4cd62b67cebd6da225885e5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "k6a8y0t0" + "string": "4qoxis60qoje21" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDFAN7RGNIH4DDHFJFJD6OJZG5PUG3JKTIL75FZBKS5BIYVCYJBDLVXX" + "address": "GDSMZYSH2XS6LZD7WVNJRVPOGCV2QHL47UR7EGBMQVPLXZAUYBE5SEDB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e27eeabab8c532f7de41ddc05c40592a3c8325707f0cdc0d0cf1591e10b8859c3bbb1577ffcec4582b327dd3d146a0d4dd617adf6ec3e4b98ac4a4c652e5576c" + "bytes": "8ee6e38f08d404e2734bcfb9aede23474fa10b4356ea9d2b74f3d67fe540d5d7041517d51c3f9f86713d6d00bb429037b7e4db42bee36e7b7cf234c45959c208" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ae579cc462c2fa5932f5c3166bac6757603b13c929366c71ed03faf8ae473423" + "bytes": "ab5b32cf6c35cd1fff7be0e367fa634b271c209f609942c93d2857ba144c56c0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ae579cc462c2fa5932f5c3166bac6757603b13c929366c71ed03faf8ae473423" + "bytes": "ab5b32cf6c35cd1fff7be0e367fa634b271c209f609942c93d2857ba144c56c0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7231fb7a9de5f088428f06b9490fe193337f5ddf862f348327cc0521255186ef" + "bytes": "d296e7ee55f40e5a40532dd02da59caca04a4972eec20ca48678e3156520affb" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7231fb7a9de5f088428f06b9490fe193337f5ddf862f348327cc0521255186ef" + "bytes": "d296e7ee55f40e5a40532dd02da59caca04a4972eec20ca48678e3156520affb" } ] }, "durability": "persistent", "val": { - "bytes": "bfca9d0c567e5c9031d32af0f281650f2fa6a952f225ed648ef58ff3d50a3fe1" + "bytes": "fa736a2c1fc4a0334028d7387260770bad47e2cee4cd62b67cebd6da225885e5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.126.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.126.json index f77bfdb..881b398 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.126.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.126.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2da7b87145f4093c772a194ef25d0db18b4e034e7a8c2dc4787ec031ee0c1ad2" + "bytes": "24f792f829f1601a2cbdb417a5785e9aa736e88ec5d3ff4ad42809ca61e70def" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2da7b87145f4093c772a194ef25d0db18b4e034e7a8c2dc4787ec031ee0c1ad2" + "bytes": "24f792f829f1601a2cbdb417a5785e9aa736e88ec5d3ff4ad42809ca61e70def" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "75o63wf2wpbh6" + "string": "bztuzh044so66za28q6o0888cm" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GACVAMIHDGIP5UUCP5EE2WXWBIEON3O4STSYGTUPN3CF25X2DRCLQIGY" + "address": "GBRXPQZYMKR6XH2E4NDRJBPARIV77ZEGCFGKP5TB5SOPITWSGFYQ2XBV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "90a0514b2b83544ca8a46675e8d4da472d9f4005c6b231a857662f0acaa18046557f8e89394724c888b1b88018ca856accfb5db306fe3e2912e77de7b67d0ac9" + "bytes": "9ba5a5b4c270c5ffeeef840b5a3bb81ff026d08ae812d5edd4f3262ef96baa70d1cb040043f318f621db3ffc70acdcd951cc7519dbcae2d825a5f4e137e60c0e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9fb838c4d92d93701f919f003bdc7931255513312931894987cbb9b99d1bb21a" + "bytes": "b78c2c9b28470bd01521703b9bf4000f0014afc95fb2d91b024307550d64b048" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9fb838c4d92d93701f919f003bdc7931255513312931894987cbb9b99d1bb21a" + "bytes": "b78c2c9b28470bd01521703b9bf4000f0014afc95fb2d91b024307550d64b048" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a5abfbcf2216942f811641e6c0d97eeaa74042de48a26857be0ee8a6dfb7267a" + "bytes": "b36f5145b47032e1e9a78f6f61a932d70eb4484ec7196ab143ea12087ff48378" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a5abfbcf2216942f811641e6c0d97eeaa74042de48a26857be0ee8a6dfb7267a" + "bytes": "b36f5145b47032e1e9a78f6f61a932d70eb4484ec7196ab143ea12087ff48378" } ] }, "durability": "persistent", "val": { - "bytes": "2da7b87145f4093c772a194ef25d0db18b4e034e7a8c2dc4787ec031ee0c1ad2" + "bytes": "24f792f829f1601a2cbdb417a5785e9aa736e88ec5d3ff4ad42809ca61e70def" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.127.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.127.json index afa074d..df54f4c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.127.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.127.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e071f3d9e9d1ca2d40fb05b318d2e9e142d2077b4c23ce98b3e305fb8260009e" + "bytes": "03421f69efb18a2b4098bba55131d20b34aff7b6a4ebb308f6cc5effd543f0b8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e071f3d9e9d1ca2d40fb05b318d2e9e142d2077b4c23ce98b3e305fb8260009e" + "bytes": "03421f69efb18a2b4098bba55131d20b34aff7b6a4ebb308f6cc5effd543f0b8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "dy2rqo2f" + "string": "af6ohnj12o7872pni6239939hw27slb0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCTXPZWVTR6NPKABVID2GRPHEZC2DSHPIQIMSGOYOEKKMP4HLHLFNOWL" + "address": "GCNWADOBFPQ3POSQAUC5SCBOADIBTBG4J7X7XJM7TXGO4P72QCQ7H3VZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e1f821c0fce5fc839cda9668b63a9943721496d52de0cd97d5b13bea27cb9653e20e44f78b1e3acbf6d19d7c1608e130555be5931b71c967977df50a92bc594f" + "bytes": "aebb9969088f836e290c4fd0e0840bea8bb50b4fe776334f1a5e8f0663709628cd0658ba9fda6c480901c7dc9bcce64743089457a673ef647ab993383c7e94c6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e490756025f621f8352df57fd9e672578aecd5fb8c111e261667d4fcffc9108b" + "bytes": "0a832aad2bdeb7ac9523fd0ca98e069b1daf24ba31b93aebc70ceb87e0851d48" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e490756025f621f8352df57fd9e672578aecd5fb8c111e261667d4fcffc9108b" + "bytes": "0a832aad2bdeb7ac9523fd0ca98e069b1daf24ba31b93aebc70ceb87e0851d48" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "40e278552afc0807bebb69d9f2005b26e8d51c008c3190826b527be68bb6432f" + "bytes": "681c1f7f9d29ce84733be7d2ebe550d1780fdeee2d87e2967a53c007efa96c82" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "40e278552afc0807bebb69d9f2005b26e8d51c008c3190826b527be68bb6432f" + "bytes": "681c1f7f9d29ce84733be7d2ebe550d1780fdeee2d87e2967a53c007efa96c82" } ] }, "durability": "persistent", "val": { - "bytes": "e071f3d9e9d1ca2d40fb05b318d2e9e142d2077b4c23ce98b3e305fb8260009e" + "bytes": "03421f69efb18a2b4098bba55131d20b34aff7b6a4ebb308f6cc5effd543f0b8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.128.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.128.json index 45da1f5..788a582 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.128.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.128.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f33f1c65ce70e23825344610ce24ddaf688aab971cfc73767ce75d3dc323b39a" + "bytes": "3d8ffd91fbb801f36bca2c4364f5f17bd5fd7863da010c1745e002a976a06673" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f33f1c65ce70e23825344610ce24ddaf688aab971cfc73767ce75d3dc323b39a" + "bytes": "3d8ffd91fbb801f36bca2c4364f5f17bd5fd7863da010c1745e002a976a06673" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "wel3d00bn97u3e3y1761juj32k" + "string": "i440p69b4ylt95npgheftmn56" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDAKRV2ROUP3NU67QDT7ULIGTLPCKO7EL62N757OHX2DJJ25WO25ODUI" + "address": "GBIPQKNXRLO6A7SL76CW7I2RYBPRN2TPPEDOOUJCJIPKZ6SIVMVXVHFE" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5fd70ef1cbfa1b61df20cc03dc9b259aaddbdc3c72e5156212271be83adf6d792c4ab26916ae4fdbce24d611ccdefec277c2e747ea2fd1a6fdaace1d8588e7e5" + "bytes": "78bf62649cafa2e558d0c9cae49f2dd400e6ce7c0713b031c254a59bd75a52e0d2511753dfe19e61757c7d6838432b94ddcf7f5b62c233155125ea38af23496b" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f966c701b79fcc8f818020bc789fc59c6e36edd84290c7bc77e92e011bd8fb95" + "bytes": "4fe4c946423cf54dfeddea33aab55dfd5db11fc32dcb44df7bd4140b9f19b1da" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f966c701b79fcc8f818020bc789fc59c6e36edd84290c7bc77e92e011bd8fb95" + "bytes": "4fe4c946423cf54dfeddea33aab55dfd5db11fc32dcb44df7bd4140b9f19b1da" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a0f1a6854c1efecbfb9917120a32d3782ac8f3b1c3ff6b25c44f93e563f05a99" + "bytes": "7e937d66bd4f0337b41c2aa6f4cde6f8696d5ea53f4b31c4f7624c960c68fc02" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a0f1a6854c1efecbfb9917120a32d3782ac8f3b1c3ff6b25c44f93e563f05a99" + "bytes": "7e937d66bd4f0337b41c2aa6f4cde6f8696d5ea53f4b31c4f7624c960c68fc02" } ] }, "durability": "persistent", "val": { - "bytes": "f33f1c65ce70e23825344610ce24ddaf688aab971cfc73767ce75d3dc323b39a" + "bytes": "3d8ffd91fbb801f36bca2c4364f5f17bd5fd7863da010c1745e002a976a06673" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.129.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.129.json index b74e25a..4145211 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.129.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.129.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "cf70ad8f64f7a8a61d66c998cd6e19ec2cc3211fb00aed099e16685d68646148" + "bytes": "de9b99a7587dc6940ae3090eaaad9dcfc262e28b2b03e4e920011aec80420e97" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "cf70ad8f64f7a8a61d66c998cd6e19ec2cc3211fb00aed099e16685d68646148" + "bytes": "de9b99a7587dc6940ae3090eaaad9dcfc262e28b2b03e4e920011aec80420e97" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7on488ei44n8" + "string": "w6oz8yqx4kq34f058z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAJVR4Q4J6JOIAANPALNZSSAWMUGJEEAE44M2M5CPPBFHWQTPC5EWB3H" + "address": "GCJ54DARHIBLVWO5KLE3WTCYGYNMP5KRJOP5ZSY4SZIVCCIJFDFEQZ7X" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "4cc8803b50a582e2be53380ef3ba9b34ce1d9613f053f4d84307056491f0e8ab699533f9ac050bd4b9dfd06ac74755bf25bb61a3c5e1d1517b06261af1ab652c" + "bytes": "77f6c38f579c42c3d841d159dd5c296163f4c2696fee71b1486841e11b01b5d4340d32848eb875966e0db61eb2cb869e0201e9898d31a23522df6f3b5ff7f9f2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b643541d2f8aa3052a6e27edd90c0e22f003046d4d03a9c1dd5e4f0ab5af29fa" + "bytes": "23f308d405f869f0c21401410ec25eb689ed1f398ae4bca2a7eec8b57b4c10a0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b643541d2f8aa3052a6e27edd90c0e22f003046d4d03a9c1dd5e4f0ab5af29fa" + "bytes": "23f308d405f869f0c21401410ec25eb689ed1f398ae4bca2a7eec8b57b4c10a0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "81d657dab2d8b87a50e00b033c23a68a76a073d8d620d6914aa571e84e7cce6a" + "bytes": "8aa7e1848f1474813c354ecd5d7cd7f9501a059e73edf975f830ff0a406556e9" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "81d657dab2d8b87a50e00b033c23a68a76a073d8d620d6914aa571e84e7cce6a" + "bytes": "8aa7e1848f1474813c354ecd5d7cd7f9501a059e73edf975f830ff0a406556e9" } ] }, "durability": "persistent", "val": { - "bytes": "cf70ad8f64f7a8a61d66c998cd6e19ec2cc3211fb00aed099e16685d68646148" + "bytes": "de9b99a7587dc6940ae3090eaaad9dcfc262e28b2b03e4e920011aec80420e97" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.13.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.13.json index 903758e..b3e9216 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.13.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.13.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fb788597afae2004eb9443907fe1efcbb4c2e0f5bb88e2b62d5e580a67bf31e6" + "bytes": "287b356c2fac9ddf4f3cd458e19a8b4b22fac9766760691cd6f919f1c9edc716" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fb788597afae2004eb9443907fe1efcbb4c2e0f5bb88e2b62d5e580a67bf31e6" + "bytes": "287b356c2fac9ddf4f3cd458e19a8b4b22fac9766760691cd6f919f1c9edc716" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "281n3pyuyz8tspwkg" + "string": "wz02rg3369" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDHR7YYWVPZCBGEEIEMLA4OHBQ3GMCYWUKJSY3ULLXAPHXF5FXQZH3GT" + "address": "GD2G6GOB5RYI7ES762O6GFHD5O2QAO6EWMYCJRUUFZKLI5VKCS5HWSPJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6b0adf4dc9b4f2b3c53ebc801940b146b3991fe73ba579dfced1e4813b0ca0bcbe875291465de4ac0b13d543da7f3b64df6d687257b06db29c3b2044b2b81f42" + "bytes": "21ad04ff2278f78abed7d86e6735ded7a550d5a0387877c6300886d768aee14656a3689585b5f5c96560e8ce5eb1afc750347d78d1726ca4f6beb4742c0a495f" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "260772c932e725dd2b09f84420f5e102cd2dc289ef7ffa1e3daa2dad4324a9a3" + "bytes": "e9237d49691b7efc2591b60788fa1e23556b8ea41ca5eed1251d0eaa75c8864b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "260772c932e725dd2b09f84420f5e102cd2dc289ef7ffa1e3daa2dad4324a9a3" + "bytes": "e9237d49691b7efc2591b60788fa1e23556b8ea41ca5eed1251d0eaa75c8864b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c957cfe035780ef33690e5fc999c4320cd3b7720eaf434bcab84be69cfed9705" + "bytes": "753499bbe97d2c7600a4813b81d3995aa71c3d345d52e1ec57435a1df4aa6934" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c957cfe035780ef33690e5fc999c4320cd3b7720eaf434bcab84be69cfed9705" + "bytes": "753499bbe97d2c7600a4813b81d3995aa71c3d345d52e1ec57435a1df4aa6934" } ] }, "durability": "persistent", "val": { - "bytes": "fb788597afae2004eb9443907fe1efcbb4c2e0f5bb88e2b62d5e580a67bf31e6" + "bytes": "287b356c2fac9ddf4f3cd458e19a8b4b22fac9766760691cd6f919f1c9edc716" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.130.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.130.json index 13fdd9e..db605af 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.130.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.130.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "71f9f19fd2f661596a40048ff7faa29b0230aabb8385d5b4bc5b96760743f3ef" + "bytes": "0fa4728afb21863f99cc35a1d9eef0eeff1c828aff27374498d0049ea9ffc4a8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "71f9f19fd2f661596a40048ff7faa29b0230aabb8385d5b4bc5b96760743f3ef" + "bytes": "0fa4728afb21863f99cc35a1d9eef0eeff1c828aff27374498d0049ea9ffc4a8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "uv7q68ha344gxu8p7654" + "string": "7tx5xfpyv04qm8p97buid35v" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAX34LWIMI6OKZW6D3LZYQCQSGAWQ2VCEHAPL6WHBO35IGT4RPKFXNB3" + "address": "GC4EP66VRLB76BR2PTASBQU5VUCSRAGSPF4W3P5MXQJP3JQUB7RNB3MR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5c30ec6b57f12b136f99a04c8b35b470c6bf81d5cec892c9b01ea9a1db992c802bac5f661035bdfa598c563a99cb0f5bafa0fd3a022fe5c2f3474f5c627d25e1" + "bytes": "b4214cd968103d3c2c76f1a3431d7e0ee0f2be7c51280abf05efea8144b1632f930016dc9433df87da13730d761e3e7db1a93bcb2ccce1eaa3e22291390d2b26" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5bb19b18eac0f608ae4a97e50d8fdfafad9f357ca93a21c156d289488979499e" + "bytes": "212cb8cf312ba2418886223bc16aaf60cc11e7b98d2b1ee9f933cba83b6ad1ca" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5bb19b18eac0f608ae4a97e50d8fdfafad9f357ca93a21c156d289488979499e" + "bytes": "212cb8cf312ba2418886223bc16aaf60cc11e7b98d2b1ee9f933cba83b6ad1ca" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4756e91c7b0bb7fca700a4c9cb33dbab826713dfa74fbcd96a565c7024ef9106" + "bytes": "0fdb01b76d3f810fcaff2977527ebc2738c20a2d4b5051ee7497c89bdf74b1c7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4756e91c7b0bb7fca700a4c9cb33dbab826713dfa74fbcd96a565c7024ef9106" + "bytes": "0fdb01b76d3f810fcaff2977527ebc2738c20a2d4b5051ee7497c89bdf74b1c7" } ] }, "durability": "persistent", "val": { - "bytes": "71f9f19fd2f661596a40048ff7faa29b0230aabb8385d5b4bc5b96760743f3ef" + "bytes": "0fa4728afb21863f99cc35a1d9eef0eeff1c828aff27374498d0049ea9ffc4a8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.131.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.131.json index 82ae66a..2375082 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.131.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.131.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "dd8af75270b9bd31362faa450372f0fe8ce7c310cfd64d189dbe6339d55403e8" + "bytes": "57006221703ec055763f0207c7b186a2fabe5f1ae2ec5b16e11bb457876a4656" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "dd8af75270b9bd31362faa450372f0fe8ce7c310cfd64d189dbe6339d55403e8" + "bytes": "57006221703ec055763f0207c7b186a2fabe5f1ae2ec5b16e11bb457876a4656" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "js08gdopn8q13q5zt22y3016sk" + "string": "a52b56839d" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCOTYPIMSZVAHS7JMVI4XILSV5CPIO4LCFTJJ6YPWES5R6FLWWMTPKGN" + "address": "GCTORBZJB6PMEAYYSFAO5IMQVA5LN5WETGXLJONMHMBMN6GCEVMUECPW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "777516cf06067a6c4c8950dfdea2234de24c7740c342843ee74ad8ce3745ad50e38b3f6968b6ce12219ad56cf41dd5b1522076ade34346a8605d76577eb59495" + "bytes": "f50e74a9490942f7fb95af416b07ee052a29e015b14c8cb65fe41e8d8f6c063e60a436f2901805620e2d1fff1fd7ee3c31b7b746249b9102263d82971dcf530c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f8ed8c0ddc194b73451d08fd35b24ee1a3d70edcb69e2ff46ba0126b5365d760" + "bytes": "cde21de0939539fada525dc08c4fb788ee5001c81fbece40c37ea4431042dcd3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f8ed8c0ddc194b73451d08fd35b24ee1a3d70edcb69e2ff46ba0126b5365d760" + "bytes": "cde21de0939539fada525dc08c4fb788ee5001c81fbece40c37ea4431042dcd3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "80c67bdac3b44e912c158f325f970ea4640b2f401de325b587415aefd5984e6f" + "bytes": "e790e041b7fd1c238f25be0d4cc7a0a2eff184dc700e148b4500e86113699562" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "80c67bdac3b44e912c158f325f970ea4640b2f401de325b587415aefd5984e6f" + "bytes": "e790e041b7fd1c238f25be0d4cc7a0a2eff184dc700e148b4500e86113699562" } ] }, "durability": "persistent", "val": { - "bytes": "dd8af75270b9bd31362faa450372f0fe8ce7c310cfd64d189dbe6339d55403e8" + "bytes": "57006221703ec055763f0207c7b186a2fabe5f1ae2ec5b16e11bb457876a4656" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.132.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.132.json index 701d036..b0acd19 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.132.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.132.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "20368613de3e192ebd80e8c1ccbd169a3a48024d3bc98068907fdd204f54f4ee" + "bytes": "00a2283fabed863f7a8a516e7358b34c0cec00dcc172ccaa4c2815c45dadf4a2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "20368613de3e192ebd80e8c1ccbd169a3a48024d3bc98068907fdd204f54f4ee" + "bytes": "00a2283fabed863f7a8a516e7358b34c0cec00dcc172ccaa4c2815c45dadf4a2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "j3hn8btyhxahmrp32c889gj83fhc2mr" + "string": "i306str3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCBVO676PA4DMNK6PVT3MYZZNYWSCJV5MO3DKQAXHFJZYSH35GAJYOP4" + "address": "GBOG5SZNWFKMHMHRAYBH7DWLFDUVHFVZGRYEER3TXIMPBSIK47F7SBCC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c5ed2ff9171ef43f2077d590a26e1cf873fc86dfd08018188c96735d8084a8ff3fe3cfb990cbd7f8bc5447b162434fce87d51ccbb93b5daa4c365984889e38dd" + "bytes": "5e07abed6977a99c219faa7b29ca68577034e83d87e33544bac3b668b0b0391d5f8b96b2c6e83468df94b2ad8fc5426001a605db8082043eb4f1c74318948c5d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1c378e32c436d5ca121028edb5f84195194d50a23fdf3672ea79021443d0f494" + "bytes": "4fe4ddcbfa87383329ebda4367cbeab84aedd27735a58fd46d7da8d2aa55c8ac" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1c378e32c436d5ca121028edb5f84195194d50a23fdf3672ea79021443d0f494" + "bytes": "4fe4ddcbfa87383329ebda4367cbeab84aedd27735a58fd46d7da8d2aa55c8ac" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "cd3b407ac7e0eee99b6b4168af72a477fa495c6793ad4e34a53b2985f16213d7" + "bytes": "fef182a493c23cab8e38649efb581c9428cc98be22955bbe714a3c2b6042d34f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "cd3b407ac7e0eee99b6b4168af72a477fa495c6793ad4e34a53b2985f16213d7" + "bytes": "fef182a493c23cab8e38649efb581c9428cc98be22955bbe714a3c2b6042d34f" } ] }, "durability": "persistent", "val": { - "bytes": "20368613de3e192ebd80e8c1ccbd169a3a48024d3bc98068907fdd204f54f4ee" + "bytes": "00a2283fabed863f7a8a516e7358b34c0cec00dcc172ccaa4c2815c45dadf4a2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.133.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.133.json index b987d0f..4df9787 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.133.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.133.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bf50216d634739a61969d7852643bcda96d93c2635649473d43da1505f167aee" + "bytes": "10f727e7aec99d2bdd6acbff45eceea4e79b6325e6a7b384db7d5029e360ef6f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bf50216d634739a61969d7852643bcda96d93c2635649473d43da1505f167aee" + "bytes": "10f727e7aec99d2bdd6acbff45eceea4e79b6325e6a7b384db7d5029e360ef6f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "09hy32k975rj55e4e6kf" + "string": "baj" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC254FV2UWEOCSFAYE7DNFG2PAWW7IC6L5PSO7C5R5OYHD3JTFQJTMFN" + "address": "GBPFSLX53R2MDUYHPKZX7VKBXQA5WGDQBYRTP53TGPNDIBDCZ5HWOTCS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "48b312e2f636a8ce80d624745f6eca23ca38419a304ed7278dd760d8bce4ca1c5b500f7245568fb45295050369b3e97698f1b57dd1aa31cd46cb38c562d268b4" + "bytes": "ab85dad1eb70944ccbfd63c032e00d341f5c4d8701df7c4753b1adbd4c3158443ec98d36a653fb231b3fc3f9581106056fa5aa85b14f0fce8fa4a302d750947a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6095c3de4e2a88aaffe5663ce922b401f5c2694395d42b35ad7b9781de1dcc8b" + "bytes": "f40c51d088b7f859969237212de3237c5f42bce36d28c16ff0f200510db591c0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6095c3de4e2a88aaffe5663ce922b401f5c2694395d42b35ad7b9781de1dcc8b" + "bytes": "f40c51d088b7f859969237212de3237c5f42bce36d28c16ff0f200510db591c0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b9d6045ae5143b95a5b07d4cbc46554fa2a85faa5be30474a46485b523e62618" + "bytes": "5fdb37b81f24fe1e0c39fdb84fc813770a3fa86c105036748e966003b6302fec" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b9d6045ae5143b95a5b07d4cbc46554fa2a85faa5be30474a46485b523e62618" + "bytes": "5fdb37b81f24fe1e0c39fdb84fc813770a3fa86c105036748e966003b6302fec" } ] }, "durability": "persistent", "val": { - "bytes": "bf50216d634739a61969d7852643bcda96d93c2635649473d43da1505f167aee" + "bytes": "10f727e7aec99d2bdd6acbff45eceea4e79b6325e6a7b384db7d5029e360ef6f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.134.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.134.json index 9f6fc24..f07db64 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.134.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.134.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9a9b2fa2313f28eeb9217d6c7cf03320bd1b989c1e08a03829741186ad9b3b33" + "bytes": "9c5e89ee26ce5acfb57f9ac0f6e4435ebbb59063b5953a0bfda4bb07b4f9ac55" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9a9b2fa2313f28eeb9217d6c7cf03320bd1b989c1e08a03829741186ad9b3b33" + "bytes": "9c5e89ee26ce5acfb57f9ac0f6e4435ebbb59063b5953a0bfda4bb07b4f9ac55" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "q94494wm0pt80hfvb9t664l1778q" + "string": "8h4" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBM4TP6KVXAKG7MFW3N7STUW65LEOAW5T2OWRFAWWKT4CJ6PX6PL44W7" + "address": "GCB3H52JZ5UXJEBEXIDA4FYFY7XW2RW5QUMZERNNNZGYPEVP6CM4BDT4" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "59bd8e943898146611e61519b0f2ff75f241a69234ed0902509caa773453c63a93ae571e7f0c47e23692da852c6e633b852bccc8ebb0a9012e0bf8ef957ebe77" + "bytes": "ec26c1cbea64fe5ac0d5589313c6ce9ff2abc537c24debc4ecab2023b2b9605ac92632e229d2d4c10b8c48ef188dd29fc24f2e4eaabe70440736563082ed0828" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3fe7a5ab462bc3025c098fdc2f4b557e005ddb6e6b8f9179076edffb31bcd3d7" + "bytes": "8be746d67059215f6cf0274b6ff1b2f379550aaf7ded16d60664f93fd675d9a9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3fe7a5ab462bc3025c098fdc2f4b557e005ddb6e6b8f9179076edffb31bcd3d7" + "bytes": "8be746d67059215f6cf0274b6ff1b2f379550aaf7ded16d60664f93fd675d9a9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1aed08b370e34df3032dc1630f9879cf3213b9e50b3e1e2b81bc8e6636d46c92" + "bytes": "64d08b930e97979570459b26158a2dd03b5bc91c18d35e878c300c2ca0a5b1a0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1aed08b370e34df3032dc1630f9879cf3213b9e50b3e1e2b81bc8e6636d46c92" + "bytes": "64d08b930e97979570459b26158a2dd03b5bc91c18d35e878c300c2ca0a5b1a0" } ] }, "durability": "persistent", "val": { - "bytes": "9a9b2fa2313f28eeb9217d6c7cf03320bd1b989c1e08a03829741186ad9b3b33" + "bytes": "9c5e89ee26ce5acfb57f9ac0f6e4435ebbb59063b5953a0bfda4bb07b4f9ac55" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.135.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.135.json index 67aecb3..5f7e060 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.135.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.135.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b21558fdbf1bb7294f379368c8c8c1f30aaaaab6c6168ccda1ab47fa48e22b68" + "bytes": "ceef4c18a283b1e3e8c371d7f3e2759f8490cb1b22e3e022bd811a842461c148" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b21558fdbf1bb7294f379368c8c8c1f30aaaaab6c6168ccda1ab47fa48e22b68" + "bytes": "ceef4c18a283b1e3e8c371d7f3e2759f8490cb1b22e3e022bd811a842461c148" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "35df603162h" + "string": "u5s" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC3VD2CMY7A3G7HW5HORSHEJFKY3NP37BIEZTEDVEYPNQVFV4GVPIISP" + "address": "GDGBGKOYD2H4OO7HYOBP3U6AK7SEZBDYXXO3TPA5R6JJE5HJM3YWOXKV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0954b792bb196d97549bc0d16e356bd79f6991d90dce8961e7144ea3e1b2efad9724f0d8e202ae94aa49b81a534ec83c6bb40f6b18ae67a623d2d7770f92dee2" + "bytes": "0af67fceb646f49136ac89a15471fa970b930ff9ec5be315cd972c6f0876765a48408d8a8cec0e32681abfd2ed02e261ae28f9bd911e78801eaebb5f72bec1ca" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "01bd025e44ba78b816def3a92cde53ecc6c8379307c8845d39e5d24e5f6cafbd" + "bytes": "7b3bb0c38158bb6359bcf8bcc23e602dbe20f9aaedcf97dad14f3956f049fdef" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "01bd025e44ba78b816def3a92cde53ecc6c8379307c8845d39e5d24e5f6cafbd" + "bytes": "7b3bb0c38158bb6359bcf8bcc23e602dbe20f9aaedcf97dad14f3956f049fdef" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8c1535f22110ff0e2cfd99858bc488061f218f15d657d2125088ea6600f7f61e" + "bytes": "f237ab355edfc10849dc1ee94201e07c0709a7d440e3c831b24700ea006a6b45" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8c1535f22110ff0e2cfd99858bc488061f218f15d657d2125088ea6600f7f61e" + "bytes": "f237ab355edfc10849dc1ee94201e07c0709a7d440e3c831b24700ea006a6b45" } ] }, "durability": "persistent", "val": { - "bytes": "b21558fdbf1bb7294f379368c8c8c1f30aaaaab6c6168ccda1ab47fa48e22b68" + "bytes": "ceef4c18a283b1e3e8c371d7f3e2759f8490cb1b22e3e022bd811a842461c148" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.136.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.136.json index 99ee104..a5b62ae 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.136.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.136.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fa34bea732a2b1a88fe34537938e1e758a288a681556741768178b811bc7a06c" + "bytes": "24a3a6e210314da538a222b6da0c897a5571f460dc9f132c482bbc9f0f409657" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fa34bea732a2b1a88fe34537938e1e758a288a681556741768178b811bc7a06c" + "bytes": "24a3a6e210314da538a222b6da0c897a5571f460dc9f132c482bbc9f0f409657" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "54098" + "string": "d1z0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCFF4E55I6JF2VX7Y5LSSAEGY5ZNUOBTOG5FXDCH3AQPKLBOZ4KTEWM3" + "address": "GB3J554SRTOJDSYBH75PK3BDQE37JQA4QXSJX57E224T3J73OL6GYTJU" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "df91b0bed1e0edb606167572bced67404a7ccb31e4d871c975690bec26f07845d08aa4311f847f7b030aad8deefe2650dfd1842f3c2f0ba21b27105281399658" + "bytes": "c729660673fae347c2be722bdf2ea3f5bb85510428520102101152f5fe400e8fbf4171ae893be84d16f30af43f605d628dd73488de18e24dcd8c99afa2e206c8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0e765e9c7c74db068e1452ae0c20df8be6eec1ef4fd7b01f18b1d9144579e8ba" + "bytes": "578b8404a48cdc07deedb79d6e118c620e4264a048fd684576a234562ff0d8fe" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0e765e9c7c74db068e1452ae0c20df8be6eec1ef4fd7b01f18b1d9144579e8ba" + "bytes": "578b8404a48cdc07deedb79d6e118c620e4264a048fd684576a234562ff0d8fe" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "24ce97512051a352d8eb43bf4d01d0be795dd8951943937180dfdb5aa810635a" + "bytes": "6493fed19758729315cf825f29fc980f1ef171d488abaa4b99bdd981c2f411fd" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "24ce97512051a352d8eb43bf4d01d0be795dd8951943937180dfdb5aa810635a" + "bytes": "6493fed19758729315cf825f29fc980f1ef171d488abaa4b99bdd981c2f411fd" } ] }, "durability": "persistent", "val": { - "bytes": "fa34bea732a2b1a88fe34537938e1e758a288a681556741768178b811bc7a06c" + "bytes": "24a3a6e210314da538a222b6da0c897a5571f460dc9f132c482bbc9f0f409657" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.137.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.137.json index fe3b96d..0531eec 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.137.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.137.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5378bd5c0ee7ca6fcf0b69699faf0e3fb699cc09ddc65426d1562a07d0bcf3c9" + "bytes": "d2fccd6f95cef05d82e8fd94ba8f851974798e1f86dfd01a0e911dd7ea13e85e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5378bd5c0ee7ca6fcf0b69699faf0e3fb699cc09ddc65426d1562a07d0bcf3c9" + "bytes": "d2fccd6f95cef05d82e8fd94ba8f851974798e1f86dfd01a0e911dd7ea13e85e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "s5m4l5iik4fiu3" + "string": "5ziiwp0w9c5v08111j2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCCVYZ2WCMEYFHWCKGLLX27ZQ6KOWWQMUNYYEINJWKYPC2MISNCY5KID" + "address": "GBDWCTB5NYQD2LNTHA6PU7E3IMHGIWMX6BG3TE3GQWDA7OLMUVLFBUH6" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "147a3fb0799eaf38a6f9501c5685c58d32b451a0a4d835e8dc87cffc1e4fd7f4f7d1f572960dd977cd69eb79c1d0b41ac34dd5ef8062fc26a0ff394c9d881a63" + "bytes": "da0b709bbd8b68988f9c6de554b22a5e4de6f6f13c1871725d9938d512090222c8ce2278ac358379cef5375ca359f6506f3a7059573aee75337a24193933b901" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0c73a40aaa7daa5a5c05f83f99831db6a48f090e06560ddecb98901d7469b567" + "bytes": "4d11ca76801cbe8721e203a12d165a39777a551744a61f297b12d89aa6dd5ecf" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0c73a40aaa7daa5a5c05f83f99831db6a48f090e06560ddecb98901d7469b567" + "bytes": "4d11ca76801cbe8721e203a12d165a39777a551744a61f297b12d89aa6dd5ecf" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "bbfdeb1401e1f692a0874492610e2665cdeee83a5c62d3584841db1f5de02ceb" + "bytes": "f7e0f089681d3b5300cceb0e53af52e7ad02ac4136245d4e3ea02052120295cc" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "bbfdeb1401e1f692a0874492610e2665cdeee83a5c62d3584841db1f5de02ceb" + "bytes": "f7e0f089681d3b5300cceb0e53af52e7ad02ac4136245d4e3ea02052120295cc" } ] }, "durability": "persistent", "val": { - "bytes": "5378bd5c0ee7ca6fcf0b69699faf0e3fb699cc09ddc65426d1562a07d0bcf3c9" + "bytes": "d2fccd6f95cef05d82e8fd94ba8f851974798e1f86dfd01a0e911dd7ea13e85e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.138.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.138.json index b7f091a..945d3f8 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.138.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.138.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9aa40fac548091d3facc6faa582af96787d25eb6e119e878795997091c465df5" + "bytes": "3f01e47b7a70768b7908fc1dcf07d8e10cb5b55614b7be39a7956ad75b438df8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9aa40fac548091d3facc6faa582af96787d25eb6e119e878795997091c465df5" + "bytes": "3f01e47b7a70768b7908fc1dcf07d8e10cb5b55614b7be39a7956ad75b438df8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "v21s33kyr7ba0636ob" + "string": "i3ruup5v4ecn7pf7cnj977g63" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCZARELJIEFPNOU4RME7RBNU3Z67QGOQA2QHWW55364TEG33FVU4PMBZ" + "address": "GDFJLIKLMGCK4WXRQ5U6NFBKWPNLMVDBU5ZP2YVEIU4MRBLZKKDOBNIO" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6f8c6562152899b78c97ac68e471ec5886e079310c06926540da70cd02f7cd506cc441c48c5e097e8a03e5de9c0d22c40232bb7e2614e6854c841bf41f192079" + "bytes": "51a1715fee5fa346e330801c168272d2b3abd939bc0404bf9887492ab99c1aabc38c3b07bc6fbbce799e55a01851d335c0c81cf45ecb6c6549724d98cdd4d81d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ca0f2f41eb1080ec008ba1220197af264577d483310961e9e3f79eea89dba4e6" + "bytes": "b773358ca7ea82542729a588bff18f7e2db6909e296a1cf7e2e40fe251e30d8a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ca0f2f41eb1080ec008ba1220197af264577d483310961e9e3f79eea89dba4e6" + "bytes": "b773358ca7ea82542729a588bff18f7e2db6909e296a1cf7e2e40fe251e30d8a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b8173a9edb6d505675c3a9325566b2eda4d158afec1cc584d55e36b3ca5aeac6" + "bytes": "7c9a485a439447dd6692dcd2f5e1a63e474e133543693126b471295e3ee2dacf" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b8173a9edb6d505675c3a9325566b2eda4d158afec1cc584d55e36b3ca5aeac6" + "bytes": "7c9a485a439447dd6692dcd2f5e1a63e474e133543693126b471295e3ee2dacf" } ] }, "durability": "persistent", "val": { - "bytes": "9aa40fac548091d3facc6faa582af96787d25eb6e119e878795997091c465df5" + "bytes": "3f01e47b7a70768b7908fc1dcf07d8e10cb5b55614b7be39a7956ad75b438df8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.139.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.139.json index fd1320c..ac2c747 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.139.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.139.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8721b383d064e6fd9ad7c7642749523a6dd130020792676706338a5064b79486" + "bytes": "d76e95f1b7d0663778c966ba453663b5244202868f5f72c498fe4e3b0febf27d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8721b383d064e6fd9ad7c7642749523a6dd130020792676706338a5064b79486" + "bytes": "d76e95f1b7d0663778c966ba453663b5244202868f5f72c498fe4e3b0febf27d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "vk674s7" + "string": "40k9o192fv4a6e8j74d" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC4GNDZWQ7G7U2YNDO2RYBHJEPIVZDLKLJ5UXICM4HLVXG5IGDGY3B3G" + "address": "GAP2KBOJSKEZL56WKXIXV3S7AUAC3XQZV6WKPNLKG6NXRSSXUEYCM7QY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "375448bb505daa8f735e7dc3dace5efb9c66826ec900c4fcbe2832237d84b84bbe0ddd0d5de3ff1661c18afffbf38d574d5b2d792da18740fb0ac6cc3a2c76b5" + "bytes": "029d72728bb7a5d92035b832a627b4f43b6a6f22791680e1f08d7b70573fd78755622e94e770f428f05450dbfaee498ba81bbb5a6f696052329ff943eee93cfb" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2687205ac9ec60fae18de5dda33b9cae98c4355fe4a5cf6147d40278d2653508" + "bytes": "1a5cbf4d46288cda13564c99b484764bb9b27cf25d939bce1ca8e97e6a3427bd" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2687205ac9ec60fae18de5dda33b9cae98c4355fe4a5cf6147d40278d2653508" + "bytes": "1a5cbf4d46288cda13564c99b484764bb9b27cf25d939bce1ca8e97e6a3427bd" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "aa04cc1b4540c7640c72508a0446848c7cc1e5100e959a0f61fdca0134b01775" + "bytes": "552efcd159004c67acde51f6fba4464646c8d6cda5c61278f4e8d506bc25f159" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "aa04cc1b4540c7640c72508a0446848c7cc1e5100e959a0f61fdca0134b01775" + "bytes": "552efcd159004c67acde51f6fba4464646c8d6cda5c61278f4e8d506bc25f159" } ] }, "durability": "persistent", "val": { - "bytes": "8721b383d064e6fd9ad7c7642749523a6dd130020792676706338a5064b79486" + "bytes": "d76e95f1b7d0663778c966ba453663b5244202868f5f72c498fe4e3b0febf27d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.14.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.14.json index f185b6b..d5a28ec 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.14.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.14.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fb3df81b93f1d42f6cee197dd4d954568e65b19f66757d5cc01aa2fcab365d9c" + "bytes": "489d397d6d4dca6d090707b7747ef37303691f91b08c451b7d5c5486c5ff7901" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fb3df81b93f1d42f6cee197dd4d954568e65b19f66757d5cc01aa2fcab365d9c" + "bytes": "489d397d6d4dca6d090707b7747ef37303691f91b08c451b7d5c5486c5ff7901" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3226yjt82a8xd467hp184juuuvcz055" + "string": "x7w64q134h66yhn84d04m" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDGXJSRVAP66RZXKZPSYQ5D6WJI4JCBNGAXGWBNGKIGGTL56SG56T562" + "address": "GCHLNK3C5I6VOG3OB3CL4BBY7LTH4VI5G6O5CHD5XA2APDZXRDQM4LYJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "774c33eaf786b767a8478a08a959c47b8ba81b15e73e8cee136f43a93265f7f770c4bb755ee8894dc3b5c46a51f3ff0ca77699bfd4d3077c70a7dfe759d25a12" + "bytes": "ad3b612cb076b7aa4a87b8040734b5bf010630c4c1161207ca30d01e06262cad68e0c0ea920d7f7f5f484398ef04d57188e59386015187fe8dc527d0ce1d6bce" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "06d89e67a6ef7f364e601ad2341a0d268fcdc5e8a2b9a6cd5d62c5de76aa018e" + "bytes": "f59ecc95d5d5b099efb2c94419236068ba0f52448fe5f43ff63bd631497dffdf" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "06d89e67a6ef7f364e601ad2341a0d268fcdc5e8a2b9a6cd5d62c5de76aa018e" + "bytes": "f59ecc95d5d5b099efb2c94419236068ba0f52448fe5f43ff63bd631497dffdf" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "fa8b4b728d76ccf7d8baf5d5a554fe920bce8c84801430badeda632b481e18d4" + "bytes": "8e1299043a1c5627fbb1532d4d4c9c12fa5ec16e41303bd47bc7e8d4a652ccd4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "fa8b4b728d76ccf7d8baf5d5a554fe920bce8c84801430badeda632b481e18d4" + "bytes": "8e1299043a1c5627fbb1532d4d4c9c12fa5ec16e41303bd47bc7e8d4a652ccd4" } ] }, "durability": "persistent", "val": { - "bytes": "fb3df81b93f1d42f6cee197dd4d954568e65b19f66757d5cc01aa2fcab365d9c" + "bytes": "489d397d6d4dca6d090707b7747ef37303691f91b08c451b7d5c5486c5ff7901" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.140.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.140.json index 6967f75..b094797 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.140.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.140.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a5e3464081724a5561da8f850c90435e22229ac5c95a454efb9001553a9aa377" + "bytes": "abfff528f142210cb8022d4b82a76e2372493b0b5a994fec9c3cf1f6345851d9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a5e3464081724a5561da8f850c90435e22229ac5c95a454efb9001553a9aa377" + "bytes": "abfff528f142210cb8022d4b82a76e2372493b0b5a994fec9c3cf1f6345851d9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pjc23" + "string": "865k78wk9a7" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAKBEHK7GH6B4BKRWC246AK4SZWIYUHATNLT45NKT5J5MCLY7ZPENU5K" + "address": "GDHYLMAF5QD5S246PPT6DVSJCFQ4AHHCZW2NZZZJMGUPLWIW73NLSQZO" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6da8d8bffab383dda2cf5c1314f689575ef130270cc9e638c2d62e890f13887006e0e6326e05ed8c6c667cb1d536b4e946fb651ddec1dd310c4a98416645c01d" + "bytes": "237c25f91f52c9a3bd49bef7afe660207353fdee88ff380a87eaa82d3e67cb9a56da6e5d2af4a0b979317bd3d171ef242ca72826a4714674ad26cc79b5fd0d30" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5a7b0e6dab8abd9e7e54878179b2ee6334d3f82f6aa7bccff1fd333df49c363e" + "bytes": "a3418237549b04d23f54b2ddf558555af91983a84cbab6042a6141a19017a714" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5a7b0e6dab8abd9e7e54878179b2ee6334d3f82f6aa7bccff1fd333df49c363e" + "bytes": "a3418237549b04d23f54b2ddf558555af91983a84cbab6042a6141a19017a714" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "027e295c38635ded3618c348e20844431bb6a4d18b992b1fd8eeff4f6b2d1072" + "bytes": "53aac56a8d530dc8f63165a73a54eb6caaf5a8c1dca11187e7463fafc5044886" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "027e295c38635ded3618c348e20844431bb6a4d18b992b1fd8eeff4f6b2d1072" + "bytes": "53aac56a8d530dc8f63165a73a54eb6caaf5a8c1dca11187e7463fafc5044886" } ] }, "durability": "persistent", "val": { - "bytes": "a5e3464081724a5561da8f850c90435e22229ac5c95a454efb9001553a9aa377" + "bytes": "abfff528f142210cb8022d4b82a76e2372493b0b5a994fec9c3cf1f6345851d9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.141.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.141.json index fcb18d8..9c6c76d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.141.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.141.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "274c877a6a54a8cdfbc501a3f20cba90c51efa350640eaa9350655ade5e0eaa0" + "bytes": "78bd730335d4d751190a51727ec0f5110a311cb71a4b29b02a2fd38a7704ddf3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "274c877a6a54a8cdfbc501a3f20cba90c51efa350640eaa9350655ade5e0eaa0" + "bytes": "78bd730335d4d751190a51727ec0f5110a311cb71a4b29b02a2fd38a7704ddf3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "17o2l6wbaroyyd04is57xpts" + "string": "839mb2qchf3un8" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAIMIYEWWKVAT3HLQJBCKFFKRUZE5J5QAJCJQ5B5DHKIELYGJBQFFN6N" + "address": "GDE3M7YLYH2YAYANGF4LY63OIUTTZMQEWPLSDJJXETWO7FX5GBO3I57R" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c4855668e4a33ba94ead2ece33b25ab54c39726bcb32041619a5b119b6cbf642811591447cc3e1f6e68f236c2b9d7a2e933a70d3ae5db47555a951eef3495ea6" + "bytes": "c8d076cd889d8aaba4dc04ac170bf5297bacac4f161a0a01d9d6c265e3962c8e52481a33bdf8a9c5bca13d7e565aa00168a28272aa6d0fef4447dc147b332963" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4bc64356fab9fc0a7065889f1f9483825ef6993f27b988ec30d0dcc130fe56d0" + "bytes": "addf6b92d1a21f8ef4890327d4c489a4f75caed8b5e029d28c8e5a683c7cc4f4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4bc64356fab9fc0a7065889f1f9483825ef6993f27b988ec30d0dcc130fe56d0" + "bytes": "addf6b92d1a21f8ef4890327d4c489a4f75caed8b5e029d28c8e5a683c7cc4f4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3568deba48dea1f0d868f50279c648ab387a25f33a8ab10fa7adca32fc2ea60e" + "bytes": "0e8d84d9d1c074198be81f9f0fdbbff6c41de9a04ed89e86432ba9e05d722b90" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3568deba48dea1f0d868f50279c648ab387a25f33a8ab10fa7adca32fc2ea60e" + "bytes": "0e8d84d9d1c074198be81f9f0fdbbff6c41de9a04ed89e86432ba9e05d722b90" } ] }, "durability": "persistent", "val": { - "bytes": "274c877a6a54a8cdfbc501a3f20cba90c51efa350640eaa9350655ade5e0eaa0" + "bytes": "78bd730335d4d751190a51727ec0f5110a311cb71a4b29b02a2fd38a7704ddf3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.142.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.142.json index 87cf3c1..743845f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.142.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.142.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "93e9a250e1c7899985eb606e2c362de4b9c979c1e61ac8f03b19eae99cef4144" + "bytes": "3af852c9b60066a8fdfb9918c5f2ff0d620ab91bea2bd324b73e1d44ad38088f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "93e9a250e1c7899985eb606e2c362de4b9c979c1e61ac8f03b19eae99cef4144" + "bytes": "3af852c9b60066a8fdfb9918c5f2ff0d620ab91bea2bd324b73e1d44ad38088f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "2r9e4c636hn3qe647dwjq5os139u9s4" + "string": "5hyf838g67r1112gziujr5fq26y957" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC7PRGS5LOW2NAXSDKMFPX62KVA5MHIRTSQKI3F72YJJMN76K7AV3EPC" + "address": "GCKQITBNPYPHFOAVSMKYFMICEBHBX7CCG7GLXNCOPXWH6H75QD3H4B6N" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "30e989cebbae5ef479c9c909febe1313881287609f0e160dcea2a977639e71e1ea3255e0587cf802294642ef5ff1919de9fac52188e06c3641e872ae0e506034" + "bytes": "4c9ca6dfe83cca41722a773505e02bd6eba36a5af37d797688130bdac646fdd4caa88610fbc1e89e6ed0636c26dacb5d6c474ce6d5baeb2cf7c8602fa82f020a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0902af57e18a5e5b590a99794021d219b601748f076994a1100dd8fcdc45a404" + "bytes": "8f350f42e988eceb4613c1dcd15011c5ef5a41fd1d9e49dade9eb15cbd2fcc9e" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0902af57e18a5e5b590a99794021d219b601748f076994a1100dd8fcdc45a404" + "bytes": "8f350f42e988eceb4613c1dcd15011c5ef5a41fd1d9e49dade9eb15cbd2fcc9e" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "aa594df0b75297f7c8a5e862ca5f74dd4ea7f9f32a01971f4543258dacdbdb55" + "bytes": "4f440480248fb4b5c9f5acd048ef588db84c8b02f6dd574be203d55650b226d7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "aa594df0b75297f7c8a5e862ca5f74dd4ea7f9f32a01971f4543258dacdbdb55" + "bytes": "4f440480248fb4b5c9f5acd048ef588db84c8b02f6dd574be203d55650b226d7" } ] }, "durability": "persistent", "val": { - "bytes": "93e9a250e1c7899985eb606e2c362de4b9c979c1e61ac8f03b19eae99cef4144" + "bytes": "3af852c9b60066a8fdfb9918c5f2ff0d620ab91bea2bd324b73e1d44ad38088f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.143.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.143.json index 837e6b5..98ff105 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.143.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.143.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8022bba38c06ed0c6dd80d2681f07023834b6afc3c5206997e72f35420de684c" + "bytes": "5471640b9e50a8cad2e0240be49d2205256bd473d1a1b1da85b19bc258a203c0" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8022bba38c06ed0c6dd80d2681f07023834b6afc3c5206997e72f35420de684c" + "bytes": "5471640b9e50a8cad2e0240be49d2205256bd473d1a1b1da85b19bc258a203c0" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "bs7anr" + "string": "3lqr3449jc5j84" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBZQZ66HFVZNDEQIMC5BIBTA5HCWLQ4FD6FKIVUMXGE72SKVPUZHZQEE" + "address": "GC2OYCR7QS46Y3UGSUQASCPVCDCFMENBBKSDW46YMSTKAFNT4N575YDP" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3cda81ef420cc6ae1894f28e8b4f7cd246e927ee0790702aae8b21a4063e2795899918715e5782d85232bbb804f0aa2c785a4249a40f6563a0d2a4d283aa33d4" + "bytes": "3b9ae0edac6922d60242b7c906be8bc8f787413c6cfadc4d4305a5a7092fbb473acd91db78de96374259f36b6ef7a652b9dc5a6bfded05b20241e7a4eabc9c5a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9dfe425033cc9a67fd49197b8f946b4fa17e148e4addb9f716038ac966719104" + "bytes": "fd495ea0b2735269f08311ed1c6c834dbf21a427043c235d9df132bcc01ad07d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9dfe425033cc9a67fd49197b8f946b4fa17e148e4addb9f716038ac966719104" + "bytes": "fd495ea0b2735269f08311ed1c6c834dbf21a427043c235d9df132bcc01ad07d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "05b34493978fc8f6866bdd52a10dbfc07f1eb1889cde84a4ebe1f514fe9425a8" + "bytes": "8bd1200a25df4490a8ce15621a283aaed2f190ca86a717a0974ff9a95f048b2d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "05b34493978fc8f6866bdd52a10dbfc07f1eb1889cde84a4ebe1f514fe9425a8" + "bytes": "8bd1200a25df4490a8ce15621a283aaed2f190ca86a717a0974ff9a95f048b2d" } ] }, "durability": "persistent", "val": { - "bytes": "8022bba38c06ed0c6dd80d2681f07023834b6afc3c5206997e72f35420de684c" + "bytes": "5471640b9e50a8cad2e0240be49d2205256bd473d1a1b1da85b19bc258a203c0" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.144.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.144.json index 0b76b9d..0d8e37a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.144.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.144.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "33764354d05743a65e3cf093c6e473b521bfd350f0a972d98f61739c06404823" + "bytes": "ddf650d58607d1264cfa109a1c925724672bfe8703f6a5e3b6382501ca6dcee8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "33764354d05743a65e3cf093c6e473b521bfd350f0a972d98f61739c06404823" + "bytes": "ddf650d58607d1264cfa109a1c925724672bfe8703f6a5e3b6382501ca6dcee8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "q9d8709q563" + "string": "0azl0cp2gh8c4" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDPYUMMFSXWFD43SMCIHG74FKVC3ZN2TCFFJ6ZXKPIAZNV5GXAGZP44A" + "address": "GALJZEMBRTQ27KFHIXXC3T3VLHCXO54M4DHS3G4A5NOEHEWP75XGDNMB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bf9da397e8cfae1220a5abd4e3b5a1f16c11be391bc0a825b2a247eeb8edd3161d8e37c80d1482d61735189dd4003affc1155dcac797561880afd668fec67913" + "bytes": "a411587ca641d1d2bae76ded2bf0933dabe221f617cdf32c22a217cb3d6044195be4a9ddf16cc5545778d414ae81b73e091c1f54f7283fbd24edbeab22ad2505" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "bc54534c5a9ba2743a5fdb53ff43d2835f39df3b3f2bad0beab4c2bf671a42ee" + "bytes": "2ae6e84d1110808853a344e409d70a64e26e4c5b0db550bccbcaa163500d7bd7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "bc54534c5a9ba2743a5fdb53ff43d2835f39df3b3f2bad0beab4c2bf671a42ee" + "bytes": "2ae6e84d1110808853a344e409d70a64e26e4c5b0db550bccbcaa163500d7bd7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4c25b00e98f60ff01cbf027d4665d89396fe9a31fc9501eddd2bff8d948c25c5" + "bytes": "c9485875e8b5d7f3decb7808c45c0c506103de39da790c9a5a32ed4c27865710" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4c25b00e98f60ff01cbf027d4665d89396fe9a31fc9501eddd2bff8d948c25c5" + "bytes": "c9485875e8b5d7f3decb7808c45c0c506103de39da790c9a5a32ed4c27865710" } ] }, "durability": "persistent", "val": { - "bytes": "33764354d05743a65e3cf093c6e473b521bfd350f0a972d98f61739c06404823" + "bytes": "ddf650d58607d1264cfa109a1c925724672bfe8703f6a5e3b6382501ca6dcee8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.145.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.145.json index 3be0101..93c0811 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.145.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.145.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "da648b329c295a5fc4c9870ad0a577cabfc489e0f66855ae0ab26fb45c11a2db" + "bytes": "310528630ba0d1733ef3fa71ceb7439830d21b67708f7033e5392e20483a111b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "da648b329c295a5fc4c9870ad0a577cabfc489e0f66855ae0ab26fb45c11a2db" + "bytes": "310528630ba0d1733ef3fa71ceb7439830d21b67708f7033e5392e20483a111b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "9o5hk5lajgx1r3037loafe9" + "string": "a1145oabbxyf88npzvt44l1y6hb5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDG56SNNIOJ6RDW3GT3KA5KWNAXCYQRHNUZG27OFBQYK3L5UGOWLKHPZ" + "address": "GCOFKQMJXS3PTMPSVWJXSUDQVD2VMPGBAB4K6PHTB2GFNV2DYPRKLZ63" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e045fff457780d5d146fd083b00050e2bea18416d82907111cffbc92df5aeaf6baf5e9af38cef3519f47365c8eabf28a58e74f48344e62940eec5bc1d49c2fee" + "bytes": "9067a9095971129a3cc4e5b3266da824d1280b690e890a6722429ef5f82a688ee6c931bfa3b7d908e56bda89d3abc33c07c1550d7b895e008a8269b4944eb5e5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d728cd30c49deed5779a63b999f1234a77a3bb6c774a14381daac1ca2154a863" + "bytes": "03375a18089aa9617f561431e136c03af400378982dd16ec05c5874a73bfe616" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d728cd30c49deed5779a63b999f1234a77a3bb6c774a14381daac1ca2154a863" + "bytes": "03375a18089aa9617f561431e136c03af400378982dd16ec05c5874a73bfe616" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6d19f5651e0bf6736652827707878ce054897c4fd962559a0c6ebd8e5af57307" + "bytes": "b044367c51e38299a8f97d4509453c64626ed5286ebfe09fce457f93f9ebbc81" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6d19f5651e0bf6736652827707878ce054897c4fd962559a0c6ebd8e5af57307" + "bytes": "b044367c51e38299a8f97d4509453c64626ed5286ebfe09fce457f93f9ebbc81" } ] }, "durability": "persistent", "val": { - "bytes": "da648b329c295a5fc4c9870ad0a577cabfc489e0f66855ae0ab26fb45c11a2db" + "bytes": "310528630ba0d1733ef3fa71ceb7439830d21b67708f7033e5392e20483a111b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.146.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.146.json index 9670705..c108a0c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.146.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.146.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2627ed032c5ee5188df267286d1cacd6204be7dacf55b647f66d4e58314361b0" + "bytes": "7bb063e10d7e57d10ba4d37c073a0ce8106dabedae93c1985a28612d98b824a2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2627ed032c5ee5188df267286d1cacd6204be7dacf55b647f66d4e58314361b0" + "bytes": "7bb063e10d7e57d10ba4d37c073a0ce8106dabedae93c1985a28612d98b824a2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "263n9oior67ax70hul5l" + "string": "9j7ix269xk2viut7mrn5e" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBH4TM3JFHH7SITFXK2OYWTDLTQ5AAPDBKZNP3GNQYMPR27WNKAP32FJ" + "address": "GB3RLTHAD5Q7MUXW274UTJVLYQQIA5CBZZ6MQGYSJ4KA7M4NZQ5GBB23" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "fb3c955afabdc0dbd387d254811e9ad23f243f097708e84a495af81d41e326af67e4554899d2bca7cf9c7ebdc1f83c195108b8c0614ab99f2d87a1297685ac2c" + "bytes": "8f723814c2cdeeca503e4013a12f6d0aa8f090d1ece45e70ff59d5a5fba688f8fb1fef95b89fc4118182cb031ccc5b9e437e8bc677fd756a56f713bd21176c8e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "408a8372ba69f7681a206fe86c2e76a5a51737a7e3319271c73169f7e7309ed7" + "bytes": "ae13a77a9a13ada7d4d77f02fb6ea67cf8478bc51f2e9d2f56335bbba8c212a1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "408a8372ba69f7681a206fe86c2e76a5a51737a7e3319271c73169f7e7309ed7" + "bytes": "ae13a77a9a13ada7d4d77f02fb6ea67cf8478bc51f2e9d2f56335bbba8c212a1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2e00871d571afe675429c605f465f32d225f3392c2444fab5ae9b865c8a362cf" + "bytes": "29be2b89c3f9f613223b08055d72d39de7e26da502733fa9780c190b169e114f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2e00871d571afe675429c605f465f32d225f3392c2444fab5ae9b865c8a362cf" + "bytes": "29be2b89c3f9f613223b08055d72d39de7e26da502733fa9780c190b169e114f" } ] }, "durability": "persistent", "val": { - "bytes": "2627ed032c5ee5188df267286d1cacd6204be7dacf55b647f66d4e58314361b0" + "bytes": "7bb063e10d7e57d10ba4d37c073a0ce8106dabedae93c1985a28612d98b824a2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.147.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.147.json index becb4be..1433448 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.147.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.147.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0a81513beec8b7fc6b0529e01cf5443922dc758b3f99a9c9e6e29d24036e6c31" + "bytes": "b96b20d44465b8477fa8d330b88cad2ec35e9380333897a5108a52e5b3665753" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0a81513beec8b7fc6b0529e01cf5443922dc758b3f99a9c9e6e29d24036e6c31" + "bytes": "b96b20d44465b8477fa8d330b88cad2ec35e9380333897a5108a52e5b3665753" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3gwpa4f0fn91" + "string": "862psvxh50t6pzf939nc0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDCML3U23EHAWDZSIYQQVKSTLKZJ4S4GY3H6KZW3CMSXV22ESCVKNDCS" + "address": "GCZB5GS2UDZUGDSO2QSBVLSXVR76ALEMUIEVTEC5TP2U3EUJKJGID4NV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "9082ddd351fce8a1a7756760a569f1e97001e45fa851ae203ee409e033c164763be9af462c81dc8b4d50891e85b8144d5f699ed6de0150faea04f41da162c079" + "bytes": "0932b5b0a903936d902be467656fb11e74b5c926d80e7980dff4a190e9b9acc54dc0f1311574d158e59a6b247099eab13500bd34599f2d943f6cab65c6853bf5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b51fb80bbc9a7fb0e23801b5e060369e1a474a50a304ea1ef75b83548e67101b" + "bytes": "f281ca215697f10dcda5bc699eed86b05fd1900ca2ff1a04d02c1376bcb8b0ac" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b51fb80bbc9a7fb0e23801b5e060369e1a474a50a304ea1ef75b83548e67101b" + "bytes": "f281ca215697f10dcda5bc699eed86b05fd1900ca2ff1a04d02c1376bcb8b0ac" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a5c893f182165c61dd9a50e0789f99ddae150c91d83d974ee7b327071c0644f8" + "bytes": "9a630aca43db1b38c8748406f8b2da84391683f63a1f2865a8a876b012cf0c74" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a5c893f182165c61dd9a50e0789f99ddae150c91d83d974ee7b327071c0644f8" + "bytes": "9a630aca43db1b38c8748406f8b2da84391683f63a1f2865a8a876b012cf0c74" } ] }, "durability": "persistent", "val": { - "bytes": "0a81513beec8b7fc6b0529e01cf5443922dc758b3f99a9c9e6e29d24036e6c31" + "bytes": "b96b20d44465b8477fa8d330b88cad2ec35e9380333897a5108a52e5b3665753" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.148.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.148.json index 092402a..32eafe6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.148.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.148.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "baeead9a4f4850c58e7659ca18bc48733352165649097fccb2990161b599c5fb" + "bytes": "3f5d74a8c3ca3f0ecca64741d0223dbec0aaf59617eab1d4af16677e928e9796" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "baeead9a4f4850c58e7659ca18bc48733352165649097fccb2990161b599c5fb" + "bytes": "3f5d74a8c3ca3f0ecca64741d0223dbec0aaf59617eab1d4af16677e928e9796" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "19w67432" + "string": "2nt73v84" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC5EJYSLG6QTIRUQOMSIMMEHQCV2XWEBKJQZQW54LGP5X7Q46224OBCO" + "address": "GDTMSZSBOWBJGOLARJLJ2OFHV5ACSVAVGDALPOEG4NHB6LJ35JJXM7CF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "09becdc54ab7731da677ed978aafb8f88670f1cf8357807b39c6dc82112904a481a1fc4408ae677c631daf8566fde15d371f3d48830df636f0eba25e61f3a562" + "bytes": "34c322b0c358028e9a46e77258dff84e026feeee67a0de5ff433e8b2bb0270045cd3101060d4c3b05b7aa292541c3151bec42d703a1eb45799d553eff78a812c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6c504e520cdb140fa4633305c62f73d2a83e3cfe24946663a565e17fb4500273" + "bytes": "510ec9d901436b6ca0192fc07630d3e5583c597d5391026e6b7fa9be59b70069" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6c504e520cdb140fa4633305c62f73d2a83e3cfe24946663a565e17fb4500273" + "bytes": "510ec9d901436b6ca0192fc07630d3e5583c597d5391026e6b7fa9be59b70069" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "97161801787c74e3d042344f89c56439d77795944ad9a1abbd50b63564bb1935" + "bytes": "c042c4953a52d83b3effe7d723614dc2d4d1dc733e0cbd49398984c53a17ca70" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "97161801787c74e3d042344f89c56439d77795944ad9a1abbd50b63564bb1935" + "bytes": "c042c4953a52d83b3effe7d723614dc2d4d1dc733e0cbd49398984c53a17ca70" } ] }, "durability": "persistent", "val": { - "bytes": "baeead9a4f4850c58e7659ca18bc48733352165649097fccb2990161b599c5fb" + "bytes": "3f5d74a8c3ca3f0ecca64741d0223dbec0aaf59617eab1d4af16677e928e9796" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.149.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.149.json index 15e11a6..b9a0699 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.149.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.149.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "633f2c2cfff0e8e15771bd932271db103dce2ca38efda7a23a642648fa99d72c" + "bytes": "d818f9a9afa026b6db1f005166829beb9d0e2640f2fc07a0b87f6d76cd91a8a5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "633f2c2cfff0e8e15771bd932271db103dce2ca38efda7a23a642648fa99d72c" + "bytes": "d818f9a9afa026b6db1f005166829beb9d0e2640f2fc07a0b87f6d76cd91a8a5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "en8xmq6" + "string": "0qxqm1fep8esh9db0oa4y98358k7wh7" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAH3GDDQ4BQUMPSVW34EPUKK5BPYASRYCPRNY2ZFCJQWFUCJFFRFQIB7" + "address": "GC2M3DGNPZ4W624R6RIXYVVKS6TEA22FJR7PKIREZOCCSFZVX3BBIT4L" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "19ad500f1b1250ee0a54e19516219b5d3a95e0ab2e3ca8d75235938b0448463d6c2bdad43bcd89def1fe0709b76eb1dcc52269bdf583ad68b25db07a8e0f8139" + "bytes": "59c5e2de614f2774a7eafd75913a9bcefa89bbd45cf5ad4b3b0ca8a93fd8431d672b6d4812f05c33558eefcfb793ed0f6666dc6418b9359a7aa2e0c3d0e0eadb" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "dc0f6304005ea3c026d3c50445886c614f0d22c37a6e182a83802ee621080479" + "bytes": "e844f8f9abd97480a6c163ebb63f2e26ac43b1ab8c2a155124b0dad1582806ad" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "dc0f6304005ea3c026d3c50445886c614f0d22c37a6e182a83802ee621080479" + "bytes": "e844f8f9abd97480a6c163ebb63f2e26ac43b1ab8c2a155124b0dad1582806ad" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f213c45c5415223ddea67564c5fa2248f27ea1484be8864ed83dd634d9a17a77" + "bytes": "3c5465aa07a54ef8f1aff5a986c19e2828a5ea54be2eb9af4ea1bc86ba10c99c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f213c45c5415223ddea67564c5fa2248f27ea1484be8864ed83dd634d9a17a77" + "bytes": "3c5465aa07a54ef8f1aff5a986c19e2828a5ea54be2eb9af4ea1bc86ba10c99c" } ] }, "durability": "persistent", "val": { - "bytes": "633f2c2cfff0e8e15771bd932271db103dce2ca38efda7a23a642648fa99d72c" + "bytes": "d818f9a9afa026b6db1f005166829beb9d0e2640f2fc07a0b87f6d76cd91a8a5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.15.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.15.json index 3574bd7..ba01a45 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.15.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.15.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "75c2aa51203ffbf90896d56ec5546ed0ce4e706e8de19dc1c2bcd6274ad11756" + "bytes": "2da60f57306f3e7b4aae59888e18fdf2f80c0962b9bfa6833932c5e0d8c67fac" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "75c2aa51203ffbf90896d56ec5546ed0ce4e706e8de19dc1c2bcd6274ad11756" + "bytes": "2da60f57306f3e7b4aae59888e18fdf2f80c0962b9bfa6833932c5e0d8c67fac" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5k349n6m4v75h" + "string": "bv19zeo7t81d8f" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GATG5H52KPW65AV62WDN24YM5ESKTNQBIFCFDHZKYGT4A6QAALVKNDNY" + "address": "GCEC5DN26RTYREMR77QALZ2UPKMVOPA7TZVCYWE64E3YW6NV2RLL5S42" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e63b2b867c5f33bc25582d281eb9b06f91b41a275afdeb5da2e944d11e0b25f6854d82f32d2633134dc9a0c3b68d9573704ed0ee588fe3dc8c4380c09bc8d37d" + "bytes": "a63bd0d421107dd36c3b019092b8b27460f1922069f548978c743d4ebf0f7d20c7ace03f643b753e9e9aee4f92aea2c4afa8b40c4f562cbf109cc8b4c6344dd0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1661498167baf6ceaffd71cc361f8ce9fbe29ace7ed02810c868933e34c31e71" + "bytes": "4597b8fd9997330d7accddf0c40ed4ed39c60c2b1c6ff51d53d7b251f7191e2f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1661498167baf6ceaffd71cc361f8ce9fbe29ace7ed02810c868933e34c31e71" + "bytes": "4597b8fd9997330d7accddf0c40ed4ed39c60c2b1c6ff51d53d7b251f7191e2f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c21ec7a14e4296b10eb72bed11b2ea087cf4602316ae1826d2246ec1b5ccd0e6" + "bytes": "ec183bcab761cafb13b9efe210c15a7dfdee7a0e4dc8211e535c5cebbc92d535" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c21ec7a14e4296b10eb72bed11b2ea087cf4602316ae1826d2246ec1b5ccd0e6" + "bytes": "ec183bcab761cafb13b9efe210c15a7dfdee7a0e4dc8211e535c5cebbc92d535" } ] }, "durability": "persistent", "val": { - "bytes": "75c2aa51203ffbf90896d56ec5546ed0ce4e706e8de19dc1c2bcd6274ad11756" + "bytes": "2da60f57306f3e7b4aae59888e18fdf2f80c0962b9bfa6833932c5e0d8c67fac" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.150.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.150.json index f86f2c8..7cff37e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.150.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.150.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "98aea532d0c7a325cfc91caf0cb6d05df7d138466995307c4438b9421d5dcc69" + "bytes": "9ba555ed0c33f9834f3c7520b5c554914d68a62e25b305fe930e3a54f6bf0441" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "98aea532d0c7a325cfc91caf0cb6d05df7d138466995307c4438b9421d5dcc69" + "bytes": "9ba555ed0c33f9834f3c7520b5c554914d68a62e25b305fe930e3a54f6bf0441" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "w67g97svyd3n3758rxscseu5367r1p0" + "string": "vje0l3u6z8frs0pt9l485wj11fqumqb" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCED546UQE4GVA2EIZPIBKM5XLLZJW25TDNOATQ7FSABUQTHIVKA4HRR" + "address": "GCN4GW53TJMCF3ET3KG43RBWTGG4JYEVOOPVUI652UEJ7SQHSNQCLF2Q" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "4fadd59c58fab273c132b95236e978aa5d5c14e7b2c704c530848832cde079552c3d0734af3a0a962abfd12c63e6a19c2324758498409664e698ee4bdb72394d" + "bytes": "0a6194a17f1d29257a3eafb2f2ed70616893e80df34bbabb5112bc2317b0cd31a1d27dead8525ca16f9756d471067132c600456b326c36eac952ab4b15b2df05" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2ae0fc41191498f1f0d06f47c80fd8abde6d2afd5d63812275cbf023f0a2f1b5" + "bytes": "f5969ce1683862c651b10197f3f49ae605d760ba0cb74475a0107c0cc0656384" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2ae0fc41191498f1f0d06f47c80fd8abde6d2afd5d63812275cbf023f0a2f1b5" + "bytes": "f5969ce1683862c651b10197f3f49ae605d760ba0cb74475a0107c0cc0656384" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a6d6d15fa3d564cd9161ddc8136c2bfcb3dedb74abf0708c0eef98e809a3dad2" + "bytes": "fe24688eb5f67a58c8115b4d1e04eb9c256a8f0bf6bbc5ee7c537cb55b6219a1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a6d6d15fa3d564cd9161ddc8136c2bfcb3dedb74abf0708c0eef98e809a3dad2" + "bytes": "fe24688eb5f67a58c8115b4d1e04eb9c256a8f0bf6bbc5ee7c537cb55b6219a1" } ] }, "durability": "persistent", "val": { - "bytes": "98aea532d0c7a325cfc91caf0cb6d05df7d138466995307c4438b9421d5dcc69" + "bytes": "9ba555ed0c33f9834f3c7520b5c554914d68a62e25b305fe930e3a54f6bf0441" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.151.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.151.json index 207b8b9..511d245 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.151.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.151.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f0b2fd3eb15f5ca267620d9326b888fb71b2865a6defc52ee4416c77b1479943" + "bytes": "fb0401fd2b3243dfaa4e8cd8395be46a40d3c231dc469d4a9cc7124584f2ba55" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f0b2fd3eb15f5ca267620d9326b888fb71b2865a6defc52ee4416c77b1479943" + "bytes": "fb0401fd2b3243dfaa4e8cd8395be46a40d3c231dc469d4a9cc7124584f2ba55" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "8n650" + "string": "gq0zn6cz0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAEW2ILHKFEA34EIYWOOCQAWT44J7A5XVYAFCZZOJ7XKEVC24DIXO5OK" + "address": "GBTZFH635QZFWKIKI66HFZ4UGBJRAC2W2QMWYLACARYG33OHVQH6P2NS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2ff12bd3fdb98115a19b840145465f4b24a296ab9e77d59e49ba080e60c4641f8aa0fcbec4a2a626cc229d2eac6a3018ac2875e726dc5e777fefb83cc4354e87" + "bytes": "8cba43d5922e57207d555a93b45fa22350bc9f4c50452d3633c29ac60912152a0312fdd692f7796a7a42afe69993cfea83a154ec19b3bc700b0ef6649ff84fc6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "47cc759eae68ff97b8abfd6e59139a312ae18e9ef8e2ca9a180b0e7f55fdd1b8" + "bytes": "4f501e9954d6e893120e14ef0d3e29490a72c84431e1b2d9b8804c57eefd38f4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "47cc759eae68ff97b8abfd6e59139a312ae18e9ef8e2ca9a180b0e7f55fdd1b8" + "bytes": "4f501e9954d6e893120e14ef0d3e29490a72c84431e1b2d9b8804c57eefd38f4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "016fcc83a6f988a75e7edcf52bd88b5524a39abdae2b6384687981e43b10e009" + "bytes": "1e2ae70452bebb1a0dd1db53dc350c7c5543204a6b3f97a05c21eee0acb7c5d9" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "016fcc83a6f988a75e7edcf52bd88b5524a39abdae2b6384687981e43b10e009" + "bytes": "1e2ae70452bebb1a0dd1db53dc350c7c5543204a6b3f97a05c21eee0acb7c5d9" } ] }, "durability": "persistent", "val": { - "bytes": "f0b2fd3eb15f5ca267620d9326b888fb71b2865a6defc52ee4416c77b1479943" + "bytes": "fb0401fd2b3243dfaa4e8cd8395be46a40d3c231dc469d4a9cc7124584f2ba55" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.152.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.152.json index 4efa81c..f7a3291 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.152.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.152.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "72ff026a2d4bd295b0edd6599e265058cf7e7a871eb864c63abe43bc698cefd6" + "bytes": "aad6cbfc61c0a254c7a1d001707407b736b076158b96018e6298eddb544c3efa" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "72ff026a2d4bd295b0edd6599e265058cf7e7a871eb864c63abe43bc698cefd6" + "bytes": "aad6cbfc61c0a254c7a1d001707407b736b076158b96018e6298eddb544c3efa" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "sfinwultf40sf31883k1xdb6453vi6n" + "string": "j77z471o6lf2czn3c" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC6BHD2M7GKQ7GWJBFAMHP5HXG54PLHCZTMXPHF5RVWS3ZDPGQLMA5EU" + "address": "GB623GWB72GZTMCFW24C5SJJN4XCSISP2G3MGECBGEZV4J6N5BM4AEUE" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f895f36554e9870bc953c4c6cfbacd168d1e6dac49ed116a63ffa121071a9fc3c47b8d6982a1481a93ce2bfe85c24771677bc6d853e489a5e83238f120a4aa0b" + "bytes": "6d725c14f519bab4d3288791ec451623dc823fb572cc97dd1904bf8bb1978b453544a1c49475ffebcae8480d9f03af62ff58c6c7fe22288a417acbbeaddec50b" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3c26688993afce08d7c04eacf43cb7c7fa7e58d88bc0f2f0647218facc21d628" + "bytes": "d155e7afcd1c4f17800b5cabeddd1cab1ec1ae56884b057f34627422f8dd922d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3c26688993afce08d7c04eacf43cb7c7fa7e58d88bc0f2f0647218facc21d628" + "bytes": "d155e7afcd1c4f17800b5cabeddd1cab1ec1ae56884b057f34627422f8dd922d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "67986fb5dbac68dac1d0ea9db4f1c4b02785780c02e76aa43797fba393a7cd5c" + "bytes": "59a5632acfa5b4ce8952e278535d3e6dfb67326b303ac7f8838e762639d1fbb5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "67986fb5dbac68dac1d0ea9db4f1c4b02785780c02e76aa43797fba393a7cd5c" + "bytes": "59a5632acfa5b4ce8952e278535d3e6dfb67326b303ac7f8838e762639d1fbb5" } ] }, "durability": "persistent", "val": { - "bytes": "72ff026a2d4bd295b0edd6599e265058cf7e7a871eb864c63abe43bc698cefd6" + "bytes": "aad6cbfc61c0a254c7a1d001707407b736b076158b96018e6298eddb544c3efa" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.153.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.153.json index 5a7646f..61682ac 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.153.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.153.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b887d62634c6bf201f4d63a948130786ff10ba4ffd06e39a90d2339029aee0cc" + "bytes": "1f9e328bac1cb3ba17b5ac8105b127757097d23283ee59eb12994a533885ecc6" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b887d62634c6bf201f4d63a948130786ff10ba4ffd06e39a90d2339029aee0cc" + "bytes": "1f9e328bac1cb3ba17b5ac8105b127757097d23283ee59eb12994a533885ecc6" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "rocw593807dv62h" + "string": "019xw11f0mph650wecpsq07ao" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA5F4W22YGQR74QPXJDHEFUJEKVAPYYI5TGOFBACE35AIXNZ2CLCJFHP" + "address": "GAIPLXNPA5X2MVM5WX53RZM4SEMWYCY75D73ETAZWXRHAIP23VXBNM6V" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c9c068082b42fa8fb1df656bfe3bf799882d30a744bd189237cbdc496b087c57b8d4b7de76ff3f282f1a22e548ecd4644715bbe835da339ebb18751bfeb297de" + "bytes": "7f9ab48d69f2d5307f18ca155d9a8219a75a9c56edd2366c7bf16b09b746eecb57c66cbf37f5f1d6b191b2d7e4608b75934e358af40f7c01dd39b8d6c8740f2a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "42d5aa2b71e8f400349f78d1571fed4da1cfe13acd801684ada010882bfeda8b" + "bytes": "e9df01d0136cca7007723437b435eb4db993d1fffdf5cca1a61ec5e6b066128b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "42d5aa2b71e8f400349f78d1571fed4da1cfe13acd801684ada010882bfeda8b" + "bytes": "e9df01d0136cca7007723437b435eb4db993d1fffdf5cca1a61ec5e6b066128b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "35828ecfe124f7365f7648360f38a33b7a146aebefd2fe633a0726035d7bfb57" + "bytes": "bbc49bcfe9447e352fa1707414c6abca7df80a7e03f315f32f713d602b10b26e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "35828ecfe124f7365f7648360f38a33b7a146aebefd2fe633a0726035d7bfb57" + "bytes": "bbc49bcfe9447e352fa1707414c6abca7df80a7e03f315f32f713d602b10b26e" } ] }, "durability": "persistent", "val": { - "bytes": "b887d62634c6bf201f4d63a948130786ff10ba4ffd06e39a90d2339029aee0cc" + "bytes": "1f9e328bac1cb3ba17b5ac8105b127757097d23283ee59eb12994a533885ecc6" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.154.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.154.json index 96bac83..0eabeeb 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.154.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.154.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f972d6db2a9dd9b942309ba12d32d3df4357a00806b03c1adc3d75b5714da7e5" + "bytes": "cb5e4745c255ceb7a5d0b43f69a682b6364015f3be20f7967310e15870f0d07b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f972d6db2a9dd9b942309ba12d32d3df4357a00806b03c1adc3d75b5714da7e5" + "bytes": "cb5e4745c255ceb7a5d0b43f69a682b6364015f3be20f7967310e15870f0d07b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "rm97192urtpu3f01q3787y46" + "string": "k4y7u" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCTKKWL7LX336YC6JDG76V5HMIUE62XSJSABPZOSK7LG2UVPZAMGNKE7" + "address": "GC7OMUOKE63PRBOO2BP7UOKNQ2LWABYTXYTT3J24CFQ2QJDVYL4CDFYB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "be87f966b7ac6049a1e81e2fb534de17129b087f8db07a359cc4757c4991c22e8b02d49877f6883a0c8b7fdff27d3759881648e9aa7a04324b63932927069c23" + "bytes": "83316c5107f461cc21af1f7622d6854ea876a9f86cc4377981257367ded5e9c5b35f033f528c68e1b5a89dbdf1a30288092873655329dc91d03139a48b81d9c2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "77fcc42677b0f283ed97aa561e8b41cfe12d7675361f855517411820a89965a1" + "bytes": "ef66149356d4093f85bdbec145bcd07f29e410ab56524255769d044fc169dc5c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "77fcc42677b0f283ed97aa561e8b41cfe12d7675361f855517411820a89965a1" + "bytes": "ef66149356d4093f85bdbec145bcd07f29e410ab56524255769d044fc169dc5c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f3f9262c3fc40061ca6901aa2601cc06b9e0ff5d75272847e46d4fdd45f896f3" + "bytes": "406c1907c7a7a481095a8732430765903defb96d69197a3ea272745d97e93094" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f3f9262c3fc40061ca6901aa2601cc06b9e0ff5d75272847e46d4fdd45f896f3" + "bytes": "406c1907c7a7a481095a8732430765903defb96d69197a3ea272745d97e93094" } ] }, "durability": "persistent", "val": { - "bytes": "f972d6db2a9dd9b942309ba12d32d3df4357a00806b03c1adc3d75b5714da7e5" + "bytes": "cb5e4745c255ceb7a5d0b43f69a682b6364015f3be20f7967310e15870f0d07b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.155.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.155.json index a632a17..a395215 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.155.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.155.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f2cf11900a86046c19adffb36653aca932e0df05761f2e5092f2b26728a6c714" + "bytes": "e6d91a025894e927c3731abfdc0b92e35ab049216fb3aea06101b63c9a69fec6" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f2cf11900a86046c19adffb36653aca932e0df05761f2e5092f2b26728a6c714" + "bytes": "e6d91a025894e927c3731abfdc0b92e35ab049216fb3aea06101b63c9a69fec6" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "v767s7n1n254jt637z" + "string": "58xdnf3ru36mv9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDEIQSQCSA5ZLVKSGYEACKIXOFH45OCXIBHF4ZDV2CU4I35II3W57AZV" + "address": "GDBYX2XEIN5PHGKSIMEKFDNTCGZYKNLGYHEMU4GMBOJYJVUVPFIIHWEM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7ba587fdfbdcfc02f20d9caf18cc8bebbdb7918193f61094696b14183a59916df1a8b8d8c0fe3691dbdc802d3716415e4810d13a37b646394811304e5a75ff82" + "bytes": "f3c51bbaf09a1e56202fc46713a133c816a6a70409681d2948f5cc4ebfc4d63245d4f66e35aa92e8226873e26ee219414f6cb66f1771cb16aae95b4a53c993c4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3debf57ad12b570e387d1fa572422391c9c6d371e943099a4e62fb20270d48f6" + "bytes": "737282c50e8db409271f4263ba5a1cef2606fca28b68181300bafeaabcc44756" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3debf57ad12b570e387d1fa572422391c9c6d371e943099a4e62fb20270d48f6" + "bytes": "737282c50e8db409271f4263ba5a1cef2606fca28b68181300bafeaabcc44756" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0da572f5bd6d5493595fbf232fcc2ec6650645b4d40b81eb2d856056feb5221f" + "bytes": "0191de695212e12ac42b4972a4bbbd5a991db602665e25f9c6fc25082e62591c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0da572f5bd6d5493595fbf232fcc2ec6650645b4d40b81eb2d856056feb5221f" + "bytes": "0191de695212e12ac42b4972a4bbbd5a991db602665e25f9c6fc25082e62591c" } ] }, "durability": "persistent", "val": { - "bytes": "f2cf11900a86046c19adffb36653aca932e0df05761f2e5092f2b26728a6c714" + "bytes": "e6d91a025894e927c3731abfdc0b92e35ab049216fb3aea06101b63c9a69fec6" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.156.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.156.json index 934d292..f106008 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.156.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.156.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "58c23afa9daa6a66938566b8886910e2e165c42382a568f93c3fe7335b332438" + "bytes": "3c49057026f76268fa4666b4cb09b35bcd0b20e2fd7071858923488d7c0ac5d7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "58c23afa9daa6a66938566b8886910e2e165c42382a568f93c3fe7335b332438" + "bytes": "3c49057026f76268fa4666b4cb09b35bcd0b20e2fd7071858923488d7c0ac5d7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "x2w3m84gwr3p3csbfe928x9p" + "string": "tc02h85q1e6y" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBQVPZ6BLAOHXAHOORDYCN4RUP7SBWINDOVVAOOFAPZSEZTOUB33C6RV" + "address": "GBBF4HT5EKNTC6EXODOIOL33D4PSK3QZMPHYM2LDAMZN27WEAK57WNNQ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6579191a11ef03aa4e1242187dd7c52322cb41cbe6d913c198cb2ae97b6755a938387ba99cc877a13cbdfa1fce20099e7c53fec89a5c9d4a037bbbdd22f6da71" + "bytes": "ed6290f0a42e7fa6f90ee0135a00d322ac23dc4ff8c28359cfcbbf4edcb3a9c0317ad1649de31565ada5a6c50eabf804aec094636ab56ddf956e3be33b81bb43" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "747891cd6d957b8a2c174f53e4accb3a288b4153fc04f0b7fbcc72d3affc7059" + "bytes": "4d37ecbbee14a8540f07d0bf97ce64d68f570e871b5fb4d7079e148daaa7d0e1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "747891cd6d957b8a2c174f53e4accb3a288b4153fc04f0b7fbcc72d3affc7059" + "bytes": "4d37ecbbee14a8540f07d0bf97ce64d68f570e871b5fb4d7079e148daaa7d0e1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "01a9f6a669a2bd304cddbfa594ceca9c4e88248d0be44c2c0a69a504558e7d90" + "bytes": "c871777c72c7133174bde122429170a80abf59f366e2568ddc91c4e7ffdfe220" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "01a9f6a669a2bd304cddbfa594ceca9c4e88248d0be44c2c0a69a504558e7d90" + "bytes": "c871777c72c7133174bde122429170a80abf59f366e2568ddc91c4e7ffdfe220" } ] }, "durability": "persistent", "val": { - "bytes": "58c23afa9daa6a66938566b8886910e2e165c42382a568f93c3fe7335b332438" + "bytes": "3c49057026f76268fa4666b4cb09b35bcd0b20e2fd7071858923488d7c0ac5d7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.157.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.157.json index ae75e6c..c975c8b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.157.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.157.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "7335e7a7c9f9b37d49aa6018947982c60bed17773a7db0c8feba409fdfd6084c" + "bytes": "b36593a69cb3073e2f2640edac69594c2ab04b533d081dbf59c546b8406d34f9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "7335e7a7c9f9b37d49aa6018947982c60bed17773a7db0c8feba409fdfd6084c" + "bytes": "b36593a69cb3073e2f2640edac69594c2ab04b533d081dbf59c546b8406d34f9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "k78a76j88mzjdw" + "string": "gblnv5q0r1s1wiu4vf1agcv75wm" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAFOR54IOZN3NEBBEQ3XRTDAY7AE6DY52HLDWEBTCYJZFXSHV473DPOB" + "address": "GBTMSVJRA2GW4ZI6ZX2IYZKUBLBEFQYAZETUYNE6DZGH6QIFY3DRCAW3" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7fe33bfde51160a58d2b7789c9e413c564182dc108a0798345e5f97705cbb500e9ab8dd88fe308652201f985e409e6f18e2b54fd8d292649e94cc1542112321b" + "bytes": "59ca3ad6ef00780baaff059c89655c2b9bbca96cf67cd96f740d5a413cfa186bea7daaf92f1fc52264f53030784bc1bc38bd21119cf1e64cb49840f9db8324e0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "bd61d123d726d56df878e4b0423218d7eb22456ba89a8b18b612f8285fe7ff6d" + "bytes": "c7d9dd5f77c024e0fc519da5614a6162227be1d535eb500cf1efa6f29ebfccc6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "bd61d123d726d56df878e4b0423218d7eb22456ba89a8b18b612f8285fe7ff6d" + "bytes": "c7d9dd5f77c024e0fc519da5614a6162227be1d535eb500cf1efa6f29ebfccc6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8340e18e980e19136f44c4a7c4f7e9aeb275efc9691d26809184b0bcbd55fb53" + "bytes": "a7c8b19081a52fdffc8d55b25cddea6eabb2412e7803ff31531d91846cea57dd" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8340e18e980e19136f44c4a7c4f7e9aeb275efc9691d26809184b0bcbd55fb53" + "bytes": "a7c8b19081a52fdffc8d55b25cddea6eabb2412e7803ff31531d91846cea57dd" } ] }, "durability": "persistent", "val": { - "bytes": "7335e7a7c9f9b37d49aa6018947982c60bed17773a7db0c8feba409fdfd6084c" + "bytes": "b36593a69cb3073e2f2640edac69594c2ab04b533d081dbf59c546b8406d34f9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.158.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.158.json index 1fe679f..28a5508 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.158.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.158.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ec9a38f0488efb208a14729d50ed7a725848bfdc65da148609a31494c6894e58" + "bytes": "b1390da19c60ba6c6745511a67929089a5b760f1bde619f4bd280ac94bbadf63" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ec9a38f0488efb208a14729d50ed7a725848bfdc65da148609a31494c6894e58" + "bytes": "b1390da19c60ba6c6745511a67929089a5b760f1bde619f4bd280ac94bbadf63" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6e3ok19j610390" + "string": "xg61x902049zez7s4" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB7YRDZFFMUNCQ7JMB6K7I6FAQFIXFZCZYCQXE6JVDZY4YNTP6VL4RY3" + "address": "GA7UZMJ6GQUZLEQD4LE2ZIASZIRLGSYURXEXVSHMWDOCTOJRETX474U4" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "571fca4793a5bf810651d59eea8706d70d89156bc8c3bce3d69f94dc56bf3cebc4a941948bc945200af12c99729bc0fc5f24acbee2914b9d1b4920323380e14e" + "bytes": "e0a5b3ee12b6702a38627334b3419bc658607d273297027c4d91a0d442a10d5e30da8bbef97283e8e527039455f2daab63c95fa280990f2fc28f1bac6cb211ef" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2734aade61f22f9db8de562a1c54cccdc873d3c843f835324ca1a41344e89df6" + "bytes": "1c60543e324c21d9aa7574cbbac5f6d66cdd34a904cabca33d72718217c7aeed" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2734aade61f22f9db8de562a1c54cccdc873d3c843f835324ca1a41344e89df6" + "bytes": "1c60543e324c21d9aa7574cbbac5f6d66cdd34a904cabca33d72718217c7aeed" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a2483f5190ce809d9ea9d63bb65bdac9abe193ee27f2ae4bdc4bcdf0ff69da1f" + "bytes": "8ce9c74575821bbb2b478f2b1474a34739dca1e8232becb79be18fb9704c6fbc" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a2483f5190ce809d9ea9d63bb65bdac9abe193ee27f2ae4bdc4bcdf0ff69da1f" + "bytes": "8ce9c74575821bbb2b478f2b1474a34739dca1e8232becb79be18fb9704c6fbc" } ] }, "durability": "persistent", "val": { - "bytes": "ec9a38f0488efb208a14729d50ed7a725848bfdc65da148609a31494c6894e58" + "bytes": "b1390da19c60ba6c6745511a67929089a5b760f1bde619f4bd280ac94bbadf63" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.159.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.159.json index 3fad143..e1790ce 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.159.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.159.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0e19625ef7b4cb27a6537ac7db46910cb8f14cf9fcd9eaaabc05c3fdc5c0aac6" + "bytes": "b23636e7bbce03fe37ccda791f4a3a700a32f41381b14c07009edd7ef93e7f69" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0e19625ef7b4cb27a6537ac7db46910cb8f14cf9fcd9eaaabc05c3fdc5c0aac6" + "bytes": "b23636e7bbce03fe37ccda791f4a3a700a32f41381b14c07009edd7ef93e7f69" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "w05r575kf17" + "string": "l82mkq31ls9c24306vp5g83" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDLNDVTVTHN7SRMVOXQUSCNN5YKIND37SZ3ER6HWU3FLF46HR6SNKKJ5" + "address": "GCAXCT7VQKEJ437MBVNG3H43R3BPAIXILYP3UABRUVRS4BDNJV6TP4GM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e654b7292b2b712bc2869122b3a5d31261fb98ee2bc76b688250effdcdc6afc1624d4af812dbb9a1ee05da2f80f773a16cd662f418701d40f23a5f48dd6d8d0d" + "bytes": "57c3f69b6b585ba9d1e4419fb158c4fc6117723cdae8e9f027fa687803041d04b823998056abad6df9317b13346556b4048b27c5feb76fad46b1a1baf28947a6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "8400c9e238b5bf9399f6be26c728296f60c3b1a7216abfe64807e811a0a2ad61" + "bytes": "ff0801b7f33c291c79563b4b27393f27228c08a589b6ce7664650fc7e16fda90" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "8400c9e238b5bf9399f6be26c728296f60c3b1a7216abfe64807e811a0a2ad61" + "bytes": "ff0801b7f33c291c79563b4b27393f27228c08a589b6ce7664650fc7e16fda90" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "36f7d02b9b64912a2772fc663eea39b35614994ced1b2caa7269363e927cc906" + "bytes": "c6dbf2c5e355a3506a84dc2fafdae68cabf360b19d5cd0238dddb6760b4519b2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "36f7d02b9b64912a2772fc663eea39b35614994ced1b2caa7269363e927cc906" + "bytes": "c6dbf2c5e355a3506a84dc2fafdae68cabf360b19d5cd0238dddb6760b4519b2" } ] }, "durability": "persistent", "val": { - "bytes": "0e19625ef7b4cb27a6537ac7db46910cb8f14cf9fcd9eaaabc05c3fdc5c0aac6" + "bytes": "b23636e7bbce03fe37ccda791f4a3a700a32f41381b14c07009edd7ef93e7f69" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.16.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.16.json index 24734e2..e1fcf32 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.16.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.16.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f17e55b5d82a7124b61dd188e4bd63bf523c297dd7786d9215715e4bd564eca3" + "bytes": "cfde603860205ae3b89ffb1b2fc08099cbed59e7b4b9add49926ca365bdea79c" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f17e55b5d82a7124b61dd188e4bd63bf523c297dd7786d9215715e4bd564eca3" + "bytes": "cfde603860205ae3b89ffb1b2fc08099cbed59e7b4b9add49926ca365bdea79c" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "9g7y07h" + "string": "13zz7ygd83x53" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAYRB6LXAH3VEMLQGJ2COZAPD6JS2IFPABY7A5JZHSDT32R5COWGEW5P" + "address": "GBPE3PKWE2MLQNGOQ2KRSDZC44Q3FECO57IUPDALO7PGDDZISLRO3NLR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b9ffd72bce28c0859ff0803c09652bcddc5da0fc11eca296ee609a2607628be139d28b808e95d55b38314687a9e4e9eadeaf8ba57e24f097187cd9c136d7274e" + "bytes": "aca355d849e178b9fab13c27db30ee3b08c54c696ca93b47866ef7b5887daf866dd1e49decc90495492fb1fc7619243031e2aabbcd177173ee6bf7713292e59e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "fc183ba0657ca790a7439d32d3b0d98f1a025db58ab22924b789a7451fc417e8" + "bytes": "083c84ebbca800f4c98a401b4068d6dfd123e5cdd2c8ae1a57883f20b0502c30" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "fc183ba0657ca790a7439d32d3b0d98f1a025db58ab22924b789a7451fc417e8" + "bytes": "083c84ebbca800f4c98a401b4068d6dfd123e5cdd2c8ae1a57883f20b0502c30" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c639d488bb3914a9297f2ff039b3f3b550dae2c6a317b31cbf7966da3aca1542" + "bytes": "5f4fe363fe6b99e855e8fdfe20aea84373b6bcd906a6c120bdfe2b223617eba3" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c639d488bb3914a9297f2ff039b3f3b550dae2c6a317b31cbf7966da3aca1542" + "bytes": "5f4fe363fe6b99e855e8fdfe20aea84373b6bcd906a6c120bdfe2b223617eba3" } ] }, "durability": "persistent", "val": { - "bytes": "f17e55b5d82a7124b61dd188e4bd63bf523c297dd7786d9215715e4bd564eca3" + "bytes": "cfde603860205ae3b89ffb1b2fc08099cbed59e7b4b9add49926ca365bdea79c" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.160.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.160.json index 2736861..9bc7e4a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.160.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.160.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "35f27439ba2a28ac8159bd95ea1349f6259dd44bc6f65955f731d4876fbbf38b" + "bytes": "d2d93bed6663639a7bddda250037971cf5d32ecca899958da6cad7fdedd100cd" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "35f27439ba2a28ac8159bd95ea1349f6259dd44bc6f65955f731d4876fbbf38b" + "bytes": "d2d93bed6663639a7bddda250037971cf5d32ecca899958da6cad7fdedd100cd" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "f4j04c17y" + "string": "3ckl1evrs" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBDIVEZ7MCMZDWSTJDUWMT2XG4IVNTXXNJD2PM4NMDBOGPLL47ALDZIB" + "address": "GCXYLTYH3BAVX4PBYLVCB4NWJQX4WJ2X26TMUF2NBOILPWZ4U4RDGCSK" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5d95ca9002028ddd1d31425b359fa2ef470a11e80a47b1bed25ed9717cd964ed7bb2d47103b118dced90c2a79f4a74acffcfaa9f17cb67f9b6e4dfece6fa9dcb" + "bytes": "5f0494d7cfbb67ba947040553c7d0b170465224936489ff242186f8d8cf159ccd63a059ea5f379fe5cdf6a4f153a77b239d141732a038cad92722d600788fc45" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "689f5d832b3619a71e971a922500c7ccb604bf9131bf59a3f9752081f51d5a33" + "bytes": "b4095fbcefbad5ab7f4e09275b1f021641be5e366915aabdc3b8c8ce9c3f7e75" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "689f5d832b3619a71e971a922500c7ccb604bf9131bf59a3f9752081f51d5a33" + "bytes": "b4095fbcefbad5ab7f4e09275b1f021641be5e366915aabdc3b8c8ce9c3f7e75" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "54bd06b11faf27189f0ee17c72812f7e846bd66243876d41acdbfb71dc617f71" + "bytes": "b4a9c6d7003cc18d36db547f9cabb55df190385cc8ca3c4061181438913230ef" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "54bd06b11faf27189f0ee17c72812f7e846bd66243876d41acdbfb71dc617f71" + "bytes": "b4a9c6d7003cc18d36db547f9cabb55df190385cc8ca3c4061181438913230ef" } ] }, "durability": "persistent", "val": { - "bytes": "35f27439ba2a28ac8159bd95ea1349f6259dd44bc6f65955f731d4876fbbf38b" + "bytes": "d2d93bed6663639a7bddda250037971cf5d32ecca899958da6cad7fdedd100cd" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.161.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.161.json index efc17d1..efc4fce 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.161.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.161.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "514ecf0fa60aa574db8d1f8c8853b325cf479e8d26d23894f64608768ec47a66" + "bytes": "78a53fdc35682e1a9c3dda540518bb809d0b600474b8987507f61be9b81248f5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "514ecf0fa60aa574db8d1f8c8853b325cf479e8d26d23894f64608768ec47a66" + "bytes": "78a53fdc35682e1a9c3dda540518bb809d0b600474b8987507f61be9b81248f5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "eej5u" + "string": "jn4u0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDZ2QJVF543HO55UT2H6ZU4NSI6OSOJK75JLQC5GR2JGOECQCZFIDVRO" + "address": "GAQNUKUMYU27MARX5ZQ6XOLF7I7PA6NPOPHOHOOWO2WHYAO5GTAG6A7J" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bdffab2a6e7837b8a9ece8a35b66838b94af94e033c4f8d63c4a2de904ebc514138ff5ac70fe342ecb776c1a041a2517abac64da2cbe1e4a8e3859678b87d5a1" + "bytes": "32ff5aab2cb09d46db11e74468e7643b441ea727a9a902dcc3474a8bd5eb34a07b2e16401de5a3cfe870a70bdc6395d8aa6978595b9aec521e76648ce0721cc2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "48fe2d79ab9042574647618baccc3c9989d2e25a6f3dabbe5d8ed96cc8431019" + "bytes": "f452048ec875f87fca4d78c0ebe16d207d5c5dee9edb811b147e57d73bb03aa7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "48fe2d79ab9042574647618baccc3c9989d2e25a6f3dabbe5d8ed96cc8431019" + "bytes": "f452048ec875f87fca4d78c0ebe16d207d5c5dee9edb811b147e57d73bb03aa7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6d5139dc860ea5be3779d8b52d8327942325e792d087da8434d51e1e42353d59" + "bytes": "c46a047a3704d4061d1f28c404ea0f759598f6c7ace705e88684dec91b84ef0b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6d5139dc860ea5be3779d8b52d8327942325e792d087da8434d51e1e42353d59" + "bytes": "c46a047a3704d4061d1f28c404ea0f759598f6c7ace705e88684dec91b84ef0b" } ] }, "durability": "persistent", "val": { - "bytes": "514ecf0fa60aa574db8d1f8c8853b325cf479e8d26d23894f64608768ec47a66" + "bytes": "78a53fdc35682e1a9c3dda540518bb809d0b600474b8987507f61be9b81248f5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.162.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.162.json index bbc820f..1999390 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.162.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.162.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9efcbe023280c6dae174a67e7d6994a817af2ff8af2d67b3f9523b2a5989340f" + "bytes": "5c1b8bbe60ece817f71c9a025770ff94da2876202155243b39211fde438c77b3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9efcbe023280c6dae174a67e7d6994a817af2ff8af2d67b3f9523b2a5989340f" + "bytes": "5c1b8bbe60ece817f71c9a025770ff94da2876202155243b39211fde438c77b3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4ga38" + "string": "3u0d131l1" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBRSN5EE6SJWWZCXVLQ2CSDBO3TIBRZHKROIO7743XXUJUK4UNTEVMY7" + "address": "GDGM4NYLTGVO3HMRQW322NPSKJ4TB3EB6HVWYGDKQRZIOPQ3GSR6GW7N" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "9a887f676522444556030c957cb9539c3f72645227af13b442ddc57771ad57fe8c5ef3f9c95c6265b67c18edd7104ae6540b2b14cc1dcc4d73db4b865aa73e46" + "bytes": "c3e44f8cd481eaa25783597eee622b3baf2fa9eb4120f7e5580f6c1237fd65354695b8c8cf28444a284571ce8d130965989b56b9275b9877e484b74da4379ce4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f245c6bab3221f22f7337854a6670faa4d5426b99bcf33e2608627a2f2e99abf" + "bytes": "3d4f9401f846acc9a32785e6d373949fcb0814d8e6a14b3cc615cfe19fed059b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f245c6bab3221f22f7337854a6670faa4d5426b99bcf33e2608627a2f2e99abf" + "bytes": "3d4f9401f846acc9a32785e6d373949fcb0814d8e6a14b3cc615cfe19fed059b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8e0e43947c186042efc1c914c7254f329050d12154c221b6c098d8ae4d3e7eba" + "bytes": "3947833e33a6cf37ea17a9224532574c94059185a5053524f4b42f3ec53c3ec2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8e0e43947c186042efc1c914c7254f329050d12154c221b6c098d8ae4d3e7eba" + "bytes": "3947833e33a6cf37ea17a9224532574c94059185a5053524f4b42f3ec53c3ec2" } ] }, "durability": "persistent", "val": { - "bytes": "9efcbe023280c6dae174a67e7d6994a817af2ff8af2d67b3f9523b2a5989340f" + "bytes": "5c1b8bbe60ece817f71c9a025770ff94da2876202155243b39211fde438c77b3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.163.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.163.json index e625e3d..3584347 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.163.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.163.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f0e7f6dccfe4204bb36a239f2e06dfa6ce9d68671d306a26130558c072ed5b2c" + "bytes": "e8ae2cdad9d2751cae737e674dedd24f44f274b4bdcf82730727893d90a18e06" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f0e7f6dccfe4204bb36a239f2e06dfa6ce9d68671d306a26130558c072ed5b2c" + "bytes": "e8ae2cdad9d2751cae737e674dedd24f44f274b4bdcf82730727893d90a18e06" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "21ys9bb" + "string": "1jh7nusugumh75n8473qd91a697" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDEO7OVU46FADFDZXJIFYFJ2MM4WTOHSSUQ3VW2HPOYMYG52AUAH23S7" + "address": "GBDFTIGZJU4YNST4RSNPRCFSJS24LNN5I5BHQVNGRKBZR325CNG4HKJF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1b09ec50bd98207bc9770bd8c0d30582946c1d2eace9b60d39f2bf777a4df784d836e191aaa69279f039fd84ca8db7adc1ad628fb8b4766182727a8cbfaf69b8" + "bytes": "cc5ebc3d0d36648888933d141ccc3b6897a1a3a7379f9254aaf0f34fcf29da8f2919d8dee2f9fee6423583a5e1c8dd7e740bbd17598807bed76853883d3de9cc" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "292283502ad48b7f343f6f46c2cf6fe8eab4aaadc3d5bb4dd83f3b228fbe8373" + "bytes": "29d723d6a90119ecb91882243a4b98a339f2d527867e2efd58dca8079f751b28" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "292283502ad48b7f343f6f46c2cf6fe8eab4aaadc3d5bb4dd83f3b228fbe8373" + "bytes": "29d723d6a90119ecb91882243a4b98a339f2d527867e2efd58dca8079f751b28" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "07c88dadce0a18319fa95e3d20eb71bf7862b77fadff6ad59532e993d2ede1c2" + "bytes": "7b83192e0a9baf62dd997791e74b430761484887a9172ffcb0abc603a555e9d1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "07c88dadce0a18319fa95e3d20eb71bf7862b77fadff6ad59532e993d2ede1c2" + "bytes": "7b83192e0a9baf62dd997791e74b430761484887a9172ffcb0abc603a555e9d1" } ] }, "durability": "persistent", "val": { - "bytes": "f0e7f6dccfe4204bb36a239f2e06dfa6ce9d68671d306a26130558c072ed5b2c" + "bytes": "e8ae2cdad9d2751cae737e674dedd24f44f274b4bdcf82730727893d90a18e06" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.164.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.164.json index 65e4350..6d32966 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.164.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.164.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "af728e888614a2c97fe89fcbfc717e0660b4c13e1d2433c89e2b46d1697f0068" + "bytes": "abe49997c3ed0a203acb2e9d164f98e6f5246a7085271b27c4fb85b45da983ec" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "af728e888614a2c97fe89fcbfc717e0660b4c13e1d2433c89e2b46d1697f0068" + "bytes": "abe49997c3ed0a203acb2e9d164f98e6f5246a7085271b27c4fb85b45da983ec" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "q6jqxr2zc61whe1md7oq" + "string": "5102e89v7m8sidbuw41lj16" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBQGTDCEEZLMTPHYRC6AFEL4H2GZNGRW63JTYYQV7UEJ2MIGAPPDAPAX" + "address": "GAL26DGK4HBEFD26OCSPHNYKVY2G7GGZLXOKLKBPICXXUBEOHP4MO3PT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8d14632404aa753b0949c10e95a83898f81a496b5db21b471914c4ba7701e3736dce74c47fe777afd6f785046f77099ca1c5b6881acdef3b01a1716476e6e668" + "bytes": "27b04f972203fd2e5d727c405e9ba481923499b8b3ee266eaaba57607d4959329947ad10bdbcfb4b9744c9d9431353662629c4932e20072a68467a7fc0699ac5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6127471f0bf4d3f854b053a563f6faf76d5b2a8966817bf59e68a50c692fca05" + "bytes": "ae86d9a6a1646ea0d221348e35fa5973f03e1b9f9337e77dd735ddeae53c35ea" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6127471f0bf4d3f854b053a563f6faf76d5b2a8966817bf59e68a50c692fca05" + "bytes": "ae86d9a6a1646ea0d221348e35fa5973f03e1b9f9337e77dd735ddeae53c35ea" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e4132842684ce9166fe28d7761d8acc23a005e5646f76a75e27bb157f91b6cbb" + "bytes": "f71e10412f3b5c517e9c503a6b93609644a7098fce55ef26b9a2791c788ad681" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e4132842684ce9166fe28d7761d8acc23a005e5646f76a75e27bb157f91b6cbb" + "bytes": "f71e10412f3b5c517e9c503a6b93609644a7098fce55ef26b9a2791c788ad681" } ] }, "durability": "persistent", "val": { - "bytes": "af728e888614a2c97fe89fcbfc717e0660b4c13e1d2433c89e2b46d1697f0068" + "bytes": "abe49997c3ed0a203acb2e9d164f98e6f5246a7085271b27c4fb85b45da983ec" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.165.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.165.json index 255c6ba..1a0b503 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.165.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.165.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2194331583258a1660fa8a4d98bac5b4527c3c77e57221e3995e2c46c5d63f10" + "bytes": "661a01cb4cbdfb4839496da2c51b6312404479ab1a49fc867969a704f9ed5bf3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2194331583258a1660fa8a4d98bac5b4527c3c77e57221e3995e2c46c5d63f10" + "bytes": "661a01cb4cbdfb4839496da2c51b6312404479ab1a49fc867969a704f9ed5bf3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "77362n" + "string": "03c6bg9xpc1ngo3l76bmphkus370e9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBGRQWGVJYFN5KAZPSLLFTFYMQTNRGASJDXZ7JG5IKSYIFQH2NLQYB2A" + "address": "GB4ELFSRUFRDRZN3LMT7JWAKRAOJU6SKYMHPK373BDGEIHHQ42NYC7HQ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "93fa76f7c6eba48f26c3b5ee291cda72c36b3891d1f2edd6e0d46abbd3ea9f1f89ce15ee9bac2849a77d1f8ea0c5837124b9692f50ab143e743f6be35b7f980f" + "bytes": "059e7f9b152ca605ee2e3ce5e518736c53eec5d19107b65ff01632d8bbe5b59cf89ff713d48e88812a761cb07f8e81128ef087c1ee4b1be5d90a23bf8303d07a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "16eb2eedc62ad9274b0bf243126e7ff664a9f2327633cc18731ef75b78531066" + "bytes": "574f477aecdbb0b51c4cbfb5f40cb281ce809116039beb66438ce3b20d7a9329" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "16eb2eedc62ad9274b0bf243126e7ff664a9f2327633cc18731ef75b78531066" + "bytes": "574f477aecdbb0b51c4cbfb5f40cb281ce809116039beb66438ce3b20d7a9329" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "95678a64925743ba77d0be4a11bb7327df31cadf49c42fa5afc1d17c76d1c05a" + "bytes": "2f42a29f520af9af0548249c892cc433d7aada68da01e7ff5bf4ceac9519efff" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "95678a64925743ba77d0be4a11bb7327df31cadf49c42fa5afc1d17c76d1c05a" + "bytes": "2f42a29f520af9af0548249c892cc433d7aada68da01e7ff5bf4ceac9519efff" } ] }, "durability": "persistent", "val": { - "bytes": "2194331583258a1660fa8a4d98bac5b4527c3c77e57221e3995e2c46c5d63f10" + "bytes": "661a01cb4cbdfb4839496da2c51b6312404479ab1a49fc867969a704f9ed5bf3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.166.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.166.json index 98045b5..0eab476 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.166.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.166.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b1a050c8a276ee9802dd91ca57f350227f9f7c5e1eabc843154ca25cfe27ad5e" + "bytes": "e6f091e7714297b9af56ea6d0ec107032a84c60351f334531a4c7f5c49c11adc" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b1a050c8a276ee9802dd91ca57f350227f9f7c5e1eabc843154ca25cfe27ad5e" + "bytes": "e6f091e7714297b9af56ea6d0ec107032a84c60351f334531a4c7f5c49c11adc" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4k71kp00yy3cxwielro4sug29kfj" + "string": "586220j4t19196" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAZXO7JSM3Z7QRGARLOGHMHZF36IMH4DIJMSR5U7QXA2CQQ7RAHEIUFN" + "address": "GBLHH45GSONZUIRVZTMNSKGFGNUJRVF4YK4N5PU3CMNCWZEBUVGMSZ26" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e4022d35077dde123997d3f124eb463772b03de4d5d7ed5168db5269d39f8484acd45600955a3fa19c43653145b9ca333fb96df6828262071cf347f6217e76e8" + "bytes": "a8ca8364011c772e0c05bd523752fc71e32268fd53ed589710f6337df9ed1a0e3131ab03dd60f6bae0939605eeeb71a4b687694a4db8ab2e2c231e68cde49ac7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1fd934334e301b4dd4d35a76102822a470dbc4182104b9512fa6e468be004653" + "bytes": "c4b1cb22b5e5c34987dffe9d4968e4cb695e6a1c1a11bbbcb7e29d2e9874af7d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1fd934334e301b4dd4d35a76102822a470dbc4182104b9512fa6e468be004653" + "bytes": "c4b1cb22b5e5c34987dffe9d4968e4cb695e6a1c1a11bbbcb7e29d2e9874af7d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "08ce82fb8a5863df6bdf27b214c04419251b0c7d0fda7a97bf067428ed7822c1" + "bytes": "e12e2caba465b4d86fb8cd6027eb2b66161740e3e0b79a452c6ecf3646b02efa" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "08ce82fb8a5863df6bdf27b214c04419251b0c7d0fda7a97bf067428ed7822c1" + "bytes": "e12e2caba465b4d86fb8cd6027eb2b66161740e3e0b79a452c6ecf3646b02efa" } ] }, "durability": "persistent", "val": { - "bytes": "b1a050c8a276ee9802dd91ca57f350227f9f7c5e1eabc843154ca25cfe27ad5e" + "bytes": "e6f091e7714297b9af56ea6d0ec107032a84c60351f334531a4c7f5c49c11adc" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.167.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.167.json index 9e9c35f..ac1c0e4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.167.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.167.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5b863190fea8a14951c39943e709163bda117c046a45c91bba905a1fcfc796af" + "bytes": "92f471ccfde1954bc019f10bef38db7a1c28f824fc76eaf4560140c39eb46296" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5b863190fea8a14951c39943e709163bda117c046a45c91bba905a1fcfc796af" + "bytes": "92f471ccfde1954bc019f10bef38db7a1c28f824fc76eaf4560140c39eb46296" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "i2513ngrrq32zojmhapq4vs7rq7ws" + "string": "dzsyic17lpcwev084z3j79" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDOB4Z4D3IFAXT2EOXTUANQ7J54HQMOJODN672BMPBPWCEAJM2QHDTF2" + "address": "GBOH7RWQJVPWPSLPBDUPBC5G3BKR6TOC4LNJ6OW3UCR56YRLYHCUMROG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ba4682f2bdd3eda7a1892e3f403ddad16d6abef07f135cedb6b0d089a13f2b2c473478a05459ec777d8167c54610e17942a241aa072a73fb1038e0c47e65a597" + "bytes": "711e4ac64d721fbe484429e72f173c6bb0de33206681966f5c259958b18b44ed9740133204741de770dacd3ba21178c04e317662cd25c0cf4076439e7f0c6a5b" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6ca33bf0eed2a934fd2b12effcf18c4781b9196384d94c4659e15de44dde00f9" + "bytes": "fb324eed0787d13222db7de1a5bc07721f14143fb6f243b78323d25a289e2e5b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6ca33bf0eed2a934fd2b12effcf18c4781b9196384d94c4659e15de44dde00f9" + "bytes": "fb324eed0787d13222db7de1a5bc07721f14143fb6f243b78323d25a289e2e5b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "da494956fc56e5774886f65ed5115821c935418f111725cc4e279a6a70e16964" + "bytes": "31212d361d0a8d081983d6e1e14af87eddfb0b4e07bfabef3502a6c1a9864d9c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "da494956fc56e5774886f65ed5115821c935418f111725cc4e279a6a70e16964" + "bytes": "31212d361d0a8d081983d6e1e14af87eddfb0b4e07bfabef3502a6c1a9864d9c" } ] }, "durability": "persistent", "val": { - "bytes": "5b863190fea8a14951c39943e709163bda117c046a45c91bba905a1fcfc796af" + "bytes": "92f471ccfde1954bc019f10bef38db7a1c28f824fc76eaf4560140c39eb46296" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.168.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.168.json index 2ad71d6..f18364e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.168.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.168.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "636f9f6938456d0cb42472ab5f436671015f987b5cd68b1b3fa2267aed64e5d9" + "bytes": "cde5d85eba943b4aef85938d666e5893251c6950951ef85d93d962e64d7f31f2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "636f9f6938456d0cb42472ab5f436671015f987b5cd68b1b3fa2267aed64e5d9" + "bytes": "cde5d85eba943b4aef85938d666e5893251c6950951ef85d93d962e64d7f31f2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "405l21f26s2235f8t" + "string": "3jn7vblen7vesyz43" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAMK2POFL5QTCI7LMOS4YSUTQSH3GUXAXBOAVS3TZG5OO5Y2LF27NVL5" + "address": "GDMTN2YNGTHE5D5RSDTKTKOWC3NCNT4OSTY2JUV7CGB24E3FEPRYGTAE" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "4e0ab4bf9d5dabc69fc1eb5274ca9d99dfb69309f4d491e5766d9ea202a0b27458f59523f3341c5c8526f2d1f5754555f1ae228b07d5500e98601fed8324e06a" + "bytes": "b29ed11b076fa2a782d31f4c75e4bb671d4e0b526b05a5e72f1fd9e06b1f5d967d0d10d70623487e0cac8bf72e1d92992ea212bf702864df1e2b92eed6e704d2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e912a20d491cfe17f1ba9de620e4112fa526c5895b980b87aefc0c49baf289ca" + "bytes": "e850489830458f451fd2c556a144509e28dab6dc7dad6534ca7b35c3b29cb6b1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e912a20d491cfe17f1ba9de620e4112fa526c5895b980b87aefc0c49baf289ca" + "bytes": "e850489830458f451fd2c556a144509e28dab6dc7dad6534ca7b35c3b29cb6b1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "71900b4ed35789d978c1eb255358b549beb069ece406be3ac5e867b733a62cd1" + "bytes": "8f06042918005b2429d5bc37ba582b3f22c69ad19bfc5172ac2e743126822ba8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "71900b4ed35789d978c1eb255358b549beb069ece406be3ac5e867b733a62cd1" + "bytes": "8f06042918005b2429d5bc37ba582b3f22c69ad19bfc5172ac2e743126822ba8" } ] }, "durability": "persistent", "val": { - "bytes": "636f9f6938456d0cb42472ab5f436671015f987b5cd68b1b3fa2267aed64e5d9" + "bytes": "cde5d85eba943b4aef85938d666e5893251c6950951ef85d93d962e64d7f31f2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.169.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.169.json index 48268c4..72227e1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.169.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.169.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "600da60b7cd806996bee55ac3b28c62301228f1dc368af4c2e979733dfed03ce" + "bytes": "bdc531f02ee45e5d868f02d47c0d70c9e5a387cfdf5aba7cb643e9d11f161c9a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "600da60b7cd806996bee55ac3b28c62301228f1dc368af4c2e979733dfed03ce" + "bytes": "bdc531f02ee45e5d868f02d47c0d70c9e5a387cfdf5aba7cb643e9d11f161c9a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "lbg14k12z4xl6606y96" + "string": "d5a53a68jw916ii" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCLFGJCDDQKXWR77JVEQK5V3PG7VRAJWPHKLN43BKGIXJFHOU3L65YX2" + "address": "GBISXX3LSQGKFHQS5XA7GGKTZCDTRFVVFQJDB3P2APSQWPEXX7T42LAA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8be23aaaa6a2c342834c8ebcdfb4239687d851b913b899116affe7d9a40a9acd5d76f41077c9e494cefc9b6d0061c7cc069e579dd3e023a87ec332971d1a368c" + "bytes": "61135ff17c12247166c436ba8d485abc4cbee0f4ada8bb16cb5d3feafed4b1aeb5039c24ac1f75cddc13c7da9f5378f38c6bbd75e1449cac37e4ad86d979e493" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2a94c296c842a1464cd2b4fb2f9adf4efca75628eaa3ed62ee3bca105677beee" + "bytes": "00ea36977a583ebfdd4887551dade46d5cab46368d04127a8ce5d399b7b84349" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2a94c296c842a1464cd2b4fb2f9adf4efca75628eaa3ed62ee3bca105677beee" + "bytes": "00ea36977a583ebfdd4887551dade46d5cab46368d04127a8ce5d399b7b84349" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a98f8b841c4ad30c0e3df214c96dcd946287d570a0e0a4a5e884c7b73ddbee49" + "bytes": "3c75bc1843709c78710833481cf46c5a8f90d86915f632261749405af96d0900" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a98f8b841c4ad30c0e3df214c96dcd946287d570a0e0a4a5e884c7b73ddbee49" + "bytes": "3c75bc1843709c78710833481cf46c5a8f90d86915f632261749405af96d0900" } ] }, "durability": "persistent", "val": { - "bytes": "600da60b7cd806996bee55ac3b28c62301228f1dc368af4c2e979733dfed03ce" + "bytes": "bdc531f02ee45e5d868f02d47c0d70c9e5a387cfdf5aba7cb643e9d11f161c9a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.17.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.17.json index 9b7a5f7..8b07c53 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.17.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.17.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6e5d27121085cb7d6c712b6b693cfccda63ba98c05ea547d31fca4862dab948e" + "bytes": "fed6edc7b91b04ff13d83ef8f9aa9c9fcac4d37d148dbab6650a8ca1488ae586" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6e5d27121085cb7d6c712b6b693cfccda63ba98c05ea547d31fca4862dab948e" + "bytes": "fed6edc7b91b04ff13d83ef8f9aa9c9fcac4d37d148dbab6650a8ca1488ae586" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6fwai651g497k6cr4crl87" + "string": "osou95" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCOGALBGGZCWQS5CLTGZMJM2MNCDEBFVFM5HGPBVYYMBD34752SXRBKP" + "address": "GA57E6B3EIPKTDG2LEIDPDVOQAWQ7F5TAFLNT3YGJCQ2FRVGSZRUFTHN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6f6710571ea315b2857e4368f92f531f8f1049261fa324aa63b7f37f2b2d947c483377e49b0161d5be3b0f9248e75123a6fe89a827d5b1a0164b0a5faaba536f" + "bytes": "b838113d152cc9220e004b7ab2774d25763f1522a76147945f3b117c7fe4b445f434a6661f6e1e2f5fbbca8686b9d548fe83edfb7c527645a6b09fc54b2369a1" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1938f20b3a65c9ea806bc42702b3f246878bbc34139c15c4436b114330f61240" + "bytes": "13552d5d18a9f2d35b05b39a1f910d8521e14672f3afbccadae3492532c2aa00" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1938f20b3a65c9ea806bc42702b3f246878bbc34139c15c4436b114330f61240" + "bytes": "13552d5d18a9f2d35b05b39a1f910d8521e14672f3afbccadae3492532c2aa00" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "341c1fa62bd93f02eccc781a6f0e1e0a8fde6dcdae5c7e1511965bc3e8de5872" + "bytes": "7c663e5c74f5b8fe91668a3d2e86514d24f8e21ab70c57a0a35d611cad1041c6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "341c1fa62bd93f02eccc781a6f0e1e0a8fde6dcdae5c7e1511965bc3e8de5872" + "bytes": "7c663e5c74f5b8fe91668a3d2e86514d24f8e21ab70c57a0a35d611cad1041c6" } ] }, "durability": "persistent", "val": { - "bytes": "6e5d27121085cb7d6c712b6b693cfccda63ba98c05ea547d31fca4862dab948e" + "bytes": "fed6edc7b91b04ff13d83ef8f9aa9c9fcac4d37d148dbab6650a8ca1488ae586" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.170.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.170.json index 0bcbfde..e273f8c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.170.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.170.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "404c7d2223c51bf07937c9526fced34809ac70571d9500eef77d0b9793112f3e" + "bytes": "90a64b566e671091db4dfdde1fff946c6eefea185f8e365b634b65de1b74e7e8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "404c7d2223c51bf07937c9526fced34809ac70571d9500eef77d0b9793112f3e" + "bytes": "90a64b566e671091db4dfdde1fff946c6eefea185f8e365b634b65de1b74e7e8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "06ip1d8h7" + "string": "67u4yju14" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDGBYZEWYB2VIEEIVZBW7N73FSAOITBWEHL6CS6EFGIZJV7UB7JPGFPY" + "address": "GA6WFMY7H6YOXF7FQW6E5VKOM2I7S4SZ6X3TDELTP4G7NFIYNXFFMANT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2fa3620102a6c78242c83d31f5d3ed8f3f4b89d298a71e07cf07e3bde3aaefe76668ec48a9258cc041955a5c823f8b24edeed244a3fcc733b61dc4384e2c2d63" + "bytes": "4d4b2891dda2985d07afa39d962258baf93e5aa35931755f9de4cc0126b8f7f3db655b6b4d33fc8e5e2fb956ba95f047beb849864d62628e46156abbfce60767" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e4af2eb55f189586ecfc62a5733a262a1eb2b352c9d7b6374a8298f042edbe32" + "bytes": "4a187a5493a53f56361fcae976dcdfa4e4658219573aec45a9290305f0818228" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e4af2eb55f189586ecfc62a5733a262a1eb2b352c9d7b6374a8298f042edbe32" + "bytes": "4a187a5493a53f56361fcae976dcdfa4e4658219573aec45a9290305f0818228" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f6b817512ddb92c2e89b5ca712cb7b76c0e724cdc85c24aa2be870959d544299" + "bytes": "130cd2204b84fadd016213b1c8045f81a944cef5ba6fc46fd854e6a0619c69e3" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f6b817512ddb92c2e89b5ca712cb7b76c0e724cdc85c24aa2be870959d544299" + "bytes": "130cd2204b84fadd016213b1c8045f81a944cef5ba6fc46fd854e6a0619c69e3" } ] }, "durability": "persistent", "val": { - "bytes": "404c7d2223c51bf07937c9526fced34809ac70571d9500eef77d0b9793112f3e" + "bytes": "90a64b566e671091db4dfdde1fff946c6eefea185f8e365b634b65de1b74e7e8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.171.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.171.json index 2b1ea6e..7fbcaa7 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.171.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.171.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "611c2d73236a4be0b16546740ab13e23c2b68912b6caf08090df3e0c4a4e0620" + "bytes": "00f9f4e0123768b674333d67ef37dc16a996988365ce105b8382ab427c88fb77" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "611c2d73236a4be0b16546740ab13e23c2b68912b6caf08090df3e0c4a4e0620" + "bytes": "00f9f4e0123768b674333d67ef37dc16a996988365ce105b8382ab427c88fb77" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "bl288n952941eq1a33u7t" + "string": "5o1e2k67oq148i53j43p1t9bm" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBTXOOJX6QAZOPNUY37OMNYJT6F2L755E3Q5MJ7NZ2DYRV3XAMIXFKAV" + "address": "GCJM6GU6GU5DY6BXN3XKTW73USJFBKL6RRZMYQGCLQAZPELM337B65W2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c0ca5254cb4c89d2ec2f8aef0fe1a2eafc5ca1b3a5cef58ba7de2b0afc26a379efd600948fc1d1ec3654cee86aabdae8c2af59a9d7126fc2c6c546886bebb3f4" + "bytes": "31ef81c151a8be731deb93542576cadae3fb82f8ec749794da6aaac37360aa1655f97daad7623b6ac8a6c5748113e1dfa41f8f663e335e5e3ddd2538a2f8d662" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3c2ac425e913abd95f2cd51a765c69eb7c5626414f225d96de0586e7f2b9aabe" + "bytes": "2ad5480f8944a2f2508b6a8ab6f1ad4fa026beead19f39a135aea36393376a94" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3c2ac425e913abd95f2cd51a765c69eb7c5626414f225d96de0586e7f2b9aabe" + "bytes": "2ad5480f8944a2f2508b6a8ab6f1ad4fa026beead19f39a135aea36393376a94" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e6ee041bf676b08bfeb528a2569fbbe4ccc20fed424bb080018318e64f5245d0" + "bytes": "e25e10726818cdbd590a378e3bfa3781a26572fbe693b944b33f9e3b3a9958df" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e6ee041bf676b08bfeb528a2569fbbe4ccc20fed424bb080018318e64f5245d0" + "bytes": "e25e10726818cdbd590a378e3bfa3781a26572fbe693b944b33f9e3b3a9958df" } ] }, "durability": "persistent", "val": { - "bytes": "611c2d73236a4be0b16546740ab13e23c2b68912b6caf08090df3e0c4a4e0620" + "bytes": "00f9f4e0123768b674333d67ef37dc16a996988365ce105b8382ab427c88fb77" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.172.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.172.json index 762b5a8..bd65d86 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.172.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.172.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6c0cc8a1b1406436dc98a081390d0aaa2be09f34d1ca531e83382f3f293ebdc4" + "bytes": "c21bbca9e277804500d797111f5a3a79e6907850a1d07eb41fbfe2a2defa2c3a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6c0cc8a1b1406436dc98a081390d0aaa2be09f34d1ca531e83382f3f293ebdc4" + "bytes": "c21bbca9e277804500d797111f5a3a79e6907850a1d07eb41fbfe2a2defa2c3a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "ta5263ggjp030e9misa09s17376o" + "string": "hiw2x961non1i7k836j6393" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD7CVXPOL7GYZFAO4W3SPKAVG6VQ5B44ETD7P642EKUMOPRJ2ANIRL5H" + "address": "GABQ6GSYH24YOYCBM5V55DVTPW3BZ2MV4QUASBDKQVX75WHFWTL2MPWH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8d24753d9a1cd55854df196b1bfd19078864b29743ed5fabaeeaa2850eab0045948150d68022ed7e0e3a0748b7dc8715fc16051ef1ed3d8da256bdedd0d9bb15" + "bytes": "3934d6bdc5a0a9af89654ccbf498b9dea06cf00302b1e7ca38b9ffab80119131dbcc89a26ae8c227cf49a85576525bb2a0c7f683f41e5f5b75b324d2c940fe42" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e2e26dbd7563187dba5eca92dbc0c3b22a5053bd8fb0758fd667498541e76efe" + "bytes": "4d30bfb581097b0fe29dec554cb0ce56a7aaa74504472cd8d7faa375035334c5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e2e26dbd7563187dba5eca92dbc0c3b22a5053bd8fb0758fd667498541e76efe" + "bytes": "4d30bfb581097b0fe29dec554cb0ce56a7aaa74504472cd8d7faa375035334c5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b5c3a77ca3b80f7493a81c35e2aea8dfa7cff99fa221d92019306e398812d1e5" + "bytes": "671531abf0667a331f65af9dd40c72044e5e5ac538262cb7185c17963a66d1e7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b5c3a77ca3b80f7493a81c35e2aea8dfa7cff99fa221d92019306e398812d1e5" + "bytes": "671531abf0667a331f65af9dd40c72044e5e5ac538262cb7185c17963a66d1e7" } ] }, "durability": "persistent", "val": { - "bytes": "6c0cc8a1b1406436dc98a081390d0aaa2be09f34d1ca531e83382f3f293ebdc4" + "bytes": "c21bbca9e277804500d797111f5a3a79e6907850a1d07eb41fbfe2a2defa2c3a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.173.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.173.json index 2ded944..b567a2c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.173.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.173.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "01dd130024c4280629edd582f618d1dc82287d074d85cf3ec666684ecf1c9d66" + "bytes": "fb244b6ab3ac1571ce2d1aae491dac4b153e7196a3b80585ed9a7c6504ae5952" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "01dd130024c4280629edd582f618d1dc82287d074d85cf3ec666684ecf1c9d66" + "bytes": "fb244b6ab3ac1571ce2d1aae491dac4b153e7196a3b80585ed9a7c6504ae5952" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "m3skp2eh9y19z21n4aq23s23xbqs2" + "string": "b1m2i7of6355vv1viv" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBL5HD3BYBU7JK6YCRFNFV2CE3YYY2XO46635D4ZLVC6LQOORSIDNKU6" + "address": "GAIAQMU2THM2LTV4WP4FBQWH7I6QZGR4B4UWX7MSZTIU5TRRU2PUT44I" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "58999569b1b590d9fffdcb8d2a12e888f3a7c6ed4d92087fa25a048605175105d6138be954e37565d714f7acaede25c60e65b61a7d5c64c06016e1b1d1e65b63" + "bytes": "3a289c01aab8dcc6a8f0ab3e60dc210dc5c3d9f7729b96e26880e9d69c17724f184013fc35901c497dbb3b2ec1deab74c93f79960d1052f01aa74a6011c76d67" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "aa19c28fe5d4d8a1b3720f686b3ae33e611c3b5d572bfd6f7eda5f963a70e699" + "bytes": "f06f2b8c6bd01a0cfee1165308728cc701bd6b1edf29d9dbe73539bb6f05c6da" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "aa19c28fe5d4d8a1b3720f686b3ae33e611c3b5d572bfd6f7eda5f963a70e699" + "bytes": "f06f2b8c6bd01a0cfee1165308728cc701bd6b1edf29d9dbe73539bb6f05c6da" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0bc8534d79ad38e709ad2f860bda0ca4b36279ec7089aac596dc7eb04a7c0897" + "bytes": "63215ba5e233806008af846f7043bde6e8f197a176722c8063cff0b031134d85" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0bc8534d79ad38e709ad2f860bda0ca4b36279ec7089aac596dc7eb04a7c0897" + "bytes": "63215ba5e233806008af846f7043bde6e8f197a176722c8063cff0b031134d85" } ] }, "durability": "persistent", "val": { - "bytes": "01dd130024c4280629edd582f618d1dc82287d074d85cf3ec666684ecf1c9d66" + "bytes": "fb244b6ab3ac1571ce2d1aae491dac4b153e7196a3b80585ed9a7c6504ae5952" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.174.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.174.json index 80eb072..823eafd 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.174.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.174.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "4f07b3227ba555c288b37c80caf6758c2f3da09b04ac92c60431948e3a2e58ee" + "bytes": "984e685d7035b57dcfb8f4ec8d73884e1b1750bbcad018512f01635b83089eea" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "4f07b3227ba555c288b37c80caf6758c2f3da09b04ac92c60431948e3a2e58ee" + "bytes": "984e685d7035b57dcfb8f4ec8d73884e1b1750bbcad018512f01635b83089eea" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "l6e3467760scf9o" + "string": "0q06mfx95p92eti" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCVL4HEUHXAZMHB3V4CPA77XOAEJYVI7AA2HH2ZT7EC4DF7O26OE7PPX" + "address": "GCULAF3AE6SADZR44SW4PXVGYKKNNQ5BIK4CGHNQI45QBJSIAG5V36NY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b1db4ac20087832faf8af602d39969cdab9e18ed682b5dadc2ec26849c5a3be22743d64a9685ae0dac048541ad513d84805018e204a46d485bc269ef53b5799e" + "bytes": "6263b964eaedf70b346cec6621cf02475ba6e59ab839db82d0177b9eb946db8f7dc81c1db7a2469473ba5601857a5ce50c230ba893cb0b178192a17433ddded8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4b4d067b00127a3588b53d17efce6f79fe285d2462bbddee1b41d78f6acfc53c" + "bytes": "19aa5fdcd4f4650537872f65c961f8dcee116413ef2330fae55bc5217ac45cd9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4b4d067b00127a3588b53d17efce6f79fe285d2462bbddee1b41d78f6acfc53c" + "bytes": "19aa5fdcd4f4650537872f65c961f8dcee116413ef2330fae55bc5217ac45cd9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3e7a67c432fadd16bc3a42a3a71ef164fd082d7827db8bd488eea96383a7d1b9" + "bytes": "b888d1bf7f211d7551fcb39433a27cf82ce71ba3508694c82e57df67135f567a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3e7a67c432fadd16bc3a42a3a71ef164fd082d7827db8bd488eea96383a7d1b9" + "bytes": "b888d1bf7f211d7551fcb39433a27cf82ce71ba3508694c82e57df67135f567a" } ] }, "durability": "persistent", "val": { - "bytes": "4f07b3227ba555c288b37c80caf6758c2f3da09b04ac92c60431948e3a2e58ee" + "bytes": "984e685d7035b57dcfb8f4ec8d73884e1b1750bbcad018512f01635b83089eea" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.175.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.175.json index 3b81ef2..6595953 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.175.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.175.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6a50f3e17d2c911339b43a9da685563c61611d2084b276aaee845e8cb5d052f4" + "bytes": "ed0290251e60bc767ed723c6a0b0bf4ee6799c2b5d18ee36a772cf962a30ea37" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6a50f3e17d2c911339b43a9da685563c61611d2084b276aaee845e8cb5d052f4" + "bytes": "ed0290251e60bc767ed723c6a0b0bf4ee6799c2b5d18ee36a772cf962a30ea37" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "bu1bi0d312r4mk9xf" + "string": "jk638nh3c43" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB6N2BLUXW3T742WDS7Y4UBONDAKFGFL5MBKEOFZC2ANO5A4JPGZN2TG" + "address": "GCXCV54OOM4UWJMGZ4NDQTJXZHNLRKGEYO4NTGYZBTKQ6LQFU3KMPT3T" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b856e9df64880ef16d3be614c21f5b80c8ee7122f0e8819b8c9ed31bace1eeef9fbc1e8ae6737cb8eaee2c466b2168faacb0554749fca50fb4838d58e9e7158c" + "bytes": "bc8107f3b4e979092e76c92e643365d4c64b26a0587b7b173c14ef31ff3f48a9299a9a956e18fd430f4ff6bb890c7a7acdbf6773f62a2e5f9accd9bae724dff0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "006d205dc32b97fdedfdd7d7614f4c228c11b64cbdfa0a95cbd96e96f2d4a24d" + "bytes": "92bbebe2362e6587195edccc0f04aa3b42661b5d74565aa831bfa8f6c07746e0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "006d205dc32b97fdedfdd7d7614f4c228c11b64cbdfa0a95cbd96e96f2d4a24d" + "bytes": "92bbebe2362e6587195edccc0f04aa3b42661b5d74565aa831bfa8f6c07746e0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4b6b81847c8d0d27d814e7d98e5fa1a3c01bccabbd177012ad09a3c80c398bb5" + "bytes": "0c8e6608568dc84213737eee594fcd708cb6ea1901b68dda4e4057c1853ebdc2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4b6b81847c8d0d27d814e7d98e5fa1a3c01bccabbd177012ad09a3c80c398bb5" + "bytes": "0c8e6608568dc84213737eee594fcd708cb6ea1901b68dda4e4057c1853ebdc2" } ] }, "durability": "persistent", "val": { - "bytes": "6a50f3e17d2c911339b43a9da685563c61611d2084b276aaee845e8cb5d052f4" + "bytes": "ed0290251e60bc767ed723c6a0b0bf4ee6799c2b5d18ee36a772cf962a30ea37" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.176.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.176.json index 30d94c7..45bed58 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.176.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.176.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b544df8a8a7407f85552849428f39d9e6b3814d0aefa131b859cc305dd800113" + "bytes": "0f2627d881407342cb9c4c46fbdc531b9501a7c9852d7a3ba958aaaf1a78fe4b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b544df8a8a7407f85552849428f39d9e6b3814d0aefa131b859cc305dd800113" + "bytes": "0f2627d881407342cb9c4c46fbdc531b9501a7c9852d7a3ba958aaaf1a78fe4b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "n17h1v341l3oct6v2ma5o6p19he" + "string": "w7j6ojdr2390hmlgw904j0fo7vw" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAT44XCUHX3WY5QZNAD3IMAK2CI4QFPHW2ZSEJCBU2WT4KYY3HGXBOIP" + "address": "GAEXIGFXM2NFDEZRK4QN3GDJFLQHYRZL4MIKSAQ25RCKMSLRF6HKUQFG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1cff40b144a87b2ebea8f242e502ff54e3bc35cc97e925811ae5ab957f3e6e79d067263776548926d26fc380ea582e9018802ac4b0f1f4ade5e9f6713d5c81f5" + "bytes": "95643def64da0461ea538622a826bc5b3e2fb3166bf94ae7f4dcdefef8aaf52b6cd162d6f1a6bac20b81f0fb10f34735a5c7858bfc6fe4f749cb0275ba8957a7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "23c8d9055b0f4d29d67a9e46a91d4f45a81f24bee6a8bf5a69e967e223cbfd58" + "bytes": "a39cade7beb10622b8676087fc5a5826e4214037e6612e256ff196a12c5418d9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "23c8d9055b0f4d29d67a9e46a91d4f45a81f24bee6a8bf5a69e967e223cbfd58" + "bytes": "a39cade7beb10622b8676087fc5a5826e4214037e6612e256ff196a12c5418d9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "cbd5bcf3afe4140278b5f228f54e90a5a9a518cf82b33b5baadfade3c0ffd2ef" + "bytes": "628147190592689b92619fc150b29c767dc278189953cbf2cec84f2e74193d20" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "cbd5bcf3afe4140278b5f228f54e90a5a9a518cf82b33b5baadfade3c0ffd2ef" + "bytes": "628147190592689b92619fc150b29c767dc278189953cbf2cec84f2e74193d20" } ] }, "durability": "persistent", "val": { - "bytes": "b544df8a8a7407f85552849428f39d9e6b3814d0aefa131b859cc305dd800113" + "bytes": "0f2627d881407342cb9c4c46fbdc531b9501a7c9852d7a3ba958aaaf1a78fe4b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.177.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.177.json index 1983e77..fc149d4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.177.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.177.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f2b7966ad891b91d59ff0d7610ec98c5d540459dfe5463a8a82889904a1db5d3" + "bytes": "89464b9b47240eb727d34954212749838c17b93326174a061e6a0de3c0bf173e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f2b7966ad891b91d59ff0d7610ec98c5d540459dfe5463a8a82889904a1db5d3" + "bytes": "89464b9b47240eb727d34954212749838c17b93326174a061e6a0de3c0bf173e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "96d302cde418236r4d92" + "string": "hb543ky9wa4qwp1l6nqhfzu90d2zon6j" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBKOK4WGIN2UOVAIYSAYSC772ZSAHZMMFXXEMXWV7LTOQZHLL7ZB4OCW" + "address": "GCNMTOFOB2AZMQLNITVKXECLOYCNHJNTV3CODEARXZFPZZZKGR7SSYHC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7c7fdb44913c377dddb03ffa0b826e688dea2c4ecbcbb8dee6f249b9d1e176030b0f211e27180efb3b46e28ea180f3e23d26997073f828b6c13d634033b01b7e" + "bytes": "76155f4f2967ea65f97d0c2486dc365524de8b7224935c9878761b0bea5454fee2136816b93281a74397f079e9d77f629626934c213c5e2c5777f666f4b01841" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e45cb0889d1c485d04919083cac80977ca5e239f525367dcbec8dd8789347bda" + "bytes": "f787e53a2b2d0e7d9f0d75020205e082e695c46c6884f73f4501aec2e115af4f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e45cb0889d1c485d04919083cac80977ca5e239f525367dcbec8dd8789347bda" + "bytes": "f787e53a2b2d0e7d9f0d75020205e082e695c46c6884f73f4501aec2e115af4f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "99fc188c2dca364ddd2ebf9b702e8e1a9ab72b7e424d8d4064deddca1cd96fbe" + "bytes": "014cdc27ddce6aff119156c8d94e26c03c2980a3d624b3f8b8ffd06f895debed" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "99fc188c2dca364ddd2ebf9b702e8e1a9ab72b7e424d8d4064deddca1cd96fbe" + "bytes": "014cdc27ddce6aff119156c8d94e26c03c2980a3d624b3f8b8ffd06f895debed" } ] }, "durability": "persistent", "val": { - "bytes": "f2b7966ad891b91d59ff0d7610ec98c5d540459dfe5463a8a82889904a1db5d3" + "bytes": "89464b9b47240eb727d34954212749838c17b93326174a061e6a0de3c0bf173e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.178.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.178.json index 22158a6..9c52d02 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.178.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.178.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e9397bf27a07ba5a8bfecba8c089653f183ce5af60f4420a89efe93815783915" + "bytes": "31df4b8a70256682fc85580d18f77b73519a6e54d1b4ebec7918cbfb59985158" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e9397bf27a07ba5a8bfecba8c089653f183ce5af60f4420a89efe93815783915" + "bytes": "31df4b8a70256682fc85580d18f77b73519a6e54d1b4ebec7918cbfb59985158" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "b0oc" + "string": "25m72zue303b22o62vv6590izj" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBZLLH6NHPGANC7PLG65UFFHNXC7CY2Z3BDLD3N7U3V3JJ7IS5FHWJZM" + "address": "GBTWJ2YUM7KSMPUZVD4UACEX34I7UUJ6KAQ3RRBBZPFL5GOGXJBX6O5N" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "602209e49a2b4644ff26f416530c52d7c68e32683dc659ec647189f9a40b2af42291e669e32f88b1692729284a8b3c55f0a0468ae19380f2fea9676508c86ce3" + "bytes": "95c3fac3f11ff835297581c3b08eeb8e39b0d1a3883c836874bc5e78cf8b27a0eaac9139e23655cd77f7345d55fdcef1729fba5c9864b2d96adfa8ca81c574b5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6aa628c0e94bf58d37b848d8b0f2780231edd7580cb5ec8ac357c82e1b3d6550" + "bytes": "44163058b3e2d3476a2394c88c4b5e9723d2ba5c6093758e5d6bde445818e35f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6aa628c0e94bf58d37b848d8b0f2780231edd7580cb5ec8ac357c82e1b3d6550" + "bytes": "44163058b3e2d3476a2394c88c4b5e9723d2ba5c6093758e5d6bde445818e35f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "684df53749e303c8829826a81cb66c01b594883f683fab559118a10a626d463c" + "bytes": "9f16966af08f088d415ded2af42dd53ef127c8ed9285b07d817d7be7c3c75c32" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "684df53749e303c8829826a81cb66c01b594883f683fab559118a10a626d463c" + "bytes": "9f16966af08f088d415ded2af42dd53ef127c8ed9285b07d817d7be7c3c75c32" } ] }, "durability": "persistent", "val": { - "bytes": "e9397bf27a07ba5a8bfecba8c089653f183ce5af60f4420a89efe93815783915" + "bytes": "31df4b8a70256682fc85580d18f77b73519a6e54d1b4ebec7918cbfb59985158" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.179.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.179.json index a19661d..86fcbfe 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.179.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.179.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "193922c4436962cec28ad560db88ce2051db482cdd0e0dd6e1c14e9205576463" + "bytes": "d5b9028372d0423987c720403e77fcb3292b938dad5741a1f99848d29a607fc2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "193922c4436962cec28ad560db88ce2051db482cdd0e0dd6e1c14e9205576463" + "bytes": "d5b9028372d0423987c720403e77fcb3292b938dad5741a1f99848d29a607fc2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "nnx53n951q3d9xsm5" + "string": "8w0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAZPDYBMRFBJEPETSKWIV7I3JLV7LKXK3AMVPZWSYIBD2BF4Y6MFIJGM" + "address": "GALIRJZ3LT4Q5K4DH4ASSQ7MQPAQTNU7JXKRBZPNLZGJG47LQYQD7NTY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "588a0162fbcce569d6dfd2ebd6b39a76908afd34dfedddbb29e52588bb60d4a1cf3580c18285f38c9dad891d37e54e50b1f11407f4545cb69e3e7fbb13239515" + "bytes": "3b6b618d50e067fa21d0160e1650ee4e50816cb7bbbc39396d8643952904536a0d41c5278ce087931fbc4b84c09b283868a83714fcc90eb1d70c8c7c406a8d52" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6d1b1012fc52fef56e3b4aa2abf514216343443f28c03fe3b0ebfb9650cd7cc8" + "bytes": "1344d96b71f63167e8b895f77c6f81220d8217f5435f049244a2efb066edbbe1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6d1b1012fc52fef56e3b4aa2abf514216343443f28c03fe3b0ebfb9650cd7cc8" + "bytes": "1344d96b71f63167e8b895f77c6f81220d8217f5435f049244a2efb066edbbe1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "81f9123591de245ec8e97b8b317a4debcc5a3bf4d4168bad781e03800d3901c5" + "bytes": "561107ec9c27e65068de78d302d9d2ab20801c7761ac8f7c6b5c1c7f2597555d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "81f9123591de245ec8e97b8b317a4debcc5a3bf4d4168bad781e03800d3901c5" + "bytes": "561107ec9c27e65068de78d302d9d2ab20801c7761ac8f7c6b5c1c7f2597555d" } ] }, "durability": "persistent", "val": { - "bytes": "193922c4436962cec28ad560db88ce2051db482cdd0e0dd6e1c14e9205576463" + "bytes": "d5b9028372d0423987c720403e77fcb3292b938dad5741a1f99848d29a607fc2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.18.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.18.json index cbce49a..877369e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.18.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.18.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3852f70eb98ee80685fc4fd253ca855524bec58a3931b8aac48e7dda7201dc65" + "bytes": "ca9c13b25f4a721d91298d613fb8aef56994824cdc8f89e241b682fc167bc569" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3852f70eb98ee80685fc4fd253ca855524bec58a3931b8aac48e7dda7201dc65" + "bytes": "ca9c13b25f4a721d91298d613fb8aef56994824cdc8f89e241b682fc167bc569" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "av0x17qvv4h1n627w89b8j" + "string": "t1dme" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDYZH5JCKVV6ECNPZVMX67Z7VMEQBPBO6NCRJBGHBIPUUXVKZ6L2YUZM" + "address": "GBG4C5JRI7N6YCRIZ2PIO2QLXCIRRHANO32GHMZBJDFHF6NZNAL5NKD6" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ec979aa1d31f3396fb89e54dac7b5f30108e7d4298e7d7eb71ef37f99f7e6ae54587ac30bda8cdbacbec93bbba313c92870788466aab2e3eb12ba25e4a884a7d" + "bytes": "7623ade9933afb0160e6bc4a83279cf529241db33bf369d9ccd7ca55e691d1a3276e8282c5daa313cbb9fbff115030805b3cca79f697421fa093fca0140573e6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3adbc50f4de6a5516675d7ff3882b3e6bca709bb8b6a9508022b043366a8e7ad" + "bytes": "551e1a34780b97bbc53c92328b848d03e3993c83e256113012626db68688aed4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3adbc50f4de6a5516675d7ff3882b3e6bca709bb8b6a9508022b043366a8e7ad" + "bytes": "551e1a34780b97bbc53c92328b848d03e3993c83e256113012626db68688aed4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0eb53cb4b65a7e0a861721995040762aaff8fad638ba8d8d3e529179bbf6d6ec" + "bytes": "64a3346ccfd0d43ec49207a14cb5598dae82bfda622e40de2f441d9b411714af" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0eb53cb4b65a7e0a861721995040762aaff8fad638ba8d8d3e529179bbf6d6ec" + "bytes": "64a3346ccfd0d43ec49207a14cb5598dae82bfda622e40de2f441d9b411714af" } ] }, "durability": "persistent", "val": { - "bytes": "3852f70eb98ee80685fc4fd253ca855524bec58a3931b8aac48e7dda7201dc65" + "bytes": "ca9c13b25f4a721d91298d613fb8aef56994824cdc8f89e241b682fc167bc569" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.180.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.180.json index ebd923a..6f2179d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.180.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.180.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6cfb52141fddc08097911654510bb35e600bb6ff11ef34142d630a3d153b752b" + "bytes": "f3a64b96b2f5a62500ba130dd93abf5628aee2ded05ea31dd3bf17f8a2f1146f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6cfb52141fddc08097911654510bb35e600bb6ff11ef34142d630a3d153b752b" + "bytes": "f3a64b96b2f5a62500ba130dd93abf5628aee2ded05ea31dd3bf17f8a2f1146f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "a4lnono509ev71hzl074a" + "string": "u8t2b" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAEG6HGSC53G323KCXTKZL7XXNFAGDS2KSCMEBVRL7HP7VZWHJ43A5MK" + "address": "GAPSHNZYNADFMO7KTWNLPLVBQQGZ5VFYQ6CAATKAYFP2EHCKZQNFQZDW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "00c258ba33d38d26b6a3e447f57a00548f463763f62a9f382d263acf835f9318c1b00b190cb9b9473ea315e88c982dbdc9f7f505cdc008b932b41f099a4c7e03" + "bytes": "b90fb28184d9511d6b79ba6f11e565a090ac2f7c5b1df03a9b05ab735f34186bc57c1025108b5133a55fa2c0594b114111e6dad6661568bb4dfdf2210ee29520" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a10876f2ccd34d808299d4df7d1eb16b6ae28d154b42792ec5b8918eac045efc" + "bytes": "6755201defe85aae8647021921436d2450bbb3726d8620c98bbb838e60d2ee6d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a10876f2ccd34d808299d4df7d1eb16b6ae28d154b42792ec5b8918eac045efc" + "bytes": "6755201defe85aae8647021921436d2450bbb3726d8620c98bbb838e60d2ee6d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4b27b26d97842ec9780cee8b91e8d3dc775c37023039c99278041553b357e51e" + "bytes": "440dcd7526cabd77a667ea1ac370032352c750fb8b20deb0069c02ba1acfc178" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4b27b26d97842ec9780cee8b91e8d3dc775c37023039c99278041553b357e51e" + "bytes": "440dcd7526cabd77a667ea1ac370032352c750fb8b20deb0069c02ba1acfc178" } ] }, "durability": "persistent", "val": { - "bytes": "6cfb52141fddc08097911654510bb35e600bb6ff11ef34142d630a3d153b752b" + "bytes": "f3a64b96b2f5a62500ba130dd93abf5628aee2ded05ea31dd3bf17f8a2f1146f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.181.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.181.json index 811346e..6b09c11 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.181.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.181.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fc95ce176603e9e1d1ffee39023b31dd856e00ad030526902604ed2a68a12c4b" + "bytes": "56b8f49b247fe7d603a0e85e1a3a19218517dc1eb447f81c9f0b704a4ca28633" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fc95ce176603e9e1d1ffee39023b31dd856e00ad030526902604ed2a68a12c4b" + "bytes": "56b8f49b247fe7d603a0e85e1a3a19218517dc1eb447f81c9f0b704a4ca28633" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "339" + "string": "eq0167207worr70tz8" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDTKQKTMIYSU6P36FBTY5I6GTB2GCSIRJ57BSW4WKPGCKB634TEWCBUC" + "address": "GBPH5PJWEE3VPCYWKGXM2OMNI4UNOILVP3YKZ7ZM24B2P27M6YDC3RSX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "739f932459284aeaf3a3fc2f14ef45b9a063a17cc1425c04d4658df0179dc85f5eea50e5fc67af2e1a26a47a257aa0dbdb1ea0d327efb254ce00859ab90e45b3" + "bytes": "482de25780b6f3abc522521af34b098106e7eacaa628c82a76ea7b7b319b9f7530a05130a452f4b37fe3f4390b7fcb42a1c19a990511d38bfc54aa04efa1df7c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4dfb079f43df7aa71b63c59650f97cdc80c282ab535afc0a94363d2b33729dfd" + "bytes": "2122f262a3996e417e2d78ef412ae077c3145d1a9ed01b36879fae0481cdf9df" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4dfb079f43df7aa71b63c59650f97cdc80c282ab535afc0a94363d2b33729dfd" + "bytes": "2122f262a3996e417e2d78ef412ae077c3145d1a9ed01b36879fae0481cdf9df" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b81e6fe2576947484ccbef9a846a21889b2dde85a9a344e5652a2110815c2480" + "bytes": "bad8652d7c4cda2c5864e0a65afcaf609b3fa20f62dd77f140d627a43ca2c514" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b81e6fe2576947484ccbef9a846a21889b2dde85a9a344e5652a2110815c2480" + "bytes": "bad8652d7c4cda2c5864e0a65afcaf609b3fa20f62dd77f140d627a43ca2c514" } ] }, "durability": "persistent", "val": { - "bytes": "fc95ce176603e9e1d1ffee39023b31dd856e00ad030526902604ed2a68a12c4b" + "bytes": "56b8f49b247fe7d603a0e85e1a3a19218517dc1eb447f81c9f0b704a4ca28633" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.182.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.182.json index 23121ba..b8be7d0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.182.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.182.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5c8337aacb9687fa3c43802155a8404ec01628ee650bdf5d17d6112c917e1da3" + "bytes": "a1ec63e7b64843c0a473d6273943a732c96e341594d5047eb241fc740aa85adb" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5c8337aacb9687fa3c43802155a8404ec01628ee650bdf5d17d6112c917e1da3" + "bytes": "a1ec63e7b64843c0a473d6273943a732c96e341594d5047eb241fc740aa85adb" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3n63iv28" + "string": "ou73j6q8x3c3x" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB4QHPZIYSTHLMRZDRID5WCN277KG2GLN5O47JZEIGMMZZU4Q4VM2JAZ" + "address": "GA3WE3NH7WOXSJFJKYG4YL2IV3Y7LMVCKLUKPNPABBOZANMFMQN6PQG5" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "4cee6d8eb33bdaad175bb909b9714dd8be9df7530d67c9a75d9d155ff8ee5496c8d577c0c237769674888c81c9304ba71cce9df16a28bf6ecb72cb7fbac7a57b" + "bytes": "f8c326ac750be4cd5460437ddc8b719cf7c23e9e3359577b3feb003e33848a0fc0eeed80bb8bc928e5cac9790523b6099fdc69c9a36d4a79cca3183283a53de2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "72f98f429ec96a3fa441a015bb5ed6c19b8e33b8cf95c2138e82c4774232387b" + "bytes": "4dc14d6716fabd1cf8553270ccf879f7aba9f89808076e8adb44c19bca116836" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "72f98f429ec96a3fa441a015bb5ed6c19b8e33b8cf95c2138e82c4774232387b" + "bytes": "4dc14d6716fabd1cf8553270ccf879f7aba9f89808076e8adb44c19bca116836" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "5e95c74cc067132091c9da2694f36a3e9da494ac45ff0e42505d78770f9dd8ca" + "bytes": "be1d97b977725f12fa9a54140d48240b3e50f4b55b72df77f23e6c4e3ee3a7c5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "5e95c74cc067132091c9da2694f36a3e9da494ac45ff0e42505d78770f9dd8ca" + "bytes": "be1d97b977725f12fa9a54140d48240b3e50f4b55b72df77f23e6c4e3ee3a7c5" } ] }, "durability": "persistent", "val": { - "bytes": "5c8337aacb9687fa3c43802155a8404ec01628ee650bdf5d17d6112c917e1da3" + "bytes": "a1ec63e7b64843c0a473d6273943a732c96e341594d5047eb241fc740aa85adb" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.183.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.183.json index af5fcb0..ab4aaab 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.183.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.183.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "321445e9538dbd7ee4a094e042df5c168a7adaf16f73c66efc423c6dacd846b9" + "bytes": "f2b1972512682d5f0e3afddbf6c6c11e5c0515ec1b4159e8413f1ecde5ccdc83" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "321445e9538dbd7ee4a094e042df5c168a7adaf16f73c66efc423c6dacd846b9" + "bytes": "f2b1972512682d5f0e3afddbf6c6c11e5c0515ec1b4159e8413f1ecde5ccdc83" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "wiy9520nbm7x051hantgidjo" + "string": "8f7tdk44152" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GARVGID7WHQIIKEJANGBAMH2VK2SMC2CV4HPNH5EWT6WOVVT3OP7QDLB" + "address": "GDBVWW6NL2NJV6VC3MLPX2GZIIM54EQW474XWL547IFNKKEO6ICWDOW5" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bfa76be31a664344e6b605f20b2d068641763b29b10c91f0e902e13928a7550cf2432017eec01b33670e63abcffbdcff2892efb56e474dbaf4a78b55d782380a" + "bytes": "58ad92d99377a14f3f4e92984b30eb477371ca54c02a444a4624d53d0186306cec6afe4b3ed97f65328e05fff04f44136e19ccdde87fa4ffbf4d19378b7f575a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "96e8a7d624ade292b09a83ce5627e2b086bb61dafd37fa31f1931afbb1576c5e" + "bytes": "5ac0d9760ab572b8b80af9cfcf90c4a70168f9c9eacb29b767a51f2d7249b8d2" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "96e8a7d624ade292b09a83ce5627e2b086bb61dafd37fa31f1931afbb1576c5e" + "bytes": "5ac0d9760ab572b8b80af9cfcf90c4a70168f9c9eacb29b767a51f2d7249b8d2" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4c9003801d9e094f2a5438b2323f48f8ca93517a6ad450baa5e5958ff63926f7" + "bytes": "e8ae8aa9bb1d77546055f99a23578501e712809ec0bbcc18cb9bfdcb0ea3e5ba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4c9003801d9e094f2a5438b2323f48f8ca93517a6ad450baa5e5958ff63926f7" + "bytes": "e8ae8aa9bb1d77546055f99a23578501e712809ec0bbcc18cb9bfdcb0ea3e5ba" } ] }, "durability": "persistent", "val": { - "bytes": "321445e9538dbd7ee4a094e042df5c168a7adaf16f73c66efc423c6dacd846b9" + "bytes": "f2b1972512682d5f0e3afddbf6c6c11e5c0515ec1b4159e8413f1ecde5ccdc83" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.184.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.184.json index 18f94c1..b95f633 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.184.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.184.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6387da3af4782c3047459edf7aceca4db6055046e1b4a0491ab7abd35f70aa5d" + "bytes": "67c055b2fc73f6591ba31a409a8e5e0ac7877d85b3028cde8236ddc18bb0e17c" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6387da3af4782c3047459edf7aceca4db6055046e1b4a0491ab7abd35f70aa5d" + "bytes": "67c055b2fc73f6591ba31a409a8e5e0ac7877d85b3028cde8236ddc18bb0e17c" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "tc5m7w5k9b7groe54vo8wzn8" + "string": "1y8b37355goj4d93698h258" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBOVF5PITHAIHJJD5WEDGJ7E6PCE6LR32PWVVU62MRBULRCLTXG2THMA" + "address": "GBNK4HUTP4YYSHAYAU2EIV2UXYINDY5CR2GC7KVTOCVFHWVYUVKZ2HIC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "074db7b6f217fe557de197fc664cf31d38f0cd3a0ca53a0ea69b75326340137f7bb2c6e684b4bbac5c867a84d54b981a6ac624ff866aa25ae54716723d852249" + "bytes": "1d5a02f58531c48ed5c3cce1711d607f72ec9793d1277ca9b43013c4ce35091adad3ecc5eacb876b30ef6f11c23efabe019cd2bcc39c4b8e8faf5285486fc5bb" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f50328f98585cb8731d471cd64deb9c6f1e0b11f7feadb632d8fe144092247d7" + "bytes": "6780c1b20c04bb2d3154d48e97c00138dc8a1cc89593eb3ff076eb740746b581" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f50328f98585cb8731d471cd64deb9c6f1e0b11f7feadb632d8fe144092247d7" + "bytes": "6780c1b20c04bb2d3154d48e97c00138dc8a1cc89593eb3ff076eb740746b581" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c4c9f340b4c2a1f6019fd5686b2aa4d42c3678ec0a63f78805381197fb7966e0" + "bytes": "629c086bff2ba7a2f50883e021e1da7bc9581da40a3f58efdc30ea6fdf21cabb" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c4c9f340b4c2a1f6019fd5686b2aa4d42c3678ec0a63f78805381197fb7966e0" + "bytes": "629c086bff2ba7a2f50883e021e1da7bc9581da40a3f58efdc30ea6fdf21cabb" } ] }, "durability": "persistent", "val": { - "bytes": "6387da3af4782c3047459edf7aceca4db6055046e1b4a0491ab7abd35f70aa5d" + "bytes": "67c055b2fc73f6591ba31a409a8e5e0ac7877d85b3028cde8236ddc18bb0e17c" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.185.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.185.json index 745f0d5..5cecf88 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.185.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.185.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ecc30550809679926d198b13f9d0667dc4cedab6d22f9bef4bc8fda1c362e4b1" + "bytes": "a20ea040509be14d79d2a11164567c5ee9e03ce032aee0e1ee0401f1f35b563c" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ecc30550809679926d198b13f9d0667dc4cedab6d22f9bef4bc8fda1c362e4b1" + "bytes": "a20ea040509be14d79d2a11164567c5ee9e03ce032aee0e1ee0401f1f35b563c" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "390i16o8d5731y42s1gaa6pe1" + "string": "570iui10" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC3FPEWFGFWN373EXQTUJOUMZGTJVGAZN4OAYZROMSSRCLO3YOH3WKHJ" + "address": "GBD622HZ4325OSIEOQ3BNUMIOIW4FVEKH2V2IBLKQVSP3IGAOOEPSADR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "700f146724faa5b429eff893c97256a7975cbd98312cc01779d4c6bf7b9f8d3d1b652b87471f423eae9c3d31895988647caee14d523157482539dbbbe9e9cb9a" + "bytes": "e20bf21f4046ed93309596de355f4168b5c35219ac9b5e300aae0d5bde4adf1d66c1cc9a1317ad085994cb04f79f8087351cc1d8be0f421afeb64a857cbd8709" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e25504239b147485292fe2b4c766e52487d83d31ccbc2db7e66bad4e76e26b44" + "bytes": "2872288cab1ca29d4a41a64392dfbbfd5ff6baa4ed18bcf321fbe0fded29a79b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e25504239b147485292fe2b4c766e52487d83d31ccbc2db7e66bad4e76e26b44" + "bytes": "2872288cab1ca29d4a41a64392dfbbfd5ff6baa4ed18bcf321fbe0fded29a79b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d434e08570177690b28604c303ad45b7ac188f9fd165429e939f8f5dc71b1094" + "bytes": "55d3732646b8abafa490b1653ae77cc0aec7da911814be3e4a9e65a3aef3b90a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d434e08570177690b28604c303ad45b7ac188f9fd165429e939f8f5dc71b1094" + "bytes": "55d3732646b8abafa490b1653ae77cc0aec7da911814be3e4a9e65a3aef3b90a" } ] }, "durability": "persistent", "val": { - "bytes": "ecc30550809679926d198b13f9d0667dc4cedab6d22f9bef4bc8fda1c362e4b1" + "bytes": "a20ea040509be14d79d2a11164567c5ee9e03ce032aee0e1ee0401f1f35b563c" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.186.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.186.json index a434f1b..a16b252 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.186.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.186.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "143b773466d470a29538b92233cde2e732c849fa6ac85e48d14bd357f88fcd9d" + "bytes": "fac428ddd4810568176204e9385fb4cb0e39d6d335fd60a20ee0041c90d5a970" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "143b773466d470a29538b92233cde2e732c849fa6ac85e48d14bd357f88fcd9d" + "bytes": "fac428ddd4810568176204e9385fb4cb0e39d6d335fd60a20ee0041c90d5a970" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "y4m2k2ch3n5664hak85" + "string": "9i0g4mzr79775t" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAK3WOLKRH2HDWQXTUXBWXX5OQUFFWFTSGPWERDO5JLUFZ4YXZ3IP53H" + "address": "GD2GZT2LQTVSHJTT263WR4NHBCWSSR6D3VIXCF24A24NVCAZYMGFO3WM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a8942e6cff4f63ac784d7e834ad32297a13b01984f31e248bc1316e209d7ac1ff6c7188d4fb5c4d328d5b9efd2168f21b97da41fa3e9d5057bb50a3e5705debc" + "bytes": "252e822b16906b04003426c2dd890cfca874a711d700b67ae614e19a45100faa5e3453ba6531269bf1c35c8cf0d48db6afb7851727e4b19096f61e39a814722c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d862354b97e9f8e893470f5292753231ec094c380c7cd35cd63868a139b00469" + "bytes": "37dcc77d7d0c67fc65bf6ebe1402edcf6e0a5bed582b20092bda2a62fcce0400" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d862354b97e9f8e893470f5292753231ec094c380c7cd35cd63868a139b00469" + "bytes": "37dcc77d7d0c67fc65bf6ebe1402edcf6e0a5bed582b20092bda2a62fcce0400" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "09caaf665b40446a80154c426ec6746bb39f859bfc667967ccfdc80034afae33" + "bytes": "509e222d5971e6d5d05882f3726ca096297e95e304984489e47a94db306d34a4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "09caaf665b40446a80154c426ec6746bb39f859bfc667967ccfdc80034afae33" + "bytes": "509e222d5971e6d5d05882f3726ca096297e95e304984489e47a94db306d34a4" } ] }, "durability": "persistent", "val": { - "bytes": "143b773466d470a29538b92233cde2e732c849fa6ac85e48d14bd357f88fcd9d" + "bytes": "fac428ddd4810568176204e9385fb4cb0e39d6d335fd60a20ee0041c90d5a970" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.187.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.187.json index 34c3357..ab60f25 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.187.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.187.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f03dc261ab950daf79d14ce2938f9d31ec4dc0ed289b8cb977c1d3af02fa3c86" + "bytes": "44cdcd8a727326d98c83631f67c391f5074c960ba6fcdec5bb9210e7a97bd3fa" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f03dc261ab950daf79d14ce2938f9d31ec4dc0ed289b8cb977c1d3af02fa3c86" + "bytes": "44cdcd8a727326d98c83631f67c391f5074c960ba6fcdec5bb9210e7a97bd3fa" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "86l5tv8bjn" + "string": "vq4oa90j" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC23L7ER7LR5XNWCAKU2ARMXDEA5T2OGNNCC54T4TIWPQOK2MDLAEQUH" + "address": "GATKWHRPAEM6BOTYSVTJFJ2GRHXAFHGTETHEF5RTNPBVX2IY7DD6QDCD" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cbad42a9078f012c64c71023afde2ecd5ccccc2f21ae77dbb8830b641e204f407fd32ca376374a988b64224be719872f5121a12106f86499eabff038105305bb" + "bytes": "cc62787d17e833c58bf3da4b53fd990f0cb44441fcca82f05c421a1f1cbf106102a0ae1a63f228cf784dd272c2a220dcb3cdf5431aa541a6484675c16124e9f1" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "07f88744eb1e8a69f31cff9848d3e91d56105698d72855139b5299ead0eb04e8" + "bytes": "77cc150d08a7adb5909051b872c1290c5b961928b16eb17afb0347936b6e4b1e" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "07f88744eb1e8a69f31cff9848d3e91d56105698d72855139b5299ead0eb04e8" + "bytes": "77cc150d08a7adb5909051b872c1290c5b961928b16eb17afb0347936b6e4b1e" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c7bd192d32d51b16a9073167d8a611d35b095296798c084185487c9dae7c8b68" + "bytes": "eedbdb7b9851d1dba8be68ab1d680dbbee063a4dc4cacf99af9f52a22fac7453" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c7bd192d32d51b16a9073167d8a611d35b095296798c084185487c9dae7c8b68" + "bytes": "eedbdb7b9851d1dba8be68ab1d680dbbee063a4dc4cacf99af9f52a22fac7453" } ] }, "durability": "persistent", "val": { - "bytes": "f03dc261ab950daf79d14ce2938f9d31ec4dc0ed289b8cb977c1d3af02fa3c86" + "bytes": "44cdcd8a727326d98c83631f67c391f5074c960ba6fcdec5bb9210e7a97bd3fa" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.188.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.188.json index 1e6f762..22d8d75 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.188.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.188.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1d6c07b348b75a5c98b1db531cf21a8c605ba526b3386939863ad4168ea55ad7" + "bytes": "f30a7487d6220d67b28a2048a45a8073dcf5b0381d36646178ba95526b39922b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1d6c07b348b75a5c98b1db531cf21a8c605ba526b3386939863ad4168ea55ad7" + "bytes": "f30a7487d6220d67b28a2048a45a8073dcf5b0381d36646178ba95526b39922b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "b8dkt2a3uzj" + "string": "k386910c52otm8k941i3mhil1lp" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCPE3P5RRHH2RIWCMROTIK63RJOZHS23STHLKFUBYVGRVS4EROALS3I3" + "address": "GCAVLU54DR4IHGZDJILIUHBFPXI3NG3VACC4MRWKDYPVONWV6NSBA727" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "4ff8f947a3be94109e202b8819727593daeb0d54cd9b995156e53bcc2e3dd5c43d8be0c778350a90f8ce0c39bd6b8ab6e9b85a22af9e7e0413dc5e86c87e4ec8" + "bytes": "0b0b28ccef3b6746f0a5423476dfe7399b1a4df4751170e2d17a5d2e7bf85faf4664aab19bfc3962b7aa7de172683f595bc7c4213b98a05ac16e139de1df74c1" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "495044b5439728e59a52f15b21aba1b8dc1f97bd94caf1fe0d6892e9defe069c" + "bytes": "949b4387280d178e2d014169104a9f47005e95ba294c1c918053b79fdd728302" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "495044b5439728e59a52f15b21aba1b8dc1f97bd94caf1fe0d6892e9defe069c" + "bytes": "949b4387280d178e2d014169104a9f47005e95ba294c1c918053b79fdd728302" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "917960fffaf6f4c998b624d59b41e154fd94fbde612da66f99cf85c2b4e11093" + "bytes": "41fef944fdb862d78d03034aafe54c53b80fa2cb2eff912f919d859b6ab2c07c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "917960fffaf6f4c998b624d59b41e154fd94fbde612da66f99cf85c2b4e11093" + "bytes": "41fef944fdb862d78d03034aafe54c53b80fa2cb2eff912f919d859b6ab2c07c" } ] }, "durability": "persistent", "val": { - "bytes": "1d6c07b348b75a5c98b1db531cf21a8c605ba526b3386939863ad4168ea55ad7" + "bytes": "f30a7487d6220d67b28a2048a45a8073dcf5b0381d36646178ba95526b39922b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.189.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.189.json index 2533cb4..3bfb73b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.189.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.189.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a90240ff852a43d0789e9be501700afec60b4b0f3b03520c2677b9d6df8f3772" + "bytes": "f3797a73c2f2fd7cb74dcb971579b7201f5ca81d24c96b41c239bc5c92ae1918" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a90240ff852a43d0789e9be501700afec60b4b0f3b03520c2677b9d6df8f3772" + "bytes": "f3797a73c2f2fd7cb74dcb971579b7201f5ca81d24c96b41c239bc5c92ae1918" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "qns540b0obwb8v6" + "string": "4t94z1thpw8pw23e81c693d2q6q476x" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAAOSJQA6LW4U64PD25JZS6SNF54F2WEOEA2SMNP5CCCMZRGNUS42BZ5" + "address": "GATK7QASOWP4JXYC37P4JNXIA3DRG4XWWIRGBXGWRF2BLTF73P4M5VI4" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "aa135a321f571e852467dd14877c1a1f874efa4a9f9d03ea9a1d149ddf93107b16d4ee5c549c085660c27fbc424e86944e195c0cfd71a50c0cd6a1002f3a1d64" + "bytes": "c8bd71a3c91f7dee1fee6eea0fe77e0c6619202baa36d2d978fcb1f4feb735b6f8e653bc943c7b1b02718c27788b5a6e864639cd35fc47a7859bf566f8fdfc48" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "51d39a7068e62b4e71320267d61988820c8491b368ac0e49b312c5ba91307f28" + "bytes": "7eb84471f169867a59749c8a86e7c64e699ab1bf826ec4f2abb4f3ee2c15aea1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "51d39a7068e62b4e71320267d61988820c8491b368ac0e49b312c5ba91307f28" + "bytes": "7eb84471f169867a59749c8a86e7c64e699ab1bf826ec4f2abb4f3ee2c15aea1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "43a9d20e607c1ec01c8bb5fb6df7af6480454ab4f414de174ec826013b78d056" + "bytes": "55b80011fd1e2a4ad159360ee663ea0dc568f6d4bdd04ec81b372f3447322de0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "43a9d20e607c1ec01c8bb5fb6df7af6480454ab4f414de174ec826013b78d056" + "bytes": "55b80011fd1e2a4ad159360ee663ea0dc568f6d4bdd04ec81b372f3447322de0" } ] }, "durability": "persistent", "val": { - "bytes": "a90240ff852a43d0789e9be501700afec60b4b0f3b03520c2677b9d6df8f3772" + "bytes": "f3797a73c2f2fd7cb74dcb971579b7201f5ca81d24c96b41c239bc5c92ae1918" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.19.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.19.json index 3b3caf7..1ebad08 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.19.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.19.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b1f03766194542d459e3386bf0026965558ee67fb44699f06725be3862a8947a" + "bytes": "f3e02a3081517bf74533ef5272e1ed480e3894fcc1dbb4ab3239814908b28317" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b1f03766194542d459e3386bf0026965558ee67fb44699f06725be3862a8947a" + "bytes": "f3e02a3081517bf74533ef5272e1ed480e3894fcc1dbb4ab3239814908b28317" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5nn6eyrat6oe9sxwijmo50149g" + "string": "asi1" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDIJI7XWSJV2DIYTJ45G7HQKI6W3WTNU5XNLO7LT4TWCLJINWWPF56SY" + "address": "GBTMEEYTLDGFANHH7MAGXZB5CRKEOVXMO3ZH6Z56MHJILM7CC3FK3EMN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "512bbc7c199b0d31bdff23e716e9ce3efe4affdc2e2f42814bbef101ce32604d97f20ddc590c7822f2d4009bf8081d7959c01ff8daba7a4922b948be156e2e57" + "bytes": "58bfe613e199b447002d009fd1c94c2ee219eda7204c1f20e8cca41a8bfd558a6564558f022a22e6b5a1e4b6b9f93c0b7862f0c24f07f5d9799595967fbd658d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f98dcb06b826d7bfb69198cc76a749614a247f16a1ca3fd5aa9c39bbd901cbb2" + "bytes": "2c9510d2bd987e479a7007d874944423a283ee32572c47a7b49d0b871fcea7a3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f98dcb06b826d7bfb69198cc76a749614a247f16a1ca3fd5aa9c39bbd901cbb2" + "bytes": "2c9510d2bd987e479a7007d874944423a283ee32572c47a7b49d0b871fcea7a3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "157da047aee8ab6a583a3200ee2caa715770556a8c12cfe479d40c30212d7a96" + "bytes": "95ee19882ad97bc78004b19eba00072e319f217a2dd93a131bf065dfa4527a58" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "157da047aee8ab6a583a3200ee2caa715770556a8c12cfe479d40c30212d7a96" + "bytes": "95ee19882ad97bc78004b19eba00072e319f217a2dd93a131bf065dfa4527a58" } ] }, "durability": "persistent", "val": { - "bytes": "b1f03766194542d459e3386bf0026965558ee67fb44699f06725be3862a8947a" + "bytes": "f3e02a3081517bf74533ef5272e1ed480e3894fcc1dbb4ab3239814908b28317" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.190.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.190.json index aec315d..3cb86c3 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.190.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.190.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "90761683d505a061cb0147e57e6b317cdbe155e05c03c1e7eefe431ef4fb9131" + "bytes": "3f4b2b3e4afbcdc40ac7a467863ca5453216c5b37830055b4048767433fff8c3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "90761683d505a061cb0147e57e6b317cdbe155e05c03c1e7eefe431ef4fb9131" + "bytes": "3f4b2b3e4afbcdc40ac7a467863ca5453216c5b37830055b4048767433fff8c3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "z81ort" + "string": "xf9o65" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAE2HNSXG27JX2ZMOSPV7TSLIKAPNAKND4OQ5QIKK73XSZKTJF7XTEL3" + "address": "GAAWWJYOZ2VVGKMDV5XQ67H5E7IA4MSDLOUGK6FCQWI5UGYXENWLK2LC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7c9806bbb8e3cf8c3617104265d354bdf73affea5c9ba1878bdf7f32b58fda3440a89b7fa75ed9e73225c5504f89b77b507c0b1e8304c2d68e8fc5b62de0f2fe" + "bytes": "4a69edf6af6e266334d3f48a65ba75bf38b9af3af95232068257406594058db29915e6c3204e7e8abcb4e4e43ae9eceddc3b46726b1463c53d8112ffaf33bbea" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "73aecb86f0f962adbc280e7a3edcda84bb3873749c20e0de123caeed6c3b0e0e" + "bytes": "a4f7feac09527c9cef3f8cc1da0bcbe87190b3d7243144e3c236aadc4b751de7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "73aecb86f0f962adbc280e7a3edcda84bb3873749c20e0de123caeed6c3b0e0e" + "bytes": "a4f7feac09527c9cef3f8cc1da0bcbe87190b3d7243144e3c236aadc4b751de7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a4e1811441d966ce97dd3f0beb6990816ca29903168e977ffb21051753639533" + "bytes": "b9bdca0a4afcd5b2d02102fa86f87e3d0606c4f5ec08498d2d04ad5e607e8850" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a4e1811441d966ce97dd3f0beb6990816ca29903168e977ffb21051753639533" + "bytes": "b9bdca0a4afcd5b2d02102fa86f87e3d0606c4f5ec08498d2d04ad5e607e8850" } ] }, "durability": "persistent", "val": { - "bytes": "90761683d505a061cb0147e57e6b317cdbe155e05c03c1e7eefe431ef4fb9131" + "bytes": "3f4b2b3e4afbcdc40ac7a467863ca5453216c5b37830055b4048767433fff8c3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.191.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.191.json index 907c957..87cdbba 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.191.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.191.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "be33b7c73f1daef338d065fe14765ace89bb9050bcc0cd5c76b358080cf70780" + "bytes": "90d510cd5e629ef4b86c4b8d1e8a52ffab7d5ac1913531031e10fd5db980edba" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "be33b7c73f1daef338d065fe14765ace89bb9050bcc0cd5c76b358080cf70780" + "bytes": "90d510cd5e629ef4b86c4b8d1e8a52ffab7d5ac1913531031e10fd5db980edba" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "yn982hp0f9q0d02w3" + "string": "ypl33zo96cjky24im" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBWSVYELXF5OAIE3VKGVJGJH2MXSL5QJJQGECHIMXMU6MGAH3Z6IEHX6" + "address": "GA7EKFE4M23OQ32ZE3GAXUZVVO3NBKOGMDTOAN7G3BBUCPTTTY52L3L3" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2694caf39d7870bb2ad827a99e7eb6f7e9b04c6e175d18b68362c87792bc209218bc2430eccef7c94b2d0708aa77561512606cb200a91a1b6874835dea83bb53" + "bytes": "600bd26079dd6517cb2610e157214127314313ec6dbe4b9e2ad610683b46dc9c7e54f3074a311a7b0794a46a3067ee35b17ade9e40c39731afd326e93992da26" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "bc676393bcc5db9c18dd3946d797ca8e84f170e6d65b2f0c35893fb2d740c03d" + "bytes": "7208fd8b2180ec0010406677befbfb8caf3c7d19385d259eb978bdeeb3e9a9bb" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "bc676393bcc5db9c18dd3946d797ca8e84f170e6d65b2f0c35893fb2d740c03d" + "bytes": "7208fd8b2180ec0010406677befbfb8caf3c7d19385d259eb978bdeeb3e9a9bb" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3ac52b3157902cda8a896df702a9a38532b0e786f33ef7931e77b2d3651fd476" + "bytes": "c975ee26dcec5be0cadff3ef2bf368c8faeb514116ee786e9ad93dc8fb6ab19f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3ac52b3157902cda8a896df702a9a38532b0e786f33ef7931e77b2d3651fd476" + "bytes": "c975ee26dcec5be0cadff3ef2bf368c8faeb514116ee786e9ad93dc8fb6ab19f" } ] }, "durability": "persistent", "val": { - "bytes": "be33b7c73f1daef338d065fe14765ace89bb9050bcc0cd5c76b358080cf70780" + "bytes": "90d510cd5e629ef4b86c4b8d1e8a52ffab7d5ac1913531031e10fd5db980edba" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.192.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.192.json index 4200d38..7e4ce1b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.192.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.192.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "93eb1aac94d16b76c40151fefbc422b0cd5da3abf9d74fe2c9ca1258c7cc709f" + "bytes": "2925b17080128ff81e33d61e4215258938aa9e2aa1dafc23faa1ff62d7fa0936" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "93eb1aac94d16b76c40151fefbc422b0cd5da3abf9d74fe2c9ca1258c7cc709f" + "bytes": "2925b17080128ff81e33d61e4215258938aa9e2aa1dafc23faa1ff62d7fa0936" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "94w1wk0yn2w7zq45nb2yd3cxjhf16s5" + "string": "611330733q9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB7BZ4LKTKRMR2RIQUBMLFTRH7I6ZIB5O5CWBX5T6CFHXR2IR3AQD77I" + "address": "GDD5YA34QV7YB6JGFXO2CP4DIHOV5COOBUHTGPPZ2O6YZXTGUCXKYYSN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0e6eed1aacc60e16aa8bc9dc5382bbe6e4802ac3c4af35275610d3f4301ff378833d606e3e4e6d40698cb16a76c1c84543589bd692774bdfec81701f1e4b8a1f" + "bytes": "6a7a3ea97c0e77a75c9e2639ce9b00844ab7ec04e473e9d21afddca5ce71037911bfb861a581226c9c29965935901ca2496d4442539266111211366759959b15" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "fc395aaaa9d8c1f618ca921ee4e31c0f082ddf7c0bd981afe8e5e1b97d67d0f4" + "bytes": "00f8c8bc0af971bd6dd2407eb1e200a03822d4ef345715df24a64ada644209a5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "fc395aaaa9d8c1f618ca921ee4e31c0f082ddf7c0bd981afe8e5e1b97d67d0f4" + "bytes": "00f8c8bc0af971bd6dd2407eb1e200a03822d4ef345715df24a64ada644209a5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "054ab9ea38c353fb6cc862861934c2ea2bd1b8a9949074d5b3cfc8d3005a994b" + "bytes": "e5a19d5c5a50252b76090d21ed1692067c189bb5f1e017fb88c648d80ce9f22a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "054ab9ea38c353fb6cc862861934c2ea2bd1b8a9949074d5b3cfc8d3005a994b" + "bytes": "e5a19d5c5a50252b76090d21ed1692067c189bb5f1e017fb88c648d80ce9f22a" } ] }, "durability": "persistent", "val": { - "bytes": "93eb1aac94d16b76c40151fefbc422b0cd5da3abf9d74fe2c9ca1258c7cc709f" + "bytes": "2925b17080128ff81e33d61e4215258938aa9e2aa1dafc23faa1ff62d7fa0936" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.193.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.193.json index b438d50..75d7d25 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.193.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.193.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6934dac151eb0a7587895d7c8c3772c710e05ef96f20eda2523db7a3f9ded5b8" + "bytes": "a0ebad71ecb5d6c23b36e33b8629dcdb54ea3fd318546245ebcda7fe1b5d25cb" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6934dac151eb0a7587895d7c8c3772c710e05ef96f20eda2523db7a3f9ded5b8" + "bytes": "a0ebad71ecb5d6c23b36e33b8629dcdb54ea3fd318546245ebcda7fe1b5d25cb" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "z3wpu5422r8r6h9i330oy8b953n2" + "string": "391ml57awt1611uz0l" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB4G273PTNW45WK6BXZMZUC7YZR77Z2K6UQZO7U56YNZ5EFB3YPA7AHN" + "address": "GA7WXLXQCZAEYOQQ7YLF574CKLZDWTI4Q6TR5R3C42GGAFCM7LYRV6NQ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8c64bb4192c78495c2067ede80d62b0987403c54f213fb3cd92f31e329a21f1d919ce72a10d49e88b965fffd66a44ad491a6f3dda5bbe9b5fabb02f1a20e56b3" + "bytes": "64735235c4c736724db1733459b6cb3535d5803eb888ff8995ca3c8c15132ef7893b5e7375cf5046bb199d25e7560dc70b1975847a2bb6c4df933847ccf70f02" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6230217ac2b41ec2dde64dce02e7cc3ccbf7a6c0972e21daf625f3f969759a14" + "bytes": "ca4b722b6068a5a484d89732c61930f8e17b00ad2a4d469d7ad1905b2831d284" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6230217ac2b41ec2dde64dce02e7cc3ccbf7a6c0972e21daf625f3f969759a14" + "bytes": "ca4b722b6068a5a484d89732c61930f8e17b00ad2a4d469d7ad1905b2831d284" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b6cf8be64d352fdba197e8f57bc20696359dfe7be6bc6431ce9477b55bf2de0a" + "bytes": "19ed63cdcf3900858c969e78760c30f389678529ab19cc055b1ae9dec76952ba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b6cf8be64d352fdba197e8f57bc20696359dfe7be6bc6431ce9477b55bf2de0a" + "bytes": "19ed63cdcf3900858c969e78760c30f389678529ab19cc055b1ae9dec76952ba" } ] }, "durability": "persistent", "val": { - "bytes": "6934dac151eb0a7587895d7c8c3772c710e05ef96f20eda2523db7a3f9ded5b8" + "bytes": "a0ebad71ecb5d6c23b36e33b8629dcdb54ea3fd318546245ebcda7fe1b5d25cb" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.194.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.194.json index cb24493..bcd3a23 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.194.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.194.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bc0d77966dc64cb8649a3c0ef9d97a2b9ed54246b9f63f165235c966ce004f6c" + "bytes": "867229997d238b4bd3a9a91a1dc654f5052404fd7c28ecf1440fcd164f230278" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bc0d77966dc64cb8649a3c0ef9d97a2b9ed54246b9f63f165235c966ce004f6c" + "bytes": "867229997d238b4bd3a9a91a1dc654f5052404fd7c28ecf1440fcd164f230278" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "00j" + "string": "081pu50" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB36XIC7TW2ROQEIUTRY4RFV6CAAV4CTVSVJHI34TYXGTN4AV3OOKWY5" + "address": "GBRZDWEHGOW57X6TJMXTHOAKEATSCMRQOWZLHCP2JVXEDBGMETSRYI45" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6e3b99749741304228c3bdfbba3aad4273baaf72182c85e9f1b1052dccbb8fdf5085f1db1187aa3e818fd758bf8d079418623028709c3f44e77d95771cb1e91f" + "bytes": "f2a908dcad6bd4196a4490cfbdac77a51e4a264e0cb89fe2bc33f84992426ba038efb1a430d5fd8f3c103c4654e23ede93a3754eadf91005b1c4d2604ef6ba3d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5b43c9d7903278eb0635c50efb6c1395e32041dc5d3645bf1b5c88c306420f94" + "bytes": "a2b9cebffbc6f486c59a3a52185f39b6aa602ae22bb47f1f3afb22d8b9e83a00" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5b43c9d7903278eb0635c50efb6c1395e32041dc5d3645bf1b5c88c306420f94" + "bytes": "a2b9cebffbc6f486c59a3a52185f39b6aa602ae22bb47f1f3afb22d8b9e83a00" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7e93b735996dd9a19d58e60dbd2b60a74de5c69dcd52496fc59792d0cb7bf464" + "bytes": "4f631d9cff0cb047b4034a5217b060cb0197bf1d5a6f6c2dfd9faeffe691dbd0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7e93b735996dd9a19d58e60dbd2b60a74de5c69dcd52496fc59792d0cb7bf464" + "bytes": "4f631d9cff0cb047b4034a5217b060cb0197bf1d5a6f6c2dfd9faeffe691dbd0" } ] }, "durability": "persistent", "val": { - "bytes": "bc0d77966dc64cb8649a3c0ef9d97a2b9ed54246b9f63f165235c966ce004f6c" + "bytes": "867229997d238b4bd3a9a91a1dc654f5052404fd7c28ecf1440fcd164f230278" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.195.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.195.json index 1dcb54b..2b34eb7 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.195.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.195.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6420bf8aca60e0611079046e30e07db7f0e3b3f6f01ae3f3f9a40236708a73d4" + "bytes": "509c225b2ac1d06f767ea088c5fb20a173abe817b273d19a8193f38cfd75b160" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6420bf8aca60e0611079046e30e07db7f0e3b3f6f01ae3f3f9a40236708a73d4" + "bytes": "509c225b2ac1d06f767ea088c5fb20a173abe817b273d19a8193f38cfd75b160" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "02b2xmnm66ns729rl3o5m2ih9t4l" + "string": "crh962s21j7jo2c6a44" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD7BIVKDM3DYYFK3GHAP6LX3OHCVMUQ7JWXXGDKIYDYO6LQR25HFSEPU" + "address": "GCFVWDAM4Q3TVCF2OWREK3JXM6ITPO34N5CY43YFZWBADVMEWGIHFD5C" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2a9ef27d7a8545b9898cb759bfc15ba64e3044b5a80a7d38df19dccf7ff7c64d19820ac2477ba1cfbd2cc6c4530e7ad3cf03fb3f05b60018d2013b067651fa87" + "bytes": "a949de1e408afb5c8968f511cc1152a8ff3ccc1e193473c4f4420bb723be41547b8fad2e1f208ba72ce487f0999863bf3d32b502ad9ba58fb50598ea0df11ac5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "52519b8cd6c26bd8d1500eebf4a63a6b040d6ba4e78bc8d42ac252b32965479a" + "bytes": "95c41d64a375e5520343092c08db33ff9076654dfc73f0c7802eb82041f23b9a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "52519b8cd6c26bd8d1500eebf4a63a6b040d6ba4e78bc8d42ac252b32965479a" + "bytes": "95c41d64a375e5520343092c08db33ff9076654dfc73f0c7802eb82041f23b9a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "41043f64113a509fa9967dd953d20e427f78379ae474771f1c8134e0208f5260" + "bytes": "44d4ae7e0e76df06b59e8f441e21f0f49e8f0c0ffeb7048833fd72316dab12af" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "41043f64113a509fa9967dd953d20e427f78379ae474771f1c8134e0208f5260" + "bytes": "44d4ae7e0e76df06b59e8f441e21f0f49e8f0c0ffeb7048833fd72316dab12af" } ] }, "durability": "persistent", "val": { - "bytes": "6420bf8aca60e0611079046e30e07db7f0e3b3f6f01ae3f3f9a40236708a73d4" + "bytes": "509c225b2ac1d06f767ea088c5fb20a173abe817b273d19a8193f38cfd75b160" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.196.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.196.json index 271c92f..b0879a3 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.196.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.196.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fbda7e1785fcdf26b326c902926e3792f41d75b5a75a27f16b14112377dc373a" + "bytes": "98ba490c241b00ed57bb43946f758ec0e131d3edf44da034ba37db694e1f27d5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fbda7e1785fcdf26b326c902926e3792f41d75b5a75a27f16b14112377dc373a" + "bytes": "98ba490c241b00ed57bb43946f758ec0e131d3edf44da034ba37db694e1f27d5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "yh8q83r5yoe2566klg6dzuhhs6e1i6" + "string": "r10t8ci6ahwd7mf8v9xsdm6bz5u5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDRGCKAVK5HFTCUUABZ3PKNFJCDXZPQ6QFFLUWVM2C626WKZ5M53LC53" + "address": "GCM2PET5ADY64ICICAKFUTN5FGP2DEVP62JFKENPXBQDJLLKYHUQRNWV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2747f30cc1f21c4c2512345f1b0d7b330370b48de58ba85270abc0d22620c59a9f23d9d91ff40a45a8009ae61e3768397d2ebffdf964cce1961cd9e26002076a" + "bytes": "8576578a04edb33f8dcfb594eb552a0fc6399f22c565c30ef5c4b2db972796f203a0f52452aaaaf6341712715c048d5bc77da31123ea6f8aad09fcf04c1c15f2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a6d056dc73d43cf448132e9e75a3f58f09327ded941efd95a8e7563995370dd4" + "bytes": "5ce7d5fc5e20a66e567254bfa2db1c511e93c0742d9eb0df90cb176e3909075d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a6d056dc73d43cf448132e9e75a3f58f09327ded941efd95a8e7563995370dd4" + "bytes": "5ce7d5fc5e20a66e567254bfa2db1c511e93c0742d9eb0df90cb176e3909075d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7c33ca6d6cc0f518e19c8b04189c4d80bf3df17876250611228c63a5deaf0502" + "bytes": "7e1cba83e8ce32b6cdc09ee097dcec53bb8dfb9c6fc034a42304d8f82f1f8f83" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7c33ca6d6cc0f518e19c8b04189c4d80bf3df17876250611228c63a5deaf0502" + "bytes": "7e1cba83e8ce32b6cdc09ee097dcec53bb8dfb9c6fc034a42304d8f82f1f8f83" } ] }, "durability": "persistent", "val": { - "bytes": "fbda7e1785fcdf26b326c902926e3792f41d75b5a75a27f16b14112377dc373a" + "bytes": "98ba490c241b00ed57bb43946f758ec0e131d3edf44da034ba37db694e1f27d5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.197.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.197.json index b77bf52..d2a39c0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.197.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.197.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ba64e4f290ad34d1b37711e1fd11502c022cc9e4d6ac34c63e53e8cd1e02d251" + "bytes": "edf0f8144e3b5a203da9b6e57808f65e37d43cc86a7b53e0eb36d067ba0fff02" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ba64e4f290ad34d1b37711e1fd11502c022cc9e4d6ac34c63e53e8cd1e02d251" + "bytes": "edf0f8144e3b5a203da9b6e57808f65e37d43cc86a7b53e0eb36d067ba0fff02" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "93j4ou" + "string": "7bfpcqe8agp5ivuf40l199847" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBQ573THZLJ2F4VG5KPFXU2A53UHEAAOOQFIRCS3QQ2RQZWQC3LGEBBS" + "address": "GAPMSFVYCU52SZ7KQGGSG7NR4E3GQJQAAERMEDSXXGTHFSS2HU6ZMHRR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c8bb7b7e36f71d02b895039940c5bae0439de70d278e4f20e36eb0a1483bea3cedc150b412fb4837dd702fe0ad4baae44c1cca1ba217f13045f53c7e9c40a035" + "bytes": "51732b5d575a3fe7746b4fd5f575d5f5f5d8a17eb81307a7ff392b4e3fb7e22674a785ea6ee0424191700d4a5c0499d52ab8164d1ad6a26aee9f2f0dda0a76a4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e65ffdfc0d6a01a7b651ef870bcb748afc428500cce0e6daae07590794924104" + "bytes": "67ad5202d56dbf0e6372573124d715d61dd888ac78e6b5d17e35a53275462fac" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e65ffdfc0d6a01a7b651ef870bcb748afc428500cce0e6daae07590794924104" + "bytes": "67ad5202d56dbf0e6372573124d715d61dd888ac78e6b5d17e35a53275462fac" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "88abf17aefffcf89fbfd1866c031a2b5198206fad109e1c4693dc9fc31002ff4" + "bytes": "92d28e636111a0cf6b56a091bfff1cc8b746c47b0b039952f5ac441988be6983" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "88abf17aefffcf89fbfd1866c031a2b5198206fad109e1c4693dc9fc31002ff4" + "bytes": "92d28e636111a0cf6b56a091bfff1cc8b746c47b0b039952f5ac441988be6983" } ] }, "durability": "persistent", "val": { - "bytes": "ba64e4f290ad34d1b37711e1fd11502c022cc9e4d6ac34c63e53e8cd1e02d251" + "bytes": "edf0f8144e3b5a203da9b6e57808f65e37d43cc86a7b53e0eb36d067ba0fff02" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.198.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.198.json index d80966b..eb20bc1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.198.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.198.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a245bf71c4ef589ffd719a65771510f9c26a9f4ceaff724800bfbffd7344e9c7" + "bytes": "7ac6a5e2ba696247190c048e5602fdd46d2312a79b0008a15169a56b2ae34d69" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a245bf71c4ef589ffd719a65771510f9c26a9f4ceaff724800bfbffd7344e9c7" + "bytes": "7ac6a5e2ba696247190c048e5602fdd46d2312a79b0008a15169a56b2ae34d69" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7mtm9kcm6s556533y96syfrvaar" + "string": "h05aw92" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBFBVKM2NUJL2QWGUGJUS5WP6FDMTAW57Q6DEOKERA2Q7WWO5TAZTCRN" + "address": "GCABJBQLVBQTIMLDF56WTWC7WAI2E6ZAZAK4MJZM7HLZGKP7SFCX2JXQ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "db59c3962ec6388b027c4145a40e4a5c2bff1d8b22efd3ebfcc85e717df1606ff9adf435435dff1de4822012dd6e9428d17d6fa8e9e3e137398ea2a5cb69f9da" + "bytes": "fabdb60603d15b0a87143b45d8a7499c5c611d7a79bbce64202812fd53c02f2af48bf770f77f93ef0090768b9c54ef82997e7e6dcb85a43fb283ad56694de1d7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "cabe775710b8f3cff4453813c3167d337a6006b3897776afd2ffa8fa134a526d" + "bytes": "ba0f2b60ba4018d5b0d04703e038f534036c973f78cb7fd5746709181095da1f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "cabe775710b8f3cff4453813c3167d337a6006b3897776afd2ffa8fa134a526d" + "bytes": "ba0f2b60ba4018d5b0d04703e038f534036c973f78cb7fd5746709181095da1f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "043742c842a58cd1ce6500eff36524731af5683c39f3931f7c6d61bffb3c48fa" + "bytes": "8b3cb6da9653af8ad0db5eb52c571c11e9dde8e7579bd57a72abd794c0862ee4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "043742c842a58cd1ce6500eff36524731af5683c39f3931f7c6d61bffb3c48fa" + "bytes": "8b3cb6da9653af8ad0db5eb52c571c11e9dde8e7579bd57a72abd794c0862ee4" } ] }, "durability": "persistent", "val": { - "bytes": "a245bf71c4ef589ffd719a65771510f9c26a9f4ceaff724800bfbffd7344e9c7" + "bytes": "7ac6a5e2ba696247190c048e5602fdd46d2312a79b0008a15169a56b2ae34d69" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.199.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.199.json index 0e8917b..caf7963 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.199.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.199.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3542f78aa41e6c13216c4dd931f61c51ceb58e0441d157203e922a3df48e7fc7" + "bytes": "c7cd1c8ca7f6bda39e285152cfb2c2e143f0546b55598cb1684f5d43dda82ea3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3542f78aa41e6c13216c4dd931f61c51ceb58e0441d157203e922a3df48e7fc7" + "bytes": "c7cd1c8ca7f6bda39e285152cfb2c2e143f0546b55598cb1684f5d43dda82ea3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "o0787whuk222o2q2y2" + "string": "x9kgsp93kx2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB6XHAD3A3FB7TC5SHPWMWIXUEP2HORIJUQYTB5IGQR3RRBXHLZBELPW" + "address": "GBAI5IFFVY2FX73ZYC6ALIKNJWYTYXK4C7X3MTPQM3MQN3764UREDHDM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "df91f5a0351f629d936534e75e00f70971bf34f674774da6c5f6bad448187bf284a02e8b4c8ce3dc5949d0def7665be32efaec0e35b9739dc4d9aca63db44118" + "bytes": "cc4c343ebe539c7c528d5340965777dd803bc1131b29ab80b4405136b879dc96dcf52d08e1f6cce6da573d48fb479292fed2ef071f295c321dd57c8c5ad87a82" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "70f84e7c7a85dedd8f3dd904ed3186374a00c9de116965dd1e1c6c5c50fb75ec" + "bytes": "f734f1b9b43e9111cb999cdcd4ad5c1aafb31445f4b366a8606e2377cf15dfa4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "70f84e7c7a85dedd8f3dd904ed3186374a00c9de116965dd1e1c6c5c50fb75ec" + "bytes": "f734f1b9b43e9111cb999cdcd4ad5c1aafb31445f4b366a8606e2377cf15dfa4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "340e1d4d672c2877cf03865f42921b7d66529308a3e99e9086ec4522844dd886" + "bytes": "8640241658d7cce3cd5d7202a004a2be08096ade80aa56a7276c5999a61f4595" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "340e1d4d672c2877cf03865f42921b7d66529308a3e99e9086ec4522844dd886" + "bytes": "8640241658d7cce3cd5d7202a004a2be08096ade80aa56a7276c5999a61f4595" } ] }, "durability": "persistent", "val": { - "bytes": "3542f78aa41e6c13216c4dd931f61c51ceb58e0441d157203e922a3df48e7fc7" + "bytes": "c7cd1c8ca7f6bda39e285152cfb2c2e143f0546b55598cb1684f5d43dda82ea3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.2.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.2.json index 6875cbf..dea0835 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.2.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.2.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1e1386b382d44d53ef8e204e05ee0d0a791768e2ae5de99f324ce73da3a80ab9" + "bytes": "07f0ca2e700b7ca01c6eed47b7dc244ea9c41e307c0d413460937a864df5b82c" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1e1386b382d44d53ef8e204e05ee0d0a791768e2ae5de99f324ce73da3a80ab9" + "bytes": "07f0ca2e700b7ca01c6eed47b7dc244ea9c41e307c0d413460937a864df5b82c" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1qb" + "string": "g3d8a92cjywgng7t3aftysw8l41z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBWLS6GTODUBG2J5RTC5GJK7NZ5H53JKAQIUPDYVUCU3652PWJNGH26X" + "address": "GDUEXZ7VHRQNIK7IXB72TKKOIP5I7EWGGQNO3XV4X2V74GC5UER46QRB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5eaf8d1bd2bf8ef394515928df26c518599ef4483e242ff8cee840c3ed7a9ada70f97b9e1a905feb5bfd7d58d13d6bcb43ee659372ce48409d2d1bda296f32f1" + "bytes": "ef5ad6733b48c77fe4e15fdc0e623ad235fe044baa79daba4030a8793923d850205a6a8295534d9baa39dff39c86e2b4a6f3afbceaf37edfd08854958ee632cd" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "06d074984c4d88067a1238bd9102d2f9d80d617f2b1b2524acf7dad82c653635" + "bytes": "2f0415c3631e40dfa2326cdb2ebf06dc8ed7127468976ebcb3681386c997e819" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "06d074984c4d88067a1238bd9102d2f9d80d617f2b1b2524acf7dad82c653635" + "bytes": "2f0415c3631e40dfa2326cdb2ebf06dc8ed7127468976ebcb3681386c997e819" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c8036dd6264c4dd0a433140b0bdf0e1eb1de56d2c1a19774e1af934798abb229" + "bytes": "69e91101fd74703e5fd2dbe939677eb89417ef10a2958343251056cd594ea6db" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c8036dd6264c4dd0a433140b0bdf0e1eb1de56d2c1a19774e1af934798abb229" + "bytes": "69e91101fd74703e5fd2dbe939677eb89417ef10a2958343251056cd594ea6db" } ] }, "durability": "persistent", "val": { - "bytes": "1e1386b382d44d53ef8e204e05ee0d0a791768e2ae5de99f324ce73da3a80ab9" + "bytes": "07f0ca2e700b7ca01c6eed47b7dc244ea9c41e307c0d413460937a864df5b82c" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.20.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.20.json index 63a12b0..bccf349 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.20.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.20.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f4ceaa93a51f264e7b877d8214a3c474924af3d2e26147df2bb533c840f46fed" + "bytes": "e512a9cb3211cb474b884af3381761d5ab4085fbd63cb32a6155c678ed406e4e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f4ceaa93a51f264e7b877d8214a3c474924af3d2e26147df2bb533c840f46fed" + "bytes": "e512a9cb3211cb474b884af3381761d5ab4085fbd63cb32a6155c678ed406e4e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "82z1y5v85xo97u6cein48x8" + "string": "s3ud" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCSR7ZKRQ5VVWGR6CTDBRCPMJYRM4EFP3XLYV6BJMHDMDFQMBUVDLWY5" + "address": "GB7PRSOMJQ26TUHKZEIXJBVOS3EMH45IV4DHILPZZWILMVT6NBHZU7N2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d6e02eabaae1201ec39e04e5c9efbaf65195b11727d998fd66bb5b4348f2085e0d53e126791f010c6ed0fc116279d5e65883cf66795d751f0978d1ae45cfaeed" + "bytes": "f1fb407ff2407b4f66feb87d037d589d0fa43d59d702333130b989991dd69eb8061133211e1e540f4e483d39c377697199441ac326849d4fecde2ad477e56e22" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ac731ca6f299e4952c7eb301ff3cef39e5c8b929e5b6e8b8b667a7925083419b" + "bytes": "8786b01b533067e587419ec8b0493edfb2aac6413ab82386385190b285bc5f76" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ac731ca6f299e4952c7eb301ff3cef39e5c8b929e5b6e8b8b667a7925083419b" + "bytes": "8786b01b533067e587419ec8b0493edfb2aac6413ab82386385190b285bc5f76" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "39b8e2ed1f8bfbdbc069e3b26e807d782626509955e449e7472ec1a5c60df9ae" + "bytes": "6ebf5f9cfa353f10418d3dfee4f47b1408679dd593e397986ceec302045dd913" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "39b8e2ed1f8bfbdbc069e3b26e807d782626509955e449e7472ec1a5c60df9ae" + "bytes": "6ebf5f9cfa353f10418d3dfee4f47b1408679dd593e397986ceec302045dd913" } ] }, "durability": "persistent", "val": { - "bytes": "f4ceaa93a51f264e7b877d8214a3c474924af3d2e26147df2bb533c840f46fed" + "bytes": "e512a9cb3211cb474b884af3381761d5ab4085fbd63cb32a6155c678ed406e4e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.200.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.200.json index 0d3bd1c..77e5005 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.200.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.200.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f163ad7a1317ef7e2909c203cb4c7160eed087e9238cf1fc4ad773a4efae1dcf" + "bytes": "949e3e6e0ffcc1c8d76cdf94a5dd159ed6b2f1957de2cf556acaa375c144ba8a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f163ad7a1317ef7e2909c203cb4c7160eed087e9238cf1fc4ad773a4efae1dcf" + "bytes": "949e3e6e0ffcc1c8d76cdf94a5dd159ed6b2f1957de2cf556acaa375c144ba8a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "qiyd" + "string": "0f42d7okw6895qq9o3o6mnv1vp214" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBGRJUAD355NJFNSZDVNGWAPRCC3DPQ7MKJAJSVYCGO7XUO4P5IHM3Q6" + "address": "GCXBQEAUECWMOAMC34IPSI7ZQOCRWBRSR5KETTIKL47HP6VEXLPDPWCR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "54676fbe32b6e0a17d74416940e6a12556481ff69c300a379037be196db6903e9b92ce2cf56d7a73547e4ffc72c63efd7880d96ced15f425a7d268b18e24c092" + "bytes": "ebc7a8ffee80b78449651ecdc33849d4170ff3a22589cf90d8172a1e459d60f0514e110f3ceefc60be29b85403f694732d5ba3e020a86d9ef6051ed52542b3e8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "15f7f616356a7c0b530c261ed248300010e10a429e7d60f10484c8d25bd101e5" + "bytes": "2798c6219a4735014faa12cba90f46e32a3f4bc8284b39f64c9b8349bbf9344c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "15f7f616356a7c0b530c261ed248300010e10a429e7d60f10484c8d25bd101e5" + "bytes": "2798c6219a4735014faa12cba90f46e32a3f4bc8284b39f64c9b8349bbf9344c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2327554d26a3486382aaa486119cbc1d93ba01ede7f1dca69c343c8456b3cf80" + "bytes": "af18176beafd9251c0c6ab27235429929dea1f964409e542ed5d2e4fc1bf694b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2327554d26a3486382aaa486119cbc1d93ba01ede7f1dca69c343c8456b3cf80" + "bytes": "af18176beafd9251c0c6ab27235429929dea1f964409e542ed5d2e4fc1bf694b" } ] }, "durability": "persistent", "val": { - "bytes": "f163ad7a1317ef7e2909c203cb4c7160eed087e9238cf1fc4ad773a4efae1dcf" + "bytes": "949e3e6e0ffcc1c8d76cdf94a5dd159ed6b2f1957de2cf556acaa375c144ba8a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.201.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.201.json index 6267264..340ad4d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.201.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.201.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b5af6a2ae01d34a82960866920cee8894671e6e5b44893daf96b964d601ec7f2" + "bytes": "d9ce16615ffa72c3032b2174acd0fcdd52dcecd7c376a1db64fc6001ab808c42" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b5af6a2ae01d34a82960866920cee8894671e6e5b44893daf96b964d601ec7f2" + "bytes": "d9ce16615ffa72c3032b2174acd0fcdd52dcecd7c376a1db64fc6001ab808c42" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4p346rmql8248w43r043mwrom65sr" + "string": "p8k2d00xjsty8k01ad5358z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAXKYGPVJTL7H6DI6A6RGLCS54PIJ7QBGLIVFLLBS3S4CSBO457APQ4O" + "address": "GAI2CL2O24RO4CSR36F7HD2GFL4ACMLBCVOT2UGZAS4WQUVRFLTIF6SX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cc8c96907da52464a31e3061e62605b6028d5bffa003ee1a701699e2dc282a0c3d04b7b92c9df19d1666be5c2b5a86182c176153b5058e3a66bd7737ea855a7b" + "bytes": "82f1a1b477ad25322b28cd64bae9aa6f32f694f4672f51fe414d1c683efa931eb84b064e117b26c9f841625b5ef9854215d53ca3760519111c9123005dded655" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2ce4992a75d4ff6637c406ca6141daeb7f6a57f55f1faab5b34958745b07b295" + "bytes": "5b915067539b0a062ac2c6b9504068315c844c1cf97c887ecc4ea1958073b299" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2ce4992a75d4ff6637c406ca6141daeb7f6a57f55f1faab5b34958745b07b295" + "bytes": "5b915067539b0a062ac2c6b9504068315c844c1cf97c887ecc4ea1958073b299" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0eeafac7c65271e6b63d128824a41ede7c381b28acc0330041f8002b4322725d" + "bytes": "021a1e43e584b376240b8a00db8a0cd1f10fbfbd2aa5c18adfd8a00808fed29a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0eeafac7c65271e6b63d128824a41ede7c381b28acc0330041f8002b4322725d" + "bytes": "021a1e43e584b376240b8a00db8a0cd1f10fbfbd2aa5c18adfd8a00808fed29a" } ] }, "durability": "persistent", "val": { - "bytes": "b5af6a2ae01d34a82960866920cee8894671e6e5b44893daf96b964d601ec7f2" + "bytes": "d9ce16615ffa72c3032b2174acd0fcdd52dcecd7c376a1db64fc6001ab808c42" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.202.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.202.json index d44249f..64b2e3b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.202.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.202.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5e3b4803ba0adfa537a23d9accbbecb0562723396506b27b339d0101b50cd7b4" + "bytes": "7523eb210c24a5a5325a4938612e427467652a4720a3f74f59c1bbe1fce54008" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5e3b4803ba0adfa537a23d9accbbecb0562723396506b27b339d0101b50cd7b4" + "bytes": "7523eb210c24a5a5325a4938612e427467652a4720a3f74f59c1bbe1fce54008" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7bz4o9rvxl" + "string": "y010h49a038vbq0p0qpt3gzr12q3kqr" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB2FTWXIEFRZXVBO5YZG5NDIE3HYFB2GTMZ4BC4YNMNDCBA5UYWP2LWE" + "address": "GBGXRNO7A4KYFJCUIT6GOJ6PV4NS2AYWVUESVFCCEY2CLARI6OR7L5WX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d12407c2d63b1379ae3b0ba16228d99dac354a8ad84922cb11440af2bea0f976ba12991ebee941642fc518910915c32e1af356019dc033cfcefc3ac6a76ec171" + "bytes": "3065b7800d4fa1b895cbc3618ea484f0dc53847c6856e8e2b185e0aa58fbae439e47df2e3d037ed544f992b60e71d2b7e5f12ae4249b343a383f6ffa4649a7de" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c491c2a485a43060df882bc47be7d266e8bd047001c356c61e22c1fa950a4a6b" + "bytes": "c6d22d549ddec94c3fdb5bf4da95098f289ab2d2f60b23739b540c436f30ebbb" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c491c2a485a43060df882bc47be7d266e8bd047001c356c61e22c1fa950a4a6b" + "bytes": "c6d22d549ddec94c3fdb5bf4da95098f289ab2d2f60b23739b540c436f30ebbb" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2c46a53715fff4fdbfb83cdc37540148f31189a366ce8ac4a02bb40cd0148627" + "bytes": "e2e2e3dbe4b2b22e9ee001607c803c1bd199043272cc35f87a8a3fd2f38fd5ac" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2c46a53715fff4fdbfb83cdc37540148f31189a366ce8ac4a02bb40cd0148627" + "bytes": "e2e2e3dbe4b2b22e9ee001607c803c1bd199043272cc35f87a8a3fd2f38fd5ac" } ] }, "durability": "persistent", "val": { - "bytes": "5e3b4803ba0adfa537a23d9accbbecb0562723396506b27b339d0101b50cd7b4" + "bytes": "7523eb210c24a5a5325a4938612e427467652a4720a3f74f59c1bbe1fce54008" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.203.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.203.json index 910c435..f83fbff 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.203.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.203.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "33b3a98d3d488d9dc01127a7ebae77dec381500652ac3a86d71ed508d3c7b153" + "bytes": "b49548c2b36ec0f07b79d51a007112d39b7f24a22f73582b20d05d6b436beadf" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "33b3a98d3d488d9dc01127a7ebae77dec381500652ac3a86d71ed508d3c7b153" + "bytes": "b49548c2b36ec0f07b79d51a007112d39b7f24a22f73582b20d05d6b436beadf" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "181c708763sb" + "string": "ak7t7sh909" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDD6ZNH6G3FJMI45MZF25ST4AL7HPFKYFRDRPVDZVVGI5LJE5ZA5TCPR" + "address": "GAQPZS22REKN7AI3MFG3MZI6T6RFW5NJZXEM7CBTBR63M7JOAYN3EQWS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0ca8a310a27df33c87ec6c846e7ed6c32b6cf220a86bb614f17623fc3d7842b9a6f4ba03f44b7de60479ab389ba1879f43687c93ea71cf38868910db02e86768" + "bytes": "ec849b06b98634f6acffa637d7cd99cc7fb95d7710bd21c9abcde3523bf8e649b3ec4500255363445eff0bd9282236e80e533f65453ad0051472cfdaf9bb4b0d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6035fb80c45809d460eeebaece5edf7d52ead3c18209530e227dce9674316d1a" + "bytes": "88a684515b7961b58d14b199942b2050642f685807d7d63d83bd27ff98f28439" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6035fb80c45809d460eeebaece5edf7d52ead3c18209530e227dce9674316d1a" + "bytes": "88a684515b7961b58d14b199942b2050642f685807d7d63d83bd27ff98f28439" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "fb2ee8fc46ac00192586d9dc0b430a51c4228512ea76e8112eb8534d6aef620d" + "bytes": "b530f3b501c4da9c43058e49653434489448e317f54e23c4b363c6a564596659" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "fb2ee8fc46ac00192586d9dc0b430a51c4228512ea76e8112eb8534d6aef620d" + "bytes": "b530f3b501c4da9c43058e49653434489448e317f54e23c4b363c6a564596659" } ] }, "durability": "persistent", "val": { - "bytes": "33b3a98d3d488d9dc01127a7ebae77dec381500652ac3a86d71ed508d3c7b153" + "bytes": "b49548c2b36ec0f07b79d51a007112d39b7f24a22f73582b20d05d6b436beadf" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.204.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.204.json index 7ad2b7d..dee6d8f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.204.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.204.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "054567160a4dfb938cbce2e3af5f78163e7d882c3d8da635a06fb22c9ee1193a" + "bytes": "ce0a5c5a11d0ff0662a59efa8892c88f284c0fed3d95add9dfe89e94c385c4c7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "054567160a4dfb938cbce2e3af5f78163e7d882c3d8da635a06fb22c9ee1193a" + "bytes": "ce0a5c5a11d0ff0662a59efa8892c88f284c0fed3d95add9dfe89e94c385c4c7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "j44ynh365w8xb808g4" + "string": "5i811a669n2vkv2finw" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCEYHMV6B2JKHCZYVV552M2EKCI5VUUFDNKASAQLDP45V4PFACS6HQSP" + "address": "GDKKLYG7OKCM2RPZ4STZV2WMADTUYQWSGPDWFM5CCDGUO7GPPZFMCFKJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bd68de2abdcf87d05de28cb1d5cd9eed89ab0f1b6687be2eaaa5e6e2bcce9e3fd0a2b8b7870e3d9db3b625668f2e6a5570858c00a5a7459f05f37c8acc3a0840" + "bytes": "5d4896a8fcbb5ef736d82e4e2e53d213f30ad733b719a14d9fcec4110b53221106c5e5309435b73cd7114f7ab72447abd87957d4eb0b9b09a7987330786133d4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "94b9fd049a8863d5935e5d67247e42a5387662953a1815192e5e57e4d1dade0f" + "bytes": "64cf3411ade2e682a529b15406a2099a2df7016aee6001caaa11dbee863ff3cc" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "94b9fd049a8863d5935e5d67247e42a5387662953a1815192e5e57e4d1dade0f" + "bytes": "64cf3411ade2e682a529b15406a2099a2df7016aee6001caaa11dbee863ff3cc" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "830d2bb4863ea3703c4c15d5cfbf8902e0ed50c8b10c55e602d1622b938486ef" + "bytes": "d602e72aebcd48c0c6b57a486d77efb1c3530a3e8d6bf5046d6df508c18b38c5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "830d2bb4863ea3703c4c15d5cfbf8902e0ed50c8b10c55e602d1622b938486ef" + "bytes": "d602e72aebcd48c0c6b57a486d77efb1c3530a3e8d6bf5046d6df508c18b38c5" } ] }, "durability": "persistent", "val": { - "bytes": "054567160a4dfb938cbce2e3af5f78163e7d882c3d8da635a06fb22c9ee1193a" + "bytes": "ce0a5c5a11d0ff0662a59efa8892c88f284c0fed3d95add9dfe89e94c385c4c7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.205.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.205.json index 301f98b..75fdab4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.205.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.205.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0a3a76d581c636a19d581e9a71e4ed59308a47e1b2112367ab2588fe7e92434a" + "bytes": "1fdd7293b8c32c38ae37b3bab67239e6107dae9bce7f0ce0e5a8bbc73e21a4de" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0a3a76d581c636a19d581e9a71e4ed59308a47e1b2112367ab2588fe7e92434a" + "bytes": "1fdd7293b8c32c38ae37b3bab67239e6107dae9bce7f0ce0e5a8bbc73e21a4de" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5zz8luh654jot8qq3" + "string": "248cqiz8ac6b4jwq9fv8wou1h" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAQZXOAQVXN4MGNSL2446MEQDS7WGUH5LGHTJLCUTFA3VSN7AR7UJC72" + "address": "GBOSAGC2VVCWNFQXWSBKCEZTDEP27MWIYVTNY77PAXBYPU6F6HRVDCHL" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bee9286a2a0dad0bf199d7da5edef40c354c5c090ce7b23baf2e95f34ecf821860e02eb6ccae2d48c6d263559ab865b4473373c81856c4bfbd4ccf2e64bda9e8" + "bytes": "06853b97bdc82e920d9a890ccf9ad9a5ed210da6fd98972fc03c037918c85ca63510f14ae1e54fc22180d71bf0b2da18216be0392c6514294c623f4a778d9f9d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c146d5fe3121b85f990e26d97c09178d66288aa64af003edc0c7ea4f38f355eb" + "bytes": "7811d86fde73655f4d2e693d27722fc36d38ac95d6590de6ccd6214613b9280a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c146d5fe3121b85f990e26d97c09178d66288aa64af003edc0c7ea4f38f355eb" + "bytes": "7811d86fde73655f4d2e693d27722fc36d38ac95d6590de6ccd6214613b9280a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "153271e4cce8f4ea644eeaba401b700df9f6c690a404e4cb06cdf98d7f89d545" + "bytes": "f3c895ddd139cbba617be8e50cbd6f4eb7fcf882b971b9c6cf0730a37c29333c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "153271e4cce8f4ea644eeaba401b700df9f6c690a404e4cb06cdf98d7f89d545" + "bytes": "f3c895ddd139cbba617be8e50cbd6f4eb7fcf882b971b9c6cf0730a37c29333c" } ] }, "durability": "persistent", "val": { - "bytes": "0a3a76d581c636a19d581e9a71e4ed59308a47e1b2112367ab2588fe7e92434a" + "bytes": "1fdd7293b8c32c38ae37b3bab67239e6107dae9bce7f0ce0e5a8bbc73e21a4de" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.206.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.206.json index dae2584..5143e83 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.206.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.206.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "714b43bf00936c1214a8e1218034ff25a29f3ec184121451f3c59894bb91419f" + "bytes": "f11f859dbeba62290be23ce0bbce0ab1e83defa9c5916547211b9d24ae653859" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "714b43bf00936c1214a8e1218034ff25a29f3ec184121451f3c59894bb91419f" + "bytes": "f11f859dbeba62290be23ce0bbce0ab1e83defa9c5916547211b9d24ae653859" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "a59v5jf451b1t7482wp12" + "string": "soxpwcrpkg338jw3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAXFYJ2QTTDHSGQB55MCYYPNC4YUQGY645FVJAF27PVWPJ3KT45WZICK" + "address": "GCQCVFZU45WROO75JYH5QDOZYVLAJHOAUKYZOLX4HWRDZLZVE55M7VM7" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c197baf45fe63129a8aed3366189841a2fb367f276a150bad069cd186303be7d2710d637a2a99a41af3c93ba2700238ab638fa114780a6f1d96d8730a60f251c" + "bytes": "8fa79ff999594660aacc329109d068edfddb57d8a1b434adb5ee576e9c7b9adc85b86738de683d9d50986aec0fc065dabc32dccbb3be8e1e2cdfbc3cdc9f9b95" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6f6b314133b57abfde9fe05ef310e274af75b483facf9a99d28f5d4330c7922d" + "bytes": "7cf90e840f7957de1d05dcf7779fb4e63455874db841f7a9e64b02b757442875" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6f6b314133b57abfde9fe05ef310e274af75b483facf9a99d28f5d4330c7922d" + "bytes": "7cf90e840f7957de1d05dcf7779fb4e63455874db841f7a9e64b02b757442875" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f91d046434345e39df3669089b1493ef93a4db51b33b9f629c38e2a4721c3b89" + "bytes": "f5496bb1cb34a9ae903156bf0ec11c75549007cda55d8b465c73cc6712043cff" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f91d046434345e39df3669089b1493ef93a4db51b33b9f629c38e2a4721c3b89" + "bytes": "f5496bb1cb34a9ae903156bf0ec11c75549007cda55d8b465c73cc6712043cff" } ] }, "durability": "persistent", "val": { - "bytes": "714b43bf00936c1214a8e1218034ff25a29f3ec184121451f3c59894bb91419f" + "bytes": "f11f859dbeba62290be23ce0bbce0ab1e83defa9c5916547211b9d24ae653859" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.207.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.207.json index cf1c129..d538cd6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.207.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.207.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2aba1cbf5530d0fb70b3db5f48f526df3cbca5ae89cf0b4082fd57e0342d2b35" + "bytes": "ca1cff75dc77604c0ae117d6051c9f0ea20d1a98b8bd89327cd7b7aec9f39a72" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2aba1cbf5530d0fb70b3db5f48f526df3cbca5ae89cf0b4082fd57e0342d2b35" + "bytes": "ca1cff75dc77604c0ae117d6051c9f0ea20d1a98b8bd89327cd7b7aec9f39a72" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "8vyff730t7d5y71t" + "string": "zxx5ff48" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCVP5JRBI3UZ7YRW5VFS54G6GVFC7FR4RYKIKVBE6LUXXHEZNCYK7I4Y" + "address": "GCRR3Q24R5ZLAEZ4S5PFTWCFNLBGH6AR56O6AEMYQYBP54ZFC6A436WB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "06b02f8e4ff0067bfccd73c1a5a1d71e8f519cd8df05bd944055d74f621d2b1393c769ade1b0c6307310f8723939383f35513c26016538d001fbdaa980cea00c" + "bytes": "d01cf8fd427c08e3b6e66be6135062572c94e16185c93960c88c55d1482269b771b3d0dc653f106c3e60f6bb2648a29fc746b5260202cb8e5c6440e27c2adb1e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "feac82aa550cd45d54c0b37338f463675471fde7f72c61caeef5615887fcbec2" + "bytes": "470b53bd488215d262054b01756432bf0d0c3413ae3ab5450a491c94dbdc158a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "feac82aa550cd45d54c0b37338f463675471fde7f72c61caeef5615887fcbec2" + "bytes": "470b53bd488215d262054b01756432bf0d0c3413ae3ab5450a491c94dbdc158a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "aec8aaef98ae47752c831b9fca360452bb51eae23aa269d54e151c0c5b7aa4a1" + "bytes": "b188d473355022514f106863cd6b7598a08567472814b780ef2d6a5885f39846" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "aec8aaef98ae47752c831b9fca360452bb51eae23aa269d54e151c0c5b7aa4a1" + "bytes": "b188d473355022514f106863cd6b7598a08567472814b780ef2d6a5885f39846" } ] }, "durability": "persistent", "val": { - "bytes": "2aba1cbf5530d0fb70b3db5f48f526df3cbca5ae89cf0b4082fd57e0342d2b35" + "bytes": "ca1cff75dc77604c0ae117d6051c9f0ea20d1a98b8bd89327cd7b7aec9f39a72" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.208.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.208.json index 9aa715e..015a5bb 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.208.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.208.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d504059fe5f72adf3f00a4e6f301e7099799424061b943ebc12a63d4c6c80ef7" + "bytes": "4c252159279da4f4db5997bd50481cb66902f0d01e4d1524cb221cc11b3da239" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d504059fe5f72adf3f00a4e6f301e7099799424061b943ebc12a63d4c6c80ef7" + "bytes": "4c252159279da4f4db5997bd50481cb66902f0d01e4d1524cb221cc11b3da239" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7o3286" + "string": "6b30bef5i7g" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBL4W2TNHLG4E3IX2E7FDK2HWMYU52A2AWMQ5MZPRBGIGXUY6FVZ4SZV" + "address": "GDG34NGCUTEGOSGAROQNFYAZK3DZMC4U5QCJ255VPC5WAETCLUWXHBKF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c4b0dd1b36f48800e5550b689d4d180f9d843835c6190f5de7ec92c987814e555964776e21009836ddefc69d9f6c0105361d08c101be631ff60bcf57740293e7" + "bytes": "abc2ede8507671958d569dda974c1e2a83564544789d8c27596dd32bc60cc4afbc29b4075a0a1179c30e4bc25f7a49b62fdf19cf69f9d61a7b65337fe8e43903" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b9f3ad9762ec5ea52d899b9193efedc1aae8316f6497c226f837c8a14cf1977c" + "bytes": "1019b7844db48528ec5a3c61651723289c604bd1d639bfd8e214a734c83f5494" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b9f3ad9762ec5ea52d899b9193efedc1aae8316f6497c226f837c8a14cf1977c" + "bytes": "1019b7844db48528ec5a3c61651723289c604bd1d639bfd8e214a734c83f5494" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0a1c95958e2331d1bccd4dd452d7843f2f2e66560b631e097f655b848639e135" + "bytes": "e8a34b90cf582a9c338f683c3f483e30989b4646cac1ee2b00ef6e11a5747f9d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0a1c95958e2331d1bccd4dd452d7843f2f2e66560b631e097f655b848639e135" + "bytes": "e8a34b90cf582a9c338f683c3f483e30989b4646cac1ee2b00ef6e11a5747f9d" } ] }, "durability": "persistent", "val": { - "bytes": "d504059fe5f72adf3f00a4e6f301e7099799424061b943ebc12a63d4c6c80ef7" + "bytes": "4c252159279da4f4db5997bd50481cb66902f0d01e4d1524cb221cc11b3da239" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.209.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.209.json index 45bb80f..3231b9c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.209.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.209.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "827a80bf7664af32c6cb496f319a4eac6fc22a9544dd5c480ea9f9229101f982" + "bytes": "4f8db6f4aac9af18d0e98c17db95dbf16fbbc73256123850bb08325aba6aac49" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "827a80bf7664af32c6cb496f319a4eac6fc22a9544dd5c480ea9f9229101f982" + "bytes": "4f8db6f4aac9af18d0e98c17db95dbf16fbbc73256123850bb08325aba6aac49" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "tmxi3284snr8jhd12inyf8" + "string": "2c20tg2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB2KVUE4RWVUBDQBNU2W4G5WWPISDSPQBHFLB2IU2PODBNZ5YDERVETE" + "address": "GAWL5A4BI6EHSULUM37BQFP6LBAKH7SKHQJI4AGMYDECSFUHG7VTWFCC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1d8b845973b54d2d95006205666b5b0e27bd1bd63c075c84125f455ee5eb450f9d336fab388b5d5e8266c9c511087e6660d2ae936022168df72bd62772bc6729" + "bytes": "35bffcc2e81676a440e6ae696c5a90ac506a23b7f947ff567534b54fbe733e6d56e4eee3de9c0b5b9b558d3365cd8fed676ca6bce8d8901ab6148ffc63dab30e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d9f164d1cc431c45254179e5fcc3cb304d54b951fc5a29711c46a0986bf29554" + "bytes": "f639fcdf9d7581532390fc47c1838c84c0978c1085633134cce34ea56df61a75" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d9f164d1cc431c45254179e5fcc3cb304d54b951fc5a29711c46a0986bf29554" + "bytes": "f639fcdf9d7581532390fc47c1838c84c0978c1085633134cce34ea56df61a75" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e6171e5014ef274ae81f97afb8a1c1a9d83b0d6c4cd4eead05d81301c4bae1ef" + "bytes": "09832596e8b41fa289e2e3ad8f8730570a0acc0ebc5087ada715e5e3275fb26e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e6171e5014ef274ae81f97afb8a1c1a9d83b0d6c4cd4eead05d81301c4bae1ef" + "bytes": "09832596e8b41fa289e2e3ad8f8730570a0acc0ebc5087ada715e5e3275fb26e" } ] }, "durability": "persistent", "val": { - "bytes": "827a80bf7664af32c6cb496f319a4eac6fc22a9544dd5c480ea9f9229101f982" + "bytes": "4f8db6f4aac9af18d0e98c17db95dbf16fbbc73256123850bb08325aba6aac49" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.21.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.21.json index a7f967f..c498477 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.21.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.21.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "4b97cd664bee8a4943b19a3d7dd9669e44eec87c3ca9b3fc073c6656bba41741" + "bytes": "c6ca1c3b4d4a665bef2c5e996ab6da260e2b919676a329c9134d34e477bb6f44" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "4b97cd664bee8a4943b19a3d7dd9669e44eec87c3ca9b3fc073c6656bba41741" + "bytes": "c6ca1c3b4d4a665bef2c5e996ab6da260e2b919676a329c9134d34e477bb6f44" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4c10h5qs7ghskda238h" + "string": "g13d" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCTQQ5LRTGZJDUP2TZG7RCI4I2BSHWOADSZFBZ6NBA5TVKRH3VCEOGVV" + "address": "GDFULIGEDEEFUF7O2GAKT6LMKK3Z3CWSNQZ5YQUCO6HDNA6SWJVOEIJU" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1aedae674d9850bddb74e4e24b135f7e999630ae0c738de285ad6152a5a0ac7ff30a4c40fe079b565ba71af34adc1b3271682190d055226115114579da644711" + "bytes": "d5ab1c5274a08dad2e0142bb030cdeb2ea96449c18bf374851d8176aa68e81b71530b9ca8904fa588b4f7fb6661de81650571f780ed61fbb133e9924b1630b35" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "21dc5e2addd535588ab956bb34243f21a77d5989be3710ee19b65e59b6576da4" + "bytes": "444b3206d65bfa703871ac26bffbd33c1f1f1ad93f375b1431b77fcc1e3ca86b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "21dc5e2addd535588ab956bb34243f21a77d5989be3710ee19b65e59b6576da4" + "bytes": "444b3206d65bfa703871ac26bffbd33c1f1f1ad93f375b1431b77fcc1e3ca86b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "84dcdfad49e76d39d994679dfd1d29c37eddc64420c6235947e06bb7053a4fb2" + "bytes": "da690c3b3a35dae3ee5529afafc43061be43a9cbe051398b1e562f4b49ec70f8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "84dcdfad49e76d39d994679dfd1d29c37eddc64420c6235947e06bb7053a4fb2" + "bytes": "da690c3b3a35dae3ee5529afafc43061be43a9cbe051398b1e562f4b49ec70f8" } ] }, "durability": "persistent", "val": { - "bytes": "4b97cd664bee8a4943b19a3d7dd9669e44eec87c3ca9b3fc073c6656bba41741" + "bytes": "c6ca1c3b4d4a665bef2c5e996ab6da260e2b919676a329c9134d34e477bb6f44" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.210.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.210.json index 77afb98..4a06e21 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.210.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.210.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "04bd1aee17bffe01a50812e6853df819893b889ee7bdf69434fef286f7b6cb2e" + "bytes": "e9d0b4c299c49662fe47ab5c62a8f62a3362b6fe5d078b869b4bc6cf51d279a1" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "04bd1aee17bffe01a50812e6853df819893b889ee7bdf69434fef286f7b6cb2e" + "bytes": "e9d0b4c299c49662fe47ab5c62a8f62a3362b6fe5d078b869b4bc6cf51d279a1" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "go58e330voxwuh1f1m5z0u98foq" + "string": "167bqyygv9v3u4d8xl0587n5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCX7PK5D2QPPGDLLRWIAVPCXUNYASIFOTVO4ASIJRWIUL6WTP4QEERK7" + "address": "GB32UJPMCIOR3YQCTOKPM32PCVBRQYQTKDEAAEMGLFEDSGZFHDWCMOFT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f82064990054d2f1896f1e9788ed4f9c6b256be0f81d7a4982b9434f1797da7deeacb864ee86cec338cad9c31eb8edd8b60cec86df36d204077f2735033db99e" + "bytes": "d69bfac35cc948e0f09d57a3141868e09789efc2109619bcdcfed115b84b1d597b3c2e485590973933a12d629b84f33060f79c1673b6354fde9a3efcc52569e7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e7c9198e17cbfa1d6767932ab668a41a0a24b48649c219c32265d99db7175e32" + "bytes": "930cf14fdde66864e8c7fc4058a6dd3d5b17ad20859e77bb8429fa6314a55745" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e7c9198e17cbfa1d6767932ab668a41a0a24b48649c219c32265d99db7175e32" + "bytes": "930cf14fdde66864e8c7fc4058a6dd3d5b17ad20859e77bb8429fa6314a55745" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7a0e26f0e84cd69849ea53f24dd29b55a16e21a6b370541b995c98bf1c6d831a" + "bytes": "08b34e25b6a9f187e77aed97e5fb4820dd3d093ac508b4d909aeb16113358a97" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7a0e26f0e84cd69849ea53f24dd29b55a16e21a6b370541b995c98bf1c6d831a" + "bytes": "08b34e25b6a9f187e77aed97e5fb4820dd3d093ac508b4d909aeb16113358a97" } ] }, "durability": "persistent", "val": { - "bytes": "04bd1aee17bffe01a50812e6853df819893b889ee7bdf69434fef286f7b6cb2e" + "bytes": "e9d0b4c299c49662fe47ab5c62a8f62a3362b6fe5d078b869b4bc6cf51d279a1" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.211.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.211.json index 2cffcd3..492d1c6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.211.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.211.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "02de53d49ffa30c283dc00e5a0b9d8518c4b8aaf404b31f4f8708c49eb6716ed" + "bytes": "2b652a06c0eed20bd3d500980ef2034d7c66e3652ba91afdf9d8a29187976564" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "02de53d49ffa30c283dc00e5a0b9d8518c4b8aaf404b31f4f8708c49eb6716ed" + "bytes": "2b652a06c0eed20bd3d500980ef2034d7c66e3652ba91afdf9d8a29187976564" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "tuoub9b159" + "string": "39stb5to5n4z56590y4a4986" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB5QCRPAV6FX7LNLDZHYL2TV65RFN64WFNRIQK2LITN27A6YTGJWVQEG" + "address": "GBLMFPL65MOZL6AL4XBFWGQHZS23IW3YJ2MTJNDSE24YYF4WEQVMV6WV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a874cc640aa950b9f5bc2e4fdab8ab488cc130875bc534a67b87cbf495b5c0871e03d7167e1b5e72045baa902ffec53fa09bd8e4b818a09dad7e3dd928baa378" + "bytes": "8dcc8710633d659e8657c32be06fe5e4038818e36927c31b8f130f1c2b372e3fc8be0e9d8d6d62e4c11737cf244f349b4e328075d8fb51a9ec6477e7a68fdae2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "798d583c275f799040213aeb03ca1f211bab4e94f9bcf60a0ac047f41c0802e9" + "bytes": "9043f73d2680eec2bef3e525623c55b798f94d07bc295265afa7f214f18e1803" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "798d583c275f799040213aeb03ca1f211bab4e94f9bcf60a0ac047f41c0802e9" + "bytes": "9043f73d2680eec2bef3e525623c55b798f94d07bc295265afa7f214f18e1803" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3d0f3e6f60937f4d5ee92701b513d4029cc357b4130bae4a9ba2917428261bd1" + "bytes": "ca22847efd8c7583963fd69b7758f53c740110d3d1cbadae0d960aab39c7052b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3d0f3e6f60937f4d5ee92701b513d4029cc357b4130bae4a9ba2917428261bd1" + "bytes": "ca22847efd8c7583963fd69b7758f53c740110d3d1cbadae0d960aab39c7052b" } ] }, "durability": "persistent", "val": { - "bytes": "02de53d49ffa30c283dc00e5a0b9d8518c4b8aaf404b31f4f8708c49eb6716ed" + "bytes": "2b652a06c0eed20bd3d500980ef2034d7c66e3652ba91afdf9d8a29187976564" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.212.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.212.json index 9077de5..5da317e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.212.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.212.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "4e95f436da9e0dcbd152307e30e4d2b0bd6e82c1623906273649097e9f735140" + "bytes": "6a741c9b5464c6686434b2705a5ade48b7a80cf23b0c1286a08dae2145482392" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "4e95f436da9e0dcbd152307e30e4d2b0bd6e82c1623906273649097e9f735140" + "bytes": "6a741c9b5464c6686434b2705a5ade48b7a80cf23b0c1286a08dae2145482392" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "183mfsi80n70" + "string": "147v526f98" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDJ2SCPPIDET7D5O2UFG5NFIHJ4KH57TNNDF6ROCNFOIYXOJQEOOYZHV" + "address": "GB4Q2AOGN2T4CQN5JHGJ6KK475WNMSXE5VVQBPWKSENY7JJCIB5TNP3E" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5506281958ae0328063883a89f734f08b688fe4da5a803c35c9799025e794b3c6a9ff41d29058a758a2b8b51772b18a2bc3466222fec3b9009a8302df41bbae7" + "bytes": "c9dc940a0200e8cd7d810846aa82d56699ad4a7942f85c9d45aa5702fc7533190c831b1963737ce20628cc5483caf0818cdbe2fb459f8d97204b306217d4241a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "72a8ddc34106f4c5902a7d8594e4c4b2e8a02134b4fb13287f3c5deee3a7193f" + "bytes": "dcf4b7bd29a9fef12a1f41268ea326eec90ba5ea8f0b7d2471508a91d67c9894" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "72a8ddc34106f4c5902a7d8594e4c4b2e8a02134b4fb13287f3c5deee3a7193f" + "bytes": "dcf4b7bd29a9fef12a1f41268ea326eec90ba5ea8f0b7d2471508a91d67c9894" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "948cd1d1f30c258ecb2154dea797b208a03aa683206a30513ab436be33b2b655" + "bytes": "7014b64e7b2da4b094e1ae150d89b494f2298b287a33832f5a2541e727229cf0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "948cd1d1f30c258ecb2154dea797b208a03aa683206a30513ab436be33b2b655" + "bytes": "7014b64e7b2da4b094e1ae150d89b494f2298b287a33832f5a2541e727229cf0" } ] }, "durability": "persistent", "val": { - "bytes": "4e95f436da9e0dcbd152307e30e4d2b0bd6e82c1623906273649097e9f735140" + "bytes": "6a741c9b5464c6686434b2705a5ade48b7a80cf23b0c1286a08dae2145482392" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.213.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.213.json index 6f35903..e95e930 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.213.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.213.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "4ba288e7515a20c49570b2fc0625b7610058692c26718c89a63f03db52ad6373" + "bytes": "4d1c8d754884f93548f5a898d77054ced3650715beeb2358c257ee151e84b9ad" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "4ba288e7515a20c49570b2fc0625b7610058692c26718c89a63f03db52ad6373" + "bytes": "4d1c8d754884f93548f5a898d77054ced3650715beeb2358c257ee151e84b9ad" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1vzr2afrv5co4gbdh08m" + "string": "3gv7411ahf4ymdr53" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCAT6NAE723J2QFT3FXCCC25MFAPQNCGMZDBMQNXVLE6OPIZM5DHXXEP" + "address": "GDOPKIFLRSE4MJLZ3JGTQC32IARJ5EVZYOFAIKUKX75VXY4CE7I4OKBI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a9e9746824edc594c3ea573a4255569fddf4b382bee625e9ae2c02246254f11bbf2d8e2dbf29ae18ee034be46e77b5bc6b9c6226475a844338b3368866ec624c" + "bytes": "791bbc6aa8625a8799f813b7d898115743e28aff79d19f833f298cffe1d36065665b878d42ccc7f9084bc856c51ba6a845e611f4d00279fa3c267da43f5fc9e5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "de30da7f48997da10a26c7c7a71cd91b6435da0b8b4a957c32a78de0c2bae398" + "bytes": "38e1e3c001d9c17ecc7f2f391960a45092278a2ddd71540ebfa02036cbf01ec8" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "de30da7f48997da10a26c7c7a71cd91b6435da0b8b4a957c32a78de0c2bae398" + "bytes": "38e1e3c001d9c17ecc7f2f391960a45092278a2ddd71540ebfa02036cbf01ec8" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "98516721315aa7945c4b649f3180d19f0870d918ab2da21e69e0f3f3ccb90ca9" + "bytes": "e53c8e07bc27d8074a4575a5f4751d41ba0cfdd40b7a49f6cd865721db9c761b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "98516721315aa7945c4b649f3180d19f0870d918ab2da21e69e0f3f3ccb90ca9" + "bytes": "e53c8e07bc27d8074a4575a5f4751d41ba0cfdd40b7a49f6cd865721db9c761b" } ] }, "durability": "persistent", "val": { - "bytes": "4ba288e7515a20c49570b2fc0625b7610058692c26718c89a63f03db52ad6373" + "bytes": "4d1c8d754884f93548f5a898d77054ced3650715beeb2358c257ee151e84b9ad" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.214.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.214.json index ff98554..551882c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.214.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.214.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1021cf43597fcca32dc51be113a46b62b0f94752c191a66cd962d15e46656fd5" + "bytes": "e9faf1cb95b4e45f740e387a10086a00553d7265f585c8b791946760ca35910b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1021cf43597fcca32dc51be113a46b62b0f94752c191a66cd962d15e46656fd5" + "bytes": "e9faf1cb95b4e45f740e387a10086a00553d7265f585c8b791946760ca35910b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "93ojvknh" + "string": "vjtmwx7h1t8i7e09ci7" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDFSDTF2CX57BHSFOSQHF453ECCN6JLCKMJD5ZKRUEBY73FPRTF6EQCU" + "address": "GALORTEYBJOCDB3GXNZ37424ZLGSPR62LTUQAA3SZ757JQWDWOT6IALG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "25fc14dfc83b03e27a80a51b00eb1f23a69a846d19569f2a529329111adaade778471bb071d598a626ff6302d6e244c8f407545dc3fbb37a1bfe8e230fd05249" + "bytes": "0fa79edb5b4c21ac83f769308641088d8e98a2f37142837254b31402ddfebb9345c1368f3b70d70fc988e2175ccb5a7f485cf5162faebd09f9acac7f07ac21e1" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ca3877f0398c09042a85066d267f87208c9e62852ce5059dec4c5955040eb959" + "bytes": "c82d97e02a98695994715e81a5815f46db9d8ddce17da9bdcca26274761ce304" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ca3877f0398c09042a85066d267f87208c9e62852ce5059dec4c5955040eb959" + "bytes": "c82d97e02a98695994715e81a5815f46db9d8ddce17da9bdcca26274761ce304" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6c4771935083e7e0ffbcbf0cf0cdecb2e49b437fb4ebaaadc926c7cb27375a37" + "bytes": "09be0187c1b24ada5a82896715f83145d787e56b356896a5210bf793c7f375cf" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6c4771935083e7e0ffbcbf0cf0cdecb2e49b437fb4ebaaadc926c7cb27375a37" + "bytes": "09be0187c1b24ada5a82896715f83145d787e56b356896a5210bf793c7f375cf" } ] }, "durability": "persistent", "val": { - "bytes": "1021cf43597fcca32dc51be113a46b62b0f94752c191a66cd962d15e46656fd5" + "bytes": "e9faf1cb95b4e45f740e387a10086a00553d7265f585c8b791946760ca35910b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.215.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.215.json index 5b25b2c..6baae9a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.215.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.215.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1b5ec04e6cc9a2159aeceb228f00693955dce67a2a4643caaa5b3360240d4adb" + "bytes": "3b6d621510c814c2dbda5adc7a410f9c0fc7e7c78228335c906843437417a418" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1b5ec04e6cc9a2159aeceb228f00693955dce67a2a4643caaa5b3360240d4adb" + "bytes": "3b6d621510c814c2dbda5adc7a410f9c0fc7e7c78228335c906843437417a418" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "a5ahgqi9zd7" + "string": "6kmjbm3de4p9fy3ce17hq5xv9ui82i" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBUNHNBHYBGQAZ2UCIHXCHOCEBAEJ4VHQJLTSLXJN3VBAPAU52POEI24" + "address": "GC3DWU4KXPNV4RH22BDQXPV23IKJTMS5GFN5BMNUP6HTATCNUTLSNU7C" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5ffe98e80ea70102fd794f8e8b25139da2e89253c4988452abacdfbf70bf569b155f98104ee3bd30ae7720d75b0d6c0a7d2fa553e64f6674052d366a65feff63" + "bytes": "80cfb3856d59a8a840faf7bfda2fa1cd4095378ee8e014e46aa48d6d86017cfd405cf7efc655cc81770cf0bdcbd57ee8f2c6ca16486dadc41533280f5e575774" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "600ba49add419460fb32307185cf50b9f5493c144603f63611cc6814154b9c10" + "bytes": "df1caaa4e7ffc3559833f593abf5b6add94d8ac91ba4888380c3f7b6bf54eddb" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "600ba49add419460fb32307185cf50b9f5493c144603f63611cc6814154b9c10" + "bytes": "df1caaa4e7ffc3559833f593abf5b6add94d8ac91ba4888380c3f7b6bf54eddb" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "304cd2e1ca3294e64c64839a55cf795dd22ae2070be6347d9899b61cd7833781" + "bytes": "cf063856f63e3bdeb71f34d2fd1152085a5f1dfe9f8c594e806a7ff54dbbcad8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "304cd2e1ca3294e64c64839a55cf795dd22ae2070be6347d9899b61cd7833781" + "bytes": "cf063856f63e3bdeb71f34d2fd1152085a5f1dfe9f8c594e806a7ff54dbbcad8" } ] }, "durability": "persistent", "val": { - "bytes": "1b5ec04e6cc9a2159aeceb228f00693955dce67a2a4643caaa5b3360240d4adb" + "bytes": "3b6d621510c814c2dbda5adc7a410f9c0fc7e7c78228335c906843437417a418" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.216.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.216.json index e5eb677..d937d68 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.216.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.216.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6addd1f11e4f502679b5c17d2ce83639f59fef15e09f6b386de3ebfa303d9ca4" + "bytes": "127d4a26e82b75644c2bd86c73f1180d048c7d507a8de80b02e7ca6699a4b360" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6addd1f11e4f502679b5c17d2ce83639f59fef15e09f6b386de3ebfa303d9ca4" + "bytes": "127d4a26e82b75644c2bd86c73f1180d048c7d507a8de80b02e7ca6699a4b360" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7g7ud04y4m5m54u8e166ht53a410y20a" + "string": "tf7ss34syyxtrg6ss12z5gwuoiq" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAU5B74PSP7DRQWRSY6P2ZTEMU5H7QYLPJL5T7SBNJOSCJQUUCDMPTJS" + "address": "GAW2FJBNAMQEHSXJLF6ZO5SFV6C46HZJQO7WGOEZZBMEQIE7ZWYHBOWN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "73e196ce773f56e2a97764c942c664193de77654c13c75b5dbd3c2c25ad4d304c0f5990c46a181da897ab7c2ed8dee74fc7766f5039bfd339fdfbe8ce768e8ae" + "bytes": "98fbd2cf4f50868b2a967f36d36b0f8d8dee5f80e8aad42c3b43b43e64f4dedf088b1e9d400dfc954914fd21d2a0959b931c513b3b20829c234070cad8be2fae" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d0521811d8a743d71626a6c16a4e75a827bbc77f018009b86fc36cd271a05814" + "bytes": "5f899c6187d19fe42f0923456c4904787af14f9a3c986ba13b2473d38816fa63" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d0521811d8a743d71626a6c16a4e75a827bbc77f018009b86fc36cd271a05814" + "bytes": "5f899c6187d19fe42f0923456c4904787af14f9a3c986ba13b2473d38816fa63" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e026302c2a6a245297b2e1fce5010c40ac2c95855b62ee19c542ced573b7ac18" + "bytes": "cb0a32e11c0d58dece6ed14798564812f072cdedafb6b17ff5ade3a3998b0949" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e026302c2a6a245297b2e1fce5010c40ac2c95855b62ee19c542ced573b7ac18" + "bytes": "cb0a32e11c0d58dece6ed14798564812f072cdedafb6b17ff5ade3a3998b0949" } ] }, "durability": "persistent", "val": { - "bytes": "6addd1f11e4f502679b5c17d2ce83639f59fef15e09f6b386de3ebfa303d9ca4" + "bytes": "127d4a26e82b75644c2bd86c73f1180d048c7d507a8de80b02e7ca6699a4b360" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.217.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.217.json index 57fbcd9..d999c7d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.217.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.217.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9d0af9b776d39424ee3fce1d11424eff08f294fa7f45bb932d30fcfadd496339" + "bytes": "73e4f4f6606fd45c97d4fa73345ae406868c2431c244ef1e6c81d9de78a1b570" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9d0af9b776d39424ee3fce1d11424eff08f294fa7f45bb932d30fcfadd496339" + "bytes": "73e4f4f6606fd45c97d4fa73345ae406868c2431c244ef1e6c81d9de78a1b570" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pe98ufr68z630m5ncf3xfsd" + "string": "d67" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB2Q4GD2OXGDVWBW64YNA4O5OXSRWCWAQ74GENDPV7FVCLVHRM2Q4MUN" + "address": "GDPQE2BMSCW3BEZ23AY7CSZUCTP3MFE3OYKGDYNLMRCZLIM73L4AVCUM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "842a3b8782138f732f0bb8927122ce7603f1c54474a30db3cf0cdaa3bbf77d1e64438b308687bd0542aea3366434b615274935f2960b7311c42a764faa60b30c" + "bytes": "a2f0a93431305c8d5beea9a6f55692924ed6e231b04b2bb4915445c368a60774ac45be63824796091054c768220aa111152cdb5609c3dec93ed285805491a7fa" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "31a834c577cc66408d62fdb5815731a54f979c9c7f80834c80820e1d7e57c9d4" + "bytes": "3e67948583061f64cf3a7383003ffaaf2acb96c4e9c4bc1f7f921ade8b5e0374" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "31a834c577cc66408d62fdb5815731a54f979c9c7f80834c80820e1d7e57c9d4" + "bytes": "3e67948583061f64cf3a7383003ffaaf2acb96c4e9c4bc1f7f921ade8b5e0374" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9a60aa82373739dcddd7bd4730300a867d025f3ae2f697bf434347aa1d4f1637" + "bytes": "73bc6104973cf1ad3e802e92685a87eb814b3fc2e9d43f3931e35cbd39f7accb" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9a60aa82373739dcddd7bd4730300a867d025f3ae2f697bf434347aa1d4f1637" + "bytes": "73bc6104973cf1ad3e802e92685a87eb814b3fc2e9d43f3931e35cbd39f7accb" } ] }, "durability": "persistent", "val": { - "bytes": "9d0af9b776d39424ee3fce1d11424eff08f294fa7f45bb932d30fcfadd496339" + "bytes": "73e4f4f6606fd45c97d4fa73345ae406868c2431c244ef1e6c81d9de78a1b570" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.218.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.218.json index 08215ad..6fce72c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.218.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.218.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "44a72906bccbbdb48ebe9a38393f35ad1234a19b5c90c8c58ca4ac03902d1f84" + "bytes": "a5dad5dccb0f01be4967774f2acc96bea8f138d996321bece203402be4a374c2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "44a72906bccbbdb48ebe9a38393f35ad1234a19b5c90c8c58ca4ac03902d1f84" + "bytes": "a5dad5dccb0f01be4967774f2acc96bea8f138d996321bece203402be4a374c2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "uf8mswl769y58fdf5398p3jio84x57" + "string": "a540rjhsx1zyb0u4p0pmr4398" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAXDR4LRV4V7QAOS5B3ZQ37NLOHIRX42OB77UDIKTGZBDMJPDEVMBC4Y" + "address": "GAANPKLEXZU77UYVEZDGKSY7TE2EKYVDL7BZZO54FYGZPI2GZVJ7MZCS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "175155cab57c793fd149b78e0e37add4b3650d35bca80167be5522696bce5712505cf72d972f529b1c35e483993dcd6fe9eb1ba6a63259baf404d2fa497c4b4c" + "bytes": "79490024f4cf9868e8d2456c75b76a5e230eb58b24baa86f3668b3195b54ebe9a5ae8837278b432946a08897a6e8a7d4fda17ba5e5fe770bd51526ec6dd18cf8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "91cb88445f90cbef7a44ebe725e0a90bec0b33e40bc64a331ecc4fc97fff4dc9" + "bytes": "2649a462c88d61a259872d2cfd541926e91b1b7d1cdf790ba896fbc68fc81636" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "91cb88445f90cbef7a44ebe725e0a90bec0b33e40bc64a331ecc4fc97fff4dc9" + "bytes": "2649a462c88d61a259872d2cfd541926e91b1b7d1cdf790ba896fbc68fc81636" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e8627d1e1954bd38ea6d5e93a33ae84d1b49982a0f4876738cac154b715d5a6b" + "bytes": "a2d8c69293abaed8bc02aaf7dabbc72a2cf842afeb75d61d3c1d1ab51c89d02e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e8627d1e1954bd38ea6d5e93a33ae84d1b49982a0f4876738cac154b715d5a6b" + "bytes": "a2d8c69293abaed8bc02aaf7dabbc72a2cf842afeb75d61d3c1d1ab51c89d02e" } ] }, "durability": "persistent", "val": { - "bytes": "44a72906bccbbdb48ebe9a38393f35ad1234a19b5c90c8c58ca4ac03902d1f84" + "bytes": "a5dad5dccb0f01be4967774f2acc96bea8f138d996321bece203402be4a374c2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.219.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.219.json index 102719e..f34aeb0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.219.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.219.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "93dc4a75fb750bf2df1e82f25e3b490b856592e5339bf63f51e75cce61e454d9" + "bytes": "0621a9a19048b1f73b9b856b5094586bb9eb9ca6ea6fa4a83234ada7b0036067" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "93dc4a75fb750bf2df1e82f25e3b490b856592e5339bf63f51e75cce61e454d9" + "bytes": "0621a9a19048b1f73b9b856b5094586bb9eb9ca6ea6fa4a83234ada7b0036067" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "fqpx3yf1rqym5ie4x3z27" + "string": "oywzr8m7y" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBM7T43EFSF5SKNDTOFMFFX3NOSFXIPXKIAABMJ6D7Q377VEEV3ITAZG" + "address": "GAXPKFOYHABH5TLJE5HM5VXOJX5A2G2J5FP6N45XSP6Z6OOKKGJD64EN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6448201d00696bd8a544c62f5b2d9c5fb4feb222e64a2c0f8209bd4da598f2fb7d141794559f82eb288513dce92681b560bd883cf834578ad91465ec7a0273b5" + "bytes": "b9aac8d8c2aff3bde002ac9bd35d74a973131cc97c2fb7b0453c73d5353a07b9b1e76a5c5dc76d21dab8b85b28810a7b7658e012f3f3e3964ba772bf5b46ddd8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "7df8a219ec0a8c9bfe626af60df23692828c21595f2bb531e997e8fb60c438b3" + "bytes": "5d98f4518fcbd7e0a8b94fceb3826aa5d1b0319871164104d78b0d9eb58a9392" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "7df8a219ec0a8c9bfe626af60df23692828c21595f2bb531e997e8fb60c438b3" + "bytes": "5d98f4518fcbd7e0a8b94fceb3826aa5d1b0319871164104d78b0d9eb58a9392" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d7cb91e5e45879649301615d8fa8c12a1ed648cbbb0951b6bdce851fddb313eb" + "bytes": "e45b6c5380f703d70558040959c5f899e5404133e3f2083756b76670b2ab81b1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d7cb91e5e45879649301615d8fa8c12a1ed648cbbb0951b6bdce851fddb313eb" + "bytes": "e45b6c5380f703d70558040959c5f899e5404133e3f2083756b76670b2ab81b1" } ] }, "durability": "persistent", "val": { - "bytes": "93dc4a75fb750bf2df1e82f25e3b490b856592e5339bf63f51e75cce61e454d9" + "bytes": "0621a9a19048b1f73b9b856b5094586bb9eb9ca6ea6fa4a83234ada7b0036067" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.22.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.22.json index 0cb8870..23c5c4d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.22.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.22.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "af4ee8745d8f37ea8a840510a1f878990c21009e8a3bebdc379c296baf91476d" + "bytes": "d19dcc141524fdec1fafe66bbd4b86b930ba6a08a2a0ef546aa1fb4320b73785" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "af4ee8745d8f37ea8a840510a1f878990c21009e8a3bebdc379c296baf91476d" + "bytes": "d19dcc141524fdec1fafe66bbd4b86b930ba6a08a2a0ef546aa1fb4320b73785" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "2d8mei5oigj1bkm6kszw1c301v0az5" + "string": "jax41735h54v96" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDW6TJQSFMHVEKI3P5V5U7QNCXK2ERQWCRHRWXDMHCF62P4RYQMWXAP7" + "address": "GCVJ2ZFDXRKIVCIBPMPLG5DSWSC6VH7SDYGRFK5SNOHZELZTU56II64S" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "9ff858a5099612ed4ce27b2207736cae8197232a1a39ca3e767ca6f6a67a2fcda4cf1a80b730356073763d29a3127cb65332ad574a25c22694bdc58bf8db80b2" + "bytes": "c49ccd3d9f22de3703bb1611d614932103365727b8e70fc880014a440d25a85efe252bad4a1a35e192e8c2ba18536ee05756cea3d29885620c74bb8eef322d8c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6f3b9f4b1540bf910d75c977d7e734445339125daf212e254b5fdc6d44cd162a" + "bytes": "b9b8040da7816f8f5b0e2505576746cac362c9195cf463a33998d730632f0615" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6f3b9f4b1540bf910d75c977d7e734445339125daf212e254b5fdc6d44cd162a" + "bytes": "b9b8040da7816f8f5b0e2505576746cac362c9195cf463a33998d730632f0615" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "ff95d2f92e714ea55b1a4be3aa94473a335f816d0760152b5a17c6064dbf02c1" + "bytes": "c4ec5af5fdbf1798ebf4574e6032a95b20d0529202288a4a2d60fe0d9180552e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "ff95d2f92e714ea55b1a4be3aa94473a335f816d0760152b5a17c6064dbf02c1" + "bytes": "c4ec5af5fdbf1798ebf4574e6032a95b20d0529202288a4a2d60fe0d9180552e" } ] }, "durability": "persistent", "val": { - "bytes": "af4ee8745d8f37ea8a840510a1f878990c21009e8a3bebdc379c296baf91476d" + "bytes": "d19dcc141524fdec1fafe66bbd4b86b930ba6a08a2a0ef546aa1fb4320b73785" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.220.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.220.json index 81c819b..918e21f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.220.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.220.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "44a62f04301f4cf410bf0964f7fbb8365d9c12625fd1d679abf8d822f9543f06" + "bytes": "78550ea5cb1e61d0e39df420536c3fa6946bc8c1ddd4bdfd2db262185a1a3f9e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "44a62f04301f4cf410bf0964f7fbb8365d9c12625fd1d679abf8d822f9543f06" + "bytes": "78550ea5cb1e61d0e39df420536c3fa6946bc8c1ddd4bdfd2db262185a1a3f9e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "2198r487p0249ru" + "string": "i6nodz928925h6h56zd4" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCOTENURHAAB2OEVB4YJFVRXTOVDKHMD5ROYUYQKMBRAH6VXKUMJCTV6" + "address": "GCVB2KO55HAR5HAV3Q4DHLILHXUDHI7V5AIH4GALTFOTZZAJOKBL6SUB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d05cdb7cc137a71eaf84b819a6d6335d50e7f8291198e2c91362222319adf6fb54d0ec65251ca285247449dbbcd00448e0f1111bda8456a0c9f26fd4d1653a36" + "bytes": "73dacbc6421112d27bca8a6f99085a231228a8f00277654967ce6fc9a8181beec5a455ba2d5f9817429aa04e19ff444d2db84bf2080259c6ffc86316faa8d467" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e3fe6e633edb92eed2daedba910ad88e123d3ba1341e676762a77efe9611ae36" + "bytes": "957d1b77b7f1ab3fdda5d216ad3625c6fe8d02d4a3c4c91ec9cb1e4ac17869c5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e3fe6e633edb92eed2daedba910ad88e123d3ba1341e676762a77efe9611ae36" + "bytes": "957d1b77b7f1ab3fdda5d216ad3625c6fe8d02d4a3c4c91ec9cb1e4ac17869c5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "752d0f98bc4a4814847cd6b285161e6413c61db55c1f638c560deadac1ee9290" + "bytes": "ce5dfacdad2aea489f4191009ef25c32ef60565f2fc3dad04b9f14e7052c9376" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "752d0f98bc4a4814847cd6b285161e6413c61db55c1f638c560deadac1ee9290" + "bytes": "ce5dfacdad2aea489f4191009ef25c32ef60565f2fc3dad04b9f14e7052c9376" } ] }, "durability": "persistent", "val": { - "bytes": "44a62f04301f4cf410bf0964f7fbb8365d9c12625fd1d679abf8d822f9543f06" + "bytes": "78550ea5cb1e61d0e39df420536c3fa6946bc8c1ddd4bdfd2db262185a1a3f9e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.221.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.221.json index b0c563f..1d1fe5c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.221.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.221.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f7bce621fab57cdbb9eb0b6ce23520c231893f9f599deb3d52a8b9a6c9b72e0e" + "bytes": "786021593cb25726c4bd3d59cf1d4ee03fdbb84c7a9ebbd7e419bc8d6d6e6c9d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f7bce621fab57cdbb9eb0b6ce23520c231893f9f599deb3d52a8b9a6c9b72e0e" + "bytes": "786021593cb25726c4bd3d59cf1d4ee03fdbb84c7a9ebbd7e419bc8d6d6e6c9d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1pws8uit" + "string": "39l4y17391viv2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDE5CQJ32OTXFM2M3LUMIRPHTD2TCXK6IRV3SUWCKJVRQLT4WIIQLGOB" + "address": "GBW3HO3PANU6W2W3DK7SLATFNI6EBABQ5KBFY5S2VOCTI42PYXVPPEBT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d4be5cd22d9d6affcf19e67f51c3bae86707c895a42915211d9b9114e66f12e3653e69edb828659f7ceeb78b996d2caa7e8094fbaba3fc08ea791817a8b92420" + "bytes": "ce043d35919e43c6fc1a0d73985cb7eeb638dfc29c2324b7b3da720a8d14a4269f0116a7e868a3d211baa01a77a1b387f063d24050301404479b8be904b17630" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9c59174895bbc42ffcbabafba38c9ab2cce911447ee0a4a0163e35f3b0145600" + "bytes": "e7b23c385026eef924c4617b807aee5df04deef3fe897269ffa4f7668d0eb538" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9c59174895bbc42ffcbabafba38c9ab2cce911447ee0a4a0163e35f3b0145600" + "bytes": "e7b23c385026eef924c4617b807aee5df04deef3fe897269ffa4f7668d0eb538" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "501c2c3331f20e4ccf459b6ff63c8a14e08605a3d286303c41108ef743d85d87" + "bytes": "c65bb3a1f5e60a9fbf5437399899589b1d1061317af8344ddf60df8419b03520" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "501c2c3331f20e4ccf459b6ff63c8a14e08605a3d286303c41108ef743d85d87" + "bytes": "c65bb3a1f5e60a9fbf5437399899589b1d1061317af8344ddf60df8419b03520" } ] }, "durability": "persistent", "val": { - "bytes": "f7bce621fab57cdbb9eb0b6ce23520c231893f9f599deb3d52a8b9a6c9b72e0e" + "bytes": "786021593cb25726c4bd3d59cf1d4ee03fdbb84c7a9ebbd7e419bc8d6d6e6c9d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.222.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.222.json index 1550f26..c259b5e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.222.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.222.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "089186cde3795b15e30419bcd623af6f6579d410d6d3f23caf0e7aba3d395485" + "bytes": "a71907c18b411d47fac41bff36099e4dd2acfaf1b14988e0f05f958a98c420f3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "089186cde3795b15e30419bcd623af6f6579d410d6d3f23caf0e7aba3d395485" + "bytes": "a71907c18b411d47fac41bff36099e4dd2acfaf1b14988e0f05f958a98c420f3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "cc5g059x75h8i" + "string": "0k70x7rlw2d7da6c" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBWCD63WS2MCVJPO6OUOJ3UCUZHMAIU224HG4KV2IEIGJEG5PXB2FZZQ" + "address": "GBEKUCRTKO2MIO6PEL2BAEJ4SPREGD64FMN6AICWSQMARAJS2JJ4DTXP" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "beb2bd9d9e79506e666969f8ff9674cda2a37ce34e8949ea537e0a2ee49f4a108de492f5a1a3577800c57afc73418b65e373536b0d620fd009812b7aa39caedc" + "bytes": "f5f75a563a5c47b5b4086358d57c75e7b1684cd0f16202af39d5335f1e9e2e85649c90426d2ec641a41824d03a1f88a61adc7112f19322b08299d249527847be" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ff57f52c85fb6388a1d6d99c0da6ffbb92be8d29fbc8cb2cb98ffc423e3bc2d7" + "bytes": "7d5a40e992af813cbaad05f8c01f4bbff13a1377dfd24e8bfc40b3b797e15db9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ff57f52c85fb6388a1d6d99c0da6ffbb92be8d29fbc8cb2cb98ffc423e3bc2d7" + "bytes": "7d5a40e992af813cbaad05f8c01f4bbff13a1377dfd24e8bfc40b3b797e15db9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8b420547d946c82005cd2bab414c924f41a377dc86495f3aedca66d5edf97533" + "bytes": "970638608db7bea3f47c2fb46e989e996d0cab4d1dd64788dc26a09fca5576fa" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8b420547d946c82005cd2bab414c924f41a377dc86495f3aedca66d5edf97533" + "bytes": "970638608db7bea3f47c2fb46e989e996d0cab4d1dd64788dc26a09fca5576fa" } ] }, "durability": "persistent", "val": { - "bytes": "089186cde3795b15e30419bcd623af6f6579d410d6d3f23caf0e7aba3d395485" + "bytes": "a71907c18b411d47fac41bff36099e4dd2acfaf1b14988e0f05f958a98c420f3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.223.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.223.json index fb17b29..757d524 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.223.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.223.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c53e689c625a22dc10a021f816af6eefe05e7922ceaff409710e5887ad20390c" + "bytes": "2b74fabcb8153e9acfe0efa62e4b9bb7e7fee4db5b4f0b7d37bb28991584ffd3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c53e689c625a22dc10a021f816af6eefe05e7922ceaff409710e5887ad20390c" + "bytes": "2b74fabcb8153e9acfe0efa62e4b9bb7e7fee4db5b4f0b7d37bb28991584ffd3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "eeq8orwmvw1iq5r0a5" + "string": "6sh0vs8stp1b6a5z9n3t7ke32098vvvz" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAYL5FSPGLSJ3FWSSSD3OBSTISL3ZUPQPK6WZZFV5CWTTUGEDGMLKRE2" + "address": "GDFQANUBHPW5AXMAGMEEXBKTGWVC676LAKLORY6BVKNT7PMTFIPGROOI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a3cb019bb285bbb7e98bb0463dc68e5f73f0122ddf76286bd75516e8ea741ae3f9eca64da840e8a9d975f0e5b63aa9b563a1cb26c6865628306ef2e95005ad30" + "bytes": "db485bc61e7a2b3633ae04e22c40fa0e234ad0dc95613b1837f3ebff666a6df074d4385259a35757db959bc1a18f1a33ab4e5374c0b1cf4e17bcc380c78c7d56" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c0e0aa3a8711f3e38d200ec3e720fa643ccb9186b36df534b91de5e3ec08385d" + "bytes": "c23b42081748884b297d07772c3e11ac7af6fe46b0de365c8a4f81c2311ad5aa" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c0e0aa3a8711f3e38d200ec3e720fa643ccb9186b36df534b91de5e3ec08385d" + "bytes": "c23b42081748884b297d07772c3e11ac7af6fe46b0de365c8a4f81c2311ad5aa" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2cf872a53ffef3b2ae77258e573c4c6c736df53e677fb6f6d76a23b7070c4e5d" + "bytes": "1fd647c106eb17ba54d0cad1e7f7d864b7a3fe7c5a73f8e8d4856e12df86b9b7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2cf872a53ffef3b2ae77258e573c4c6c736df53e677fb6f6d76a23b7070c4e5d" + "bytes": "1fd647c106eb17ba54d0cad1e7f7d864b7a3fe7c5a73f8e8d4856e12df86b9b7" } ] }, "durability": "persistent", "val": { - "bytes": "c53e689c625a22dc10a021f816af6eefe05e7922ceaff409710e5887ad20390c" + "bytes": "2b74fabcb8153e9acfe0efa62e4b9bb7e7fee4db5b4f0b7d37bb28991584ffd3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.224.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.224.json index f889a9b..0cbff68 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.224.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.224.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d26146ecdb956651c8f6daaae977168cf4e22c46cebe960a386d52991ba9f102" + "bytes": "1ae9deee49d10d33cd6ad70a5825726aab12fdb71e88fab7f5b0c05552962692" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d26146ecdb956651c8f6daaae977168cf4e22c46cebe960a386d52991ba9f102" + "bytes": "1ae9deee49d10d33cd6ad70a5825726aab12fdb71e88fab7f5b0c05552962692" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "v61kmhm71n28cs8o" + "string": "8784f52q7z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDO3UCYTXKMR5GES27N4EUU76ZCQJU3ZQOW4TVD2WA2F75HVR4TIWRR3" + "address": "GAUWPVXH2PY7C5UKON3XRG3SREF3ZBRQ6KSQZIBOVGV46MIESUPASLJC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "eca6b3728df3cefb337f2db3ae78446b2acc61b8959452cc3df8a26f6d74539dea665c71ebc9027c33de2294bcff0bb1cfaec51f93c87d3f6fd9e85bf8c8881d" + "bytes": "b2ef25369251dc6e2b5dfe5ae3930f8bd4695a4e73703266de0bc72a332bced7d30bc33a1eaba1c646760e05ec2664111c7766964d99b292599ecc0e7831eca3" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "7c384afbda148af02679944fa438e619748238a21f221476cd5cd06de77dc2aa" + "bytes": "82f2699a518a6b45403869ca7c8f8b6ec3fcb8971e940ef2944c3a0ccae1b1cc" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "7c384afbda148af02679944fa438e619748238a21f221476cd5cd06de77dc2aa" + "bytes": "82f2699a518a6b45403869ca7c8f8b6ec3fcb8971e940ef2944c3a0ccae1b1cc" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0ee8b4277b6486fcec037baa183336cd704c47df47257bda4b18af162b7e6791" + "bytes": "2a033408f51ecea2e713d362daeeb1735a06548aa075573cdbfc2815450dcad0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0ee8b4277b6486fcec037baa183336cd704c47df47257bda4b18af162b7e6791" + "bytes": "2a033408f51ecea2e713d362daeeb1735a06548aa075573cdbfc2815450dcad0" } ] }, "durability": "persistent", "val": { - "bytes": "d26146ecdb956651c8f6daaae977168cf4e22c46cebe960a386d52991ba9f102" + "bytes": "1ae9deee49d10d33cd6ad70a5825726aab12fdb71e88fab7f5b0c05552962692" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.225.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.225.json index c58710c..02537af 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.225.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.225.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "32b9c0f69828d0fe6a78bd96f095a601b5d22129ed53731d54ce57d55984cc77" + "bytes": "fac985b92d47176ba766ca125575161a78b68197020934d42d8f7376e90b20c7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "32b9c0f69828d0fe6a78bd96f095a601b5d22129ed53731d54ce57d55984cc77" + "bytes": "fac985b92d47176ba766ca125575161a78b68197020934d42d8f7376e90b20c7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "01qe2v5yi37z5vwp4j8777txo8943" + "string": "5u2k3971z992zvm88lc" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBQV3FD3K5KVH443L7RL7MQAS6WCMABFBOWYW5RXIIQFIJUONT6MTMOK" + "address": "GDY5E6XOKMSW4J2QFKQMX5CH7DV5LGSFDZRQVWN2SNTSYPN7VB2HC6DZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8c72ee57454ee444d2ced63a1fb30fdc96b8e2d4932ff068b205695a1da365e334f9e7033b4ce6139b2b3884e431aeae6156226cc05dad2b5dbdcd7e4f2b2e70" + "bytes": "98cdc35e688a7289a4b1b78a25f2d79b6a2d910028f8b9c5483ebcb964d7c35ac518b2535be83a18defcca5f07c8f70e0a4a56966f44bf1366113c21aab4476d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9f57a5f95a37a7f622eee76a19823b0e92e90d27a99a4b25903d24478d071527" + "bytes": "00ba4eb4a3fcaf7e60911d620561f8878a6781c3ab9a08f947f8d333994d77ea" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9f57a5f95a37a7f622eee76a19823b0e92e90d27a99a4b25903d24478d071527" + "bytes": "00ba4eb4a3fcaf7e60911d620561f8878a6781c3ab9a08f947f8d333994d77ea" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "20d95d78376270f01631354ff47d4fb52ee38a0b3b56607029b7171efc293f6f" + "bytes": "5d069f76eef12a4377e03806019073eb159e95dcea64a5cc25586f4fcdad3094" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "20d95d78376270f01631354ff47d4fb52ee38a0b3b56607029b7171efc293f6f" + "bytes": "5d069f76eef12a4377e03806019073eb159e95dcea64a5cc25586f4fcdad3094" } ] }, "durability": "persistent", "val": { - "bytes": "32b9c0f69828d0fe6a78bd96f095a601b5d22129ed53731d54ce57d55984cc77" + "bytes": "fac985b92d47176ba766ca125575161a78b68197020934d42d8f7376e90b20c7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.226.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.226.json index 236d8e8..e4c1f53 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.226.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.226.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "49e53227eac9c8b67af64eefe85cbc55552a63fc9ff49ea576740e2f63547a1b" + "bytes": "3bc09e2d5b6917766d23e242659c9f99c8958d05b157ad63b3a41ff1052c0a04" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "49e53227eac9c8b67af64eefe85cbc55552a63fc9ff49ea576740e2f63547a1b" + "bytes": "3bc09e2d5b6917766d23e242659c9f99c8958d05b157ad63b3a41ff1052c0a04" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6qgl5028hqn8gn" + "string": "8q085398631036k" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBFSTMKL5D6OD4SJXYWEXMPK6HUXHIMHU4JSJHSMIPM6BEF7ORD666J3" + "address": "GCEGOTJMVHUEU4DM2SQ4SWVAFGOJ4HJISJXDOGFWBV7MCSRKXD2KLIWI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5c60002cc416571f4a8cf77d2898ff27ba6bee4d38fdb97fc3d30a99f12e9865188af60347170cab9950b6f6728c6b6f083a816942cb20d15d16256727235ad1" + "bytes": "c01954f65d785e7a8a29cb01af8da8b706ed95f693b5ad47648d2722480a4e21139689f342599c9f6499a116d2c4abde626c84e4109ce384bddb493a5e10c666" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "185ee120b1fa25c20a3e125b74ad6e76e72ae968e8d8ae67be7646816e2e74d0" + "bytes": "d9da8624a9eac64b774fa44fef6e260268f27450c0d07c03b4976dbe7ca92c93" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "185ee120b1fa25c20a3e125b74ad6e76e72ae968e8d8ae67be7646816e2e74d0" + "bytes": "d9da8624a9eac64b774fa44fef6e260268f27450c0d07c03b4976dbe7ca92c93" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "655af05f96235bab1fe522068bdbaf16f655d2a076d49d7e972a8d0e44479b91" + "bytes": "4ec2dffe1927c2b204de223965936bff07d64dea555fe1588e1a6a029e5a7b09" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "655af05f96235bab1fe522068bdbaf16f655d2a076d49d7e972a8d0e44479b91" + "bytes": "4ec2dffe1927c2b204de223965936bff07d64dea555fe1588e1a6a029e5a7b09" } ] }, "durability": "persistent", "val": { - "bytes": "49e53227eac9c8b67af64eefe85cbc55552a63fc9ff49ea576740e2f63547a1b" + "bytes": "3bc09e2d5b6917766d23e242659c9f99c8958d05b157ad63b3a41ff1052c0a04" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.227.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.227.json index d7dd0c1..00bdfba 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.227.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.227.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "020d2083259579586bbee5c2dc274ac5b7f4a2dcff73ca274987511da0707049" + "bytes": "25f749fcc1a7e4b5d7deb60d97673d75efd0e99a6b9045f26d9de33a2100bb7e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "020d2083259579586bbee5c2dc274ac5b7f4a2dcff73ca274987511da0707049" + "bytes": "25f749fcc1a7e4b5d7deb60d97673d75efd0e99a6b9045f26d9de33a2100bb7e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7x3egy2zos4009jdn7" + "string": "n3e7gl77dyx4a439p" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCQRSKZDL5IOSY52DNG2JWOJUANJ7MURU3LZFAZICLBINT42GZ24RACC" + "address": "GBLIIQRH3PFMLSOLA7WVBPCQC5RTSHXQ3DMTRDFR5GNETFROHQ7QFPHE" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0dcda9a9815931fcd9d3f98b620f90f693f5e54b4afe553e30cda864872cbd512073b4d8aa9402d2ef668636e4ab5e61c46f359626f1f52e3adec802ecb4b6bf" + "bytes": "7de20ba8aefe45b696269d57277895d1a11263bbdeb83f058de56d4c018a0d0dccdbd16d62d80046415c3d550246a1ffdb0a58d9a74e196df6f0873cbabda4d5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "60857d8ede0891c3506404b88ca041e5bc29956f19f78aa9eeced90809fe9e44" + "bytes": "c3d1204b4000aa6342ccb47c82c9649957bd4dc85c4c665173a21ce1efdcc2e8" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "60857d8ede0891c3506404b88ca041e5bc29956f19f78aa9eeced90809fe9e44" + "bytes": "c3d1204b4000aa6342ccb47c82c9649957bd4dc85c4c665173a21ce1efdcc2e8" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "776b1d489892c55ef5feb978c15332df2a63aa97b351c6388e99fe1dd77ef676" + "bytes": "84133b15b79473673cd2c0848ff1ce353cbd7e6bb8930a687459a7f0597d1972" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "776b1d489892c55ef5feb978c15332df2a63aa97b351c6388e99fe1dd77ef676" + "bytes": "84133b15b79473673cd2c0848ff1ce353cbd7e6bb8930a687459a7f0597d1972" } ] }, "durability": "persistent", "val": { - "bytes": "020d2083259579586bbee5c2dc274ac5b7f4a2dcff73ca274987511da0707049" + "bytes": "25f749fcc1a7e4b5d7deb60d97673d75efd0e99a6b9045f26d9de33a2100bb7e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.228.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.228.json index 844a9ce..acde219 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.228.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.228.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "242741f77403ebf663bc651daeae943713cff8f157e641ae54245c83f7590195" + "bytes": "8f0533758923872df22043a3254539bc21b23de7c76e9fe031d35d2e3a913776" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "242741f77403ebf663bc651daeae943713cff8f157e641ae54245c83f7590195" + "bytes": "8f0533758923872df22043a3254539bc21b23de7c76e9fe031d35d2e3a913776" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "t7farw17e0v4mqcuvq393thcjy7" + "string": "u6cj4j" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBTZHN4ZIWEDP666RMRNPVDOXYM5HFMSYE6KPSDNPUV7T2R5KFXKGRSG" + "address": "GCQKVROGZDI2ZFE5L3N7KS2M3ZXIJT56GAPSXYBQ2NTAXBCVNCTOU44A" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2e7edfe3ba24ce239819979c947fdeaa78b078003472a5d6d93fea4d3885e8880e848fcbb7d725cea198834cc51d796526cb6ddf3fe516d927926f63e9531bd6" + "bytes": "7c3207904bda3f603f5c6ea58a0ed0602b75df24018fa39f33601c4632dbdd1fd1a6a97c9e718ec6bbde3e5981167c2586740ee7c16e5d1101848dcbd8d58220" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3aa073ca988eb25511f6d9a26a793e7ad67c66549e48547e4795e3614e6a727a" + "bytes": "e006fd6dfd2a06ca77c52d1b91e04671408d03d9316f2634d22fec91bbd5f88c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3aa073ca988eb25511f6d9a26a793e7ad67c66549e48547e4795e3614e6a727a" + "bytes": "e006fd6dfd2a06ca77c52d1b91e04671408d03d9316f2634d22fec91bbd5f88c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "17d70de37ad1f788c2e2b3d0e87bff0c9fb728816c410c43ec82c7da7d32ee3f" + "bytes": "f145a602cc2105bb7a314101317f833d08b7e960959a33ba477ceee942b93b5f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "17d70de37ad1f788c2e2b3d0e87bff0c9fb728816c410c43ec82c7da7d32ee3f" + "bytes": "f145a602cc2105bb7a314101317f833d08b7e960959a33ba477ceee942b93b5f" } ] }, "durability": "persistent", "val": { - "bytes": "242741f77403ebf663bc651daeae943713cff8f157e641ae54245c83f7590195" + "bytes": "8f0533758923872df22043a3254539bc21b23de7c76e9fe031d35d2e3a913776" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.229.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.229.json index accdd9b..637f69a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.229.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.229.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8b57d6aa2a56009179c8a33fe6bc0289a4047bfe4fd459df1bb0d37c5cb84b33" + "bytes": "ad32c13ca419e711c323096fe1f14bc338e7aa749641874f467f78e0674e97c2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8b57d6aa2a56009179c8a33fe6bc0289a4047bfe4fd459df1bb0d37c5cb84b33" + "bytes": "ad32c13ca419e711c323096fe1f14bc338e7aa749641874f467f78e0674e97c2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "69lp9jl915fv66f43974w" + "string": "jtmaop9923x68bpau87o8s0lgshu9lg" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBE3SC63EFXPDQBTXZQJUSJP56YAISMQVRH4HJZEEDHXZARMJRHTOYJV" + "address": "GDK22UWS3VARKECCSSER252JX6IVTA7WULY227HSMOID2G32ZPH7SAKI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "79ae3d4b13efdf08a50ad9c37befcb4a1e444b920f1652da398ba70e25b54943ebfd6e5bf5c021c9ceb13ae852ef7755255be66db719e0bb8ca737b5cae6cbb9" + "bytes": "7ad09c030cc2fc3e787e392ea8ee65f79227d1e4b85c75e8cd7cec69d778cb2a78f6daf0f2c3e0c7fe4d2ba17fa82bd116a25bfb92dd5934dce0e905f2140cf2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4aec45fa6b9b5d81be1630bb95e58a8334bb07713d71130e4b53e55ad5485a2a" + "bytes": "ebd303ed8397ded70e2c7287ab70564070651b7bc6b81b3d8e6921c4516da525" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4aec45fa6b9b5d81be1630bb95e58a8334bb07713d71130e4b53e55ad5485a2a" + "bytes": "ebd303ed8397ded70e2c7287ab70564070651b7bc6b81b3d8e6921c4516da525" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "59f51782088c10af5dd691929cfaa3ad5c6617d5038597356a4c418cf60edc12" + "bytes": "805be865d10072fc6a33df9bcc1f62e8ac8e8ce1ddfbd872fd5ee7ab96e25b9b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "59f51782088c10af5dd691929cfaa3ad5c6617d5038597356a4c418cf60edc12" + "bytes": "805be865d10072fc6a33df9bcc1f62e8ac8e8ce1ddfbd872fd5ee7ab96e25b9b" } ] }, "durability": "persistent", "val": { - "bytes": "8b57d6aa2a56009179c8a33fe6bc0289a4047bfe4fd459df1bb0d37c5cb84b33" + "bytes": "ad32c13ca419e711c323096fe1f14bc338e7aa749641874f467f78e0674e97c2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.23.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.23.json index 4ba5d21..1f3e713 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.23.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.23.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ed5782d4e1b7c90ae8bc63a19b287ed8ad8c5d4511b5bb624b6bf3835a4b21e7" + "bytes": "68fbca80b0d9a86f7c4447685a1776a99aba6d4d6d6c9f0686644b6f2ceb4df3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ed5782d4e1b7c90ae8bc63a19b287ed8ad8c5d4511b5bb624b6bf3835a4b21e7" + "bytes": "68fbca80b0d9a86f7c4447685a1776a99aba6d4d6d6c9f0686644b6f2ceb4df3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "r1551a50i2a615g622nqhdax60ae5" + "string": "54p18h9gal6r33445hj5qnc2e" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBZER6BGZIQZMEQ5HKYOMT4KATEAMBWQNV4ZCUZ34DUFQCPEBKDDBXLD" + "address": "GAKBYF6D52YRVY5GMGMY7NDRID2KTTHO56AVP32IUDBV5RTKRXU5DQHB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1eab47eaa3f8f28e46b52970a1711dace3e594f594a20448b9a4acc5e0dcab57cf12e5d9fe63636fd336dd82a58c05b5c5ecdf5ae7a7d506ac3ba2726edb4156" + "bytes": "2ad470faa90334d8e20022bae6fa697eec06c994b03d966f70103f5816355164fb746cdce194476e0a08f5050ee12b47898bf9cee70913c52ac35b72eb60edf2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "51b77676a521a89c01e5e1aa28f422e9ce151060d6926446d1aff3e0b2fb64ea" + "bytes": "2a6a6a582f37bd5dd310833090e91b249b3506cd50f3372cd4a8fef545b3d77e" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "51b77676a521a89c01e5e1aa28f422e9ce151060d6926446d1aff3e0b2fb64ea" + "bytes": "2a6a6a582f37bd5dd310833090e91b249b3506cd50f3372cd4a8fef545b3d77e" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b8113f21089743a101d1890595e72cf7fbf66237dba6b7d236384e2e90ee4b1c" + "bytes": "81b001865d1d691c0b68dfb56dac64f51de3bffd0af57ac73d7cb6d329bcd99c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b8113f21089743a101d1890595e72cf7fbf66237dba6b7d236384e2e90ee4b1c" + "bytes": "81b001865d1d691c0b68dfb56dac64f51de3bffd0af57ac73d7cb6d329bcd99c" } ] }, "durability": "persistent", "val": { - "bytes": "ed5782d4e1b7c90ae8bc63a19b287ed8ad8c5d4511b5bb624b6bf3835a4b21e7" + "bytes": "68fbca80b0d9a86f7c4447685a1776a99aba6d4d6d6c9f0686644b6f2ceb4df3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.230.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.230.json index 6104a88..4c040f5 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.230.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.230.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ea2003a901552f8bd5a5b67851675f0376b6d2884260e1936ea383c3e3fa7629" + "bytes": "6b55b30be3e12d54a9e08aa6b319740a350ecdd27b3e4c2402526e8a90f388aa" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ea2003a901552f8bd5a5b67851675f0376b6d2884260e1936ea383c3e3fa7629" + "bytes": "6b55b30be3e12d54a9e08aa6b319740a350ecdd27b3e4c2402526e8a90f388aa" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "adjtheg6sncv5jklov7ua7z350d0e7v7" + "string": "9m20x7ov8gvtin8d6ef66ib9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAJUTLCUF4OHR55DHHRZVCXWD3JT3DSXVTGZTURLG5G2KBLD2NWCWFKX" + "address": "GBEZUU334TYRTRP7TTWB3YTZIWDP2RJ4AYBQW3C5BOOJNB3YAHPSLAYJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f434d7a01c63c3101e447486b134d56373923dca28c176161dd7f4f32398d117b199ab8aa579f5505d7c3134a014ac4d77b410ef5f33d73bc70159e7900b2704" + "bytes": "ee19c970e52df45c2e975763042a5cd73c13722d1c5861febfdd3166c11b5f4b618f34661c0374c866bd3360bf2446bcccb35bb0c198c14bcf58d8c27301400e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "67b565e791c6c4ea921731da2992b9b95f9beddda9fa13586c4ba9a04a59012b" + "bytes": "58a0705b6652e3ae5b62747908a53b3b87a2285c6c500bac95c9ea1617993016" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "67b565e791c6c4ea921731da2992b9b95f9beddda9fa13586c4ba9a04a59012b" + "bytes": "58a0705b6652e3ae5b62747908a53b3b87a2285c6c500bac95c9ea1617993016" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1f80d17962287ed94ae8fe9f5f75bc7718e1188894d676f3257fd334eaa0ad07" + "bytes": "856860e52a7f3b935885578f9525231a478422f504ff7335bbc556ae34e2ec7c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1f80d17962287ed94ae8fe9f5f75bc7718e1188894d676f3257fd334eaa0ad07" + "bytes": "856860e52a7f3b935885578f9525231a478422f504ff7335bbc556ae34e2ec7c" } ] }, "durability": "persistent", "val": { - "bytes": "ea2003a901552f8bd5a5b67851675f0376b6d2884260e1936ea383c3e3fa7629" + "bytes": "6b55b30be3e12d54a9e08aa6b319740a350ecdd27b3e4c2402526e8a90f388aa" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.231.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.231.json index ce28af1..b13f120 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.231.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.231.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "48807380e01c4ccf395c5c967fe67b00f427d52296e2aafc25f99729004940fc" + "bytes": "31957bede1f8f159357c0cbd41a4460024119d1fce99f286f406ccc78f3a867f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "48807380e01c4ccf395c5c967fe67b00f427d52296e2aafc25f99729004940fc" + "bytes": "31957bede1f8f159357c0cbd41a4460024119d1fce99f286f406ccc78f3a867f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7yl06wk20p9t08hwzjjr5ct3o1" + "string": "yf6l4d87zd6" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDYAHQHX5VFKB5F6WYKTBQEIWBPTQOJF55PPY4CHERSNRB6VUAEFSBQG" + "address": "GBIORBVVZVQ53MJML4Y4ICP4QSX2PUWGNLGRBSY3NDTPGQEMZZ7X4DMH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f38c72d77a3353ec439d6fa9bbabed9c1ec66d2700f14d0b2f99915852c2d29efe0be8bb8966b09f657a36cfdfc53c0a7ddf7acb15363ebebcd3a843f8764bcb" + "bytes": "b81aff41dc42df7f721e70585816aa9ab363430c9a14acbd194d28bb010c6ea69fd54265b2dad0f11def161dcdd9d4c10344ee68ec88f26ae183121b3996d087" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6ac5caea0c39423e6cfb9684805e1b439fe3d7fdd81aa9a3af4157ae9cd6c049" + "bytes": "ec660fd53c53be6561dd2d96abd89d3b572f346e5c8703e140186b0620637836" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6ac5caea0c39423e6cfb9684805e1b439fe3d7fdd81aa9a3af4157ae9cd6c049" + "bytes": "ec660fd53c53be6561dd2d96abd89d3b572f346e5c8703e140186b0620637836" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "17826218599a07dce6d8718a041926a2281f18782a278d792ea6012c17ddc2c9" + "bytes": "3672863fc48009e960c0b9a019c450716fe033d7ae4acf9c2c837374059e1be7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "17826218599a07dce6d8718a041926a2281f18782a278d792ea6012c17ddc2c9" + "bytes": "3672863fc48009e960c0b9a019c450716fe033d7ae4acf9c2c837374059e1be7" } ] }, "durability": "persistent", "val": { - "bytes": "48807380e01c4ccf395c5c967fe67b00f427d52296e2aafc25f99729004940fc" + "bytes": "31957bede1f8f159357c0cbd41a4460024119d1fce99f286f406ccc78f3a867f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.232.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.232.json index a946aa2..bf9bc8b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.232.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.232.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d84d1fe10c3e66977d0fb991ae323778916de74ce6864aba376d4a46da0f072d" + "bytes": "7eede5aa62ef874cd7426b8ba778bb72ee5b61d071e7f27c611f3f5fd13e5652" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d84d1fe10c3e66977d0fb991ae323778916de74ce6864aba376d4a46da0f072d" + "bytes": "7eede5aa62ef874cd7426b8ba778bb72ee5b61d071e7f27c611f3f5fd13e5652" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "2hdo7n13ihc5" + "string": "kzxdz" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBEB3EOMRDLT6GTYMPVTNLXY4FAOKHJSEPISUATJDGADYQGR7Y2U6FQS" + "address": "GBRU6NJNEXEUV6TSIUMNK67S6HJQOLDWD3HLPH3GHW7OAAAQWD6DN6PW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1cd7d852f000192c9597bce87737d4b9c4b78210be9089e61ac9988c1f95c7a55e51d02269acc1cf2a7c72d18579c11876c6fb94e2b07702bfa333bb69209901" + "bytes": "19e7484835e5985318920130b10f76e11d3b7fd24ecaf76e9fc359e305bfb865630155349865bfcaa2664377b28fbe919110df827241a459d8a684a4c7ce35f9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "06cbe12c0be0ab3e9e399bb476d0fc9b3cd97e847fe3a6c0dbdc70edf17ed148" + "bytes": "e0a039ac4a9672bbc9e5ad3c3d077beaeef78698a843ed621041b4ba846a282c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "06cbe12c0be0ab3e9e399bb476d0fc9b3cd97e847fe3a6c0dbdc70edf17ed148" + "bytes": "e0a039ac4a9672bbc9e5ad3c3d077beaeef78698a843ed621041b4ba846a282c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a3ca43c042958862e73c9b89f56d17f69153bbea9912119bae5ea36e8c8fd596" + "bytes": "cd780c32510005581fd8cf9eda34e722b5c1570fd8e01f04c0d196f2252d0246" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a3ca43c042958862e73c9b89f56d17f69153bbea9912119bae5ea36e8c8fd596" + "bytes": "cd780c32510005581fd8cf9eda34e722b5c1570fd8e01f04c0d196f2252d0246" } ] }, "durability": "persistent", "val": { - "bytes": "d84d1fe10c3e66977d0fb991ae323778916de74ce6864aba376d4a46da0f072d" + "bytes": "7eede5aa62ef874cd7426b8ba778bb72ee5b61d071e7f27c611f3f5fd13e5652" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.233.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.233.json index a6d89b9..4788612 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.233.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.233.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "988b3e03eab4876ef72549254837b9973a02421103c45c7a9c8da2338ef8e97f" + "bytes": "2a1f74e749e462da440976bf8ad9824cf7ad946e8be7fa6ec75a5c6dec9caf25" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "988b3e03eab4876ef72549254837b9973a02421103c45c7a9c8da2338ef8e97f" + "bytes": "2a1f74e749e462da440976bf8ad9824cf7ad946e8be7fa6ec75a5c6dec9caf25" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "415li1" + "string": "ppxxp7i8u984wv0orkrg" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDU5ONPP2DL7SNDHXCMAXJRHRC7DCOPPQNWDCZ5UJUVZTWRB5P3AB2GN" + "address": "GCOXYKDTXSSY2BRKW72BPTSKIGVPUANJHLKP5EPBXJYT2L3HCUZ2DQTX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2b57619c83015ff458dd6836cebdf1d53c43e08b7b46e20540363b4f3e9ee246545318daffe42d5526a27778cbaf12668985c858e16535614a13dcadc1b246b9" + "bytes": "96ec3c2b6bc51aed6f60daed040dc19ed9b53f0cf4bf062f99d7afc7dbc598c7eeaf0e34e03c16f5122ea78b6715d84a3c0d0ce986c584595e245c0b69fc577d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1ecd96edccfed8aa6eb63fd3dd7cf5f9d2bfd1cdfc7d69c32d00d9600acf77c0" + "bytes": "603fc501c672db60f39fa1b98c570f308ec78b3cfabbfc9917f075baf559c531" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1ecd96edccfed8aa6eb63fd3dd7cf5f9d2bfd1cdfc7d69c32d00d9600acf77c0" + "bytes": "603fc501c672db60f39fa1b98c570f308ec78b3cfabbfc9917f075baf559c531" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6cd9ab195bc67e76c58a34441418a5a8428c4268ff418fa3f94ea62e473471d4" + "bytes": "c81ef91c87d7976a23d1fd75cb0b93e8d22828a8588071fa9ecd3b8ca8d93ea0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6cd9ab195bc67e76c58a34441418a5a8428c4268ff418fa3f94ea62e473471d4" + "bytes": "c81ef91c87d7976a23d1fd75cb0b93e8d22828a8588071fa9ecd3b8ca8d93ea0" } ] }, "durability": "persistent", "val": { - "bytes": "988b3e03eab4876ef72549254837b9973a02421103c45c7a9c8da2338ef8e97f" + "bytes": "2a1f74e749e462da440976bf8ad9824cf7ad946e8be7fa6ec75a5c6dec9caf25" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.234.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.234.json index e0da5c5..f82360d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.234.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.234.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ec47eef3941e920c110361814c52c2312a8f089bd5fa8d6144b994efd6fc7962" + "bytes": "15724d96e99b2df66d918e3f60b7002e6c29d48b3b7df4733d79b0087e739d89" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ec47eef3941e920c110361814c52c2312a8f089bd5fa8d6144b994efd6fc7962" + "bytes": "15724d96e99b2df66d918e3f60b7002e6c29d48b3b7df4733d79b0087e739d89" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "p9b8bg05i2dl89b" + "string": "pbmr5emjyh86i0h882686lu6zo" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCMJU2KDVBSJNMM4G25GGNF6EG3FXKT2C4QKWYV6L55GDKVN3B6ZKFKH" + "address": "GAUWS6DFZSZL6NM6KRD56WFNKTJHJ6DP2P2KFI72ZHCAW3FIK36BWE7E" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c9ba407de3880cf3faa1ddfa9493864e86e5e0761f10f273d3b1b3e734f20f21860b9d423238c1c433f45f989f12c1c5565b1ca262d086d62fd96bf1e806c5db" + "bytes": "f5cba3307fe3826e6516c2fd12aa0c03889b652d7a47c5c9c0e98dd63c039cba27841a360f1469874dbd2ea4a22d0dae56dc5d95224a277613284e216c6069f4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a0271f4446c28c907df4dc5850b153d1aa006c25de6f01acbe2444c8e737960a" + "bytes": "c8492cc6bb8dd833969894ebfccb46c4ffb40dc5d846b6a7e492f5a2ddceaaba" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a0271f4446c28c907df4dc5850b153d1aa006c25de6f01acbe2444c8e737960a" + "bytes": "c8492cc6bb8dd833969894ebfccb46c4ffb40dc5d846b6a7e492f5a2ddceaaba" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "709a9d14dca6e15948b85ed57acc46c56a206837f27229b5947861bcf27e459c" + "bytes": "520039606c63d735b963f0a8605d66903ddc94a9113a29515d7b04c28ce58efc" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "709a9d14dca6e15948b85ed57acc46c56a206837f27229b5947861bcf27e459c" + "bytes": "520039606c63d735b963f0a8605d66903ddc94a9113a29515d7b04c28ce58efc" } ] }, "durability": "persistent", "val": { - "bytes": "ec47eef3941e920c110361814c52c2312a8f089bd5fa8d6144b994efd6fc7962" + "bytes": "15724d96e99b2df66d918e3f60b7002e6c29d48b3b7df4733d79b0087e739d89" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.235.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.235.json index cb7f827..765e4f2 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.235.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.235.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "91d65daf2ddea3e2042a68d0bdeb1e107c5ec5e5c14fcd5e5622e2a6f4cdd8df" + "bytes": "00599acb6beecadf1abc0c3784b5aa8140ee30a4525f855da4a5287abc67487f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "91d65daf2ddea3e2042a68d0bdeb1e107c5ec5e5c14fcd5e5622e2a6f4cdd8df" + "bytes": "00599acb6beecadf1abc0c3784b5aa8140ee30a4525f855da4a5287abc67487f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "wvz5014enc2h8rw3wtk663l" + "string": "bc2khew11oq2h9232v6" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBHVKYQMPZGP2BPYXP4RHIO37ICV3GGGZVKFWRC7QKR5CWKWWHSCDIVV" + "address": "GAPPOD7FVRXIQY2QH6T3JKMXCP454SV5LC4MGSYTSWVQXJAG737CM646" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "413d47f14fdbe6e3b9fa7f1902379eac6aa2e8329311fcb9a4d2b02ebcdd7eeca4af7d3a27af03e55346f618905843bfb6d02ec3ddea25f31a2c1b186d567f2c" + "bytes": "20cd5c1ed303d853d95d39cb4f578485589120c7d6549f3ffe47757064aa64d9d48c616168aa19f50dc7453894075f80f50b8016d469d521e4cecf47c08d7b46" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0afd86b083d86ff6ad59b3ce7c2609ff4a9bbdb7ef46c2d5d1d6767f531e3ffe" + "bytes": "3715379a64b1e2f3923c2c8e7719cbcf4c5f6add43bce61bf694c0a00f337f18" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0afd86b083d86ff6ad59b3ce7c2609ff4a9bbdb7ef46c2d5d1d6767f531e3ffe" + "bytes": "3715379a64b1e2f3923c2c8e7719cbcf4c5f6add43bce61bf694c0a00f337f18" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4603401a1e474aa1eccf17963442b37efefbe0b16acafe4d5a9f0a3c6fad4be1" + "bytes": "b5fb6965451ff3f7836a6f5f731aabcd98642af50202ae8fc70d732e0719973a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4603401a1e474aa1eccf17963442b37efefbe0b16acafe4d5a9f0a3c6fad4be1" + "bytes": "b5fb6965451ff3f7836a6f5f731aabcd98642af50202ae8fc70d732e0719973a" } ] }, "durability": "persistent", "val": { - "bytes": "91d65daf2ddea3e2042a68d0bdeb1e107c5ec5e5c14fcd5e5622e2a6f4cdd8df" + "bytes": "00599acb6beecadf1abc0c3784b5aa8140ee30a4525f855da4a5287abc67487f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.236.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.236.json index 2d4afc6..99e550c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.236.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.236.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "28c2b31c344dfaa4b82b828f9c223bfc1069ec01d101f331fd7c55a1f1351427" + "bytes": "19deee772a71ee1d9c35722b521eb289f15b9aa623fad2980b3f10adcd313d6b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "28c2b31c344dfaa4b82b828f9c223bfc1069ec01d101f331fd7c55a1f1351427" + "bytes": "19deee772a71ee1d9c35722b521eb289f15b9aa623fad2980b3f10adcd313d6b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "8bewov2xiq" + "string": "l4c38h4l6slu98" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC46GNDV5G2OIFOMW3BFMGFX73MWORHYD5ICFLDZJORMAMTTDWP255S4" + "address": "GBSITU7BS5SHL76GT6TOFDY7GBDFGRTHC7WEMGA5TFAZHDYGKEYXHHYC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ff7d96370b9e67676f1403281f2d6418d4a77e10f704546854d9df489abfdb4e51664b5a2b17275363a96463f0ba4bb18f652ccd32109e1aa60cc4ae15615856" + "bytes": "d7c90f401a7f29f82ac74bc89531735b92023ce490bc252588c4aa2257445856f2c59aba69cc5418543d30631ce7bb2483cf0a38aeeacfd3d6caca31c19fb3de" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "7dc59a172eb2faebdd583090d1ae8fa0ebc72d7211506f8e935fb89c7c513872" + "bytes": "bddca8b8a98324911859d068a1c1c427757057d8bafa5486cb77e6e1ff9598e9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "7dc59a172eb2faebdd583090d1ae8fa0ebc72d7211506f8e935fb89c7c513872" + "bytes": "bddca8b8a98324911859d068a1c1c427757057d8bafa5486cb77e6e1ff9598e9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c390542b19059ccb0fb70fc535840bdb1d97f82b8080bcad1513ca1f16e5a94a" + "bytes": "70060b423e848ab4a0f35c4e6180f4892454f4c6fd1a653b33cda4a6d42309d0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c390542b19059ccb0fb70fc535840bdb1d97f82b8080bcad1513ca1f16e5a94a" + "bytes": "70060b423e848ab4a0f35c4e6180f4892454f4c6fd1a653b33cda4a6d42309d0" } ] }, "durability": "persistent", "val": { - "bytes": "28c2b31c344dfaa4b82b828f9c223bfc1069ec01d101f331fd7c55a1f1351427" + "bytes": "19deee772a71ee1d9c35722b521eb289f15b9aa623fad2980b3f10adcd313d6b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.237.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.237.json index 306a231..2e16529 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.237.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.237.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c804ed8383f7f9bae01b50855f2cd195e51a7a947b6629860f53e5db2096dbeb" + "bytes": "ecfe1cf9a964992375951e76c92eadc4719e79b456fa776458ee26a8b9cdeba5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c804ed8383f7f9bae01b50855f2cd195e51a7a947b6629860f53e5db2096dbeb" + "bytes": "ecfe1cf9a964992375951e76c92eadc4719e79b456fa776458ee26a8b9cdeba5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "20ele60481v9e30" + "string": "k96c" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAVJQA3BIPKGVAIMXPNPV7JWD5QY3NUKGTNVBLVFOYSTQCLD2XT6PL35" + "address": "GDP5TSI2G2UIDTPVO2MX6ZAN4NBM5VXKB2V2IJRJYG6TXNXVLX6FETXA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "45f0cde3fadd6145a00f8360a0802ff4472acc56af28382967f00c1b3e1729a285fa3e3ad45034fd08d07864dfa1cf931cdaec4663200aadc88dfc5969858a20" + "bytes": "39b15ae1824a7a9ca829a88138c54a87df77a00927a19e386313663f212150535aefb14094af4e6985fc8a8415adc6935572d68cbbb028a70f60b3966666612d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3b0cda5c438d1936e10d56559a2042f5ba38eceb7bcd28e7da9956f2373ec4e6" + "bytes": "69a1b96f2f50fccf6fab60e1e7073184ae80afd2c2df9f587ea58afe5f7f40dd" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3b0cda5c438d1936e10d56559a2042f5ba38eceb7bcd28e7da9956f2373ec4e6" + "bytes": "69a1b96f2f50fccf6fab60e1e7073184ae80afd2c2df9f587ea58afe5f7f40dd" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "ded4fa33fa3769e4c7c517b4cfff7c618ccbf08595d5c485d77b0377ee8bc543" + "bytes": "6ef3dd4f0e0ae2eac80a8657118d3cce0f9774349f188cc954c22ca0f59ff95f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "ded4fa33fa3769e4c7c517b4cfff7c618ccbf08595d5c485d77b0377ee8bc543" + "bytes": "6ef3dd4f0e0ae2eac80a8657118d3cce0f9774349f188cc954c22ca0f59ff95f" } ] }, "durability": "persistent", "val": { - "bytes": "c804ed8383f7f9bae01b50855f2cd195e51a7a947b6629860f53e5db2096dbeb" + "bytes": "ecfe1cf9a964992375951e76c92eadc4719e79b456fa776458ee26a8b9cdeba5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.238.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.238.json index 7c6775d..1e85e04 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.238.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.238.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b651b615aaa122067873a1ebe549fae59a402b3f3659b90919c041247ac8793b" + "bytes": "a79bc1509cd6952ae26ebc0f46f8449c3323fc47b52d0bd3aee8343f215d233e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b651b615aaa122067873a1ebe549fae59a402b3f3659b90919c041247ac8793b" + "bytes": "a79bc1509cd6952ae26ebc0f46f8449c3323fc47b52d0bd3aee8343f215d233e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3197am15pe58ja8joopk754" + "string": "87s2lb8zeq7fn13" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD4673MLWS2Q7EENMYXPXDVATMNP74BN5IV52J7VJMAHXXGAC4ONJVGS" + "address": "GD2LSIGXQLVOCV67PHAD2YGKHLN6PUBP2UHGSYNQL27JKW7PE2ZHC46B" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3e1f354ccd6dc3f9bcdeb5df1cb2d7b4e0ababe54e89edf039229e6d4d3404555fc1e5c2053e21c8b0fdb05a9e0cee29c604c8632012bddae9eebf1c15ab3ecd" + "bytes": "95e30d4a6fcc42977af7a7d01ce23c75c4498e5280a2e188a41e57fd7f6248a2a31816d560245a29445af2012b8756de92e6e590b0f8e3cc75913dafa8c8f48a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f6b6abe520ea2365d0cfdab20b9ccd1dd088bb99d2ca38d903f90c1aac13b115" + "bytes": "a0789205d04527a0f87d85eaef5a72a26d78da7a9d2074173796974299870ece" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f6b6abe520ea2365d0cfdab20b9ccd1dd088bb99d2ca38d903f90c1aac13b115" + "bytes": "a0789205d04527a0f87d85eaef5a72a26d78da7a9d2074173796974299870ece" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f78eab2aacc8650d4b1e9d6e326289d9bd96ee7a3dc35ea201c03216e6c75eb1" + "bytes": "28180465d3f7638e00e4cdcf78b344a47d912180bc826faa6bf20337b3befb99" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f78eab2aacc8650d4b1e9d6e326289d9bd96ee7a3dc35ea201c03216e6c75eb1" + "bytes": "28180465d3f7638e00e4cdcf78b344a47d912180bc826faa6bf20337b3befb99" } ] }, "durability": "persistent", "val": { - "bytes": "b651b615aaa122067873a1ebe549fae59a402b3f3659b90919c041247ac8793b" + "bytes": "a79bc1509cd6952ae26ebc0f46f8449c3323fc47b52d0bd3aee8343f215d233e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.239.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.239.json index e379701..503492a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.239.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.239.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a4ab082cc798764606b11f5c6f4b7b468d9c76331bbd053a635f8a8fd2bfaaaa" + "bytes": "13fc402b69798650428e4a44a9629882135410843084bdf4383cf08265f26002" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a4ab082cc798764606b11f5c6f4b7b468d9c76331bbd053a635f8a8fd2bfaaaa" + "bytes": "13fc402b69798650428e4a44a9629882135410843084bdf4383cf08265f26002" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "n3h7il6p3957umt" + "string": "i3bywux79y14kkgsuq4jpv88br" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBYPZWEYC34HWEFB4N7VUUIANYJWXYF4633PN3TH4L3DMZP624BO2ZZQ" + "address": "GBHTBLIIE3JEP2ENWPN2QG26GHUZ7DDM3NYWHA6D7ZWV44N2YKNY32SZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "93eaf10c16c9bb70248fc2d50b157143d47f6d4a2948c1f6b165ac297469a84500ec3707134cf3bcb0479ad478f7dad23833ae759e8472c36b5d7c50accc2ed8" + "bytes": "89a236ea91a311b9b418d84bab0d316a85251d6ad32b4fcccf4bd708e494ee984b2bed9d53d69ec1d9a75c6f5d5629c78653dec6a5a829d474e72512e47e8340" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "89993bcfaebb6b2f0966e2ee9cb075bde03ce0f7f3aa1bbd10f27b5558a83688" + "bytes": "95e5d959886520c7f2f69c6ad768407fd93989a43969d28cba5c0313100304d6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "89993bcfaebb6b2f0966e2ee9cb075bde03ce0f7f3aa1bbd10f27b5558a83688" + "bytes": "95e5d959886520c7f2f69c6ad768407fd93989a43969d28cba5c0313100304d6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "25fd52178480ff651c8ad66ebac48d402a4547714d275ff7c7bc8830325b7cd3" + "bytes": "0732dc0d902c8094fd05facfcd06fcfd088124ebb7b1bbf1078c67efdc258ec4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "25fd52178480ff651c8ad66ebac48d402a4547714d275ff7c7bc8830325b7cd3" + "bytes": "0732dc0d902c8094fd05facfcd06fcfd088124ebb7b1bbf1078c67efdc258ec4" } ] }, "durability": "persistent", "val": { - "bytes": "a4ab082cc798764606b11f5c6f4b7b468d9c76331bbd053a635f8a8fd2bfaaaa" + "bytes": "13fc402b69798650428e4a44a9629882135410843084bdf4383cf08265f26002" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.24.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.24.json index c5a404e..d0094ca 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.24.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.24.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "249056960d2758d50f741dda641a032d681bc899bcbb210453533435eb9311ed" + "bytes": "1b10458e43e190bd8dfc9fe0d62fd569d52bfb770c16ee508c0af6e113ebdcb9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "249056960d2758d50f741dda641a032d681bc899bcbb210453533435eb9311ed" + "bytes": "1b10458e43e190bd8dfc9fe0d62fd569d52bfb770c16ee508c0af6e113ebdcb9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "561o3sm9ujwz" + "string": "4m66kjg" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GATKGFQ35YGK53ZDHYPSKRFKNBPRPZYVY45J7J2XUPRI2JGSIW55QO4J" + "address": "GCNYLTJQJHBI66RG3X74H3PT76ZCNZB2VW2J3KPF2ITKK23I2NOQUBTV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e3fd72a527fccb2c6cd6395ac7aa16f876bc365a8154b91c4f538e345036440122034ad507ec97e3a230a734440ca76ab1d2010d9c9f0dece0a4463804ef0909" + "bytes": "d67b5894e7506f1fed2dfb4ce164de34e7bfa4404d6755ead9c0a9b32db0e2f6cb0366a31ca9e2667cb744d0e4a27ef361b7a3da05b2097606f657d560b4f828" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4a5b5f8acfb68fa693ded0769d65df7ae54ea9ebfc3cb9fc19fe49ed6de08735" + "bytes": "f9a4a7b8d1ca783db312880d3a3c6ed9bd9dc39fe62a8951bcc450fe5c408d61" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4a5b5f8acfb68fa693ded0769d65df7ae54ea9ebfc3cb9fc19fe49ed6de08735" + "bytes": "f9a4a7b8d1ca783db312880d3a3c6ed9bd9dc39fe62a8951bcc450fe5c408d61" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "215aa76012eeaa5546382207856d9251623d51c9b1b327cf5bb78e21008fa438" + "bytes": "540e56307402462d09f61f7996d85bf115d5a3ff3a4626637a87263045692671" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "215aa76012eeaa5546382207856d9251623d51c9b1b327cf5bb78e21008fa438" + "bytes": "540e56307402462d09f61f7996d85bf115d5a3ff3a4626637a87263045692671" } ] }, "durability": "persistent", "val": { - "bytes": "249056960d2758d50f741dda641a032d681bc899bcbb210453533435eb9311ed" + "bytes": "1b10458e43e190bd8dfc9fe0d62fd569d52bfb770c16ee508c0af6e113ebdcb9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.240.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.240.json index b08959e..9d69989 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.240.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.240.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "8f57650b606b4c95202dfb6d785780a4111fde6a0933b700866165c3c0f53ffb" + "bytes": "51bd83b752826e6bf6da7c5d2e8d494db013e72763df2695cfc4751a2b2a830e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "8f57650b606b4c95202dfb6d785780a4111fde6a0933b700866165c3c0f53ffb" + "bytes": "51bd83b752826e6bf6da7c5d2e8d494db013e72763df2695cfc4751a2b2a830e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "vgs78" + "string": "a21o2xlqno6h9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAZDKBRA2OHFVNHD7BGFIJEWL34IMIDINLTK4BP7HSDWLL3R443EL7PV" + "address": "GDOQEOQWJFLQCESVBJLFXYM3SLYBYQ3RXEWUDZBQBCEDG75335THUZMD" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "316f5414ea84e1f45d67d9834376ad371011cd98fd311d915b7336ab2ec8556dcc794c2ebae596bbb83e5e3b6d10c17bf5c02432a61ce81bcddb34f5c4365f7c" + "bytes": "1ff358ac331555418b8beb1ed61f0dbb0efbf09cfc0f648ba4ad8f7afe9577e06ed884a105e43a6f32c96639ed76a9f4f960ef6766dc953a6aa31f775bb69765" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a5c9a4db5e36ca0115bdb4d216aaae62e94509c2bf23a3cc8246e2665f54ec20" + "bytes": "39d6f18aaa614256383bcd1694e37f10422de04f12f4a38f67168b3d728f6994" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a5c9a4db5e36ca0115bdb4d216aaae62e94509c2bf23a3cc8246e2665f54ec20" + "bytes": "39d6f18aaa614256383bcd1694e37f10422de04f12f4a38f67168b3d728f6994" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f1bbb8e1d33d1e948e029b8489039351dcd024a95761a5b84ae77f29b2ad5111" + "bytes": "f98a8a7e6b812257906988b84ec11cf97f1d9449668ba13afb96a17eebfda658" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f1bbb8e1d33d1e948e029b8489039351dcd024a95761a5b84ae77f29b2ad5111" + "bytes": "f98a8a7e6b812257906988b84ec11cf97f1d9449668ba13afb96a17eebfda658" } ] }, "durability": "persistent", "val": { - "bytes": "8f57650b606b4c95202dfb6d785780a4111fde6a0933b700866165c3c0f53ffb" + "bytes": "51bd83b752826e6bf6da7c5d2e8d494db013e72763df2695cfc4751a2b2a830e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.241.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.241.json index fe91c8c..91835c9 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.241.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.241.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0a910b53d2e8edc439b7aa6eef83345ec61cc6d8bb19d79745be81556e5c4670" + "bytes": "c1381e48cc3abe2ce9dcfceff2472d18424afc382c5c0978e5d5a67028ad4c76" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0a910b53d2e8edc439b7aa6eef83345ec61cc6d8bb19d79745be81556e5c4670" + "bytes": "c1381e48cc3abe2ce9dcfceff2472d18424afc382c5c0978e5d5a67028ad4c76" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "rba833w6t83040puph57zvpa39243" + "string": "1e9022ba240k5npxa2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAI3QLIPB2OUWKMXZ6UK7PG4S4UHLG2H6V54XRVNGI34KMZJJF3CER6C" + "address": "GASNI3WVGAJIQAZ6E2HVDW4MATOEHONMO3XP7OX3FAXFMHHTYOOBOIVI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b156745cc1df8a7230b92936c2a3efd837bafe56bc75a82f1657433779ebf90b9fa489a93d5bb3cbd72c11c7da84737adfc6e628aac669ac560d62bca2e25c2f" + "bytes": "4d75194c47f307948a289db5455844aeba22f6c2b7f49de0ee4103af9e0b5a84d704a319f2e997555f9d33be72c8ed76878b69abe96b294389c0a60d23d526f6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "77934fa83890a03af5ea7af1f2276a003cbf6d78463dc34e7ae62bea3680c607" + "bytes": "8bc367798ee9312db1327864e367fcd0309f58689b8b9a4995cc9eab46e57faa" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "77934fa83890a03af5ea7af1f2276a003cbf6d78463dc34e7ae62bea3680c607" + "bytes": "8bc367798ee9312db1327864e367fcd0309f58689b8b9a4995cc9eab46e57faa" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2e4fce580f304b5ee97c3bf054764f926a113ef76e9c6bed9bdcd1a350e1d2e8" + "bytes": "3749074d346b656aff4e0ccdad3d9effce893fad650a0e5b9b12ee14bb9359e6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2e4fce580f304b5ee97c3bf054764f926a113ef76e9c6bed9bdcd1a350e1d2e8" + "bytes": "3749074d346b656aff4e0ccdad3d9effce893fad650a0e5b9b12ee14bb9359e6" } ] }, "durability": "persistent", "val": { - "bytes": "0a910b53d2e8edc439b7aa6eef83345ec61cc6d8bb19d79745be81556e5c4670" + "bytes": "c1381e48cc3abe2ce9dcfceff2472d18424afc382c5c0978e5d5a67028ad4c76" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.242.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.242.json index 6a4c0ea..fb3f8f5 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.242.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.242.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "831736c07c8a77de32397030885f86e4ac76b15529a494b56aa0ae18a08304e2" + "bytes": "51e2a61e38f8c253ba2b8ed3e9493ed20b3f54d6f8f53246d12158a00a53e3d5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "831736c07c8a77de32397030885f86e4ac76b15529a494b56aa0ae18a08304e2" + "bytes": "51e2a61e38f8c253ba2b8ed3e9493ed20b3f54d6f8f53246d12158a00a53e3d5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "qbx47ni" + "string": "nncnbd986ck87dyk8u32x531leu7h" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBCPEQEVU45P3KSCTVTJINBZA2N43FNQHYLWB3EUQPNIIDFOFVHFMGLV" + "address": "GADKQZL32TNRPYPTC5VHGPJLTIBFARVZUPN5LYX54OY3CESDRI4EXURT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "123c16a558a92d398c4aaff1452e1d743152a930139a86633f0808d6390577fdcbde761c7833d495263481cc378a39df7254f04095c84d317285140cee74a34d" + "bytes": "4bfa863974bfe960c135ba02acc0ab8736db9be7338572c613c5b592cec6bf0e3fe0260c33c2d0620e1f0d05a05e48b442ff7c12e49ec346196c300beef9a217" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2b0c2780015b0208cd2fb791ae82639eb0718be3e03f9b104e78c4eb65841d2d" + "bytes": "0ab4e539de0b6abd34138e6b5cb705081d4191b0f3814b8d0e0079e500a6f763" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2b0c2780015b0208cd2fb791ae82639eb0718be3e03f9b104e78c4eb65841d2d" + "bytes": "0ab4e539de0b6abd34138e6b5cb705081d4191b0f3814b8d0e0079e500a6f763" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "04df314674edfa60bce38738d44b91c5275f4fc25e962bc7038ff265eac19461" + "bytes": "9782e09a2b4fa00f6ebbc9db3c1a50962703a4d102c642149c181929069f8a6d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "04df314674edfa60bce38738d44b91c5275f4fc25e962bc7038ff265eac19461" + "bytes": "9782e09a2b4fa00f6ebbc9db3c1a50962703a4d102c642149c181929069f8a6d" } ] }, "durability": "persistent", "val": { - "bytes": "831736c07c8a77de32397030885f86e4ac76b15529a494b56aa0ae18a08304e2" + "bytes": "51e2a61e38f8c253ba2b8ed3e9493ed20b3f54d6f8f53246d12158a00a53e3d5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.243.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.243.json index 634a8e2..6deef38 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.243.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.243.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "53dc678135e027dbffcec70b47bbb99d9648fd6e3e89ba5027b481fb0c3c96e2" + "bytes": "70b0e3c73d68bb52b781abc11c4de6e32bc393e67ecbf938f65916d926f8e1f7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "53dc678135e027dbffcec70b47bbb99d9648fd6e3e89ba5027b481fb0c3c96e2" + "bytes": "70b0e3c73d68bb52b781abc11c4de6e32bc393e67ecbf938f65916d926f8e1f7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "hhda3d96h7wd" + "string": "sdi90tmt96q38ub5s9ryz527f92y" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDYWNHPND3MLKESDTZUZAIRXWLCD3W46SCZPSQ23D6SA2JVGBFMP2MO5" + "address": "GDT3NMLRD2TSDWCEAH3FWGJGX64DEO4FDUQKHV7E5FQKYJQF3RIR4YHU" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bf767210c9d5dec1edae13460f21c1b6075206b91847865a5a2e7221c76983aab1631458191842587fee67a55bc8114c900ce600dbb3908b008ffd3c68ebb6b1" + "bytes": "5641c538d578856f9f1ea311373e14a1ad845658c9eb94d61281affb3dc369b3b855ffceb5f07890443efdf319e985f3c35ca1aff26be1d9f5574a3d67dc5be3" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "afbe9739a59e152c4c60486c292fed41c1e50eddf16856fe27bfe1b783ee72a6" + "bytes": "6a4791faeeb6d096270c9fb2481b8b70ad59be410e872f4ae0a6fbe23ffc6a5b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "afbe9739a59e152c4c60486c292fed41c1e50eddf16856fe27bfe1b783ee72a6" + "bytes": "6a4791faeeb6d096270c9fb2481b8b70ad59be410e872f4ae0a6fbe23ffc6a5b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "40de03c3a458a6e478dcee16f866c82964cfaec465c060ee55c5724aa24936f0" + "bytes": "4c7ef3047e54a73b6d8b6dd72119ceb336a4676f49557b98ed44d35c55cbee04" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "40de03c3a458a6e478dcee16f866c82964cfaec465c060ee55c5724aa24936f0" + "bytes": "4c7ef3047e54a73b6d8b6dd72119ceb336a4676f49557b98ed44d35c55cbee04" } ] }, "durability": "persistent", "val": { - "bytes": "53dc678135e027dbffcec70b47bbb99d9648fd6e3e89ba5027b481fb0c3c96e2" + "bytes": "70b0e3c73d68bb52b781abc11c4de6e32bc393e67ecbf938f65916d926f8e1f7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.244.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.244.json index f52c58f..03f8729 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.244.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.244.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "dbe765a418eb37a42edb38701f8944182339bac33b41c74d9a9001ec262f4202" + "bytes": "c069d2f5024e9a79da91e5456b711836d7feb665aede631f44b359e5d35f4bff" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "dbe765a418eb37a42edb38701f8944182339bac33b41c74d9a9001ec262f4202" + "bytes": "c069d2f5024e9a79da91e5456b711836d7feb665aede631f44b359e5d35f4bff" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1304q8f7rpw8zc5ui29f3upd4cc6" + "string": "cm292d3955q638ii895r5hm5d4mr71" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBYIG3OXGG7OXTBRDHKKJ34HPCJENNUF4HRAVROK4HJFD6MD47GN4FMS" + "address": "GD5LFTZDBXW643ZH4M4BNGKQTMP2RDP3ZFBS65QZ65AN37J6YJKEMEDW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ffd907f7e8a61cfe58b7a56421a0d4887d4892636b344ebebdbf373e45fc95183b41764b591cc556de21ac02547f5ba7c2a609c0f8b58d76cc0cbf8b1bd9848f" + "bytes": "c9317f3f61f696c1d4e14a9c6c1b0a709b2cefb3e49b8158ff11fa617ecfb7307d7d357cf106026ef6a3fb709042849110dec03a706d1d90a03cb820544c51e6" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4b4137dfa1b11cfcf99d3a03aac18b83117c0c15040cfc45162863e6e65b6fd4" + "bytes": "a62a423dce1fd84af2b152654059e3b1373befc90a4c35fd67b666692a4a6103" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4b4137dfa1b11cfcf99d3a03aac18b83117c0c15040cfc45162863e6e65b6fd4" + "bytes": "a62a423dce1fd84af2b152654059e3b1373befc90a4c35fd67b666692a4a6103" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "78f1522c97c41c0250be9798a78324f3a7f5f19b8da37a22f8d994f1b1b51799" + "bytes": "deac90f1a590e7107b9d09621821176b456b8d025957b956c032ef5ece19476f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "78f1522c97c41c0250be9798a78324f3a7f5f19b8da37a22f8d994f1b1b51799" + "bytes": "deac90f1a590e7107b9d09621821176b456b8d025957b956c032ef5ece19476f" } ] }, "durability": "persistent", "val": { - "bytes": "dbe765a418eb37a42edb38701f8944182339bac33b41c74d9a9001ec262f4202" + "bytes": "c069d2f5024e9a79da91e5456b711836d7feb665aede631f44b359e5d35f4bff" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.245.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.245.json index 1524173..e43bf9d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.245.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.245.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "392e00161d93114c817c8d9d6b9fd86c85f47f851faed7f54edc75ac69eebbad" + "bytes": "6951ead261dbcaab30e6a956bfd9f521d138258574a938ebd0fa3b2e04b68405" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "392e00161d93114c817c8d9d6b9fd86c85f47f851faed7f54edc75ac69eebbad" + "bytes": "6951ead261dbcaab30e6a956bfd9f521d138258574a938ebd0fa3b2e04b68405" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "dghw4f69y165q8v0" + "string": "1ui0cftg59lzs2fhg126h7ybhe2c" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCBO72GYSN74PH3ACU2OY5UTZRPK6VWTEAFWBR6NQB53CFVGX2HVUI2X" + "address": "GC5XH5HWAZJPMKCPZSCVPYCRXRP6QOUQ6IJPD2NN6UZFQ323ZHYOEWM2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "9524296a931e5bc4c1d3842e2991defbb3db9c11abe57634dd8b8c178aecf4fc94709ccf68af67ce9b801efd1107976fa4843242ffb1e7a6a32c8b5ea802941a" + "bytes": "a2e222a2b1723d9bed17cf0903be359fc3b1fa42e58555a2ef4f25f149d501556cf86a14540abaaaa06d45ff563473cb2007e31b79d8600e03e4e45e130f7f06" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6cb0b618885f1c0687802d8779c106b8aca1157aba732255cb6d2f2c81bd6bd1" + "bytes": "80cf2139fb03d66bd2247ec3ca901288253dd3041c419594b66eb99e65ff18fd" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6cb0b618885f1c0687802d8779c106b8aca1157aba732255cb6d2f2c81bd6bd1" + "bytes": "80cf2139fb03d66bd2247ec3ca901288253dd3041c419594b66eb99e65ff18fd" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d2d9ba77d4babcfa8cea2c0c40be36896813857c3dec17eb0a10d087ae37d987" + "bytes": "af9e28dc313413ec221f6d5dd6537ca2f87363eaf2855b8dc6cb0c6772774aee" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d2d9ba77d4babcfa8cea2c0c40be36896813857c3dec17eb0a10d087ae37d987" + "bytes": "af9e28dc313413ec221f6d5dd6537ca2f87363eaf2855b8dc6cb0c6772774aee" } ] }, "durability": "persistent", "val": { - "bytes": "392e00161d93114c817c8d9d6b9fd86c85f47f851faed7f54edc75ac69eebbad" + "bytes": "6951ead261dbcaab30e6a956bfd9f521d138258574a938ebd0fa3b2e04b68405" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.246.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.246.json index 29cef24..81df88a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.246.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.246.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "24299cc46351dd4b987c186c0763f2988ad3453f21d24c2d801a1d58d507c469" + "bytes": "d9214fc621c5d18649f4d00b9473b2340ab8e638dee0633ea4af07600071886d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "24299cc46351dd4b987c186c0763f2988ad3453f21d24c2d801a1d58d507c469" + "bytes": "d9214fc621c5d18649f4d00b9473b2340ab8e638dee0633ea4af07600071886d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "cp371u03i3dcpfycpu05bg37s47o" + "string": "vv8gluqbjtk9id42gp1x26" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDGPDMCCJZHNM7W46DKXPHHZXKEXNBQVEK66KNCYNWPKY672LSZTMKSK" + "address": "GCC4WJRAC5THOODUNOGSVTWYKFFPPIXMD5TWSZDDRYUTOMKDZ643EUN5" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6a60443180964369c30aae6af8a704a4d0a059a5ad4cdb6b607037eb494b4bc24f639e66f9700740014acf2e8f2177afdb80be2229c5e13788b05ed642bb167d" + "bytes": "7ac0c2b276580c66d91833b9a7771f8c5775198a1050a3c07f450ce1662cd29252800226937d65677c8b8b6ac496fbb6ac38eb7bb8eba273b30f475002c1e6b9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1988b29280ec2e29e1d96b4bc169bdda892ea37b26433f80a2e5f23427bb9479" + "bytes": "607b4cb50b4cc39a8b170c663dad6b8126304afe0d3528f7e0d4b519667796b8" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1988b29280ec2e29e1d96b4bc169bdda892ea37b26433f80a2e5f23427bb9479" + "bytes": "607b4cb50b4cc39a8b170c663dad6b8126304afe0d3528f7e0d4b519667796b8" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3a95c2239d968b8034bd6128f3960521f52a761ce27066765abf56cc0a1cd604" + "bytes": "95e8efcddf14147c4fb7848aae0ef177ce6bbf7c58f83b661b8a88615ed4d20d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3a95c2239d968b8034bd6128f3960521f52a761ce27066765abf56cc0a1cd604" + "bytes": "95e8efcddf14147c4fb7848aae0ef177ce6bbf7c58f83b661b8a88615ed4d20d" } ] }, "durability": "persistent", "val": { - "bytes": "24299cc46351dd4b987c186c0763f2988ad3453f21d24c2d801a1d58d507c469" + "bytes": "d9214fc621c5d18649f4d00b9473b2340ab8e638dee0633ea4af07600071886d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.247.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.247.json index 08ceace..1ca05bc 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.247.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.247.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "013cbd9e71d2817d3a8bb6b6c1ffd7638b2643fbdb5e5330cbf09bfdf183bd99" + "bytes": "3faa651b0a636333d9b19c1d4cbe6b0fd6f4e155760460f2e931d0798586e479" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "013cbd9e71d2817d3a8bb6b6c1ffd7638b2643fbdb5e5330cbf09bfdf183bd99" + "bytes": "3faa651b0a636333d9b19c1d4cbe6b0fd6f4e155760460f2e931d0798586e479" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "fj2br2c6ym1ju47474gu3gvqjl0oq3o8" + "string": "2pkk56x" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAYPMD3BOUHI4T5A72DYO4VHAM62HEG7C3PCTZO3HCIDPZLXPPU7LF2H" + "address": "GC7CXNI4JQL5TG5OWSB2ZVN4ASYGQWA7AYEEY5NR7KRU4KWQ4XEVN5QX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8f491099f56302e627195ce6b60afb3b736b4ff7c931c3fc75b9758b219eae1000f2b8401d17d797a8b90f53d4b209bdfe8724ff06a659c40093dea06db0b5dc" + "bytes": "6d8de701fc4b3075eb9d81f9e3e6acb74d124ac3712872e579d19e65a68fc6a8c01af7ce5b367ab9a39cfd376abccffdb5e426c08d203e2be2493c7862898ba8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "02739a060f51d4c44902a8ca307da75569f4a3a6e5e69b261b4f50b0acf58f46" + "bytes": "8c411b65c90a72b6b8992889ae74df7547f42411e1edebc6a8fdad8b766c1d62" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "02739a060f51d4c44902a8ca307da75569f4a3a6e5e69b261b4f50b0acf58f46" + "bytes": "8c411b65c90a72b6b8992889ae74df7547f42411e1edebc6a8fdad8b766c1d62" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6c37c565735ae52a5103272f3e65ebbf5df883abdb1f2b993dc583460649a02b" + "bytes": "d1c778258c22bb807bdeea3ed1ee02b306e25708e02adfae6bc3c4a00ff8b8ba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6c37c565735ae52a5103272f3e65ebbf5df883abdb1f2b993dc583460649a02b" + "bytes": "d1c778258c22bb807bdeea3ed1ee02b306e25708e02adfae6bc3c4a00ff8b8ba" } ] }, "durability": "persistent", "val": { - "bytes": "013cbd9e71d2817d3a8bb6b6c1ffd7638b2643fbdb5e5330cbf09bfdf183bd99" + "bytes": "3faa651b0a636333d9b19c1d4cbe6b0fd6f4e155760460f2e931d0798586e479" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.248.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.248.json index fa3191a..510b3fd 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.248.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.248.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "097f6fa71ab893cb36d3e5972927ad6a91c4687412031e5a790881584771e367" + "bytes": "ad75a3adadfdd04b0e12c336bed83e4a09010f10eb651756ebcd648cd246c045" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "097f6fa71ab893cb36d3e5972927ad6a91c4687412031e5a790881584771e367" + "bytes": "ad75a3adadfdd04b0e12c336bed83e4a09010f10eb651756ebcd648cd246c045" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "31ya63ghb1" + "string": "4hysfdz1jd0ftpzkqk63b3jn5ccsr6" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDHP2NUEI5GMZ7QWE7TZKOSJYVLJJ7YL62J5L2OFJJZQ55FTRVXQK5UN" + "address": "GC6VEKQVTD4P6A46WSXER5N5CN7G5WOP3KY7OQB5ASMQLABLIWPBFFV5" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d38017aa7a2593f0b58fc23252a81809f4f58a9f262f5d32cd5dd80e43a04db35cd7cfa4994e29f83e40695b41ae89fea25de31e8cde136ea8ef5acc085f0f37" + "bytes": "44f8002ab733d595a2dec9c8c633546718f899bbb97a4ac315a024c1c87fb2506b7a6d7893aea073659c6699a72d9e99962d3a7f88c3e1bf1100d312471f0e96" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0c5ad2fe989f55491595dafc1fc597c89cba5342b534bde29fc77011e66d1287" + "bytes": "32d06c415024ee1e1428781ab18216c1d0e830990d85dffda708c53b9c317042" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0c5ad2fe989f55491595dafc1fc597c89cba5342b534bde29fc77011e66d1287" + "bytes": "32d06c415024ee1e1428781ab18216c1d0e830990d85dffda708c53b9c317042" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f88a4ecfb9ea6c4d1b133af91d305ca62822c2eeb538c5a2b8c4df954205f2b2" + "bytes": "05cd8bcf8483fa9d9f24c85f890566f1051785ebb9462aa10ee4296142b6c962" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f88a4ecfb9ea6c4d1b133af91d305ca62822c2eeb538c5a2b8c4df954205f2b2" + "bytes": "05cd8bcf8483fa9d9f24c85f890566f1051785ebb9462aa10ee4296142b6c962" } ] }, "durability": "persistent", "val": { - "bytes": "097f6fa71ab893cb36d3e5972927ad6a91c4687412031e5a790881584771e367" + "bytes": "ad75a3adadfdd04b0e12c336bed83e4a09010f10eb651756ebcd648cd246c045" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.249.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.249.json index 9ff9268..066df0c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.249.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.249.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2ec7bcc98297c46b00f0497307ee989568c3cd541df88d9d42071dcc7bb770fb" + "bytes": "822e7a534ec37a6802b2365b45610b97dc82bbe207027e8cc8b40983c3c47f92" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2ec7bcc98297c46b00f0497307ee989568c3cd541df88d9d42071dcc7bb770fb" + "bytes": "822e7a534ec37a6802b2365b45610b97dc82bbe207027e8cc8b40983c3c47f92" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pon6i2h4870" + "string": "87843922h259k" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCCGG3JAOWVTM52FQSSVEHKQBF4BMYJVCYJRXXZCZGSJIIKASAOEDVCY" + "address": "GDCNROPXS7D64MR2RKJPBYOEL6YG333JYT34P53VQWYLNQDIZ3PBBAV7" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6aa12c671c5a5e1d4021ff3128e5acfe2d5068ec8696587bb1776714d9954343162b229350e3c018bce15e50072d2299989902befc5fd97bcea47f12544f74f0" + "bytes": "bd0a419ec764804ec175d435cb650fd3a4b37b6c0bcece5125be5c2e0027af2dd5cb77cf0c7583fa1659fbd0352e2d2f2dc4014ad1af44d4ea19d8e9ada2fbb5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "aeaf48b3c76afc22f9a266d55bdff46220ea01202d4d2cd9fa5cfad147020bf0" + "bytes": "d127891bc867118a8fb65ca30864abd556c45ab7e85fb9a87d396ace5625d822" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "aeaf48b3c76afc22f9a266d55bdff46220ea01202d4d2cd9fa5cfad147020bf0" + "bytes": "d127891bc867118a8fb65ca30864abd556c45ab7e85fb9a87d396ace5625d822" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "34580643e3d0a03d23645e67d639d4e98ef0a2636cca0baa267910b9769ce8e3" + "bytes": "5cd2f81ca875432750af990e4028e7331e7dc06d237bc4a9e4353fb5ae80f594" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "34580643e3d0a03d23645e67d639d4e98ef0a2636cca0baa267910b9769ce8e3" + "bytes": "5cd2f81ca875432750af990e4028e7331e7dc06d237bc4a9e4353fb5ae80f594" } ] }, "durability": "persistent", "val": { - "bytes": "2ec7bcc98297c46b00f0497307ee989568c3cd541df88d9d42071dcc7bb770fb" + "bytes": "822e7a534ec37a6802b2365b45610b97dc82bbe207027e8cc8b40983c3c47f92" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.25.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.25.json index 63b90c1..29c829c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.25.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.25.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a9000d724efc0622089520d10b537723a14c1afb5cd280a7c3eebc66f627537c" + "bytes": "f5eeed3d81e5ac848ca27309cbaf0bf0a672017bf7629362b3202a628788a988" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a9000d724efc0622089520d10b537723a14c1afb5cd280a7c3eebc66f627537c" + "bytes": "f5eeed3d81e5ac848ca27309cbaf0bf0a672017bf7629362b3202a628788a988" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5776884bz956" + "string": "yctc83n64x" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAF5TDRSR2IBVTLEIZVXWEM2CPXXUICINLGS7RSXJMUZNJVZ3SDYJMFN" + "address": "GCBI6U4XWZ7PYUBK3FY6Q3F7XQ7APWNBAVCSMC2MO3FQFOJXGTPIF6GA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a49c84f5176975b061377c5400f1e2d2c09cf5cc8515a169079daff990e5339f699a3f807794a33f067e5562c6f1edd9c92cb4fe6979128c0f87af49067323d2" + "bytes": "b9c0951d80dfc4e186e80fc8b6a7d68241e4773c6e1c93f5864c998ef6408163cea2101ce588cf995fddcb9e1839c31830a9eb4226992d250ab4239e140c51f5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "07b966bf8b3902a4b711509fe768708478532d22089c1ab2d613aacc8a1ec9a0" + "bytes": "0f1eb16ae8e09e17ed6fde04475f4d6c098473b5e02873bafbe62ca05cfe2ea9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "07b966bf8b3902a4b711509fe768708478532d22089c1ab2d613aacc8a1ec9a0" + "bytes": "0f1eb16ae8e09e17ed6fde04475f4d6c098473b5e02873bafbe62ca05cfe2ea9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "789847678206d2326b9afd08b1a181e84f4b53975ee717fc8056fdc8259f01b1" + "bytes": "a956aec6eed522fe5f6f6f1fd4a70ed154b673974128abbb5cba00ef9201e7be" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "789847678206d2326b9afd08b1a181e84f4b53975ee717fc8056fdc8259f01b1" + "bytes": "a956aec6eed522fe5f6f6f1fd4a70ed154b673974128abbb5cba00ef9201e7be" } ] }, "durability": "persistent", "val": { - "bytes": "a9000d724efc0622089520d10b537723a14c1afb5cd280a7c3eebc66f627537c" + "bytes": "f5eeed3d81e5ac848ca27309cbaf0bf0a672017bf7629362b3202a628788a988" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.250.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.250.json index 0756073..f76f67e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.250.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.250.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "60e438c96f6a4a387935dc3a7eba3c13f89f88aec0625a73c17191597db52e1e" + "bytes": "43c8c249f0e99b6bdcb34081658825a44eb5247208dc2706a038d372bd47a7f7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "60e438c96f6a4a387935dc3a7eba3c13f89f88aec0625a73c17191597db52e1e" + "bytes": "43c8c249f0e99b6bdcb34081658825a44eb5247208dc2706a038d372bd47a7f7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "bh2mwe4w4f2a9utfl" + "string": "e27fh2n5t63p53s2" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCYEJZT77SPHJSKDNTEDN4YAKZRV4FYURDW6LWDUA7ZDVLU72LAYGRCJ" + "address": "GC7KARWA3NEKOMWTMUDCVEYB4BODHMOSHO4UD6RMQAWGRCIKHFSZENDG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e3066028ec95909e1d561e5a9e48c1adb5f523fd0020e9bc7c2a3fbfab922d91e2ba35e2f2a536902717c1e47b15ce75fe8c7c2a60518587cfd3a14a14b3fcce" + "bytes": "06b9753f3b57cb78d3eba5170bc3d9a83d727313235bb1ae928cd92c9f7b2e7c789b5a20a4e6299a710534c82704e1b32f552816235be8e9f994a457f92b0cf3" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d756ea60b62b011cef66614be32d77ccf745f3a826f47a6a267321f7171bf117" + "bytes": "d50346fe1a2b801a74c69c45ae3a2f62640d0a31b7fcc6e64b3292e04bc627f4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d756ea60b62b011cef66614be32d77ccf745f3a826f47a6a267321f7171bf117" + "bytes": "d50346fe1a2b801a74c69c45ae3a2f62640d0a31b7fcc6e64b3292e04bc627f4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "5fe77406b7a14b4ba84548be944b6993906d13fb31a0121865620f99d2942583" + "bytes": "87bebe2f6cffeb9abc44ab685d47e3562ab055efb28a9863813a613f944f24f1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "5fe77406b7a14b4ba84548be944b6993906d13fb31a0121865620f99d2942583" + "bytes": "87bebe2f6cffeb9abc44ab685d47e3562ab055efb28a9863813a613f944f24f1" } ] }, "durability": "persistent", "val": { - "bytes": "60e438c96f6a4a387935dc3a7eba3c13f89f88aec0625a73c17191597db52e1e" + "bytes": "43c8c249f0e99b6bdcb34081658825a44eb5247208dc2706a038d372bd47a7f7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.251.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.251.json index 8bd5594..b4ff5e6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.251.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.251.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3b9773e52b850ccdb3ac4ce5067551e138fece8672f27db05bedc06d20a49703" + "bytes": "9c89632b08ac99711ec0b94c301fa40a068a273d444f0fe434cede3af6468566" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3b9773e52b850ccdb3ac4ce5067551e138fece8672f27db05bedc06d20a49703" + "bytes": "9c89632b08ac99711ec0b94c301fa40a068a273d444f0fe434cede3af6468566" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "f838a26" + "string": "3n19c728vj736p0c3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDV73OPWFNPJHRQSV6D5EOFZUVQDLCG4C53CFK6VV44PUD3K7J5HQEJU" + "address": "GDK3NEQ34NRC3UXDJKDVPGSULWOTYLROUWXSWE2HWN7IJ34WOFFBHNJY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5aa6ac87017c6a4b0d1fd3d220f66674f860b1f2dec04fd5f78820e4d1040c6cea68e7976c59715abe8b1db2d2e9e6aa1663e9d97294157867d23458231fcf63" + "bytes": "9aeeb6665036f6489cb02ec446da5d4e2a45cee8d60011b533b730936c8dcd2c470e67cc6ce03ab04f20f796b9296b2de57a67d79b099e23b21759580175d8fd" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0ee0cc7eea4f735a3c0b67cab85b0dd9e80e40f76360f10915df32b4e06e9d74" + "bytes": "eba8bf01a2da9170ceec68b530976a00f02210494f6fe40e193c074c29cb4052" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0ee0cc7eea4f735a3c0b67cab85b0dd9e80e40f76360f10915df32b4e06e9d74" + "bytes": "eba8bf01a2da9170ceec68b530976a00f02210494f6fe40e193c074c29cb4052" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "5abc896130369ede67b2bdb68f8042480b7ecd0c94610586cdf67458c138c7a2" + "bytes": "31ad162d2a2d2e87ca72c3353a69a99692eca862bc98126a64b6cd1e231308b6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "5abc896130369ede67b2bdb68f8042480b7ecd0c94610586cdf67458c138c7a2" + "bytes": "31ad162d2a2d2e87ca72c3353a69a99692eca862bc98126a64b6cd1e231308b6" } ] }, "durability": "persistent", "val": { - "bytes": "3b9773e52b850ccdb3ac4ce5067551e138fece8672f27db05bedc06d20a49703" + "bytes": "9c89632b08ac99711ec0b94c301fa40a068a273d444f0fe434cede3af6468566" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.252.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.252.json index cd0c1cb..6728deb 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.252.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.252.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "718522e833f5032f40199352253c1f8bc7e9592c9f7bd133d3e55e1ec084e720" + "bytes": "2e08948479928e9fa4af07dcf6dd86d6ac167ff19ce3a56b4e1f87ef9c4dd9d1" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "718522e833f5032f40199352253c1f8bc7e9592c9f7bd133d3e55e1ec084e720" + "bytes": "2e08948479928e9fa4af07dcf6dd86d6ac167ff19ce3a56b4e1f87ef9c4dd9d1" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "70d1qx77d" + "string": "yqd00kg5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCG2GZOKP7PDGPFN3THXJEF4JWWZ5NKADZHM76NP64PQX55NAEZTJ32V" + "address": "GANLN766RTC6LYF5MIP25LRKMDS5HY3RNQTZ7IHLRPDPTTKHWU37HV3S" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "116767b0c1b4615319ef856a4e89e92cbff4d0b195580e1f4976016bb49a6d0e9f2a0b93a163afdb59875f1c3c5bbef7df5fe7668df870a40a95d53ba7ab363b" + "bytes": "9ef9ec9df5094273540cc65a4d13714f15836d8c9d06d6b5bbead9a45dce1865a9dcfb378990a516c96c1e2e952fbfbe2679ba53df1366af21e2639d7b428202" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "79fc8f72bfe9518a137eb2cf242bcdd5c4a4cdd8ee7b0ce7ef97bdddc9e67469" + "bytes": "8a4e76499bce3592d81f4a6d013fd3a95594f8104e41cb2b5dde791891856599" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "79fc8f72bfe9518a137eb2cf242bcdd5c4a4cdd8ee7b0ce7ef97bdddc9e67469" + "bytes": "8a4e76499bce3592d81f4a6d013fd3a95594f8104e41cb2b5dde791891856599" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6c6d2970bc8ce0c16ab856cacc0ff85c92a36630dac321d5203b93418a9cba90" + "bytes": "76662ce51fcaac3c60e4eaea5d4763aedf4aa9464d2aad688b2dfe216bf835b9" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6c6d2970bc8ce0c16ab856cacc0ff85c92a36630dac321d5203b93418a9cba90" + "bytes": "76662ce51fcaac3c60e4eaea5d4763aedf4aa9464d2aad688b2dfe216bf835b9" } ] }, "durability": "persistent", "val": { - "bytes": "718522e833f5032f40199352253c1f8bc7e9592c9f7bd133d3e55e1ec084e720" + "bytes": "2e08948479928e9fa4af07dcf6dd86d6ac167ff19ce3a56b4e1f87ef9c4dd9d1" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.253.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.253.json index 3a61202..b88d52b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.253.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.253.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b6692a94501ffc1948e488e4f7a27ca2b36f89da0f6d2203d1b717df8f4823e7" + "bytes": "21c4f5718bbf78c382df28eb256614b33c7c3888511412157c9211ef44a8a400" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b6692a94501ffc1948e488e4f7a27ca2b36f89da0f6d2203d1b717df8f4823e7" + "bytes": "21c4f5718bbf78c382df28eb256614b33c7c3888511412157c9211ef44a8a400" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "9gn4g" + "string": "wpcqx" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDP5KGFZ2UEI6RPP27FQFDOMCT2T3BPUZYV525K5P5I4ONWUA7APND5Q" + "address": "GB3UWOI3RQGBKF4KRUEC73YHXXDHSPICHTS62C3GA6GCIIIC4P2UK3M2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "15a3013c1b1c52ba5d743f3d27d5b21b4f03acc0b4750d6e100ff3ae0c69a3a576f21ade37ebb0d39d445d1cee8071000a8407eea97d34519f7298e4b7d4df1d" + "bytes": "76fff408f77428af1fded68bdadb96be00a31b9bbc1353b6d4c8b78eadb8a19fc700159a3b2211942e3dbc9cc63d4557261532d527fc4c3a87a33ed7638d2a0f" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "13782a5e5d420d7836513230e6432886746c9542de44cf5c87ba8a6cae7fc333" + "bytes": "ee704e54af5920d29cd06524d81afaa9cdb016979b7fa6509e4016095dc8217f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "13782a5e5d420d7836513230e6432886746c9542de44cf5c87ba8a6cae7fc333" + "bytes": "ee704e54af5920d29cd06524d81afaa9cdb016979b7fa6509e4016095dc8217f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "793fd19711400f56f8e55763dfefbd90f0fae6731610c2f4342e07b6e89f5d5a" + "bytes": "8ced44ce5f32924d4f1315c5be98ccbf0bb7c1714d575a3b304193517fe177cf" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "793fd19711400f56f8e55763dfefbd90f0fae6731610c2f4342e07b6e89f5d5a" + "bytes": "8ced44ce5f32924d4f1315c5be98ccbf0bb7c1714d575a3b304193517fe177cf" } ] }, "durability": "persistent", "val": { - "bytes": "b6692a94501ffc1948e488e4f7a27ca2b36f89da0f6d2203d1b717df8f4823e7" + "bytes": "21c4f5718bbf78c382df28eb256614b33c7c3888511412157c9211ef44a8a400" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.254.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.254.json index 0a88971..36ce03f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.254.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.254.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0a92a754eec23b2f299e84fe64817063e4682d9cf043f5105e339025b1431f42" + "bytes": "9b7b21f070544e2481ce23fee46b248ca32d17c3841fd69f2d858ef4234579b2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0a92a754eec23b2f299e84fe64817063e4682d9cf043f5105e339025b1431f42" + "bytes": "9b7b21f070544e2481ce23fee46b248ca32d17c3841fd69f2d858ef4234579b2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pg55gavj7bs670gaz3zblx6nstn4" + "string": "mq25jjkopmmvavi46ws83" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA32NVP5AGDF5C5S3GJGXR2SSDGSB4M7UDJSPXTZY3TONXLWBZYHGN6V" + "address": "GC6CG5PB463PBGFS54NFIDK6EIGQAYS4XV6QTKN7TWIU7LGRPF2PHLSH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0570c5d71d0b225ee1314eab923fc4ee706c10e0e0557a5faf25254a10dec3613be8c77a3ab0ba06c4c7989673c77a9409e278fd1d5cbabea7155a2f805319b5" + "bytes": "09a58b7d7e63788c73a74556f2183d522243a0a77d3aff651582febe5ccf81f6337f1cdf5dabfdfd9a033fe501dda5d0dd6ec4536c09b0d8aa0033e2f0dd299d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "929384cae299a3137b7f23a12fb38dba45d6389d0e8e40fa6eba4332b233a291" + "bytes": "853778d48963c5760a5cbf0c651c89979ef5d626003010a1be6f8aad9cd5634f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "929384cae299a3137b7f23a12fb38dba45d6389d0e8e40fa6eba4332b233a291" + "bytes": "853778d48963c5760a5cbf0c651c89979ef5d626003010a1be6f8aad9cd5634f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1bc4d1050528f906ca1074cb444dc47031399d48fd2ae8fb1fdc3bd42966074e" + "bytes": "7fb4e37f16275e403693bbe961e05afa82407432aa8bc489512366925a961470" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1bc4d1050528f906ca1074cb444dc47031399d48fd2ae8fb1fdc3bd42966074e" + "bytes": "7fb4e37f16275e403693bbe961e05afa82407432aa8bc489512366925a961470" } ] }, "durability": "persistent", "val": { - "bytes": "0a92a754eec23b2f299e84fe64817063e4682d9cf043f5105e339025b1431f42" + "bytes": "9b7b21f070544e2481ce23fee46b248ca32d17c3841fd69f2d858ef4234579b2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.255.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.255.json index 6319983..a7e41a7 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.255.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.255.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "cdb0d36da658485b275c16a31ca5c1713accee1f18b866576edfb96d9fbc7a75" + "bytes": "f7390f391d35c152b60bf52a8410a52416b7e9f8df9b6b85c4eb0d7adeec95de" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "cdb0d36da658485b275c16a31ca5c1713accee1f18b866576edfb96d9fbc7a75" + "bytes": "f7390f391d35c152b60bf52a8410a52416b7e9f8df9b6b85c4eb0d7adeec95de" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4h279b9" + "string": "96dbojq9gnc" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBLBFBLLSCR4NISILNQKHCXEWHDSQUZFIDGW4SJVQ5YCXXIQ46SIZTKQ" + "address": "GCHXXILIHICBO3NKFMOTKNAOBXMSQN2LUE2OQLKELSTFGEKIBR6IEUPN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b1be0e2484714f6eb75699749b728803d3244e92fab52bffd6224a829440d9d9f65e98d9bf3d74c4eec26d2f007d04cdfe7df602e58cef14fb27d219d2abfebb" + "bytes": "4283981c43907de06e0dcef7207b32ff4472285c9fc33a64733c5056e78129f9c524b17db4101c1ffd31a527c79127983d90a61366452bb4eb0d85edd770dd42" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "68e68264ce8121a8a3e9d38c55ee92fe3e577e43e88faf9777f0bed7dfa29ea3" + "bytes": "5bbea56bf61155dadbaffa9f5af3bcaffd51b73044b7929e814661a65eb82914" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "68e68264ce8121a8a3e9d38c55ee92fe3e577e43e88faf9777f0bed7dfa29ea3" + "bytes": "5bbea56bf61155dadbaffa9f5af3bcaffd51b73044b7929e814661a65eb82914" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f4cd08f10c51c89d95bfde69d989366a8207cab4e2ee8275f56041f5fa322d86" + "bytes": "7d15bb59ef8e477c23e8984bd6f31f1616cedddb088cf04829d2c55244ebbc46" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f4cd08f10c51c89d95bfde69d989366a8207cab4e2ee8275f56041f5fa322d86" + "bytes": "7d15bb59ef8e477c23e8984bd6f31f1616cedddb088cf04829d2c55244ebbc46" } ] }, "durability": "persistent", "val": { - "bytes": "cdb0d36da658485b275c16a31ca5c1713accee1f18b866576edfb96d9fbc7a75" + "bytes": "f7390f391d35c152b60bf52a8410a52416b7e9f8df9b6b85c4eb0d7adeec95de" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.256.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.256.json index 833edd9..c492959 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.256.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.256.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6fe593009028935279b5b4dde1c1964febb57d0523c9083347f2ade3e1156f58" + "bytes": "1786037756403ea685f6b4c525a70946d4b0cb0e5488b68ce1770cbe40240226" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6fe593009028935279b5b4dde1c1964febb57d0523c9083347f2ade3e1156f58" + "bytes": "1786037756403ea685f6b4c525a70946d4b0cb0e5488b68ce1770cbe40240226" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pssml3fx29j71y8gh76bi232pa046w" + "string": "n363sex341m9g" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBBJF3XP74GIJSQOP42FBJU6Q3O3FWWA7UFOHOEZJJMZNPVHKBOTE6UP" + "address": "GB4S5HLES5YHVPX4HGZQPZ2HUMV32KP5JUCMOCQHE2VDKSXYOVF6I7WV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ce3aa49943c47d6dc50813cb269230d9c7fd216875ed673ec0a75f3d73faad47f6153e1bc3f55fb09a513c6211858b03f6e5d5b872d431a1bfbe24b50cb9b915" + "bytes": "4d1ec758ee92618d1504eac7796e5ca3e35f06badcccbd00570a33dd86c2c1f6add73d23218bf42acd5697a49c59bc7eb4baced90338a8d2043eb0fd5303a558" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b01adc1f8610f4b4090c6a19c84b1f31b59bd0260c7accd0ba2e7b7a87a56b42" + "bytes": "afb3adce381117817786c7c47fbbc6915327b72e18baea6506d07c1bd2791ffe" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b01adc1f8610f4b4090c6a19c84b1f31b59bd0260c7accd0ba2e7b7a87a56b42" + "bytes": "afb3adce381117817786c7c47fbbc6915327b72e18baea6506d07c1bd2791ffe" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "069dce1b0fdbf48aa75f0ddab70539d508d4b402635ec5a55631f7e3c1c9a0fa" + "bytes": "10ff48649e004cf86bf325c3fc35e7d0bb05f06d362db1a02140892539c36fd6" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "069dce1b0fdbf48aa75f0ddab70539d508d4b402635ec5a55631f7e3c1c9a0fa" + "bytes": "10ff48649e004cf86bf325c3fc35e7d0bb05f06d362db1a02140892539c36fd6" } ] }, "durability": "persistent", "val": { - "bytes": "6fe593009028935279b5b4dde1c1964febb57d0523c9083347f2ade3e1156f58" + "bytes": "1786037756403ea685f6b4c525a70946d4b0cb0e5488b68ce1770cbe40240226" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.26.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.26.json index e157628..632670d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.26.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.26.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9fd23cea88de2b1cb6cb7d5d8e2b58253de2340909a48e8d8b023ba52258174d" + "bytes": "0ced0f1aa06a0c19375c8cb8d861bace66b86cd625985079056bf91f4328c7db" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9fd23cea88de2b1cb6cb7d5d8e2b58253de2340909a48e8d8b023ba52258174d" + "bytes": "0ced0f1aa06a0c19375c8cb8d861bace66b86cd625985079056bf91f4328c7db" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5tj1dfzv7mp97goa98e67gc656fmeq" + "string": "8dmoj1b" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GATTDPDSKGLIG6JXBD57PWJXVJUVBMZ2U5ZRLKECAOIYXPKZRLOTSZOD" + "address": "GDFULWBKJHIVG3XAPMAIRKIXPNZCAEDOOW6N2VSSY22J5OOVZ3MIFRAN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a078eff42bd7370c11d7ab165853c1aed4d134918b93e193d4133d6f5514084fe44b7b6da356967364bbe7e27663966d1cf2385f4badc8bc83e007c1b9f77346" + "bytes": "09641d2f8d55157560c325d786963f900387764a05cbe9cf874049b0614a272fad9a005fcfc7a08fd8b7e7b73ebb4c5e47976619c2ee0868e4e6e18765c4e24a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e6010268994550560384f60aab7d3bcca80eea568aac44b7a0aa84f695fadaf0" + "bytes": "2282c798a1f0eb545cae58720d06e2e05b6bcc4ba2e1cdef3b971ddb2e30106b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e6010268994550560384f60aab7d3bcca80eea568aac44b7a0aa84f695fadaf0" + "bytes": "2282c798a1f0eb545cae58720d06e2e05b6bcc4ba2e1cdef3b971ddb2e30106b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b72dc920aa17af776895d534c14c335fd4014814d8287a6fc78c4e638849ce9e" + "bytes": "ff90909684b0bb91600f173d9051d480ed8104e946d4c7ef92c6fb62b438f63b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b72dc920aa17af776895d534c14c335fd4014814d8287a6fc78c4e638849ce9e" + "bytes": "ff90909684b0bb91600f173d9051d480ed8104e946d4c7ef92c6fb62b438f63b" } ] }, "durability": "persistent", "val": { - "bytes": "9fd23cea88de2b1cb6cb7d5d8e2b58253de2340909a48e8d8b023ba52258174d" + "bytes": "0ced0f1aa06a0c19375c8cb8d861bace66b86cd625985079056bf91f4328c7db" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.27.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.27.json index 86c405b..777dab3 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.27.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.27.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a5c461095eeb81bdf60b2261b5f8bf23d60932254c284a713f1d22d6fbd429e6" + "bytes": "428397ce1037d4017e09a03730f29cebba0da42480c8913488792dfb00645d4b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a5c461095eeb81bdf60b2261b5f8bf23d60932254c284a713f1d22d6fbd429e6" + "bytes": "428397ce1037d4017e09a03730f29cebba0da42480c8913488792dfb00645d4b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "70r7ngbq37f" + "string": "f7f3n" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDNS57VSVYXG7R6UFW3N6MSS6EW3KDUHGNIMWSOEIUR7DDCKOKGUBP2E" + "address": "GA5JRKD2QFK77KHIABJ7QXHVETSNERWMSEYAQX6XLOE33GV2EPOAOHND" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cbdc7bfc3ecd42de1e57889efc3fe111f711f61f802df7c877179a43b5e4ca50735b514c43fd81afe949834e5c686858f2d12ed00f81529dad9fe44edd3c3bc6" + "bytes": "ec561a2988ce7789dab8a89216a3159250933ac8275366b6af272465446dd3377d81d316bf31cb5c39d7c108a1b1a43e229b4df6e52b72d1c7bedc09ea5ada94" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b74282d370ee0fe2da34f35173dd564014bd588425ab59876a3945de1ae70134" + "bytes": "ebe050130ed00e151ec50a769bf2154e49d65c552890dd7e48e529a8b1410901" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b74282d370ee0fe2da34f35173dd564014bd588425ab59876a3945de1ae70134" + "bytes": "ebe050130ed00e151ec50a769bf2154e49d65c552890dd7e48e529a8b1410901" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d457be5fc60c843e834121cf45097084bf155c8660a10673c686a6680a990b04" + "bytes": "999df500398dde6235cd366820dd2a5e4d1fa226ed7b053f1cce975a34a450ec" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d457be5fc60c843e834121cf45097084bf155c8660a10673c686a6680a990b04" + "bytes": "999df500398dde6235cd366820dd2a5e4d1fa226ed7b053f1cce975a34a450ec" } ] }, "durability": "persistent", "val": { - "bytes": "a5c461095eeb81bdf60b2261b5f8bf23d60932254c284a713f1d22d6fbd429e6" + "bytes": "428397ce1037d4017e09a03730f29cebba0da42480c8913488792dfb00645d4b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.28.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.28.json index a782c0d..a62a307 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.28.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.28.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ff1399018c6e5656a4ac3fe24442f417e0a1d565d57351c164de5be5dd526918" + "bytes": "16fa251f1738df7a077adfebabed0f03e955accee565dd3e6dff0688a3bb1d22" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ff1399018c6e5656a4ac3fe24442f417e0a1d565d57351c164de5be5dd526918" + "bytes": "16fa251f1738df7a077adfebabed0f03e955accee565dd3e6dff0688a3bb1d22" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "m5pc1qf4bi7" + "string": "a10x071r86t8l1qxv3n" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDLTNYJH4KHXH7OQHR6X4FRD6JTPGRLROM2CXU4N3ED7E24Q7N3TF7WX" + "address": "GBDGEWHLTKZOBEUQVGABGJKUKZKF4AFW7QGVMOHZRPK6OYQD6REPOK7L" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "be69309da222f64b3dc30158e6dc6bede349332834e337b88f14e9eeda41ecc430ab3db38ccf74f87c5bd9867a8bcd4e165e818afcb76dfb32b48a413db59ba0" + "bytes": "35d7bec9c5d9211b3d04bd411eb267ea43e9f92b8378d54448aba9eed12f1990a198f1c9c9fffbe66133425a31b6263a1e74916a2da0d7dce0847fe8a8042134" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "46a16767e810aa44b87f26dc19a0570560ff6dc2a329079d3204e9c1ac2340f6" + "bytes": "38d9c83f7e1c857e68cf995dbb6b6ec1f5f600dd3989ae063af8b0b413375158" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "46a16767e810aa44b87f26dc19a0570560ff6dc2a329079d3204e9c1ac2340f6" + "bytes": "38d9c83f7e1c857e68cf995dbb6b6ec1f5f600dd3989ae063af8b0b413375158" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8d4c6b8f6bc4d54b559a70229ecb16c182b9713bf0dce2913dbc0345bd975815" + "bytes": "7c4cd85baf2ecb5b5d6b2da360c5bd22ddad78826e8f2eaa937b38d70e5bc12c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8d4c6b8f6bc4d54b559a70229ecb16c182b9713bf0dce2913dbc0345bd975815" + "bytes": "7c4cd85baf2ecb5b5d6b2da360c5bd22ddad78826e8f2eaa937b38d70e5bc12c" } ] }, "durability": "persistent", "val": { - "bytes": "ff1399018c6e5656a4ac3fe24442f417e0a1d565d57351c164de5be5dd526918" + "bytes": "16fa251f1738df7a077adfebabed0f03e955accee565dd3e6dff0688a3bb1d22" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.29.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.29.json index c72a2ac..f230f88 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.29.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.29.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "fc943d33aa2ba685ced9a406d6294f855583bc5765b589c7d218c39a1233de88" + "bytes": "9037a1105e17ee1f10f3e6262e5c6bc4c9095024fd41a844f9b11a50eccfb744" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "fc943d33aa2ba685ced9a406d6294f855583bc5765b589c7d218c39a1233de88" + "bytes": "9037a1105e17ee1f10f3e6262e5c6bc4c9095024fd41a844f9b11a50eccfb744" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "ldc4ms" + "string": "97w9o1" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD7T2U2IUZE56VNQYZCCG4J6Y4J6VWG7CXBSQCF3Q4YCBKSTJH6TKZGM" + "address": "GAUEFQBZOSN6JH6HZ6CGLX4TGM3SILUN7AX5SAKZ6QREJJAD2NER4SKP" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5d3043285c7437665347bb292f2647266bdf738735cea59fa8585802b735d1cb50c0923bad4e85a4398ebf8ff6d83c035e0fd90c8398d4fa1974dbfe9421dbfd" + "bytes": "0d080dcd93056bb4e3082175089063894668cd99f013fc40675a20f906ecdcc4afd584b2add41ffc326ea5908a7626fcf8b82cb4cc439620625b63af3a86e21c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "050d5b9efd518c532a792664e85e30e2772f496ffb3b4b91db1210a1a454feb3" + "bytes": "6232e7cff556aeaf388958eed4a6f312e8042086957deb11bd69b8904702fb5f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "050d5b9efd518c532a792664e85e30e2772f496ffb3b4b91db1210a1a454feb3" + "bytes": "6232e7cff556aeaf388958eed4a6f312e8042086957deb11bd69b8904702fb5f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9d518e3ead52e5ba510b0e611e38c96b2bc9734dc6e546d48702e2a95bcfe776" + "bytes": "c3c08992302f25897cda938f324249971b9e8786de36a6177203d8744d096703" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9d518e3ead52e5ba510b0e611e38c96b2bc9734dc6e546d48702e2a95bcfe776" + "bytes": "c3c08992302f25897cda938f324249971b9e8786de36a6177203d8744d096703" } ] }, "durability": "persistent", "val": { - "bytes": "fc943d33aa2ba685ced9a406d6294f855583bc5765b589c7d218c39a1233de88" + "bytes": "9037a1105e17ee1f10f3e6262e5c6bc4c9095024fd41a844f9b11a50eccfb744" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.3.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.3.json index 9f1dc8f..9489500 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.3.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.3.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "03829098ce55f12acbe7f6280e372cf31c484d07bbcbee6e9e537b2f13916d7e" + "bytes": "4c4ce4ea088335b75d1462f0b2ccffd5ae04c57ae9012815617e759178d17921" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "03829098ce55f12acbe7f6280e372cf31c484d07bbcbee6e9e537b2f13916d7e" + "bytes": "4c4ce4ea088335b75d1462f0b2ccffd5ae04c57ae9012815617e759178d17921" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5sgo4ejfu13n8oahu168n3dw" + "string": "5fn0sr" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBKHYSOFO4KSWD7E2YB2POFORL63I5PJLW4KHZENVRVWPWPH3MSGIYC4" + "address": "GBYDMJ63Z3JGNBMZAB56R64XHDQDWBUD3U57562U4JMC7IIGWVRU7R7D" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "73a8725bde5af6a69b9dae8c662c527d66cfd10098cd332faf9b47b628b02e34fc3465836c59c39b88ab226a2c97e37a9f737cd9bb5f8636bafeac2c63195ad6" + "bytes": "53f4760cb79441d77ddf665e7d2a2e8b35579ba14a18588b458886cc3267222ffbc225e14c84acc0635e479fe16281378dc5b4887ac7125e4357102bf387daa9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1bf67cd4cc3e9af4d317a722795080484a6d3b71f123f7260264a7ce7b98ec44" + "bytes": "9da3418db80a79a944d1f79177ea18be7a845c76750e0451bfeea05a1f91378d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1bf67cd4cc3e9af4d317a722795080484a6d3b71f123f7260264a7ce7b98ec44" + "bytes": "9da3418db80a79a944d1f79177ea18be7a845c76750e0451bfeea05a1f91378d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0d08702e29c8728f72ee2c56293ed01b3ac45daf732820cb3c2ed29df59d9bd2" + "bytes": "d444303a47ee8f8be81901d3d531b6dfeac56ea80af65be15f08fa1f1a397da7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0d08702e29c8728f72ee2c56293ed01b3ac45daf732820cb3c2ed29df59d9bd2" + "bytes": "d444303a47ee8f8be81901d3d531b6dfeac56ea80af65be15f08fa1f1a397da7" } ] }, "durability": "persistent", "val": { - "bytes": "03829098ce55f12acbe7f6280e372cf31c484d07bbcbee6e9e537b2f13916d7e" + "bytes": "4c4ce4ea088335b75d1462f0b2ccffd5ae04c57ae9012815617e759178d17921" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.30.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.30.json index 5fd53a6..83f09fa 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.30.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.30.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9c26e3c31240178fd9b589521e19b7dc0281c45008af230027c1178ed96b8105" + "bytes": "760c2190a00a537524d81fc5477802ebde25aa21c0cf3eec53cdaaad14454756" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9c26e3c31240178fd9b589521e19b7dc0281c45008af230027c1178ed96b8105" + "bytes": "760c2190a00a537524d81fc5477802ebde25aa21c0cf3eec53cdaaad14454756" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "350ed4bydvj9k1116jut4d1zj2pw5" + "string": "8433g9e6ngmzu5u" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC25YPHPABHNBXP375VI5LGUFS7KPLXQ2YFUZ7SFSCBTQRZW2RLFQNTA" + "address": "GAW4G5N6LGB4IV4FJTQQJDGTTRNXL2EXQLGYELJJEKRJK5ZWSGK4S7YH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3625e5eebb1d6cf4040f15dd2f5a77de05fef76de370f26103fa0d2ca30e9c20f70e1d6cb4d503c1ff86cc3483c569628bfb03b40b596301ce14f05ce4531637" + "bytes": "fe530bd6bd7044910bfb3a789d8082ded8033592d9c1ca003e75c9186eaccf6e2fcfce8db28ee79b09eabdd262f6145b48811339ac2d24f57bd6a221648f6c5c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c0f8c2720d7a65183fbc53feed3cdfc233c06fe5a725d6268f44ec0d008f6cda" + "bytes": "0b8774cd5e7a4179eb1e6a81f6110ffb5a0d7a1b15a23e267bceca379aa244b0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c0f8c2720d7a65183fbc53feed3cdfc233c06fe5a725d6268f44ec0d008f6cda" + "bytes": "0b8774cd5e7a4179eb1e6a81f6110ffb5a0d7a1b15a23e267bceca379aa244b0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e2e6a03b07fc89c77c320455a75012d6d6b8c00cc0924b51396eefa5a2b466a2" + "bytes": "4e57138fb8f07f35974b38bb5777e50b146317dc4e0b161e053c799e330840d7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e2e6a03b07fc89c77c320455a75012d6d6b8c00cc0924b51396eefa5a2b466a2" + "bytes": "4e57138fb8f07f35974b38bb5777e50b146317dc4e0b161e053c799e330840d7" } ] }, "durability": "persistent", "val": { - "bytes": "9c26e3c31240178fd9b589521e19b7dc0281c45008af230027c1178ed96b8105" + "bytes": "760c2190a00a537524d81fc5477802ebde25aa21c0cf3eec53cdaaad14454756" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.31.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.31.json index 7f795da..6e46588 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.31.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.31.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3bad637efb5bc2a6d1e2af3dfc2546ef395d95e9cd27c17284d212998ba85d59" + "bytes": "4d0e68f0be30d0330dcbbe9db43d6247df7fa8265df7d8e0e845a192d2095eaa" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3bad637efb5bc2a6d1e2af3dfc2546ef395d95e9cd27c17284d212998ba85d59" + "bytes": "4d0e68f0be30d0330dcbbe9db43d6247df7fa8265df7d8e0e845a192d2095eaa" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "z24fgj7" + "string": "kjzys68519o5k52074i83ye1br823" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDY5L3HFVJSEP5PMMCT227KXBLTRJCX3ROM3BVLZ2QMLQRP25XPEY7QM" + "address": "GBJLFTNYXP5W456P6LTOK3D3EJRN4VHDRJB73ZC75TEV4GXQ4Z3D354B" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8c40fc1258c8387428e22c4cdc6d4db8bc29e9b6f65c516cce1f1ab908fb7c99a1d63209c871d9cbd3204754dced179f4fd803e756b569e1f0f31416cd7abb2b" + "bytes": "0df420e750badcc6bc517cc86040753cccb711f4a2671d22fc427c3e053ddc3d2453d1d271d1a88547f43f2e7366098b4a672ed8c0ee1fd9ca30deeef0ef9016" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "89e78c7fd2d71da378d06e5dd51dc4be10ceb0d30938e4a42d507d57f13d6d13" + "bytes": "7a323ddeaf1013586f06c7d55f5670bff189d691f318efe564514b34a6e213a7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "89e78c7fd2d71da378d06e5dd51dc4be10ceb0d30938e4a42d507d57f13d6d13" + "bytes": "7a323ddeaf1013586f06c7d55f5670bff189d691f318efe564514b34a6e213a7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9b65370c7b14856872424cf201a3c6f85bd5f3e96d9c8b5553841a9df253754c" + "bytes": "39bc3561c2bb3ab4f48272e98ef0dd1a10b019c2d1ae0d579a1fe1d1651eb2bc" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9b65370c7b14856872424cf201a3c6f85bd5f3e96d9c8b5553841a9df253754c" + "bytes": "39bc3561c2bb3ab4f48272e98ef0dd1a10b019c2d1ae0d579a1fe1d1651eb2bc" } ] }, "durability": "persistent", "val": { - "bytes": "3bad637efb5bc2a6d1e2af3dfc2546ef395d95e9cd27c17284d212998ba85d59" + "bytes": "4d0e68f0be30d0330dcbbe9db43d6247df7fa8265df7d8e0e845a192d2095eaa" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.32.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.32.json index a52eb9c..825b8df 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.32.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.32.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d6f3a57756f47e2e0f08af22a63aa7018d59da87806fdbb98ff44723e0f1b90b" + "bytes": "aef6c2268219b0e2434f4ca484a891ea04111963a4577ecaa232650bf1e2542d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d6f3a57756f47e2e0f08af22a63aa7018d59da87806fdbb98ff44723e0f1b90b" + "bytes": "aef6c2268219b0e2434f4ca484a891ea04111963a4577ecaa232650bf1e2542d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "z04" + "string": "dre30g545fio6o09z1ia4m" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDFJBINVUVT43UYQJNGKEA3GHEQYPM7HUYN7JK3NKCPD4AWZU5BY2R7V" + "address": "GBETUCV5F2XWR3NE5PDBWJAX2JAYLDYIRXE6QXD2YMP25DNGY3SNONKM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "598f3eef11fbd0c46cc0e741a1cc13f4c94b49b090fd1a96338ab65e217552abccd89e17f6a49140ff065a039d381ea7eddb64f1fe40a5bf6634b035a0e49276" + "bytes": "d516dbf27d11ad5abec09cbfa6ee8fb708d1ca9a1086d2082b67cb6905c6b5cd16f2198a9387d5f6c30f4f1d70dedbcbf2b9b698a3c53bf1e3486805c6e55ed3" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e5dd0db7ef1729e3f235510852f6e68e98640307723275c5cb19238095b96288" + "bytes": "7dc22a41e1858d159e9290c5f955b1c17de32cc161f4f0da0cde71f2cff7b0e2" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e5dd0db7ef1729e3f235510852f6e68e98640307723275c5cb19238095b96288" + "bytes": "7dc22a41e1858d159e9290c5f955b1c17de32cc161f4f0da0cde71f2cff7b0e2" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "97f29c4e35fc955a2e1c4fdd086a569ef56c9e96d8977ead2d10e64e92b95f42" + "bytes": "627b9f79e44f7d6964b22d28ede9b6b164c1ab4fd2050f4690d2aaacdd2ac4b1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "97f29c4e35fc955a2e1c4fdd086a569ef56c9e96d8977ead2d10e64e92b95f42" + "bytes": "627b9f79e44f7d6964b22d28ede9b6b164c1ab4fd2050f4690d2aaacdd2ac4b1" } ] }, "durability": "persistent", "val": { - "bytes": "d6f3a57756f47e2e0f08af22a63aa7018d59da87806fdbb98ff44723e0f1b90b" + "bytes": "aef6c2268219b0e2434f4ca484a891ea04111963a4577ecaa232650bf1e2542d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.33.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.33.json index fa2036f..f357848 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.33.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.33.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ce303a13a224a6c5184eb1394202d94979b626a5174aef8821c5acf222395c4a" + "bytes": "acec641850e9647b31129c3c082c572bc6224f1e069cb819118e816832ae7e3f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ce303a13a224a6c5184eb1394202d94979b626a5174aef8821c5acf222395c4a" + "bytes": "acec641850e9647b31129c3c082c572bc6224f1e069cb819118e816832ae7e3f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "mxita7f9s879w" + "string": "8kd" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD5OQ3DT4VU2HR6I7V7HXT6XOJTGKXMQPFI3OL2NTD5B4QR5QYAWCZPI" + "address": "GDLIAYNDBXACCNPWSW7USHDGXV75TA4LKNKSRSVIV7MHRON6GIZW6M3N" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5a39c42e2136800934b77dc5a2d3c545a0ba116b8f3474525e7839f37c352276b56594865aff68f88d7b3950187dbb6e36648fd11ced383d26ae3d03544faabc" + "bytes": "d013d779c6a4d46083fdb1671cd9fe4b97caf322779d5bacee69f271b981d26cb92e7e968cae9288d78c78f3855401661ce08b4b10f633e2d53f3958669e8f6a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5209a9b953680c8fe1fdbd7b81c402f353bcb91ebfecd37d533fee554910469b" + "bytes": "9c6745e8bbcd9543df6c6772edab6f976ecaa477eb789b99e5cf299b0e2b225e" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5209a9b953680c8fe1fdbd7b81c402f353bcb91ebfecd37d533fee554910469b" + "bytes": "9c6745e8bbcd9543df6c6772edab6f976ecaa477eb789b99e5cf299b0e2b225e" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "74b83597994a9976aa59e778921ecdbf8006733ef20ade66faa8ea635bdafd63" + "bytes": "5c53564d4ccfba258758f5612ec82ab9142e4a56cb73810e88e59d20dba9f21c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "74b83597994a9976aa59e778921ecdbf8006733ef20ade66faa8ea635bdafd63" + "bytes": "5c53564d4ccfba258758f5612ec82ab9142e4a56cb73810e88e59d20dba9f21c" } ] }, "durability": "persistent", "val": { - "bytes": "ce303a13a224a6c5184eb1394202d94979b626a5174aef8821c5acf222395c4a" + "bytes": "acec641850e9647b31129c3c082c572bc6224f1e069cb819118e816832ae7e3f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.34.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.34.json index fa56fc5..64e7392 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.34.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.34.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "66854cfb2c76ee78476d05a79124dc835d898f8069266ae93701637fc974d48f" + "bytes": "d959212be64e6be0109ee9b63cb95713c9afe7bf861c0191ffb6714d3c19ddf9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "66854cfb2c76ee78476d05a79124dc835d898f8069266ae93701637fc974d48f" + "bytes": "d959212be64e6be0109ee9b63cb95713c9afe7bf861c0191ffb6714d3c19ddf9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "t9i3f5y0kz12o0zv63" + "string": "c66z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDE6Q7YQV6ZXDXE5HP5KOWZCZAR6TQ3I3A6BUM2B6Z5UUAWHEJQYMI6V" + "address": "GCNKWHMHMQIYZDCHB7TPWG24L644AGIZHWMYL44KQGJDEOWPLJOCP7TZ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7993fbc51b4a04d0f39517565c12c7a3b10e094a121a52957339e22908b058774eff2b3bffffc8d21beb85a6508f9b43d3e3beb9b18a19e7a2dd645986b40461" + "bytes": "f41b8da6c85efd6a0073ecae1e4be8fe104705925000e01824789d7915c50dea27155a0a81ea49a9f1b90464f5a91a1f492e867396440e3f76464eb8aa327321" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "82e3af048f73ad81f489af8df3bbe4c9131d537089a3693e385cb3e3225a9112" + "bytes": "81ee7751d29bf5d1828b285e0ad4a334f58ddc4266e0869da819cd9610ea208a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "82e3af048f73ad81f489af8df3bbe4c9131d537089a3693e385cb3e3225a9112" + "bytes": "81ee7751d29bf5d1828b285e0ad4a334f58ddc4266e0869da819cd9610ea208a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a0bcaa19a8f183709e8d0fbf90ff44c3294983ace1b3928c8292a204e653d1af" + "bytes": "8b36e51a475ac984cfe8c9396d4a8016d285d3b2d1e0c0d213bd40e3b15ba650" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a0bcaa19a8f183709e8d0fbf90ff44c3294983ace1b3928c8292a204e653d1af" + "bytes": "8b36e51a475ac984cfe8c9396d4a8016d285d3b2d1e0c0d213bd40e3b15ba650" } ] }, "durability": "persistent", "val": { - "bytes": "66854cfb2c76ee78476d05a79124dc835d898f8069266ae93701637fc974d48f" + "bytes": "d959212be64e6be0109ee9b63cb95713c9afe7bf861c0191ffb6714d3c19ddf9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.35.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.35.json index 9424205..4663048 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.35.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.35.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a0ca1c5a54f2edbb1606f3efd892de61a54b319f8881615837823ce4ee5008f1" + "bytes": "66392d386c717412447d4373504b01e102b2e5fc5fc7a37d3ff64fbc7bf9d0d5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a0ca1c5a54f2edbb1606f3efd892de61a54b319f8881615837823ce4ee5008f1" + "bytes": "66392d386c717412447d4373504b01e102b2e5fc5fc7a37d3ff64fbc7bf9d0d5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "rs23a8h9u" + "string": "yvrju895xt844r8u46rbug7jt261m" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDDBMY52O5NDLJABBV23AOPZSTVNWFKPKHO7DRQXRCBXW7HNOB2KY67N" + "address": "GAHFIJYZFTU3AUTUOTZUN5W4TOAYNJPXOZZTRU72S5QADEZNGRYEEQRW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0bf5ef7d0de2a37403a227c8dd907f9b193d314c134191bd8e23a9a35eb1db142fa8c7817606f439645e2d942d203875ec58425e848ae9fc5e628753415d6291" + "bytes": "84c9cf6192ee3c6dbb0c18a998651f5ec2b8545f089e4c9f24f86e160c957ac5c2a4cf54bd009253cb2f1239f66b019d1efcb4fb8372daf8230e7b2545ecfc91" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5320fbe30b438baa7dc5da0eb19c2db25940092782334be9d998c0d0af845e4a" + "bytes": "c5c58e7a69c941fb7242d7f7be1a2839b6bb6577133233724b15419ea4540343" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5320fbe30b438baa7dc5da0eb19c2db25940092782334be9d998c0d0af845e4a" + "bytes": "c5c58e7a69c941fb7242d7f7be1a2839b6bb6577133233724b15419ea4540343" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3e84ed05ed3de20e48ff38466ae559a2f3e1e0887c723b0ea668835b5a1051d3" + "bytes": "e999644747ab1640e2a30ba6f5692141e5fd1b64bc1a11e39d9c2d62e783fea5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3e84ed05ed3de20e48ff38466ae559a2f3e1e0887c723b0ea668835b5a1051d3" + "bytes": "e999644747ab1640e2a30ba6f5692141e5fd1b64bc1a11e39d9c2d62e783fea5" } ] }, "durability": "persistent", "val": { - "bytes": "a0ca1c5a54f2edbb1606f3efd892de61a54b319f8881615837823ce4ee5008f1" + "bytes": "66392d386c717412447d4373504b01e102b2e5fc5fc7a37d3ff64fbc7bf9d0d5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.36.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.36.json index 362b20e..aea62dd 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.36.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.36.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "37e4eeb4029b6cbd59c6a781c058e510e5d74d36a25b719d60905bb9b78466a2" + "bytes": "b9a65f44cefdf8ed40876c8abaa64883a380464f6cce4ad3b6f606b2dd4fbcf3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "37e4eeb4029b6cbd59c6a781c058e510e5d74d36a25b719d60905bb9b78466a2" + "bytes": "b9a65f44cefdf8ed40876c8abaa64883a380464f6cce4ad3b6f606b2dd4fbcf3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "07xa0a43o34v1g5r8u06dmd8fig0mh" + "string": "83416g6v35j8" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAXDZJ5CTESNURGCONICI4H2JLSU3TAG4F57CJQX6DPQS5HQG4LXURYH" + "address": "GBZNURXK6XCEHYZCE6UMHDSJ4VTLKUTX6AV7NTT63FGSCXNWK6ABW2AG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "44340d4527a70995c33e90d4f7ec9c32b69db8f81b1dad3d3789059bcd3093a81c831fbdc7d06a80b82586212b73d5b2b84dc54135f2091ccdb71c40b923a35a" + "bytes": "12487740e2b15c6ee295f0065b4b2423abea981b5938fabe0c8afeffd8c00409d20901d571057b2e218eebbb457f22105c76fa403514b928021b5f3844607159" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b5e6af5a17103c11a6bc7d459bf1527377d7f270fb8609b2f326d18b5850924c" + "bytes": "f1d341261ee7565d7f57df509542408946d079d65d380c256af53a43860c7b5a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b5e6af5a17103c11a6bc7d459bf1527377d7f270fb8609b2f326d18b5850924c" + "bytes": "f1d341261ee7565d7f57df509542408946d079d65d380c256af53a43860c7b5a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "704640e8d3371064bcd84bc9e1f88c2251995ef3457b302411e0ef19b642ec82" + "bytes": "3cabdf9399db7af7cb9bb9ad389f432640be04c149641149ae97402fdd57c8d1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "704640e8d3371064bcd84bc9e1f88c2251995ef3457b302411e0ef19b642ec82" + "bytes": "3cabdf9399db7af7cb9bb9ad389f432640be04c149641149ae97402fdd57c8d1" } ] }, "durability": "persistent", "val": { - "bytes": "37e4eeb4029b6cbd59c6a781c058e510e5d74d36a25b719d60905bb9b78466a2" + "bytes": "b9a65f44cefdf8ed40876c8abaa64883a380464f6cce4ad3b6f606b2dd4fbcf3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.37.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.37.json index a189f94..bd56da1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.37.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.37.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1962432fa9f00147a9665be986e314805cc3778d2c8c55b43f0c24e0a63805ad" + "bytes": "a989412ab1ef05ff97f71ffbd158ef819726d0131ebb2ff98929a7960036fcdf" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1962432fa9f00147a9665be986e314805cc3778d2c8c55b43f0c24e0a63805ad" + "bytes": "a989412ab1ef05ff97f71ffbd158ef819726d0131ebb2ff98929a7960036fcdf" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "99bw6jld68cv70u5u41yx08a5c9qnna" + "string": "vcw24rb2wvi36v795jdh34" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCBVVXUPHLKQNSPWSA7SBQ75TXIXDCSLUD65XLT3OU66SLZONVE74X5M" + "address": "GA65OVYPBFJ7EDPPY6RCOQXGV3PIVRZNU2HOZY7ISXHV522SXZANBIOG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "259472a03b96fbfe92609c1d2f2531b36da6af316a40f3d8c4cd1dfac2719b30763ab4ee3d7cfb7374cc7590fd7b789e85d5ed3447111e6e6b935cb5e09e6889" + "bytes": "51765134bb8e8199c35a58bc58ceb96f0e08f2dca98b18027cc115a2e5f42f996871f53c4fc04796aa06aaa0de26e1984ba91c8dad4215fb9d68025b838230bf" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b02f6ac9982de97d61bd8216b39e90e7bec94a1ce7250d4fbe079371d5751cc5" + "bytes": "05c0fb724613dea1a964c5c695f29e20a351d3227b8f2e3555209fd698bad316" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b02f6ac9982de97d61bd8216b39e90e7bec94a1ce7250d4fbe079371d5751cc5" + "bytes": "05c0fb724613dea1a964c5c695f29e20a351d3227b8f2e3555209fd698bad316" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "144144dc0983b79bc47e159999b4833853500ff49e5287af1fb111880bb01cfd" + "bytes": "f473b6d27d23d2bffd0c9801f8d39edc5874062d8ba37f3a3acbf2dd866a8605" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "144144dc0983b79bc47e159999b4833853500ff49e5287af1fb111880bb01cfd" + "bytes": "f473b6d27d23d2bffd0c9801f8d39edc5874062d8ba37f3a3acbf2dd866a8605" } ] }, "durability": "persistent", "val": { - "bytes": "1962432fa9f00147a9665be986e314805cc3778d2c8c55b43f0c24e0a63805ad" + "bytes": "a989412ab1ef05ff97f71ffbd158ef819726d0131ebb2ff98929a7960036fcdf" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.38.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.38.json index 2e36e67..698bb61 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.38.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.38.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "7f701bf6a55b928ea0791b92fa7a1a82a55bd6ac9470712fa981dfcb7d05c735" + "bytes": "a431883ae39fbb7e57f53957789ad07f8ba0db0a871e78b89310d46a3cd1ba9e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "7f701bf6a55b928ea0791b92fa7a1a82a55bd6ac9470712fa981dfcb7d05c735" + "bytes": "a431883ae39fbb7e57f53957789ad07f8ba0db0a871e78b89310d46a3cd1ba9e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "kn4ils1zh" + "string": "kgxflys6661c7gt70l6itto" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBQXYM2C2R5XN3AK7LZFO322QHVSATU7RI4MUWDAHF5TCOQLDNTTEICP" + "address": "GBMLK77WRZZFIAG5RP2KJXEFAHOOQNVBD6R4GN5OP247OW6VZMALLC2L" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8c05b77c1d1c0e2a156dc73f2ef70522ac52528459df97b9f655cf0b8c178683ddb79b82c1e3273ee48cd16de9b2e62a07ef895a27cb93b93396bcea73082355" + "bytes": "462cb7db3f068b3afdb3cb17986f94cbe04aeebf0f5aef5eac436c3e29209ece1c90acddac6c96241f0a7d77736dbbdbf44a8d3fb8135ebe47ec548173093ad0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5a4d2f2cf3dac61033eca80cca23405efb292d95884604b995803011a6cb8de9" + "bytes": "425176b6465b5a4328915f473494fe8c0210bdc894d83c12c7c51562181a9b6d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5a4d2f2cf3dac61033eca80cca23405efb292d95884604b995803011a6cb8de9" + "bytes": "425176b6465b5a4328915f473494fe8c0210bdc894d83c12c7c51562181a9b6d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c5ba6a16a453ab080f4d496c6cc416ec5b70ebd5976671d552f4c3c8f8fda75a" + "bytes": "e8aa83e274e866ad5908c78a4cd6092b98ad0563accb2e54db22799e450e0630" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c5ba6a16a453ab080f4d496c6cc416ec5b70ebd5976671d552f4c3c8f8fda75a" + "bytes": "e8aa83e274e866ad5908c78a4cd6092b98ad0563accb2e54db22799e450e0630" } ] }, "durability": "persistent", "val": { - "bytes": "7f701bf6a55b928ea0791b92fa7a1a82a55bd6ac9470712fa981dfcb7d05c735" + "bytes": "a431883ae39fbb7e57f53957789ad07f8ba0db0a871e78b89310d46a3cd1ba9e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.39.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.39.json index 33a2614..fea9d60 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.39.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.39.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3a974f2e0a157ba8cec345531a69327d69869eca88a98e0174d68d32a65d000b" + "bytes": "85aa195845f6ccfdca3e74f8c1797014a896b5b5c900ef7c9a02707917598f6f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3a974f2e0a157ba8cec345531a69327d69869eca88a98e0174d68d32a65d000b" + "bytes": "85aa195845f6ccfdca3e74f8c1797014a896b5b5c900ef7c9a02707917598f6f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "wkw399kb6j9psg3747d" + "string": "6u66" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA4N6TUH37YAGCHOQALJ2RP2GBC6OZSKO6O2XBCLTDGKFWXP37YBXXYX" + "address": "GDQWALW6MSGH4NGGICKHY42YUBT5YQEP4EQYEQGWV45TL2C5ZQBPA4BN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "efe52fd1cd5b18d2aaaf8ea3eac88d33914e7969d6b073dcc049df9c2034fe630152cda4be52151ffaeba13d74242dfa2b7bc623faed70bfd7c555850f1b68c2" + "bytes": "d8ec3f739c32c44a850ae54b79cd5c397db6f392874ed2315a2b6a47c1813d17e54dd2989297a69c1b65057f8b3d1bf60826d5c3ec50e25d3258a91c9f58c4cf" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "659c7736865b371b24a563b39d06367253db0404c75dfe05cd0e3ad0c7ed0239" + "bytes": "153f4d79ce5941b4fef110fb4de117a34c81c165421bf34840e02c67eb9c3d20" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "659c7736865b371b24a563b39d06367253db0404c75dfe05cd0e3ad0c7ed0239" + "bytes": "153f4d79ce5941b4fef110fb4de117a34c81c165421bf34840e02c67eb9c3d20" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a277a907b6cfe497ab17b60ee61de7ac8dd8982e9d2a8b8b11d5a259fa2680db" + "bytes": "41332930523f8255e9353271d3f35452ef6eea70d0afd523a870b096d4f98841" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a277a907b6cfe497ab17b60ee61de7ac8dd8982e9d2a8b8b11d5a259fa2680db" + "bytes": "41332930523f8255e9353271d3f35452ef6eea70d0afd523a870b096d4f98841" } ] }, "durability": "persistent", "val": { - "bytes": "3a974f2e0a157ba8cec345531a69327d69869eca88a98e0174d68d32a65d000b" + "bytes": "85aa195845f6ccfdca3e74f8c1797014a896b5b5c900ef7c9a02707917598f6f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.4.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.4.json index eb50404..7b33084 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.4.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.4.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5ff304ab306a4d4c003375dd7f219307493702a3ea9e4621b8821dee7e08ae58" + "bytes": "4e5eb08fa1da9d4ff24e3fdbd758a95cc8c31b9b80a981d6ae064a98c08c52db" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5ff304ab306a4d4c003375dd7f219307493702a3ea9e4621b8821dee7e08ae58" + "bytes": "4e5eb08fa1da9d4ff24e3fdbd758a95cc8c31b9b80a981d6ae064a98c08c52db" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3zxlbc5qoecz35abdu1iepybg0k" + "string": "5759g4j4lthev1l8i1f" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCAFFETOA4RQ6Z33IMS7UJZ7WYEWWZ3VDAOOEZQSN7X3RCHSUNG2U7YC" + "address": "GARDNV34CJKAU6TZMZAW6S6VVMNVS5BT5HMIPP5GMBYV4MN254ISA63B" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "98653e46a8ea34f04481285c44f3a701772052c3c4f9af564f930263796823ce404ea1bc61495f0ad867bfbffafbcf192c16485eab844d10736de3349a49f7f2" + "bytes": "5e4900e9de156627ce21fb5112f6e2b7ed25a8f88397b81765260d47d10bcd6450efe6bc1914c6d4490376f20485dd210969d1b600105c3202b1f2eb3bcb5c02" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "43dd4304c8a5ab85f2de5001a57355280b931e12d793a7e8fc599d41ef79b5f3" + "bytes": "803b3d2f86220fbe5d7f6a406e86fa07071927877613a350db61047be31173dd" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "43dd4304c8a5ab85f2de5001a57355280b931e12d793a7e8fc599d41ef79b5f3" + "bytes": "803b3d2f86220fbe5d7f6a406e86fa07071927877613a350db61047be31173dd" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "118f60078f132d301deb0b62c7a8f887db18a3cb524192fefeaa42fde0de6811" + "bytes": "b9a39bffd0c2a8a35672e1dbd336ca4146bf0a952e085555327ce6ab23981c21" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "118f60078f132d301deb0b62c7a8f887db18a3cb524192fefeaa42fde0de6811" + "bytes": "b9a39bffd0c2a8a35672e1dbd336ca4146bf0a952e085555327ce6ab23981c21" } ] }, "durability": "persistent", "val": { - "bytes": "5ff304ab306a4d4c003375dd7f219307493702a3ea9e4621b8821dee7e08ae58" + "bytes": "4e5eb08fa1da9d4ff24e3fdbd758a95cc8c31b9b80a981d6ae064a98c08c52db" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.40.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.40.json index 06598d6..5c2a3d7 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.40.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.40.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3084143d4baa12a36905aea188e822eed0e55c9db9e9a3c7204bd11c8cb35946" + "bytes": "bdac7214abc300ba2f986fbc047a1bfcd8be1be3eee8b143da1c457d75c38f73" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3084143d4baa12a36905aea188e822eed0e55c9db9e9a3c7204bd11c8cb35946" + "bytes": "bdac7214abc300ba2f986fbc047a1bfcd8be1be3eee8b143da1c457d75c38f73" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "nnaq7l0" + "string": "nxaz63" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBPR4VSPEENJOHNPQMBZFMKCUMGKBOQ6RIBGOUIA323R6EMTIRPIGB6D" + "address": "GD5YP4MLYRHTFL6HZJED5YNBMG5HKV4TD4AXLGHMQWSBVPBT6N7CQQIT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "a302c00aea71f16f8d7649df5221463acba10f90e30642457b8cff8501dfb1ecf27f7d4d2d7e8a03a07a84089157b185263e3dd80859669ed5aecb10435b8cbd" + "bytes": "96fe1a87bbafafe11c9b6314ca81be22f37fbec841bd24486f13e54a72387fb83d39ddbe2cdf0137368e43f769f20ce9d5d70abbaebc7dca167011699a3580cc" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b7c32274066c6d427eb6627f08fe2e074f77452a26cab60d3cadc07f34c4aaf7" + "bytes": "fbebda76ccff69da3b63a8a80dd26fe34a8d7b4f53d9baab10124c9abd96a80e" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b7c32274066c6d427eb6627f08fe2e074f77452a26cab60d3cadc07f34c4aaf7" + "bytes": "fbebda76ccff69da3b63a8a80dd26fe34a8d7b4f53d9baab10124c9abd96a80e" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "8c83419e0bf3a21b5e7b903ae1492a7f6511912a1938304d956f7ed631cc402e" + "bytes": "4b17084e5e48978354a8e1472d99334d2e1ecd09ed085c22b4077441096d211f" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "8c83419e0bf3a21b5e7b903ae1492a7f6511912a1938304d956f7ed631cc402e" + "bytes": "4b17084e5e48978354a8e1472d99334d2e1ecd09ed085c22b4077441096d211f" } ] }, "durability": "persistent", "val": { - "bytes": "3084143d4baa12a36905aea188e822eed0e55c9db9e9a3c7204bd11c8cb35946" + "bytes": "bdac7214abc300ba2f986fbc047a1bfcd8be1be3eee8b143da1c457d75c38f73" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.41.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.41.json index cf4f1b1..5709297 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.41.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.41.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "dd62496853d52c474387334eebcb24eec05b7875f2497ea7623e6f308a0cbe60" + "bytes": "076cc9e86c11b586fba1b1e26aaf8422754153572dd27cb5aa5350aef418aa03" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "dd62496853d52c474387334eebcb24eec05b7875f2497ea7623e6f308a0cbe60" + "bytes": "076cc9e86c11b586fba1b1e26aaf8422754153572dd27cb5aa5350aef418aa03" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "f8k2u6mlw43cpo8hkx6wfp21u12fr" + "string": "bp8ldj5ob267tf90y7" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAV7V3D75QGIQ5IHFJ4ES7TNYVBT4OMBK7WZSEKLU6EGJLXFTJVMAANM" + "address": "GAOEMTXSUCKOPDJIZKJ3DFTM5HETBT77DYVRLQ6OEC3RH3WOGQ3G2VA2" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "98648f398cb6c90a2722d97a880da0fe2de907fc0074bd4889ba8790f8088eea7f4ced25df64f470a5ea1797cc13df1dd55d51459d29eb3a6ec37a9ef990c370" + "bytes": "c533d13fcbe1fc4877eee9caa5486746a0a49d0c9af599ddabeef194aaea57ad7201d799c1cebb954f35a0dad3532360a15cdecfd20d3cf9bc767c523e89b71d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c9b9005be59eb7503f7182a7da0955f83765dfbb130a64c547df61cabaa80af5" + "bytes": "01a2574033e2b5de9d98033846bc7425cde1f4c9fba2e8b2ce5de76e074a93c3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c9b9005be59eb7503f7182a7da0955f83765dfbb130a64c547df61cabaa80af5" + "bytes": "01a2574033e2b5de9d98033846bc7425cde1f4c9fba2e8b2ce5de76e074a93c3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "f901f8ee08323ce1b85dbf1e33f868f2364de1d1e4520940f6b4bdb93f77e78e" + "bytes": "b54ea13fc47d9c3e7e66d25dc35e91065438d4865145bcd99f898eb6f4fe1970" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "f901f8ee08323ce1b85dbf1e33f868f2364de1d1e4520940f6b4bdb93f77e78e" + "bytes": "b54ea13fc47d9c3e7e66d25dc35e91065438d4865145bcd99f898eb6f4fe1970" } ] }, "durability": "persistent", "val": { - "bytes": "dd62496853d52c474387334eebcb24eec05b7875f2497ea7623e6f308a0cbe60" + "bytes": "076cc9e86c11b586fba1b1e26aaf8422754153572dd27cb5aa5350aef418aa03" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.42.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.42.json index cd81a4a..959a0a4 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.42.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.42.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "906cfbf9c2d355fbf7cdea1b76f2774c753eb8be63628e3e252d2ad2fdbcfa80" + "bytes": "92e32c9c783f1f46b7a326739f4896b64d2eb92a362e4ff48e4de3927bd10215" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "906cfbf9c2d355fbf7cdea1b76f2774c753eb8be63628e3e252d2ad2fdbcfa80" + "bytes": "92e32c9c783f1f46b7a326739f4896b64d2eb92a362e4ff48e4de3927bd10215" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "h62m008y3y8m2e9ehz522j40ojil847l" + "string": "23ko361zlika64qbun9aw1t" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCNDTNYH2KQXW324VJHVIM7GNDDXUCBCK3RPREZK7LZ7XHPDY4LOL6ZH" + "address": "GD7QF3HZU4R5EISPOK5BZOLYPOD3CSEIQRF6IHVQTJIL5ZPMAP7TUGUE" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "94219b679cd9c07a8218df416b950bf6df84fd0806f6c8a82362db0855c6ccc8fe4e261799569d8fb0630dae1bfe4a98744a0d88a57c69b5942dcd0983c6f32a" + "bytes": "635029e6fcbe3182afc4037c2dd26f3916a084f32bdd133ad435380b394367bbcc2fdd838fabbe8f73635aba0c708ef1df50bf65a7e9fd8b93c795b160c5f006" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b4f487390d8901cc303bbb2aa45e3abdd8c5ae2566209881d379e7f0a18fa40a" + "bytes": "ba8cebf28351686134ef76d8ae89b6b9ddef55df74be7a76d483712bf35709ba" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b4f487390d8901cc303bbb2aa45e3abdd8c5ae2566209881d379e7f0a18fa40a" + "bytes": "ba8cebf28351686134ef76d8ae89b6b9ddef55df74be7a76d483712bf35709ba" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "1be74565ec9693ac72e081e2d10c7120147d1a4cfa8406bff3efa9a109b72722" + "bytes": "abc02e161c4663223f6e0d39a3ae8828237b39f2af11d4aa7979b308408346cd" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "1be74565ec9693ac72e081e2d10c7120147d1a4cfa8406bff3efa9a109b72722" + "bytes": "abc02e161c4663223f6e0d39a3ae8828237b39f2af11d4aa7979b308408346cd" } ] }, "durability": "persistent", "val": { - "bytes": "906cfbf9c2d355fbf7cdea1b76f2774c753eb8be63628e3e252d2ad2fdbcfa80" + "bytes": "92e32c9c783f1f46b7a326739f4896b64d2eb92a362e4ff48e4de3927bd10215" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.43.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.43.json index 05cede1..23faeb6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.43.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.43.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "7d1857a241cb077424c3699e01dec13d434bf5fc25ca9ee64c04ebcfebab07c4" + "bytes": "114031ac44d29dbd4409def7ad136efeab5723f2ab554cc496cb78c0fd5c5969" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "7d1857a241cb077424c3699e01dec13d434bf5fc25ca9ee64c04ebcfebab07c4" + "bytes": "114031ac44d29dbd4409def7ad136efeab5723f2ab554cc496cb78c0fd5c5969" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "4cbai6v76r24fe" + "string": "k1y7gw8l" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBLIBA5H2JRXF5MONW2FTT2K5USWWSHM2TRR7ABG3G57CCG3V3EC6NVR" + "address": "GCTXCHLQ5UFVGTT6SSEZPBQEUVCZBT34AWBJBR2BMQJ473N2LLVD35OX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "f09c74a6a233c904a38b46cccd42bf1e4f60dab03ee6f1d647e737c4f25f45858ad26213d28ff34f9a7b86ec88afa0b676f54759f5553cf64f5c28e5161ebac6" + "bytes": "ee013818441bf48fe482ca7d0f5f4ac9021207ef37decec5069f3acb623353463ddc0af57483b58897dd8f7206cc18a8bfde9bf267b97355ecd06722cd792d92" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "fca9bda9bd8f582602677d9f2315b3963dd2286aef04125ce323603b095a4e4b" + "bytes": "c5f35c1093ef3938043828d43650aa43a7cc665c2c536e30c31fd20ae03f9852" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "fca9bda9bd8f582602677d9f2315b3963dd2286aef04125ce323603b095a4e4b" + "bytes": "c5f35c1093ef3938043828d43650aa43a7cc665c2c536e30c31fd20ae03f9852" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "79965bb58e0b8e4497daccdb202ba07d01961461512f647cde2acff816cee256" + "bytes": "b4dbca7689f94dce4864ba05e8626060684a176be1fbaf018205ffec44129b72" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "79965bb58e0b8e4497daccdb202ba07d01961461512f647cde2acff816cee256" + "bytes": "b4dbca7689f94dce4864ba05e8626060684a176be1fbaf018205ffec44129b72" } ] }, "durability": "persistent", "val": { - "bytes": "7d1857a241cb077424c3699e01dec13d434bf5fc25ca9ee64c04ebcfebab07c4" + "bytes": "114031ac44d29dbd4409def7ad136efeab5723f2ab554cc496cb78c0fd5c5969" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.44.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.44.json index 9cf0533..785c160 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.44.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.44.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "59ea890f9589f8fd19371bb3a4d494108b5d93d0e334d43242453efb59b6e2a3" + "bytes": "c488df13d96bcf2825546acf91e88d35dc2029b474ddb1ee497fbb7627a890ba" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "59ea890f9589f8fd19371bb3a4d494108b5d93d0e334d43242453efb59b6e2a3" + "bytes": "c488df13d96bcf2825546acf91e88d35dc2029b474ddb1ee497fbb7627a890ba" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "42o224dk" + "string": "p927oqh40s06dc0a" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GA3GKESC4AITRJ2UZOYN6WRBJYHV44W6YEDCL4N6ZZDKZJHLVIOWKMFM" + "address": "GCYNNJOT4QXT6JBYP4V3UDWV34JZO3FBSFMIRDWFW4XUHE75EEDBK6LR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "48db014db390e9838def85e92992bf0ed00a0687581d8db1917fd81e643d6ec6988abc99e5568c93da4ea165eead4676206532ec3fc3411463f00bcc776cfca6" + "bytes": "ab20b95e9124fe1cf8c357183ce21dd5b572b159841762d2c2badd78993f74147da599ffe0982f30dc6b3f322593f3b2c1a346bfa50e7c248a66e64011a57300" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "8efa60e5575b9e1201f34f25967bfc6b3bff0786ebf60d62eed7b5d9545ad648" + "bytes": "c591a5ee1a06f5c87d62b1eefcea08b392369c12da793289432e429c6f7bff7a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "8efa60e5575b9e1201f34f25967bfc6b3bff0786ebf60d62eed7b5d9545ad648" + "bytes": "c591a5ee1a06f5c87d62b1eefcea08b392369c12da793289432e429c6f7bff7a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "41d1696f3fa79d82c1b3d080d3a109ab8efccf78f9de03f9dbee89ca57bc70bd" + "bytes": "266c200ca478f8d8e224444b5ea86f798f90b0999e7dce7107b8800ab3e958bb" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "41d1696f3fa79d82c1b3d080d3a109ab8efccf78f9de03f9dbee89ca57bc70bd" + "bytes": "266c200ca478f8d8e224444b5ea86f798f90b0999e7dce7107b8800ab3e958bb" } ] }, "durability": "persistent", "val": { - "bytes": "59ea890f9589f8fd19371bb3a4d494108b5d93d0e334d43242453efb59b6e2a3" + "bytes": "c488df13d96bcf2825546acf91e88d35dc2029b474ddb1ee497fbb7627a890ba" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.45.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.45.json index 16a8217..bfd437a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.45.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.45.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "53d99dd90736d6c16a348dc24db32dd144b4df35298aff78e0ba308f0a847fcd" + "bytes": "4232b4c8b8619559d8045cfca19186521451a185a513c0a65652b350e6843b56" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "53d99dd90736d6c16a348dc24db32dd144b4df35298aff78e0ba308f0a847fcd" + "bytes": "4232b4c8b8619559d8045cfca19186521451a185a513c0a65652b350e6843b56" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "8930p906" + "string": "npxlsi7t5bf0v822nnu5m7j9499" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCAJLIMCYTOOKWQOIVHUCTW4KFYQZYI6D6ZCUF5YO4OJNIEU5DL6WL3W" + "address": "GB4EIUU3K7PN7R5ZHQRFZEKM4MQTNLBFTXKWHO2STI3AWDGJASXQS72V" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6abc39a87ad226ba868eab1f845e47130b117a189114edacf7eeb8661e51e6c87b7fb52bf7c74ee9ad758766df4d31c747976fc05ecdad5e9d485f7ef9da3282" + "bytes": "c45e46cbd7eaee30cc4ba9123bd3467776fe173d5b4745243e709907f6197c37332453eb4bfd3081dbafc872433315518074b95395474d34417cc715102033c4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0db771f6987606e9e66fb9ae9797485af8be80e1ddbc125dac4342b3ac21ebfe" + "bytes": "77ef64a09ed61cf8ffa223f93d5a901b1f2b0163473a4fa33b754889ea9663bc" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0db771f6987606e9e66fb9ae9797485af8be80e1ddbc125dac4342b3ac21ebfe" + "bytes": "77ef64a09ed61cf8ffa223f93d5a901b1f2b0163473a4fa33b754889ea9663bc" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2dad97ccde18c4e69749526c330998aa86fd76d51022cd22446b77fde7e97b8c" + "bytes": "c65fdb61cecbfff6c5818f9a3a8539eafa2d21493a62a2b85569570b50fb8ae2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2dad97ccde18c4e69749526c330998aa86fd76d51022cd22446b77fde7e97b8c" + "bytes": "c65fdb61cecbfff6c5818f9a3a8539eafa2d21493a62a2b85569570b50fb8ae2" } ] }, "durability": "persistent", "val": { - "bytes": "53d99dd90736d6c16a348dc24db32dd144b4df35298aff78e0ba308f0a847fcd" + "bytes": "4232b4c8b8619559d8045cfca19186521451a185a513c0a65652b350e6843b56" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.46.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.46.json index 58cdcaf..abb890e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.46.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.46.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3d24e72af7314f3c2cb6be5685881d3b6d1ae28d651bb06b7048228539ca8c07" + "bytes": "72345c2b6d6ab41d0c4bee9d7912d26b71c38b124a5caf95218b00ef9947b81e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3d24e72af7314f3c2cb6be5685881d3b6d1ae28d651bb06b7048228539ca8c07" + "bytes": "72345c2b6d6ab41d0c4bee9d7912d26b71c38b124a5caf95218b00ef9947b81e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "bm2n574asq4rq7wgg1qdzyd5g0e" + "string": "2f7gjp9mgb" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBDU3JY75V5ICHAVHZYSRUBUZH2VKLTEYBL5D2F5VJKAPGPZZRUQMNPZ" + "address": "GBLFDE2AN5T54RQ4JNKDR2WV5Q7DRFYULU5POGIFDDPKRIBSAT2IZQHM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b2dc306c8dbbe3c9b0ea61ae966288ff83760871df1ec30f05e2da818acac77d18e2777c1ca8d4a42df47822d8d05856eefaa9fb0ec4fcb26ac8c839cb783567" + "bytes": "0e136485705d56c161480bb6b85a23db640eede667b646fea72ffbd337540e466d5a69bd23d58a1a61187f31c9ddea83e65735499fa6e30065dfda861733e820" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "561a8878f49ab365fa6cb52eb707fd64cace3ec2476c445b0fed6c01b67f7f94" + "bytes": "be6347c04c1d74a10e420e4e8b15240b30d47bc4d594556be4f24d6f9b3086ad" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "561a8878f49ab365fa6cb52eb707fd64cace3ec2476c445b0fed6c01b67f7f94" + "bytes": "be6347c04c1d74a10e420e4e8b15240b30d47bc4d594556be4f24d6f9b3086ad" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "553734bf92bd99b107ddce52ad47c6517e52929d03b24ed85369ac6cab7125a5" + "bytes": "df6ba0901e6f08fa323e5ac214f44f2f11fc993e07ecf275bea05aec0da488f8" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "553734bf92bd99b107ddce52ad47c6517e52929d03b24ed85369ac6cab7125a5" + "bytes": "df6ba0901e6f08fa323e5ac214f44f2f11fc993e07ecf275bea05aec0da488f8" } ] }, "durability": "persistent", "val": { - "bytes": "3d24e72af7314f3c2cb6be5685881d3b6d1ae28d651bb06b7048228539ca8c07" + "bytes": "72345c2b6d6ab41d0c4bee9d7912d26b71c38b124a5caf95218b00ef9947b81e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.47.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.47.json index 7937dc3..72be2b1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.47.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.47.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f756b2c1c760fbe0290ee7cbf8976bd22a45dd11340e3bdb59e4abd4e41b6e52" + "bytes": "58efdc99f5db9235e5532ccb2e14a10e8c2c9af11fac26a6e373c7e614e86e43" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f756b2c1c760fbe0290ee7cbf8976bd22a45dd11340e3bdb59e4abd4e41b6e52" + "bytes": "58efdc99f5db9235e5532ccb2e14a10e8c2c9af11fac26a6e373c7e614e86e43" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "987nw0fqv25e6rwmg" + "string": "2o8rnbf9ze46nwebr812" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBTQEU6767NIZXTHVOJEFKPF45K52UDNGQDYDKBIAHPNRP4CAD3O3GXT" + "address": "GABI4C7CJCZSC7O4EO4PMV3K3TCCUBIMVGLXQWSG5GNF3HXYZ4NAUXHC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "170de1c86fa480f3841a191f1a3b0a0fa337ab89bc60305e8784c2568dec5435e17b93cf97c85e656754d66f9552f2b4d548f2215e2ed5736bede2faacb8616a" + "bytes": "8442cf5c4cd17d811621f7ddf322962bbfcaeb46bfc07376bddfa501c1767f02a7ee41cb0e8aa596f604f6e00928f41528fb4b8e601f23837fb6d55d267435ed" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "7916a3b2735a939370c7d7d70ae6f0cbad8cf3149f43dd76bc31d3dddebe8b83" + "bytes": "a9b2d92f041e1bd6c0eff35826be6af24f218875e56a34f130c8a845c83ddcb2" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "7916a3b2735a939370c7d7d70ae6f0cbad8cf3149f43dd76bc31d3dddebe8b83" + "bytes": "a9b2d92f041e1bd6c0eff35826be6af24f218875e56a34f130c8a845c83ddcb2" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "089409ec6098838d93f66512004151dcb97eec4cdf2b3297023df336ffb07c5a" + "bytes": "f17e522f8a334278164287b80ada799b7f68b94f7eb6421ca57be86e8c8bd507" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "089409ec6098838d93f66512004151dcb97eec4cdf2b3297023df336ffb07c5a" + "bytes": "f17e522f8a334278164287b80ada799b7f68b94f7eb6421ca57be86e8c8bd507" } ] }, "durability": "persistent", "val": { - "bytes": "f756b2c1c760fbe0290ee7cbf8976bd22a45dd11340e3bdb59e4abd4e41b6e52" + "bytes": "58efdc99f5db9235e5532ccb2e14a10e8c2c9af11fac26a6e373c7e614e86e43" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.48.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.48.json index 6df299f..786e4f5 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.48.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.48.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9d7f7f66a4aa38e9e081d100b1994eb35a3c4686dab94d5bdde34284a696bd8f" + "bytes": "baa5152a534953a983f160c185e34dc458408067fbd26d8f95ca6f6ab4355758" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9d7f7f66a4aa38e9e081d100b1994eb35a3c4686dab94d5bdde34284a696bd8f" + "bytes": "baa5152a534953a983f160c185e34dc458408067fbd26d8f95ca6f6ab4355758" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "o357e8prl51e8t1166" + "string": "2mfb2ufy7f99e137e1ms73jh1643db" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAOMKGJGUM6FNHSFCGC7TW5K6K32Q6I4HQUYO7CXVPX6I6GSNME256E2" + "address": "GDX7MYYKWRTHF44GBYAEMSY7XYBZFENE2V7Q5LKSZPUM6RNBNOJIYK43" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3eacc621ab1c6f730f541c605a24732878be6afc7d64878b8548e6ad2cc4e57678457fd11615367e19c7f8ef4c112162e95b0e3c6c14bd63a92e5166bffa4aea" + "bytes": "33590fcc885c94b353816c61e8d26eb43d159372d38640b57623a93ff29ca25faa2785579b8fea698cec62a0cd7ac550395d09984a2de99f81607fb56304a164" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f54f9b84a7b40cef59634bb094a3cacfb9cc9351116873d648bb3d35dbbacc29" + "bytes": "69773ba0927ba19e3189097b3f738bb1a19edc6cacd241f8d5bc0362b8cdd83d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f54f9b84a7b40cef59634bb094a3cacfb9cc9351116873d648bb3d35dbbacc29" + "bytes": "69773ba0927ba19e3189097b3f738bb1a19edc6cacd241f8d5bc0362b8cdd83d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "67b6d7c8504a96d428120c125a6cf22c1e23919afc4421bbddffc1cfc3191680" + "bytes": "70e06fcba4f681df341e4deb8041f204a5ad311ea243368145d9274018e28248" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "67b6d7c8504a96d428120c125a6cf22c1e23919afc4421bbddffc1cfc3191680" + "bytes": "70e06fcba4f681df341e4deb8041f204a5ad311ea243368145d9274018e28248" } ] }, "durability": "persistent", "val": { - "bytes": "9d7f7f66a4aa38e9e081d100b1994eb35a3c4686dab94d5bdde34284a696bd8f" + "bytes": "baa5152a534953a983f160c185e34dc458408067fbd26d8f95ca6f6ab4355758" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.49.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.49.json index 31ca7b3..228d93f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.49.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.49.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "13befdc06fa7582e933ce194831ff2140ac75731f6bcfcc1e40acc6c85dd0590" + "bytes": "4cf3211f81f4325f963e594397ea1bec88fd55a8fe89b5f19b71775e96214eef" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "13befdc06fa7582e933ce194831ff2140ac75731f6bcfcc1e40acc6c85dd0590" + "bytes": "4cf3211f81f4325f963e594397ea1bec88fd55a8fe89b5f19b71775e96214eef" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "9fvf3zwa9kdw99214ylro2xh" + "string": "9l3akxku4d6hs9r6j78631" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCMXXQ2MNXSUSGIEPLCEBDRMHBQQQA2KY4JEQBD2USBX7N3JTITT7AGL" + "address": "GBAEVSUIYTBKJYZOCJF3LMJ57X4T2SU76FPV55EO6VUS2MMZ4ZXOLFZD" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "abdc1bfc0e9c3242f312bff492393b8b141251150a368a7d9e3fc82b55d6e335e8c2170acf76a2c3952d94146f3adac8c7dec6283a67a0246e951d394a335cb3" + "bytes": "93ec019bf2d4de070f6cc924c21cf076ba3653d877b0d904f434f9afc452545832fb8c01bc16570e49dd613be78ebe2a6e07842011f92b469332ffc1d3482cc9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "07aeb703b4a2d71ad00e08710729087bb4c3944120323a841b92d8decb76172f" + "bytes": "d13fca41c5afc5ba65181bc62d1703ce1057cb14910f53edfd43f0e718e24b57" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "07aeb703b4a2d71ad00e08710729087bb4c3944120323a841b92d8decb76172f" + "bytes": "d13fca41c5afc5ba65181bc62d1703ce1057cb14910f53edfd43f0e718e24b57" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "75ff7d789af2a4f33303036fa172eb1f6d3cac597cc35fdc1244216b65463df6" + "bytes": "73ef69c5fb750106b0051b2318898cb8e275239dfa7c6def14176c89afa2b383" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "75ff7d789af2a4f33303036fa172eb1f6d3cac597cc35fdc1244216b65463df6" + "bytes": "73ef69c5fb750106b0051b2318898cb8e275239dfa7c6def14176c89afa2b383" } ] }, "durability": "persistent", "val": { - "bytes": "13befdc06fa7582e933ce194831ff2140ac75731f6bcfcc1e40acc6c85dd0590" + "bytes": "4cf3211f81f4325f963e594397ea1bec88fd55a8fe89b5f19b71775e96214eef" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.5.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.5.json index 963a4b4..1d8d55d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.5.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.5.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e0c0d90d2569ad575b6b416f94360fb097b27a9918441f28f28860f5d1a8391e" + "bytes": "d267d20b58bd8b3705e64ee4269cac4ead8f7e44ff7be6c1eaf83a4e480c553b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e0c0d90d2569ad575b6b416f94360fb097b27a9918441f28f28860f5d1a8391e" + "bytes": "d267d20b58bd8b3705e64ee4269cac4ead8f7e44ff7be6c1eaf83a4e480c553b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "90g2l98w3gigq110l5h" + "string": "03l3vkye48914d8a99402cy3ts" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBEPRHNP6BD7QF3DWCT4YXO7L4SWLEZBFEVX3ATBWOXH233FXKUMY7QR" + "address": "GBQSDCCT7CZSFSMLD7XOFCDFMDTVFEHEGXHB7MMRNWXBMIRZI5LA74UI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b4b8788f7b3d5933e1dbfe82c95c6df773ba2d7ac25e147b4f63184addf5b4712b2be526a987a09b0d6607c2e2e51fd6234155139734253eff8c21d1e8bc026c" + "bytes": "548dd7c4709335236287fa0224e9b94b0809321fe517767b90c60bc389f2a8bef6c093321c81e0180c92e2f18926525a511e50964bab9266ac1693276cc80544" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c12b07f99e58327dfe27304ab2403df2cefbe76faa0a26da09fe489dd26c983a" + "bytes": "87bbc53f51ab9548f705c0be8f5d8f8557bc58e6b44b4d7e4db997a7f96181d1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c12b07f99e58327dfe27304ab2403df2cefbe76faa0a26da09fe489dd26c983a" + "bytes": "87bbc53f51ab9548f705c0be8f5d8f8557bc58e6b44b4d7e4db997a7f96181d1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "80a68211f0f42bb1f7122cbeda9ccd9399e6c1a22ed48cc93c1e189b70cd7fb7" + "bytes": "c00175418d71195f8705bd8e7365f5a375617a92ae32c6a37b0ccc1f7888bbe7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "80a68211f0f42bb1f7122cbeda9ccd9399e6c1a22ed48cc93c1e189b70cd7fb7" + "bytes": "c00175418d71195f8705bd8e7365f5a375617a92ae32c6a37b0ccc1f7888bbe7" } ] }, "durability": "persistent", "val": { - "bytes": "e0c0d90d2569ad575b6b416f94360fb097b27a9918441f28f28860f5d1a8391e" + "bytes": "d267d20b58bd8b3705e64ee4269cac4ead8f7e44ff7be6c1eaf83a4e480c553b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.50.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.50.json index dfcff8a..51e4870 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.50.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.50.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c151ddbbe683ea81b50ea9af76996e6dbcfa697b68f9f926f523bfd217984b3a" + "bytes": "dc8fd0d535dfa9e6682bb491eddbe7767ec65280c9db8e135adbe51c4809ab80" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c151ddbbe683ea81b50ea9af76996e6dbcfa697b68f9f926f523bfd217984b3a" + "bytes": "dc8fd0d535dfa9e6682bb491eddbe7767ec65280c9db8e135adbe51c4809ab80" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "sd7duf7s4q11c0w94b2js6nwae" + "string": "n83q456e9d4aaq" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCEV3MJZPEAQZXJMNI5G7XSHAKQGEQ6OPCYBULICKUVKKW7GC6AYKSVE" + "address": "GA4WBJ2BFJNSE6ECXCS6NGD6PIXKTAUDQNGAOLG55D2ZB3WP4FRXQ4OT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "90c040a7758bdc7592f83b2d1541a2666e682ef6ede29d8601b9987f07254e7b22bf53f7fca93a3e9dc8b7c2f8b4dcbda522da00ed615a0ef4942e9cec7afe1d" + "bytes": "9bddf3254ab9797c5d0563a5e279311f10b95dd37b5de7c639e44a7c637cd9ba02e1eed9b50df2cdca76acb04af98f6a239e933edf88d47d412e2ab775f584a4" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4dcf7d4de79233840b3599b644efa460bd3aa70940af307410955b3a14620145" + "bytes": "e67708bbe057bc5e1e80c3371f46f0daa834bb5551db87874e4d228d59b468a0" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4dcf7d4de79233840b3599b644efa460bd3aa70940af307410955b3a14620145" + "bytes": "e67708bbe057bc5e1e80c3371f46f0daa834bb5551db87874e4d228d59b468a0" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "62ec9c7f82f07bbae5f1b334e83265c114f5f907d3a16bdec370bc9687b41ced" + "bytes": "cb1cfd53d654f27e9ae6dbd68c24cac6e0b72b902cc2054551f2098940c8673b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "62ec9c7f82f07bbae5f1b334e83265c114f5f907d3a16bdec370bc9687b41ced" + "bytes": "cb1cfd53d654f27e9ae6dbd68c24cac6e0b72b902cc2054551f2098940c8673b" } ] }, "durability": "persistent", "val": { - "bytes": "c151ddbbe683ea81b50ea9af76996e6dbcfa697b68f9f926f523bfd217984b3a" + "bytes": "dc8fd0d535dfa9e6682bb491eddbe7767ec65280c9db8e135adbe51c4809ab80" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.51.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.51.json index 182d8cd..f76620c 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.51.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.51.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2d8ac04cad5a7079b7f29bfb4ae00e2546070712485b30d4e70d35feda7cb2d7" + "bytes": "0cd6476ac20fefb124165b6afa737f50651fc56e0726ba68c33eff5ce851a1d4" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2d8ac04cad5a7079b7f29bfb4ae00e2546070712485b30d4e70d35feda7cb2d7" + "bytes": "0cd6476ac20fefb124165b6afa737f50651fc56e0726ba68c33eff5ce851a1d4" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "mph8u2x1l" + "string": "zx8txn998kdhp9fx55fc6vk655ixk5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDX7MZVELLRX5BTK6S5G4UL2S7P7364CM2RGDTWROIWE4LKAZLMM6HHM" + "address": "GDP3M7XEJZRQIE35KQQUYK2ANGULVRTVRZOJMYQSHKIN5XBRZIUDTZGN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7faf5d259c49975a2816912d7781170b616668832cc474cec1c862d7e3b5b4dadc9f65e080af1e544318c7b730c55f7b09c50e4f370e72c88090ff3eded73d9f" + "bytes": "0fb5ee0bb2f4a87e9ce11c7d13d5ee07e7e787a3284cc74f69c18c7ac568297c657263fff1b714eeb401d9d8cfb03e6b0b7610434752b1885a32df097ac3f846" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "da1b99c666db18989b1be794840c5312d9ead702b2fa9cff0a6913f4fb4ab2c7" + "bytes": "15c4181356f81b82b951c3f57b536f1c6fff2e2cf7dab343a391724d4beec2fb" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "da1b99c666db18989b1be794840c5312d9ead702b2fa9cff0a6913f4fb4ab2c7" + "bytes": "15c4181356f81b82b951c3f57b536f1c6fff2e2cf7dab343a391724d4beec2fb" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "203f28a082276729b01348c6c04060025c55a9456edab2a949a836e916b24b0f" + "bytes": "3c8bb18cbe3704da92d2d75437bd4191ba253c5fce33bfcd48fd83e837e57869" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "203f28a082276729b01348c6c04060025c55a9456edab2a949a836e916b24b0f" + "bytes": "3c8bb18cbe3704da92d2d75437bd4191ba253c5fce33bfcd48fd83e837e57869" } ] }, "durability": "persistent", "val": { - "bytes": "2d8ac04cad5a7079b7f29bfb4ae00e2546070712485b30d4e70d35feda7cb2d7" + "bytes": "0cd6476ac20fefb124165b6afa737f50651fc56e0726ba68c33eff5ce851a1d4" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.52.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.52.json index 95655d8..ee90a63 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.52.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.52.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5ae535193c1c680c87eebbb3cf1bcdba0de4be9e61a9ac53a60dc88824b08b33" + "bytes": "c7eb8962125c984be72435db8ca1b37b21b62eff63c233f18a89cf811e1c9f86" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5ae535193c1c680c87eebbb3cf1bcdba0de4be9e61a9ac53a60dc88824b08b33" + "bytes": "c7eb8962125c984be72435db8ca1b37b21b62eff63c233f18a89cf811e1c9f86" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6yx194w5k7qmuiy4bh200wf3cpazdk6h" + "string": "e2le8s3ap" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCJUQDNNI7BOLHLDLVYDLSTGTD5NFAXZ5BRCLSVV3HUCGX3XQXFY6GRF" + "address": "GDV3JNMPSXQBX5OPGZRDFD7DXWGRGXD3XCCHOZ3X3M3DGN57FX6GL6MJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "faf7f243c7e206caabca53e3e2fe423473815131ca9c51f2ca3c4d40cc5180d455e9b728a382b8653faa1e5a7875ba3936e6fecae9e4929a030a9df2c4c7986d" + "bytes": "829e9323dc2e164885bbef25e98b314909e7689de7933f0e6dc38e61c1f90f58af330f650ff260003d44047eaa9d6bd300dc413d8bb353f12fd599ec44d0b63d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "24e62179497929ad4de5064dd8a473942b2f413ea4d3b253ccf64a08f71c2aba" + "bytes": "e8c27f0fd78d00268a8e716db4cb5e93c38bb2d7c6995687964aa6f5134420f6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "24e62179497929ad4de5064dd8a473942b2f413ea4d3b253ccf64a08f71c2aba" + "bytes": "e8c27f0fd78d00268a8e716db4cb5e93c38bb2d7c6995687964aa6f5134420f6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d4c339939bc20e88d2ed76f8837ba2a330d01a9f826834f8a62716d4494e89aa" + "bytes": "7b23604d93ad95755038fce6d45e99a83d1c3f657d1d2b6d2cb0d34b714a4c49" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d4c339939bc20e88d2ed76f8837ba2a330d01a9f826834f8a62716d4494e89aa" + "bytes": "7b23604d93ad95755038fce6d45e99a83d1c3f657d1d2b6d2cb0d34b714a4c49" } ] }, "durability": "persistent", "val": { - "bytes": "5ae535193c1c680c87eebbb3cf1bcdba0de4be9e61a9ac53a60dc88824b08b33" + "bytes": "c7eb8962125c984be72435db8ca1b37b21b62eff63c233f18a89cf811e1c9f86" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.53.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.53.json index 5aade3e..1121641 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.53.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.53.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a67f4adab85514adc1f81ff6e3ca7c57fb0dd8f7f58a6763b7a7cc3215a0cfb6" + "bytes": "b36473f7ab74f99c63c55c0da62650814afa73cbd5f14cc328f0cf3d638cd52e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a67f4adab85514adc1f81ff6e3ca7c57fb0dd8f7f58a6763b7a7cc3215a0cfb6" + "bytes": "b36473f7ab74f99c63c55c0da62650814afa73cbd5f14cc328f0cf3d638cd52e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "587ip2o7ksz29496t3fqxufu6el" + "string": "eb0j4r" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GANQNF45SVMJWJNSFP7BLFX2TXJJWTK75DTKTUB7TRZMW2WVWJLWUOGL" + "address": "GCSDTV7JCQ22DZD2AFZ3Y3VQGCNRSBREMJ4D5KS7R37AVJLC6QW3DJGO" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b334a8e040617f342861b640dee10de8b7d3fc184b083ce5c40f77a2726ef72f62da8862e4db365763afa725e10e9cf7b3f6eca6d4b480ac76669cdad950358f" + "bytes": "30d217fb3ddf145626871090adac3d864809ed8a746844631b37bff27879852f09996bf721bfaca1e4ee80574a5b615d45226cd8d36502e26ea4155835ee417d" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "641295ea2cc234762abfd350a491bc67502aec1f2a7557a083f7f914404a5a71" + "bytes": "cc41c8e4fa1c3692e31b60cf3e26b59b0905928b9cecd9724ae6f63e98870557" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "641295ea2cc234762abfd350a491bc67502aec1f2a7557a083f7f914404a5a71" + "bytes": "cc41c8e4fa1c3692e31b60cf3e26b59b0905928b9cecd9724ae6f63e98870557" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "bbdcb467e4742c8e340439fa2aa870df7882b7940f17ef06fbeeae45cd752eec" + "bytes": "e45ea25c02475e8aa5276978d2fd35cae2bed1de421e99ae820f5cf63a6ae1a1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "bbdcb467e4742c8e340439fa2aa870df7882b7940f17ef06fbeeae45cd752eec" + "bytes": "e45ea25c02475e8aa5276978d2fd35cae2bed1de421e99ae820f5cf63a6ae1a1" } ] }, "durability": "persistent", "val": { - "bytes": "a67f4adab85514adc1f81ff6e3ca7c57fb0dd8f7f58a6763b7a7cc3215a0cfb6" + "bytes": "b36473f7ab74f99c63c55c0da62650814afa73cbd5f14cc328f0cf3d638cd52e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.54.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.54.json index 399eed4..bbdc4e9 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.54.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.54.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c77656a8786f81eed57d960c099b8b7dec5d9dd6ae5f9f56f6ef37f3d04426ab" + "bytes": "2f965cc6bade27e2f152c09e849495f58a02dcb674a5ede352a35b0ee288b3a4" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c77656a8786f81eed57d960c099b8b7dec5d9dd6ae5f9f56f6ef37f3d04426ab" + "bytes": "2f965cc6bade27e2f152c09e849495f58a02dcb674a5ede352a35b0ee288b3a4" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6az1sinz5sb8x40h9x07o6k" + "string": "5i6164u47xxi5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBKIWBWDWVOJ4CFWOY4Y65OTMAR3JIGDV5LP3UQE2BWJB5SHJOTQTQVB" + "address": "GBG4RJ5OKRJ6RMSXYM5GZCAEQFXMSUNBWYSLILVPAYIPVHNCVHMJKF2J" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "815fc770d2843943c2060d18108dd16e9d7fcef8edfe6387a026893dedd5e142eb757c575850979024de343e0eddedbd87f1a98af24d562d34b283a6117d40cc" + "bytes": "0b1c658b8dde30c72a0e34bb458ecdf2a851d923b80b13c5fbae106218cd1be4ff233c264d53f41d0377bb2e594c5fdb53591d1ec55c8234829a77181fc55def" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d8988e61d17914279ac55a450ac4d3676e4ae949aa7dbbf87e8dd4cabf2912e9" + "bytes": "0109c1e4ccb3c0ea98225f69d1b8a81709adfc33a7ad5bccf20f5861874537e3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d8988e61d17914279ac55a450ac4d3676e4ae949aa7dbbf87e8dd4cabf2912e9" + "bytes": "0109c1e4ccb3c0ea98225f69d1b8a81709adfc33a7ad5bccf20f5861874537e3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "97c3332a6b0feccdd8d53b426fb728fcc80fe033fa581463281e6760d9886415" + "bytes": "ea20084d42eb8a0a360d4ecb9eeb532c19d13f6477d09d662aaa689d2d1cdb80" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "97c3332a6b0feccdd8d53b426fb728fcc80fe033fa581463281e6760d9886415" + "bytes": "ea20084d42eb8a0a360d4ecb9eeb532c19d13f6477d09d662aaa689d2d1cdb80" } ] }, "durability": "persistent", "val": { - "bytes": "c77656a8786f81eed57d960c099b8b7dec5d9dd6ae5f9f56f6ef37f3d04426ab" + "bytes": "2f965cc6bade27e2f152c09e849495f58a02dcb674a5ede352a35b0ee288b3a4" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.55.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.55.json index ec3c29d..0b05583 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.55.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.55.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d4efc0f9b27783d94cda8823c621a80947d45a6c13421a8df047335396a7cf32" + "bytes": "113091a0519d27a8543840506c8b02c4a7cf1c09b5f64a1ae73332f252c87790" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d4efc0f9b27783d94cda8823c621a80947d45a6c13421a8df047335396a7cf32" + "bytes": "113091a0519d27a8543840506c8b02c4a7cf1c09b5f64a1ae73332f252c87790" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "p12jz" + "string": "qd5ibkwhrgi32m0z88880l6z98vs3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB3GX36ORRX5E5NY4IHZOGZRRYDAYCPQCSLUSXQL2SZNNTOONSZCE2VO" + "address": "GDDA2T5UYNVQYDGW5O66F6HGZXC2GJFACJBTBEBJAD2IBZAXMOER63AQ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cbd8644c2fb82437a6633ffc25e0597997cafad46a174dd5673496c205597d870276dbcbb953e622ac5e63a0d786a441bd77677f68a5e1e3de991a710151ec5b" + "bytes": "3549d50e86c14eb6da5a7d3029fb66aaadcc0c8396189b227df0aac239fce7c96421459d474b37f6fd23c4a9ac99ef20bda95b1ceec86bacd5fcf33d6c2c1b22" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b55aaad1c6d3cc0ad5a1d7af8c57ce5fc0613a25a3a3599847afea9fdfab0d90" + "bytes": "644406de226aa4b63458f8dd15c48a3be22d71d3fb09dca6371b8260e27544c1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b55aaad1c6d3cc0ad5a1d7af8c57ce5fc0613a25a3a3599847afea9fdfab0d90" + "bytes": "644406de226aa4b63458f8dd15c48a3be22d71d3fb09dca6371b8260e27544c1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7f690c08735ebe6df9ee6002ec9e6f3bf1c5685fe3e66c3fb5dbd15bb93305b3" + "bytes": "a44473f4a3c684292c34eaa7073b3c6133c4c540502b869c305b174fb6a453e2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7f690c08735ebe6df9ee6002ec9e6f3bf1c5685fe3e66c3fb5dbd15bb93305b3" + "bytes": "a44473f4a3c684292c34eaa7073b3c6133c4c540502b869c305b174fb6a453e2" } ] }, "durability": "persistent", "val": { - "bytes": "d4efc0f9b27783d94cda8823c621a80947d45a6c13421a8df047335396a7cf32" + "bytes": "113091a0519d27a8543840506c8b02c4a7cf1c09b5f64a1ae73332f252c87790" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.56.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.56.json index 7e703f3..9ead582 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.56.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.56.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5013c48c04f60bded248c10876246094b8445093a07076c6fb4772467b6cf948" + "bytes": "b8e7fb04249e52995071a776bf090542a864fe8759e920951a0345595c9689d3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5013c48c04f60bded248c10876246094b8445093a07076c6fb4772467b6cf948" + "bytes": "b8e7fb04249e52995071a776bf090542a864fe8759e920951a0345595c9689d3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "g88o06" + "string": "o6secw92itsov015y93a83qrd78x" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDLXZRAWZKEI5EAM53DYQ6VZX2LCT7CATX3L7HYDZYJQSCHIANEHRXZI" + "address": "GBWMXY7Z7ANEO62P2CRQIVD5PJLMTPYVOUQ6GBW3UCQSTD3YWHQ2NYOS" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c89c1ff398225d030736125c9dbce1445404504c7694d643fbc82cba64ccdd0620bf7218aba0f1135b5a110039800540ee9d640ff07619bf9e1993503bcb5b75" + "bytes": "23894ae1095ec647148889f46b39245a72fc10df6762803d9e88f6692b70f3b33b23fbee432e82df3e6c6cf86a644323e6ec28ce09ba886bd60a2c7119ec9f46" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1ea6a22c32b033c59e7403ced96e6c03d8ab089ca2297b8fd7b362329e007920" + "bytes": "5aa709bb2c90f21f5a258c2760d5c3a354d34939f53bcb9bc693f1feadd7d745" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1ea6a22c32b033c59e7403ced96e6c03d8ab089ca2297b8fd7b362329e007920" + "bytes": "5aa709bb2c90f21f5a258c2760d5c3a354d34939f53bcb9bc693f1feadd7d745" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "5ccde587a0e18666be88e0b69cec124d950e1540b9604eeaa27cad2eedd8ea65" + "bytes": "785519c0d2f60b579edd7f6415d30aac894bc284a92f755250d52dbc89b12f83" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "5ccde587a0e18666be88e0b69cec124d950e1540b9604eeaa27cad2eedd8ea65" + "bytes": "785519c0d2f60b579edd7f6415d30aac894bc284a92f755250d52dbc89b12f83" } ] }, "durability": "persistent", "val": { - "bytes": "5013c48c04f60bded248c10876246094b8445093a07076c6fb4772467b6cf948" + "bytes": "b8e7fb04249e52995071a776bf090542a864fe8759e920951a0345595c9689d3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.57.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.57.json index 26e7d04..b06adb1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.57.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.57.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5cc962745830bfc34a879f94076f55a81db16d113fa1db54bb5a1ba3221ff231" + "bytes": "94781b8022ed22eb6c92da1e6ec64b3c2a2df8d1b950baac0ffd7b8cedfb47f2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5cc962745830bfc34a879f94076f55a81db16d113fa1db54bb5a1ba3221ff231" + "bytes": "94781b8022ed22eb6c92da1e6ec64b3c2a2df8d1b950baac0ffd7b8cedfb47f2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7u9" + "string": "2ozl33rw581fgf5ii" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCQVGDD222DTQYXXTYRWZCAQ5BZP3MKJNLXYVHIUJY3EPJMICJFFF3C6" + "address": "GAFUC5VNUIPBSGY4HI5GA25JVOJM5KTPJ5YCBWK2GLETFXDQQUCTWEPH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "0ca99db605032783a00b2e124971928978ea4b153496157affd4dbe1afa3d0c7578de692706a61971b782962cdd369b62ada056b0bb903f2e730215fefb85b1e" + "bytes": "b63e38360de7c8a5005c607575539c2af2613869c5402c74cb9c1b6bdcc460e8d33341102eedc9bbf73b1c9fecccd062677645a170ebdeb64e03f7112072f05c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "bd934558f5a0bba86fa9ca5d3fd921383bee768091928e5758fdd0fe4e9ef907" + "bytes": "eab84534d5d5f9a5ecba1ad3df96e7ec1780bd430c925d37a04b3902a2916cfe" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "bd934558f5a0bba86fa9ca5d3fd921383bee768091928e5758fdd0fe4e9ef907" + "bytes": "eab84534d5d5f9a5ecba1ad3df96e7ec1780bd430c925d37a04b3902a2916cfe" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "167fb292ad259db311be85d2c0bbfa47ee6ea515a78d2accf1d41529f5ac8be5" + "bytes": "6fd578ba4af26417cee9ce3fc82e6620b594aa18eafcfe4dd98d44d01c490e87" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "167fb292ad259db311be85d2c0bbfa47ee6ea515a78d2accf1d41529f5ac8be5" + "bytes": "6fd578ba4af26417cee9ce3fc82e6620b594aa18eafcfe4dd98d44d01c490e87" } ] }, "durability": "persistent", "val": { - "bytes": "5cc962745830bfc34a879f94076f55a81db16d113fa1db54bb5a1ba3221ff231" + "bytes": "94781b8022ed22eb6c92da1e6ec64b3c2a2df8d1b950baac0ffd7b8cedfb47f2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.58.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.58.json index 635f7f7..db68eef 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.58.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.58.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3a775786b835848ddf0aeadd3aebc6897758d95f75dd05355babd687ba5eae7e" + "bytes": "402d796cc9a0796cb5c2f08d37914b23f585c88836d6543905a49f40b75e3473" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3a775786b835848ddf0aeadd3aebc6897758d95f75dd05355babd687ba5eae7e" + "bytes": "402d796cc9a0796cb5c2f08d37914b23f585c88836d6543905a49f40b75e3473" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "m6rw85o7" + "string": "7r3868644sl77fw7kc1420j4gh7b4fty" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBHWH4MQQB3VQM4JMOU722YWN2PYWMC2WLSHTXBJ3GPKI36AUK5BD4MC" + "address": "GCXMLU673ZUGQSWSLRDUO6EYXTRKCVSQSR5SY5TEYO372CAVDETMQN3G" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cb221ae77afaef400d7a54c645b163c7c6bba9c0686b2e34ab20e904a3370bbc3670a0f5bd3151183e4b7c15f3f1426839b25c3fd2040ed1389eadeb58d24595" + "bytes": "15108fc53db62220fdfadfc1ac684f505ace73b84e741d02ebbbdacc5eb8ea24082fed8d70c2af0f4b4a1b215e49e1399593cb5184efef3d2be93d2e205db227" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2d6fcdf4f0644b3821298c28d38bb212df0c3a3bdacebff2a76ed4c1d01313f1" + "bytes": "ea35a7f40d8b933b18f17db6ec7939a568a4759c4961326231eee3721d1497e3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2d6fcdf4f0644b3821298c28d38bb212df0c3a3bdacebff2a76ed4c1d01313f1" + "bytes": "ea35a7f40d8b933b18f17db6ec7939a568a4759c4961326231eee3721d1497e3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "fdb5a505a3bedaf85d9bd2c630fa86949fcaf19dbe6f87c0e9ebcef980b4b71f" + "bytes": "c121648ac1aa0a814202974e71592474c4ac369adbdcf283c8186f06c914cce9" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "fdb5a505a3bedaf85d9bd2c630fa86949fcaf19dbe6f87c0e9ebcef980b4b71f" + "bytes": "c121648ac1aa0a814202974e71592474c4ac369adbdcf283c8186f06c914cce9" } ] }, "durability": "persistent", "val": { - "bytes": "3a775786b835848ddf0aeadd3aebc6897758d95f75dd05355babd687ba5eae7e" + "bytes": "402d796cc9a0796cb5c2f08d37914b23f585c88836d6543905a49f40b75e3473" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.59.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.59.json index 0d0ea5c..a349d3b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.59.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.59.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e5a487e3daba895fa88b19bf53a246043ff15d27344fd79f82ea9576bfc2a989" + "bytes": "8fa1b3d8465b86ec4fc08f96fc1d8d406f18d59113af0176069135ebc1d3038d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e5a487e3daba895fa88b19bf53a246043ff15d27344fd79f82ea9576bfc2a989" + "bytes": "8fa1b3d8465b86ec4fc08f96fc1d8d406f18d59113af0176069135ebc1d3038d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "xe08h61uvb52x994ydz8" + "string": "8nx4z99ya46g843oh66p95b" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD5YPHKD46OAMT6QUHYKMUTOUDW5OIOSAWPBZHA6KWCEEOV5UNWBFULY" + "address": "GDXAIEMU6DG37NJB63B5MEMCYMUR7BZ7Y77RQNKYNQI235Y7V4OWRI24" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "e8b141e2858aea876542c4096c2144f369038639088e03ca3dc7005e87613da7e1ff32da3b50e20483bd9edc636da306c8bd5a966251d52bb18baee4a6ba51b5" + "bytes": "ccc9a78f50247170f4318d70734e54684cfbec3a1f9627516efac4e4c3c91ad7013a26a838d8f2aaaaeb8f6ff4e1aacbc8b4b3f54a1619530f20110b70612827" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "43060d5b2dd445be148124f779e42b04201f1b1cf5878e11a57154ec45fd40a8" + "bytes": "b18db26a912ec7db980fbf9c77d4f3bf144c8fef12afe2534e5c90626e051e3c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "43060d5b2dd445be148124f779e42b04201f1b1cf5878e11a57154ec45fd40a8" + "bytes": "b18db26a912ec7db980fbf9c77d4f3bf144c8fef12afe2534e5c90626e051e3c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "31c54d691f6da679385a99901285112028767ba26d82870c35bdb865ff05a507" + "bytes": "2f223fefc853ff80c57aa937395c2f29435ab899fb747d1084ccb637c113f520" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "31c54d691f6da679385a99901285112028767ba26d82870c35bdb865ff05a507" + "bytes": "2f223fefc853ff80c57aa937395c2f29435ab899fb747d1084ccb637c113f520" } ] }, "durability": "persistent", "val": { - "bytes": "e5a487e3daba895fa88b19bf53a246043ff15d27344fd79f82ea9576bfc2a989" + "bytes": "8fa1b3d8465b86ec4fc08f96fc1d8d406f18d59113af0176069135ebc1d3038d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.6.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.6.json index 2f9dac9..4997b62 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.6.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.6.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9c09ef8be2bdc2e64ce3d8d5e37a254c1a02c249956762c650cc340a98053a9e" + "bytes": "6ae17b56db3e90ecf652955f9bcfedcc58e2da1f2bb0c6f08336a3b103e029e4" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9c09ef8be2bdc2e64ce3d8d5e37a254c1a02c249956762c650cc340a98053a9e" + "bytes": "6ae17b56db3e90ecf652955f9bcfedcc58e2da1f2bb0c6f08336a3b103e029e4" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "gvaznbd8yu03t142p2t920u" + "string": "zwl4rm" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB7VE3KWEXPTSWHPLI37WCEQYHCCS2OZUR3IQFZHSBE6G7SNEYKN25F4" + "address": "GBEWHSDC2AIAIMWS3LXA2SVQ6TTFOQ64WHDO4M6IMRSPQSJXT7X5HMO3" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "5e0947c73ccd74af3caa8e71c3cede009dfa602eb1c43aacc18e2298eb66a02bdf1fa85b1d1882e69d03285d07358a9bf2d05f4c1cdb41386f4c82a7350b1b5e" + "bytes": "157b54582d758c1eed6ffd7c3e505666dc01b6a3dba7a9fd3520aadc7df2045068423eaced5a918381968dfdae8b68e69d4e13431cf1d0d1325d6280a7fe7be0" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f6520a7275e648698de0c3eeaa48c5e140f12db417b438a19d8be7cb5a11f8ae" + "bytes": "7a6652d76bdb990487a83a1933b48d86eed4b239ea053ecab3dddb7e5df6d576" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f6520a7275e648698de0c3eeaa48c5e140f12db417b438a19d8be7cb5a11f8ae" + "bytes": "7a6652d76bdb990487a83a1933b48d86eed4b239ea053ecab3dddb7e5df6d576" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "c13ebc47dc2191c9a2f019d8aea0d5c64670675c7d991790d0f99d20e8f69eed" + "bytes": "dd800becff7547fce38343f9dfc7d650de87011bb7b74f82986ba3b528764671" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "c13ebc47dc2191c9a2f019d8aea0d5c64670675c7d991790d0f99d20e8f69eed" + "bytes": "dd800becff7547fce38343f9dfc7d650de87011bb7b74f82986ba3b528764671" } ] }, "durability": "persistent", "val": { - "bytes": "9c09ef8be2bdc2e64ce3d8d5e37a254c1a02c249956762c650cc340a98053a9e" + "bytes": "6ae17b56db3e90ecf652955f9bcfedcc58e2da1f2bb0c6f08336a3b103e029e4" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.60.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.60.json index fdf4bf4..a638f00 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.60.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.60.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "52c0ece69a9560f6cefd9822b29c2abb848277ef4caa09131c53cfdf17543c6a" + "bytes": "26df3b92c0f801389ac7d1b0836b3b403fae7da6eb707c6826323c51440e4fba" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "52c0ece69a9560f6cefd9822b29c2abb848277ef4caa09131c53cfdf17543c6a" + "bytes": "26df3b92c0f801389ac7d1b0836b3b403fae7da6eb707c6826323c51440e4fba" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3ec1657" + "string": "btq6t4e6c826xy0w6p8bzhp" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBFSQFPV76WDV5AWPGTU5RI6CEOFXAFS2PMCSAPZCES54TAUDYV7NIWF" + "address": "GAXQPNKXHLB64KVIHAXLDA73TSB5CE3FKOZZFN4NSLD76G6SMY7VO73L" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "dec9d39477c9c9eafb113aeb44e92715a3bb9dac85a5f985f8c5eccb871e8433e24b037f5e7fe0eeaca4e77524573af538d8a3e8555193efc175933eed4c0f3c" + "bytes": "83b4902ae96adeebd9af74e4c436de431d08f3c6224f386937792ed0a86f092152c0f68835d3f0fb7798eb9476d20d05deb221b33dea873b01de731e173ebfe7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b9be7e5e0eb85efec2a7bbff824dbeae36737c01b3184ed0a9b452a9b4316e84" + "bytes": "d08da72a46308601d3249760c68f41c02fc7dc94b3539e7d126a70ee03008bb6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b9be7e5e0eb85efec2a7bbff824dbeae36737c01b3184ed0a9b452a9b4316e84" + "bytes": "d08da72a46308601d3249760c68f41c02fc7dc94b3539e7d126a70ee03008bb6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "cb423534a09359d15330fb92d0a9b1a0358ecc33e120a1a2ac855f4aa1511368" + "bytes": "bbf91892201ea2577e40a5dd734e980ea9dd962a6ad252d7b6dd9e322db7f4ea" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "cb423534a09359d15330fb92d0a9b1a0358ecc33e120a1a2ac855f4aa1511368" + "bytes": "bbf91892201ea2577e40a5dd734e980ea9dd962a6ad252d7b6dd9e322db7f4ea" } ] }, "durability": "persistent", "val": { - "bytes": "52c0ece69a9560f6cefd9822b29c2abb848277ef4caa09131c53cfdf17543c6a" + "bytes": "26df3b92c0f801389ac7d1b0836b3b403fae7da6eb707c6826323c51440e4fba" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.61.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.61.json index c17dc02..1336ab2 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.61.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.61.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c0b3e68ababd6f87db6fa606423c3ad1c063e8f904389da3391969fcf40c6654" + "bytes": "d540296e622ec10091e95aa89553bed47ef101450b188b17a8d69f1417a640c2" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c0b3e68ababd6f87db6fa606423c3ad1c063e8f904389da3391969fcf40c6654" + "bytes": "d540296e622ec10091e95aa89553bed47ef101450b188b17a8d69f1417a640c2" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "s8687z9ngsouz25vb5" + "string": "kg7d67vx90" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAXOXPFKW35M65UYDM3NTZJNBYHU3Q5JXLDHPWW26APQZIS5W5Y6SH6H" + "address": "GAUEIBHTKBSS2GMO4HJK4CMCU6UEDX4NRC4OT2EJMTAM2QDB4YBLQQLX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "13e5f5b67f65aa2d3a023525eb909d479a5c6cf616be223526fcd4f592fc224aa67af400f9c8f55bb718d2f9a28b893181d8c9404fa1c0017255c84e2cccfcf1" + "bytes": "e29e4937fcefe19c1a6965e6fc7238435a490188cc0c8f23d05ad447f9af7d9d928cd42908e559a1a9c4bcd429a7e5948e146739ec1dfc5357728bbb794cff88" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "3514acabbf00317cf78fe9c40f680aa1fb1fcaf89b77348162696b65ededb997" + "bytes": "785397793a1ee200b7d10e08b2647edafe0167cdd70cf432c7a30fe22cf0f2aa" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "3514acabbf00317cf78fe9c40f680aa1fb1fcaf89b77348162696b65ededb997" + "bytes": "785397793a1ee200b7d10e08b2647edafe0167cdd70cf432c7a30fe22cf0f2aa" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "5d9635f08a1fa667436f4287796c430a28404c2181d80c7c6f66f5408ce2402a" + "bytes": "feb291045e2098f55d6bb62266f623813ec148dbcf8685c248b0b7081d728c81" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "5d9635f08a1fa667436f4287796c430a28404c2181d80c7c6f66f5408ce2402a" + "bytes": "feb291045e2098f55d6bb62266f623813ec148dbcf8685c248b0b7081d728c81" } ] }, "durability": "persistent", "val": { - "bytes": "c0b3e68ababd6f87db6fa606423c3ad1c063e8f904389da3391969fcf40c6654" + "bytes": "d540296e622ec10091e95aa89553bed47ef101450b188b17a8d69f1417a640c2" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.62.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.62.json index 6166ff7..6f9fd14 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.62.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.62.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "10229cf736f6e38757f7044866f2cad9d1bb6fc810c4fbfb5b796889427cb67f" + "bytes": "96258433c289aa736b1f145205a681865e544a113dc8cd3f71c41527cb9df3df" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "10229cf736f6e38757f7044866f2cad9d1bb6fc810c4fbfb5b796889427cb67f" + "bytes": "96258433c289aa736b1f145205a681865e544a113dc8cd3f71c41527cb9df3df" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "ck70h2q901g820cgxqbyb046iy6gh" + "string": "796mb6tcnfzhajefrhkt8h25" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD5V242FSMVQ5A5TPGMZ5VEN2C7AXOUHDGP5LPMWHPRB4AF36RSIXHJC" + "address": "GDCQPEUGMMIJ46EM4NANH7QI7UILC362VJ3A3QOD6UDT6OBNQOMLEHRM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2bba6dab84e357238e2a050e4f99b5f200109443002042dbe7b661985527f45e8cd66f324149e436add85745543cddaff61af2abcfd4feff5a572f6750b16948" + "bytes": "45c608cc3b34a92019cc388a4fd7c10c2a00c333103e18c2d39b043a3a64dd4682ba2538b0ac5bafec0541c50d8076a49065865b321a8a0599f17829afd36394" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "79f9594ca1ea39cfbb579fc490f98843e798a32790a6b96d0b8b139ea4427bbd" + "bytes": "9b6176d265696fc2c4ffdcd74b03bc1e4c400a65d43dc54f3b98563593a3e8a7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "79f9594ca1ea39cfbb579fc490f98843e798a32790a6b96d0b8b139ea4427bbd" + "bytes": "9b6176d265696fc2c4ffdcd74b03bc1e4c400a65d43dc54f3b98563593a3e8a7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "21025474910bc0f620166e4ce3f4ec32de09ab12ff56c69d92b92122959eb0b3" + "bytes": "0f4435b69ba4b2df161bafaa17e5dbd32d49812dd1a445e0689dbca24e032c1e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "21025474910bc0f620166e4ce3f4ec32de09ab12ff56c69d92b92122959eb0b3" + "bytes": "0f4435b69ba4b2df161bafaa17e5dbd32d49812dd1a445e0689dbca24e032c1e" } ] }, "durability": "persistent", "val": { - "bytes": "10229cf736f6e38757f7044866f2cad9d1bb6fc810c4fbfb5b796889427cb67f" + "bytes": "96258433c289aa736b1f145205a681865e544a113dc8cd3f71c41527cb9df3df" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.63.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.63.json index 4fcf2a6..1b6e406 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.63.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.63.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "787ac2c09f0116ab913165cbe5d235def2e82be3440efcc6b3a80f01876408f1" + "bytes": "8ed39a4ea1c8acad0451266c96ea2cb6b43d7d269709fa7e9a6eea456ecde0b0" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "787ac2c09f0116ab913165cbe5d235def2e82be3440efcc6b3a80f01876408f1" + "bytes": "8ed39a4ea1c8acad0451266c96ea2cb6b43d7d269709fa7e9a6eea456ecde0b0" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1apv96tffk264lf37f3r8c707830b6" + "string": "16t46cmifx0m78b84bll49i3ofeav" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBNCE37CAHZY2IZEFDTNF2RA24JBKTJKWMVG5QZQFDLOWXWQ5DY27GBX" + "address": "GBHLJPHRM5CZRFS44YX6NHMTJW5K6U3P2HMFH56X4U6PX53YMSV6MEV4" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "eeebf8e55ec6e0957f1b1980a46f8517e37653879cacdabd665a8849669208195d52f41a4a9a906335f1cf1f98c5ba8d93b7ffa18c62033601165f562ef88302" + "bytes": "4ba716051394a4378e17b2d559b318ab5104324ddde08e2c66d00461f53ffac710eeebfc952caeabdd0158f45dc2e900badcbd4ffaf0c957605130e4a04f1d73" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "083016c763a9e9e8aabb52c9003b5034d66336c3b106fbba29870795104d7071" + "bytes": "a0803c65474baae0f75628826acb068d748e2af0872054ee899c85622de087f5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "083016c763a9e9e8aabb52c9003b5034d66336c3b106fbba29870795104d7071" + "bytes": "a0803c65474baae0f75628826acb068d748e2af0872054ee899c85622de087f5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d386c2015c489f6b9885b878f28019d2a0cfe86e1f2fe9df3d501c1b7054e508" + "bytes": "1feb73473c9c4b81d9327ae2f2fda8316da4a78f6e7da8d9f60b02749d86c850" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d386c2015c489f6b9885b878f28019d2a0cfe86e1f2fe9df3d501c1b7054e508" + "bytes": "1feb73473c9c4b81d9327ae2f2fda8316da4a78f6e7da8d9f60b02749d86c850" } ] }, "durability": "persistent", "val": { - "bytes": "787ac2c09f0116ab913165cbe5d235def2e82be3440efcc6b3a80f01876408f1" + "bytes": "8ed39a4ea1c8acad0451266c96ea2cb6b43d7d269709fa7e9a6eea456ecde0b0" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.64.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.64.json index 1307fe4..453c787 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.64.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.64.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f8e42d5357e7a6dc712337bedfd28ae7ca44f9a00b2ec5b50d9581d0f1ee3d18" + "bytes": "292a1662fe5747ba0e0445bf94a640a4056e402408389b26725985cb6f0c1f8d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f8e42d5357e7a6dc712337bedfd28ae7ca44f9a00b2ec5b50d9581d0f1ee3d18" + "bytes": "292a1662fe5747ba0e0445bf94a640a4056e402408389b26725985cb6f0c1f8d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6yjfziz47yx" + "string": "72jyv3n3bk3" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDIH5UBNQUFOGWHR4WBHH4FASEX5YHMCEFI4UXNZC5J5WW2GCIWV4LCN" + "address": "GDMDHQQ7CPACYOJ6HG566VAQJXRZKLNKH6I2AVWZYGFB7LKOILU64KGF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ba4c1dfd4246764fbf54ff0eda6877a660fa6a30ae1cef1a4453cc2f2c24cfcc8058120e01b148906580ca2836e3260fcc8cd2cc8b40df7f96f4520b8c832466" + "bytes": "d62c92d26bd3d030bef7df49183a7b56325281def8bd96b139a0d4d9628c9feaa88d18fd3c9d889e79a051641e38ace1c8801fa596d05a05a4d481455a1e3b6a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "8e4daef34ed971c2185b5f322ddc730c08989195cc1a243caf007b356727ee12" + "bytes": "c4dc4d9a8512409fd92e8c38f0c33f09c4c7b1819c0d539886668d58b07db353" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "8e4daef34ed971c2185b5f322ddc730c08989195cc1a243caf007b356727ee12" + "bytes": "c4dc4d9a8512409fd92e8c38f0c33f09c4c7b1819c0d539886668d58b07db353" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "05b24df6db067c5b959d7077b7aa4090ad8ffe38fbf5debe01639a38cda01c63" + "bytes": "31e09075a7da2d7321e5406c88d9647b48c80c9035b4c341361bd8def1c3e2ba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "05b24df6db067c5b959d7077b7aa4090ad8ffe38fbf5debe01639a38cda01c63" + "bytes": "31e09075a7da2d7321e5406c88d9647b48c80c9035b4c341361bd8def1c3e2ba" } ] }, "durability": "persistent", "val": { - "bytes": "f8e42d5357e7a6dc712337bedfd28ae7ca44f9a00b2ec5b50d9581d0f1ee3d18" + "bytes": "292a1662fe5747ba0e0445bf94a640a4056e402408389b26725985cb6f0c1f8d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.65.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.65.json index ea2dc7d..78fdcc0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.65.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.65.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6d60bbbdc02eaf3f2096878a6ce499b3610bca9bede395ca1fe3e822d4fc3574" + "bytes": "4e10f717684f17f48e1914bb70508ccba1b372e7fae19b7be92a3cc5eb53a634" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6d60bbbdc02eaf3f2096878a6ce499b3610bca9bede395ca1fe3e822d4fc3574" + "bytes": "4e10f717684f17f48e1914bb70508ccba1b372e7fae19b7be92a3cc5eb53a634" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "rpx7s08rlj1n" + "string": "bzaem" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC5HJEDUVAPUHPTG66F2SBHOHGOOQGI37MVQIXU7T2VIFF5BMFW524R6" + "address": "GAPATZEC4UVRSMLHFPCDGJODIWYOKTGSD2JBEBL6SQETX5C6KATYQ7XF" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c28e274d6b19c9e2883880aa93525926c6fee961c0591f678f220cc244c6554d0ea35a7cbe153949972b0a6ad2311ee2fe829edbad88a8021c49126c70c581f0" + "bytes": "df5b021077ca86ba30f52da47b16026cc567f248f35bb0c95766ac5c3fbb1e302bae00a66d015d6a2fbfca7de99fe081f4369078b87f204e2bdc3a1a0efc21e7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c8276352baf4ae2343f668838b27faafc47cc8456a3b88db975e26797a8aa6ef" + "bytes": "31b4b205352d9d1fb3b7b3d1872aa55fe57845ce3e63bf6037f2b6d4a4022bba" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c8276352baf4ae2343f668838b27faafc47cc8456a3b88db975e26797a8aa6ef" + "bytes": "31b4b205352d9d1fb3b7b3d1872aa55fe57845ce3e63bf6037f2b6d4a4022bba" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "06d021b7abdb0f54ff5f07b1b07dc045416287ea74f203c36e9c125a54a27d49" + "bytes": "9bf03b544b8587aa8b5ec73923d20bc3f2c302c6ee1195893aa8631a1eaf6c09" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "06d021b7abdb0f54ff5f07b1b07dc045416287ea74f203c36e9c125a54a27d49" + "bytes": "9bf03b544b8587aa8b5ec73923d20bc3f2c302c6ee1195893aa8631a1eaf6c09" } ] }, "durability": "persistent", "val": { - "bytes": "6d60bbbdc02eaf3f2096878a6ce499b3610bca9bede395ca1fe3e822d4fc3574" + "bytes": "4e10f717684f17f48e1914bb70508ccba1b372e7fae19b7be92a3cc5eb53a634" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.66.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.66.json index 341ce47..a4367c3 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.66.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.66.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3a1f574b3403f0e2c524eb3a5d77eea4236886230f6da9abaeb810b0a4e95910" + "bytes": "c58580e0cfd858f0b7abe5199ce8f9b67ad44ee2aafa61cd8b5c0f023e7175f6" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3a1f574b3403f0e2c524eb3a5d77eea4236886230f6da9abaeb810b0a4e95910" + "bytes": "c58580e0cfd858f0b7abe5199ce8f9b67ad44ee2aafa61cd8b5c0f023e7175f6" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "b9wzdl3or108z" + "string": "1h6xoh5t562cjx3q3r3540z" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBGKMRARHK6VG4ZLWBLVTM6TZBGNO7G7X5JFU4O6XH3MIKPGJO2PUCG4" + "address": "GBSQZ6KB7EMZIZD3JPXPIHZPOEDAIWMGZ24VGFDVA6MCNOU53LZAH33N" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "c946a0246c30b37366b7e3eaf0f84ba7b2568be22827039f937e5c83b0288f851919ff648774cbae8d364cf5daf597638fe345dd04505976bf1b6723c2632505" + "bytes": "f6c2560fc837d0b74b1860317865013edd1e6d0a2187df6022b187f39854b3cd3d9889d6208ddc956e7b4a35d2fd34d87e5bb8d99f6eb7bffa00b4c5f50ac56c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "de6fbe3281b378fd18098f95e85125ba1477d391c8b537929b68d1cc6f4ec3d0" + "bytes": "48ea5380c71ff42cb0768e0faf6f39643c5c4db3040ab05080cafda2af9e410b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "de6fbe3281b378fd18098f95e85125ba1477d391c8b537929b68d1cc6f4ec3d0" + "bytes": "48ea5380c71ff42cb0768e0faf6f39643c5c4db3040ab05080cafda2af9e410b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7ddb38d39cd44bd7174ee63b2084ff991aa4d4943f7d23bc5ca567fb8f47a573" + "bytes": "fe8722ee8c63b95863e8c2e1b717650613be5fb1168e632829786d7c2b1cca1e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7ddb38d39cd44bd7174ee63b2084ff991aa4d4943f7d23bc5ca567fb8f47a573" + "bytes": "fe8722ee8c63b95863e8c2e1b717650613be5fb1168e632829786d7c2b1cca1e" } ] }, "durability": "persistent", "val": { - "bytes": "3a1f574b3403f0e2c524eb3a5d77eea4236886230f6da9abaeb810b0a4e95910" + "bytes": "c58580e0cfd858f0b7abe5199ce8f9b67ad44ee2aafa61cd8b5c0f023e7175f6" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.67.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.67.json index 63cbc92..6392666 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.67.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.67.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "f7a441cc32dde70bfa84187ae781d9c062299748b8283944c4ab40b8d968c9c2" + "bytes": "e589eb9f796a48c26bb308e70918a1a1fc2e5017dd5f7c6f5ba96f639a8ab185" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "f7a441cc32dde70bfa84187ae781d9c062299748b8283944c4ab40b8d968c9c2" + "bytes": "e589eb9f796a48c26bb308e70918a1a1fc2e5017dd5f7c6f5ba96f639a8ab185" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "crs61z29wxgv5n0glw5ru941" + "string": "40ba5u6l17y911455f7120u" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAZ6QXMNBAB3K4NFQCDCK5TXKPSY5NFGGPFWYILI2BOPFTGGFT2CRIAG" + "address": "GBELSLYX5EMQ57W3M2ERQIRPANT4MH4TGNXISPVELYSCMHHL35MK76UX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "62db06b2e6cbd68c3b37b7e537196af7fba414f3b980eb6666701e4815efae04971937898f0b500bb14d99c375148bce9eb577715bcb490023adeb0074e0c676" + "bytes": "94564508e14d8fbf2e6fcc47f8a19ba280f8f28018cdb3f1e77fea99daaf942c0f314448f3c8baad837672a9afe9ff4f358e795891a813b149f90c6e41f7ff0e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "a086ef2a66bcdaa5c1b08970c3bc7762864cfe43c07dfefec2a4cfdd61a51242" + "bytes": "672d251e2a705d30da35d469440c35919e6735634bb60a950dc43613598554a3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "a086ef2a66bcdaa5c1b08970c3bc7762864cfe43c07dfefec2a4cfdd61a51242" + "bytes": "672d251e2a705d30da35d469440c35919e6735634bb60a950dc43613598554a3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "48dc55ff0540d844d0e11685bbba82c8004e12ee6e146d5de4535e3d9f049faa" + "bytes": "c21dea06aa2c6f57ad770f30fdbcac07de25b1056f4cbf0a61c4049e4c32e403" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "48dc55ff0540d844d0e11685bbba82c8004e12ee6e146d5de4535e3d9f049faa" + "bytes": "c21dea06aa2c6f57ad770f30fdbcac07de25b1056f4cbf0a61c4049e4c32e403" } ] }, "durability": "persistent", "val": { - "bytes": "f7a441cc32dde70bfa84187ae781d9c062299748b8283944c4ab40b8d968c9c2" + "bytes": "e589eb9f796a48c26bb308e70918a1a1fc2e5017dd5f7c6f5ba96f639a8ab185" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.68.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.68.json index 79aad75..297dee0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.68.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.68.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d69a3bc00d40cbec4791333b1a73e537a126ae2f3d57ec870569c8e3b6bea81d" + "bytes": "1c929c0ade9bdff066a7a0c34f27ca727fd180413466321ec2a8d0f5d870f39d" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d69a3bc00d40cbec4791333b1a73e537a126ae2f3d57ec870569c8e3b6bea81d" + "bytes": "1c929c0ade9bdff066a7a0c34f27ca727fd180413466321ec2a8d0f5d870f39d" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "pv16zbg1a8m6ua" + "string": "8e2t06oifv35753d6nuv4fgvb" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBMK2OWQPDFPNXIA77HEQ7GMCPYP7MTIMNIQQAZWHHOFJLAPD7C2TLIN" + "address": "GCTVC55O7S4UJNRY2H53JLBHNHQF64IVGMK6BZHYCW72GMHF7DX5SSXG" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "bd22b893e77b95608fc2cdf0d13f0660460de2972b5ad55293e7ebd540a04ba07a5ffc3e3067b4b15016683ad330ad6cf374a30301cdfabc55d00920b5cb0856" + "bytes": "ad7de9156890fe1c363f29120e1b516480e3e26baa42b909c829fcee2682b718c7ed3ab323a3b123a53411057d88d0dc1d81f820674d60c07b10bb59ec34129a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2c08aebca879a9406a9cb80d7cb71af18946d8da2cbce1b5a9884d49e14e920f" + "bytes": "f1dc5a86803069c1509b110b5c207e02b347534d7e73b59a6bf0786aa5f0575f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2c08aebca879a9406a9cb80d7cb71af18946d8da2cbce1b5a9884d49e14e920f" + "bytes": "f1dc5a86803069c1509b110b5c207e02b347534d7e73b59a6bf0786aa5f0575f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b991bb062cb698d47f7a11506ccd8579ca6733e7b9e7ad5bffec8b7acb63aaab" + "bytes": "3b6765b919c5b78efbebb91377de0249f85e1603bf1a3a48f30357a5cf356eb5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b991bb062cb698d47f7a11506ccd8579ca6733e7b9e7ad5bffec8b7acb63aaab" + "bytes": "3b6765b919c5b78efbebb91377de0249f85e1603bf1a3a48f30357a5cf356eb5" } ] }, "durability": "persistent", "val": { - "bytes": "d69a3bc00d40cbec4791333b1a73e537a126ae2f3d57ec870569c8e3b6bea81d" + "bytes": "1c929c0ade9bdff066a7a0c34f27ca727fd180413466321ec2a8d0f5d870f39d" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.69.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.69.json index 8fcc236..d998cb0 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.69.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.69.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c54dbd900975a46a206eb79c4eaaf8304f53d87695704ada62c51ef80e093d23" + "bytes": "7550e2da7b7a165c69fb72da92347f15b535eeebe8ea58913b09542376e83917" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c54dbd900975a46a206eb79c4eaaf8304f53d87695704ada62c51ef80e093d23" + "bytes": "7550e2da7b7a165c69fb72da92347f15b535eeebe8ea58913b09542376e83917" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "tei162399362" + "string": "0018" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCU56LYVC2743CJEESTQ5PN67JOM4ZKQCPTMHWYCPVRWEOT4A5SI2CLV" + "address": "GAQQXJIH673PYGGCBLFGGYH3EQMVEYNZMP4SI4TBXZULQTKAPRGFPMD5" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b1b09d539aa37520012a14707dc11e10d4789b3d70b0164c8126366e26b6960958656de2cdac5b8ae266fcbcf381189864f197b1d4d70ab5ce3e30d9f78e5662" + "bytes": "6d43b6bd91e288d53bbb8231fdb0b703bcf1479888aef66e983d91105fe72bbae1173d724061b3bec4e3383fc62065613728675f8e4fbce74c3b4d0490a7c6f9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ec41e43606e24614c1c0a5db9784f9d5a9f8af09b9f2499d37df3530b405d20b" + "bytes": "c2bd5613e917a6b6c8f1216d2b682e672baaf53ac8735cd8fc40492815a3851a" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ec41e43606e24614c1c0a5db9784f9d5a9f8af09b9f2499d37df3530b405d20b" + "bytes": "c2bd5613e917a6b6c8f1216d2b682e672baaf53ac8735cd8fc40492815a3851a" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "3b0bad0dfef785a92df1edc2e82f9c43e149311ce4d9f15f645b53f6637f7ee6" + "bytes": "5adf09c38380e662ec775462e3f5e50ec59ea9aa327cc61838102b20cc99e279" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "3b0bad0dfef785a92df1edc2e82f9c43e149311ce4d9f15f645b53f6637f7ee6" + "bytes": "5adf09c38380e662ec775462e3f5e50ec59ea9aa327cc61838102b20cc99e279" } ] }, "durability": "persistent", "val": { - "bytes": "c54dbd900975a46a206eb79c4eaaf8304f53d87695704ada62c51ef80e093d23" + "bytes": "7550e2da7b7a165c69fb72da92347f15b535eeebe8ea58913b09542376e83917" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.7.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.7.json index 036b79d..2c65001 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.7.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.7.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "caa83f319c2bcb5ee4e48ed92fbd055d109233c68bbd7d9968b50b8fa81a71bf" + "bytes": "22a277dc669059da2147caf4e4b3f5c3ecfba6d7cbe590425cda42493a086eb3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "caa83f319c2bcb5ee4e48ed92fbd055d109233c68bbd7d9968b50b8fa81a71bf" + "bytes": "22a277dc669059da2147caf4e4b3f5c3ecfba6d7cbe590425cda42493a086eb3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "n4aj" + "string": "2nd7eyq7vocvdupye888dxq0139" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDCSUM3CZJM6X4RZOBMV3ETRMVAPJW2B5I44BFGQVFKEJNDL3ZE2EEEZ" + "address": "GCND5IM3CB73VZ6C3ME447DJK5DRQUT4PL2K557A5257V2SGJXL4O2DB" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "8d45015ec4caf2f06b0082e79a918ecfffdccc1132cd6e9c650f3ee889517e69c9e8be6a43050ea6e2d68a480ce26af87af4584b461e3282e06ddb7d9bdf03b2" + "bytes": "4a2dc60055c803e0dbc16bd54d5e1dbcccb49ea4d3602adae7bd52110c0ef4e5f6349b9fc9fbe9f5fdef553b92a5db01a0e14d4bfd7b6faeb3c6bb04b1a96258" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0e3392326386421fda2bd26a8861b8cc585be393d91b6b0d6cd62b95867ac4bd" + "bytes": "1c753979d6452eb6edd05cff6c4f7f8ae73b9a7b3c1d6eeaab8a5ef3d846f767" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0e3392326386421fda2bd26a8861b8cc585be393d91b6b0d6cd62b95867ac4bd" + "bytes": "1c753979d6452eb6edd05cff6c4f7f8ae73b9a7b3c1d6eeaab8a5ef3d846f767" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "27eb8a7697f2b0d47ff124d5c340b90dd2e72b5b48ef394c302af90f6c1a6498" + "bytes": "a83122d0f61bb44a606b6eff363963463a32470b9cc9817d5a1a471303e0e3ba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "27eb8a7697f2b0d47ff124d5c340b90dd2e72b5b48ef394c302af90f6c1a6498" + "bytes": "a83122d0f61bb44a606b6eff363963463a32470b9cc9817d5a1a471303e0e3ba" } ] }, "durability": "persistent", "val": { - "bytes": "caa83f319c2bcb5ee4e48ed92fbd055d109233c68bbd7d9968b50b8fa81a71bf" + "bytes": "22a277dc669059da2147caf4e4b3f5c3ecfba6d7cbe590425cda42493a086eb3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.70.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.70.json index e4835f2..548ea09 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.70.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.70.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "46c3e80b619a082bd4f48a592dee15d9bf1b9dd87eea0a8b0b33040e867618f3" + "bytes": "c5e89895c2bf0ad9aa054fa140564ae17717cc2a1f4bd424ac5dbf71f82e709b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "46c3e80b619a082bd4f48a592dee15d9bf1b9dd87eea0a8b0b33040e867618f3" + "bytes": "c5e89895c2bf0ad9aa054fa140564ae17717cc2a1f4bd424ac5dbf71f82e709b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "85y" + "string": "z82q9w" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAE5VRPB5HW4ANWTDHE2IXRK42U5MCJ2M6KFE3W7JCJVU2Q5UVG3MGWJ" + "address": "GCHW5YFHUWDT6G7VXEXUO5SZZOLGSPNRKPSOHNV7GLHKL3AZFRB57GCC" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "94cd68040425879157d67ea9b96d910faf31d1ef3fd5827697995ab50bb734b401b91c85ffaaabd8ff22d924877b1053e7e198a132419e4c029ba463a62485df" + "bytes": "58d26db805e57dc687b0a4b2a7790d17114ec613a264d7686d40402e39ddf184d4159be3953d6037661bf8786b76b49af3cd81f605c9cde610a6fab8567efbc5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "8208cae07fa29260d2bad22e8e3b9f938cb80d48817b8cc628295ef11d341e1a" + "bytes": "4c7a88e574f07d1e2cacc3c646f41023d5b31341f061a3312786ee8b3691f5da" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "8208cae07fa29260d2bad22e8e3b9f938cb80d48817b8cc628295ef11d341e1a" + "bytes": "4c7a88e574f07d1e2cacc3c646f41023d5b31341f061a3312786ee8b3691f5da" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b82c1b66c8cc78259777e85c4f8a7407cca328220e13c73f487c00dca400644c" + "bytes": "d5725b5b9d53e8507b6780805368a000a4d206b88114334413d947cfd0338dde" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b82c1b66c8cc78259777e85c4f8a7407cca328220e13c73f487c00dca400644c" + "bytes": "d5725b5b9d53e8507b6780805368a000a4d206b88114334413d947cfd0338dde" } ] }, "durability": "persistent", "val": { - "bytes": "46c3e80b619a082bd4f48a592dee15d9bf1b9dd87eea0a8b0b33040e867618f3" + "bytes": "c5e89895c2bf0ad9aa054fa140564ae17717cc2a1f4bd424ac5dbf71f82e709b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.71.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.71.json index 4e257f8..df0cd72 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.71.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.71.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "12a88d5436d2aa1e1341f24c5eb36b26f5a653e83b3ef91e0d8dc0271f0cbd3e" + "bytes": "69d755730a9cdfc2ca1bf14a4363c040b358666012c8558cf895c143a6d1b71a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "12a88d5436d2aa1e1341f24c5eb36b26f5a653e83b3ef91e0d8dc0271f0cbd3e" + "bytes": "69d755730a9cdfc2ca1bf14a4363c040b358666012c8558cf895c143a6d1b71a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "85h5g1e5c21y7jwqp84j6bu23g" + "string": "h00ejez1h39mm1j1z90fy3405cj0" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GB4K4W37FDVJ7BQSBF7444PVAGYPELJVCX6J6MXNMYRMWWJDV2MGHQKP" + "address": "GDUAW5LO7KEA74X4Q226NGBPS5Z56SRNSOUQMDSBIWKTFLUQDLMSMGDX" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d7ff2ae60ad4e15972c2380fcc19cc05fe7376341f3c55c1597b287544f7c8f849ea4b35a39be047df11adbd7b966cfeed316ab8392a4de679f08b56eade0edf" + "bytes": "27505ecbfe76ebeb410ede4667f8455234d2cb9c7836dc7520c405c10e143e4a4202baab8f4eafaf4a2c91b8250d0a3941d143782feaa6182d977bdebcf893af" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "9dcc680acddebc30e55165bd902e17e3f33f581012fe392586018ba8a587ad65" + "bytes": "e2b7ca1ffd4f07b8668d1f39b1b9246811197eb979665446c6b0115470d3a504" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "9dcc680acddebc30e55165bd902e17e3f33f581012fe392586018ba8a587ad65" + "bytes": "e2b7ca1ffd4f07b8668d1f39b1b9246811197eb979665446c6b0115470d3a504" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "63278c693b1ba214e198016d385fe4d0ecdf908accefcfc856d30e1509e8d763" + "bytes": "206e7182ddd913fd1f9550126650f64b35dc492291dc1bd4247d0155de38ffe2" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "63278c693b1ba214e198016d385fe4d0ecdf908accefcfc856d30e1509e8d763" + "bytes": "206e7182ddd913fd1f9550126650f64b35dc492291dc1bd4247d0155de38ffe2" } ] }, "durability": "persistent", "val": { - "bytes": "12a88d5436d2aa1e1341f24c5eb36b26f5a653e83b3ef91e0d8dc0271f0cbd3e" + "bytes": "69d755730a9cdfc2ca1bf14a4363c040b358666012c8558cf895c143a6d1b71a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.72.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.72.json index 8298049..11dca52 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.72.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.72.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "12106599274734027507a08b9c1885e597f88db40d72858eb52a7c2e4c97d9b1" + "bytes": "e294967281de34884da41971d61578aabd7e1c5ef668d9b9ff6b1a79da677282" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "12106599274734027507a08b9c1885e597f88db40d72858eb52a7c2e4c97d9b1" + "bytes": "e294967281de34884da41971d61578aabd7e1c5ef668d9b9ff6b1a79da677282" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6383pnyu176oiu0m1wj74tzw52v8k" + "string": "ycu1cx2l54x9x492tni1g" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDJ7HYVJKSL4LTY6Q6SOHCCYD5MYWKORFM3OMHOB26EGCDR6RMQPOAWY" + "address": "GDX4OFCM5U7UKKHVJWQKXOX7EVD47FT7Y2L7W7IGWDUG56JLZRHWLZXT" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "1e6c8adcaf76f3459208cb0f1d2ea7ab4bfc81425be28b3f08ddab85d5fdc52b147196cda827bee4a543afa4940808aa1c2a4f27ccc2e76a97f2d36359498202" + "bytes": "81e65d51e93b7da902e813ad2d3c369d5f0ef2286df3d72eb4ab1585ea550ab6e43da70a1a78dea560c99319d3ae66be8f044761db540857024caf357c6cff1a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "ab9a1783cd926a0ea14ca51e2dee8830e4ebaa2f0ac4999f7c2376b2c165acad" + "bytes": "751309bb6a25ae6ecdf97fc0c556b564700a6912dff4e5e095a0d0eff73c8e8b" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "ab9a1783cd926a0ea14ca51e2dee8830e4ebaa2f0ac4999f7c2376b2c165acad" + "bytes": "751309bb6a25ae6ecdf97fc0c556b564700a6912dff4e5e095a0d0eff73c8e8b" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0d5317b37c578258dd55be9dcfeebcd2dde271dfd6b6cb7313313037072a09a3" + "bytes": "c98f4677e62e6d5b0305ead755617c7918c9af7e292a876a9dd106e42a153606" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0d5317b37c578258dd55be9dcfeebcd2dde271dfd6b6cb7313313037072a09a3" + "bytes": "c98f4677e62e6d5b0305ead755617c7918c9af7e292a876a9dd106e42a153606" } ] }, "durability": "persistent", "val": { - "bytes": "12106599274734027507a08b9c1885e597f88db40d72858eb52a7c2e4c97d9b1" + "bytes": "e294967281de34884da41971d61578aabd7e1c5ef668d9b9ff6b1a79da677282" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.73.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.73.json index 6261642..42af98b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.73.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.73.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "3646348a1200ea96545898da5ee3f3443168712607a8e59b1bf6a05aa135078c" + "bytes": "bb3f6d1cd05e2a6127d38882e3f22ecdc5699cca6eea57fbf89dc94fdbf05acb" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "3646348a1200ea96545898da5ee3f3443168712607a8e59b1bf6a05aa135078c" + "bytes": "bb3f6d1cd05e2a6127d38882e3f22ecdc5699cca6eea57fbf89dc94fdbf05acb" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "kqqxf3512g1z2sm86avq" + "string": "jw8772w50lkf56" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GC4TK6JBH7ZTDGHTVQX64ST7X2VACTIOUXPF3S6YYJI7TLJ3T2JPJPH6" + "address": "GDWFMBRJWC4KFCYHEPZFBAHWNFE6WACFSROH5P4WBCSAODAI2YE5B65W" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7c2fe7bd9d77a71c5fe18f4034c6af105d36068e719cdf355409c05ea4057f8a727d26846d9d4bb188f0a332d53aa228e01cb6535d526db53495cbc7d4b8d150" + "bytes": "f9c57ae59ee26aa182828a944eedd4b734a2efedde48453e23610d09a202df53039e1e5234e13864a571ad2708fc3bd8f8b230f675e4e384f7ca2e1e0beba421" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "6399a55be40fb51d8a7c6b5e9934b7f3acbefbca59bfc8afef73bb43f6e2057f" + "bytes": "7aade7624180730f735e3cf40d7388dc3770f4bbc7be1b47e1eb6030b730afd8" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "6399a55be40fb51d8a7c6b5e9934b7f3acbefbca59bfc8afef73bb43f6e2057f" + "bytes": "7aade7624180730f735e3cf40d7388dc3770f4bbc7be1b47e1eb6030b730afd8" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b64e1f514778b689a352fc66c15fd6a041da519c752a4ab415768c777a788b79" + "bytes": "ded1dcd02f2da9419d2242cc20df1a38f64ab720dbf720e8ef6b4ebcfed7148b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b64e1f514778b689a352fc66c15fd6a041da519c752a4ab415768c777a788b79" + "bytes": "ded1dcd02f2da9419d2242cc20df1a38f64ab720dbf720e8ef6b4ebcfed7148b" } ] }, "durability": "persistent", "val": { - "bytes": "3646348a1200ea96545898da5ee3f3443168712607a8e59b1bf6a05aa135078c" + "bytes": "bb3f6d1cd05e2a6127d38882e3f22ecdc5699cca6eea57fbf89dc94fdbf05acb" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.74.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.74.json index 24c9a74..0a1fd7f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.74.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.74.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0ebaf722237142ab4a651333cf5569e5e25c1689001405395629bd62537a6b00" + "bytes": "71936a9cd57a33c7f8a817f7c6a7895d2cb20f2ef84fb1673165b11b5ad8f751" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0ebaf722237142ab4a651333cf5569e5e25c1689001405395629bd62537a6b00" + "bytes": "71936a9cd57a33c7f8a817f7c6a7895d2cb20f2ef84fb1673165b11b5ad8f751" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "5pry" + "string": "nmxexx9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBPRYFTLO4S4B3HQUZELSKWDKP2PRDO74PTKJAYHPXUG632FNUDDLAMD" + "address": "GBEM62YUKOLTM2HV7OMHMSFZ4IVESW3IUA5PD336FFAC6HDAQLCRL76S" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "73792840cc5c669ba6bc51f1253263def5239fbcc5a8a5ca3bf4fac1c82c97f37246bb07f82559688acfc3cf8fc7c1b7e835a24b0167ac7fbe15c5dc44fad94c" + "bytes": "722d614e4e892289599eec60c4faf1ad6425896cee1c0d2af547a912c1d022ba35392a7bb641f5669a8865e8bafc4d4e33d912399fb665bc8a6a9ae237c7b0b2" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "e00cdf57a6851552b23123dc83e82eec13b2bcfdcadff1cff1de7179574af54f" + "bytes": "e520ce6325bf0bef06db84328e56f005736a58a557d68e5a8a79a4f6df0e2019" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "e00cdf57a6851552b23123dc83e82eec13b2bcfdcadff1cff1de7179574af54f" + "bytes": "e520ce6325bf0bef06db84328e56f005736a58a557d68e5a8a79a4f6df0e2019" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b86d5d211f003928b89be2aefbc630098b38270c65a2f233a56f7a9071936c74" + "bytes": "e5bda90a7774764aa911a77f0c5842bccc469a051eb1b8f606a08263f78aebc7" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b86d5d211f003928b89be2aefbc630098b38270c65a2f233a56f7a9071936c74" + "bytes": "e5bda90a7774764aa911a77f0c5842bccc469a051eb1b8f606a08263f78aebc7" } ] }, "durability": "persistent", "val": { - "bytes": "0ebaf722237142ab4a651333cf5569e5e25c1689001405395629bd62537a6b00" + "bytes": "71936a9cd57a33c7f8a817f7c6a7895d2cb20f2ef84fb1673165b11b5ad8f751" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.75.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.75.json index 00ce54c..013208e 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.75.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.75.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "69d599c235492ecfa7626f3908383706b5d2b4a0b1fb34a6d8f7983f922a0abd" + "bytes": "95c5fae4399d95f94d6a9fd8805e246a0bfc594d965d7da193203a009b3e98b3" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "69d599c235492ecfa7626f3908383706b5d2b4a0b1fb34a6d8f7983f922a0abd" + "bytes": "95c5fae4399d95f94d6a9fd8805e246a0bfc594d965d7da193203a009b3e98b3" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "2pm7ey6q604x036stl3o53g2i1th" + "string": "9z6fkn3o9x6v4e2j" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GARCFPKDCFNILFTGLQGK4NJ24WPARXQHEINX7KCVW6JOMCSW5JHEWPNB" + "address": "GB6YYP2GJM4NPISGGYGEAO5ONSLLGQNEAS3LVC4JPTIQP6L22LL2SOLN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "491756997b67a0091c3950290cf6d1f50880ce765efc423fc9f8c418d40c0dfd60beeed8e15c5ab713c57905024a1745c3ecbc976f0fc6a42f6dcd46153a243f" + "bytes": "ef83d5b6b276878036d3e5813948fbf8b8690dddb044f7e390bb6370311ec2bca039903c0650e5a2cbf3b8c5de58095d49dcf1dbcd4d212c0acafc903bfa6de8" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "d3c86aba9f4cc6b7057b468f35c41de31aad42ecfd7e1a2ce5b792f227e1b970" + "bytes": "0019a7fdac83658c1bea54b5e8d8484021be9ca6a5224f464e4efb359c35c951" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "d3c86aba9f4cc6b7057b468f35c41de31aad42ecfd7e1a2ce5b792f227e1b970" + "bytes": "0019a7fdac83658c1bea54b5e8d8484021be9ca6a5224f464e4efb359c35c951" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "331a3cab2308adad4661f813a4234638f0c605162a907a736c02b7c8df93683e" + "bytes": "361d99c0f73f252126612ec86bff52e184f0dde78f43a342bcf146f02af15a0e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "331a3cab2308adad4661f813a4234638f0c605162a907a736c02b7c8df93683e" + "bytes": "361d99c0f73f252126612ec86bff52e184f0dde78f43a342bcf146f02af15a0e" } ] }, "durability": "persistent", "val": { - "bytes": "69d599c235492ecfa7626f3908383706b5d2b4a0b1fb34a6d8f7983f922a0abd" + "bytes": "95c5fae4399d95f94d6a9fd8805e246a0bfc594d965d7da193203a009b3e98b3" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.76.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.76.json index 19755e1..f815c00 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.76.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.76.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9ff2044e671223ace2e9459960ee0756af230619eeb6fd1458131ce16a12fe5c" + "bytes": "e62c386f7271c9386acc1857e0905e28fe4dbdb1c945400642057027d72513ca" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9ff2044e671223ace2e9459960ee0756af230619eeb6fd1458131ce16a12fe5c" + "bytes": "e62c386f7271c9386acc1857e0905e28fe4dbdb1c945400642057027d72513ca" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "m4q36qh0cs" + "string": "3n56mtq2v7d" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAWVWQBV2AQ6S6AVIGYVXP7VXFRX4YSB3K4LZDYWOU2CYJADBNQKEH7K" + "address": "GBOMWTFGM6GOH2WBRE7OUUQHMVZQWQXZN4N33CMVYGLN4PDTCKUNGG37" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "611b5215e1df3e9a9e70a4c6f8f550b8bc7326934f03d594d73f994b99b42bd50f175eb83db1cca118a98c4e9eaa0b4cbdb0395facd5cbf68b647b4dae3207f0" + "bytes": "d348fdfa2c9a26c3a2891eb4c687860fc3deec49b4a644d48932845a45be4cefcd20b97d48da4bbba8c862fac3aea51205312ac2019f921f31dcae9f1ea4be7f" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "34fc2c4d32f2c9da6bfaaa78034f58e636cbc03e8e0edda739e85495d3e157c7" + "bytes": "f8b97ae1e84bced371ffbc0ce8b5b07cfa2c34de4c0129ffee1b5907aba8bcf9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "34fc2c4d32f2c9da6bfaaa78034f58e636cbc03e8e0edda739e85495d3e157c7" + "bytes": "f8b97ae1e84bced371ffbc0ce8b5b07cfa2c34de4c0129ffee1b5907aba8bcf9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2594ec66453bf940b454efc02aa82d4e38ec42f1efc98f1bfdb7330a17b75018" + "bytes": "cc11731d19eed4db0912ecc141b5b25efe82d245e828c6cf1f4a1f28aa0bc559" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2594ec66453bf940b454efc02aa82d4e38ec42f1efc98f1bfdb7330a17b75018" + "bytes": "cc11731d19eed4db0912ecc141b5b25efe82d245e828c6cf1f4a1f28aa0bc559" } ] }, "durability": "persistent", "val": { - "bytes": "9ff2044e671223ace2e9459960ee0756af230619eeb6fd1458131ce16a12fe5c" + "bytes": "e62c386f7271c9386acc1857e0905e28fe4dbdb1c945400642057027d72513ca" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.77.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.77.json index 7678ac7..8d05e46 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.77.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.77.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b11a5b3f3c281b1ea1b2247593609e2c30d0b70737e8ca4eefe0f6ac9a434220" + "bytes": "970be769d0e60df32a4603a298169affd7b3beb378b29ca1fbd7c0ee219c53a9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b11a5b3f3c281b1ea1b2247593609e2c30d0b70737e8ca4eefe0f6ac9a434220" + "bytes": "970be769d0e60df32a4603a298169affd7b3beb378b29ca1fbd7c0ee219c53a9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "ltzbpz5el1y1p" + "string": "f8hlu2nk7utud7gj0eo42" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBOAI6V3SGOYBUQVB5IVS247B6TUFKPIUOR4SRVFDPUON476GXPGEO7L" + "address": "GDBJEU6TPVBC4WL72GJVEMBSMA4V4WCNCK7R5XT4NEMDQFTABC2CMYGR" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3d8a5c220e5b705832613d87ed0965d3e4704c393a8f9ea25c410aa3a456c2d6e26c7418c441b9dda4b4e71c8f53b1192ee6b323eeef13419ef4b5c3659d1a07" + "bytes": "bb1523c6d48299b610b698765f0371bd9c30a6bf2351fb32572a119eaf53c0668eab1745c2d743541b5a32ff8a090c346c7ccf342251a1cf142af2520b074d81" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "2671b3d5506e06ebcbc6e9ae54710182f6a3140578a47eabe288421df4d743ae" + "bytes": "dfc4d4cf5fa3e0bcebdf4ff511956aa803b5efb7509f478e52784f61c5612df5" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "2671b3d5506e06ebcbc6e9ae54710182f6a3140578a47eabe288421df4d743ae" + "bytes": "dfc4d4cf5fa3e0bcebdf4ff511956aa803b5efb7509f478e52784f61c5612df5" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "774f368256b9e335a4314c7b2b9e700d3c8a4c1fcc380262cb5c757334f50e50" + "bytes": "7a14b0b90b79acdb814bc04bec7c3c14f27978f32b338c48c7d79a2777c65481" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "774f368256b9e335a4314c7b2b9e700d3c8a4c1fcc380262cb5c757334f50e50" + "bytes": "7a14b0b90b79acdb814bc04bec7c3c14f27978f32b338c48c7d79a2777c65481" } ] }, "durability": "persistent", "val": { - "bytes": "b11a5b3f3c281b1ea1b2247593609e2c30d0b70737e8ca4eefe0f6ac9a434220" + "bytes": "970be769d0e60df32a4603a298169affd7b3beb378b29ca1fbd7c0ee219c53a9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.78.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.78.json index 7d049a4..ad4c256 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.78.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.78.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a1a3e5e81cb3aec900a409a1b7069848543572d42b7e6decbec3e4f1b46a83ea" + "bytes": "0810c34acc56155c1322f173a93528e02c89faffc13a77f25955016ac47ee2dd" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a1a3e5e81cb3aec900a409a1b7069848543572d42b7e6decbec3e4f1b46a83ea" + "bytes": "0810c34acc56155c1322f173a93528e02c89faffc13a77f25955016ac47ee2dd" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "9n45iq6832j4dy70alh5wr9ik44s" + "string": "1jwas1em86y48uv5p723vaqx37rpp" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBXRUFI4SRLRA4XYFCS2EEGKNCDE7FVNEAFY7P7DQFGBQBZWKHULLQDY" + "address": "GDD3W33UA5RBDQ5MU2NGYW7C23O5UQ3AGUEQ7FNXDTSGPMGR23TMSIIA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "6fefb5d290e9d575bbbc61ec7d3f9801b239509115671af0f01243bdb888d571e1948c8001a1b20c90d281dbe449dd66bf8058147ad04e29b565b2c97df7adf2" + "bytes": "5f3d1054317bd9b0e9324641465827757309b58d534dc01b8abb99dde8e6f53f067faa6f87cbc098809815ea2694f082468437833a94b5247c2c36521e5437c5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "af6e7eac34c76d24adfba61346353627c67cc516e73815bc040990d491995e83" + "bytes": "7dbb8341cd08effb0cd05d726bc36c616aded43fd72204d44748867ff6ffbebc" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "af6e7eac34c76d24adfba61346353627c67cc516e73815bc040990d491995e83" + "bytes": "7dbb8341cd08effb0cd05d726bc36c616aded43fd72204d44748867ff6ffbebc" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "02a9203f7c2016909069c984369f4c5248c968f48d56ce82504a4668b6b8fb85" + "bytes": "571c38665932e1e56f586cdd8580c2ed16df2ac53bb8ac1f50df1dc988f5bc55" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "02a9203f7c2016909069c984369f4c5248c968f48d56ce82504a4668b6b8fb85" + "bytes": "571c38665932e1e56f586cdd8580c2ed16df2ac53bb8ac1f50df1dc988f5bc55" } ] }, "durability": "persistent", "val": { - "bytes": "a1a3e5e81cb3aec900a409a1b7069848543572d42b7e6decbec3e4f1b46a83ea" + "bytes": "0810c34acc56155c1322f173a93528e02c89faffc13a77f25955016ac47ee2dd" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.79.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.79.json index 0e53d42..f63d918 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.79.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.79.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "30142d4020a9b6a2bca1b9d7dd52c4fd60653dd26dd7f2300fe6949dfa5ffe0a" + "bytes": "2d520884dfa23934d133298fa5eb9df6918bd87f78388ef3ec911dbce38c2bf9" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "30142d4020a9b6a2bca1b9d7dd52c4fd60653dd26dd7f2300fe6949dfa5ffe0a" + "bytes": "2d520884dfa23934d133298fa5eb9df6918bd87f78388ef3ec911dbce38c2bf9" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "nnj3w5a5xpq" + "string": "60e31f0n0yg371z28" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCKKSZI7SX3YMHVUBDHSIQNE5J5RSYD37W2TB5SXOWWQX2ZQVZR5UN7F" + "address": "GAKU4B5E6NVDRLFOQG7BJ2JX3UHWMQTA7EKIITFWSREKDANUZGQ2M6DM" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "930689d5d4321647e7faa301c2e6ce5da25492d6d416e1191876f63cf9c9799da4e3ae948867528ab52aee3e4e634ee9764e57a8e7babed10313a75bf71ce357" + "bytes": "cf0e17243e535d1e499da941f3e0e5a210a2d35c888491f5dc4c800faf621f664f4a743bd30fa52a99d02a1786ec703400430bf04b8c39d965c8cf74c9f81f59" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "4ed65c6aeef47d98e25053335eee7aee85be586d523173944db8c0a90ba89372" + "bytes": "08f3a8cfab0cbec333789ef5ca24d97d131bc41cf55bf795547a4e507101ef6d" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "4ed65c6aeef47d98e25053335eee7aee85be586d523173944db8c0a90ba89372" + "bytes": "08f3a8cfab0cbec333789ef5ca24d97d131bc41cf55bf795547a4e507101ef6d" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "d88e37889d3b2cd81610e77947cd7dfdd337cbf5e2554dba7e6a95786214adf3" + "bytes": "b3c8128863daa3d43a69277c0509f156269376108bcc093bb96b9ffb4496edf5" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "d88e37889d3b2cd81610e77947cd7dfdd337cbf5e2554dba7e6a95786214adf3" + "bytes": "b3c8128863daa3d43a69277c0509f156269376108bcc093bb96b9ffb4496edf5" } ] }, "durability": "persistent", "val": { - "bytes": "30142d4020a9b6a2bca1b9d7dd52c4fd60653dd26dd7f2300fe6949dfa5ffe0a" + "bytes": "2d520884dfa23934d133298fa5eb9df6918bd87f78388ef3ec911dbce38c2bf9" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.8.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.8.json index 640314d..f8bce8a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.8.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.8.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "ceb79d56e46bc6f1a8ae14a757c543a04a3661bed5da79d5dc794f481fe20105" + "bytes": "6b5fc5325388c2acafef782fe35753245aabbf13b0a803ac6e7f08ce594cf680" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "ceb79d56e46bc6f1a8ae14a757c543a04a3661bed5da79d5dc794f481fe20105" + "bytes": "6b5fc5325388c2acafef782fe35753245aabbf13b0a803ac6e7f08ce594cf680" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "i1444q6qy79j4xkph449045" + "string": "6f8jk2dv" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCZLWAI2HNUPPC6WX22C6CMD6PK6O7PBMAAWE72GV6WEUMPD3A5YHNFK" + "address": "GDZCXUEI44VD7RROCRPOVZC56PDPME2OT2EJONFAWB374W76MKF6JYWH" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d3f138d35c64919a7eb063ab0ee7c3b5dcd9df0798bc96e490ffe8534347046cedcdfd94dd85e939dcc67bc110c274746113b0cb5dc62111665776390b44ec6b" + "bytes": "d033255e539e2bee33e1a8adbd1fbb462d837581a95e1b62cc38fbcd28f71485deb755031ff5e7bc93cbe708ac782b45341c55290797fae815298bd8c038eb97" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "acfeb57dab8e914e66d583b760d61ad1851b4e5649e7b1ec6050f38c905e8266" + "bytes": "6ffc5aa2be8a5dd907e21c493860acaac7dfdc2dbe63f1a20e8d9db30fdc8e0c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "acfeb57dab8e914e66d583b760d61ad1851b4e5649e7b1ec6050f38c905e8266" + "bytes": "6ffc5aa2be8a5dd907e21c493860acaac7dfdc2dbe63f1a20e8d9db30fdc8e0c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "220bd356a24da3dbe3f8e09c022ce11ca38538bcb9047efa09e16741406e4eb6" + "bytes": "a0b5e21146b8a6ae1691fc40787268f6eea115d49b903abfff99ed9f247f780c" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "220bd356a24da3dbe3f8e09c022ce11ca38538bcb9047efa09e16741406e4eb6" + "bytes": "a0b5e21146b8a6ae1691fc40787268f6eea115d49b903abfff99ed9f247f780c" } ] }, "durability": "persistent", "val": { - "bytes": "ceb79d56e46bc6f1a8ae14a757c543a04a3661bed5da79d5dc794f481fe20105" + "bytes": "6b5fc5325388c2acafef782fe35753245aabbf13b0a803ac6e7f08ce594cf680" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.80.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.80.json index 1c1f357..6f388ce 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.80.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.80.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "a5f17adeaedfdece4c45cdd3a0a74b8028e09b77d4f84e671e23c2f8a82d4bf2" + "bytes": "80844663788198c24d68596b6c6e013eb535f27096da7acb40a0842ab41c1363" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "a5f17adeaedfdece4c45cdd3a0a74b8028e09b77d4f84e671e23c2f8a82d4bf2" + "bytes": "80844663788198c24d68596b6c6e013eb535f27096da7acb40a0842ab41c1363" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6qr04m1w3362s9wwwbw1h78744rzsj6n" + "string": "kom0w6gabxq92t" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAWMYDNFSPOSHAELBUZCFY4RXFVC6JATIN23S3YWBX4RKKOBDZIOOXJT" + "address": "GBM7LDSJEL7DXQQWTRL5IPYOVF4VYFJA3CZRCX7XMCHVAQQJJUONJOLN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b062c57826cb57996bd8d681a5016fbf674220fe6fc6739e15964efa2dc9f8e3adfbeff91ed8fe4cfa83473b19afb1bb087f1478c5ad99a83d7158acc2fe0a82" + "bytes": "388139daf09b3f4c86d489cc46dc2769b124250b5e22cb0b9a4912f617cf5b01a59541a0672ff33c4698972bdc0d72dfdbe916abbb52dfa138561beef08e3950" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "80275da703938ef571700c136e04ae7b0b84190b569d8417e032f0e06118293d" + "bytes": "edd2b422d93b875f3429b2b0a2ff5a7dacaa48cd252ee8ed834acbbfe0c72bb7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "80275da703938ef571700c136e04ae7b0b84190b569d8417e032f0e06118293d" + "bytes": "edd2b422d93b875f3429b2b0a2ff5a7dacaa48cd252ee8ed834acbbfe0c72bb7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2bbe0c7f6119b2360cd0901e6ade8e73bf330fb8c288e8f026a27cb1ad09855b" + "bytes": "ac48f956356ecbfdbecdb552b8cf923c930b6f7d15814ad2dae4db4e2bd610bd" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2bbe0c7f6119b2360cd0901e6ade8e73bf330fb8c288e8f026a27cb1ad09855b" + "bytes": "ac48f956356ecbfdbecdb552b8cf923c930b6f7d15814ad2dae4db4e2bd610bd" } ] }, "durability": "persistent", "val": { - "bytes": "a5f17adeaedfdece4c45cdd3a0a74b8028e09b77d4f84e671e23c2f8a82d4bf2" + "bytes": "80844663788198c24d68596b6c6e013eb535f27096da7acb40a0842ab41c1363" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.81.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.81.json index 1d83ff7..e49e6a6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.81.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.81.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "92f8906d97936494e85774038e749031976b3e0b17a6a0cbfd2bd4e466fbd69c" + "bytes": "4cd123d88b4f8bd01383ae8ec012a29dfd3ada115925801a432d258c825d3e5b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "92f8906d97936494e85774038e749031976b3e0b17a6a0cbfd2bd4e466fbd69c" + "bytes": "4cd123d88b4f8bd01383ae8ec012a29dfd3ada115925801a432d258c825d3e5b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "01k3" + "string": "hr37qzb47064" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDZX4SPQQLBI23LJ3RADZVZ6GP6RJD46ZKMPG6EHFPIOTXEC75ZYM4II" + "address": "GDBUDZZQNAPBVG26WIEZ56FBWOOBPQDUAFU2L7RSJTQYAFRCVVXYIT4H" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "db751887ddfd92faa66d31235ea0b686395351b0b479f0ba5e0439bee05517303cde11a32db9a7aa6705c91036a5b5b02568162e78e3e4b2ddb79ff3ef16f213" + "bytes": "619f44945422e599c3d30627a0f198291c4b84ff3f40ed41abf8751713890ed164eb882e44d37babb68cd77b5b6748d14cf9eb3297eec861eda35cdd190d54bc" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "dbebad14e97d5f13b0324aeb35a0e1f6ba8460c7a6a0c58c23e0586569985028" + "bytes": "93dd0521f43d63794b55c5f22c008e2fbb7d6701ee8bc0631d5f7b4b70e354f1" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "dbebad14e97d5f13b0324aeb35a0e1f6ba8460c7a6a0c58c23e0586569985028" + "bytes": "93dd0521f43d63794b55c5f22c008e2fbb7d6701ee8bc0631d5f7b4b70e354f1" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "612a7afdf4aae791e204e6c1c35644534299ce69af1fc0c21a25409d2a70ff20" + "bytes": "e36c4981ce7770c13a5bbdf46054c80bdb941bfcf3f8588b2856a9f8a4a22cbc" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "612a7afdf4aae791e204e6c1c35644534299ce69af1fc0c21a25409d2a70ff20" + "bytes": "e36c4981ce7770c13a5bbdf46054c80bdb941bfcf3f8588b2856a9f8a4a22cbc" } ] }, "durability": "persistent", "val": { - "bytes": "92f8906d97936494e85774038e749031976b3e0b17a6a0cbfd2bd4e466fbd69c" + "bytes": "4cd123d88b4f8bd01383ae8ec012a29dfd3ada115925801a432d258c825d3e5b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.82.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.82.json index b979b65..f71e760 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.82.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.82.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "15a83b862c07446e316c5a6e6810665826db201a5ce99d4c74f4e0fd2326080b" + "bytes": "e26c0c376e1b3ee333202ee9dfbee3172a987cdf2f580faa9c286f855b444fdf" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "15a83b862c07446e316c5a6e6810665826db201a5ce99d4c74f4e0fd2326080b" + "bytes": "e26c0c376e1b3ee333202ee9dfbee3172a987cdf2f580faa9c286f855b444fdf" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3408l8o" + "string": "s81ql51h8qub5rppqcs5ti78c44c9" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDBJOTHIUQPVRWBO5F3UVR7VQF5WUVXK33SC6OSIBB3B6ABTP4JF6Y2U" + "address": "GDZW5M3NNQDGJS6QMAMJWIZHAOTUXQHBQ7BPGKNKO5JRIDE7PNKPY6EI" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "2711fbcf234748b70ba1d86174825d01f5e99d4949574043bb18a327f60d9c7b06022a4b7fe5b9181b2c4034128d83aa19044c3cfb29afc19b62b9abecb19029" + "bytes": "99c4ed253015731a2591309f00029fca50512d27d04e16756109b57c4c3d08d366902b0f90755b00f07f34829b5fb68a7d045820a79d2a69d4d8ab21846c5eb7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "70b5df91b9c5748141d4d19337cde934ee7e86be60401341db79242880b48edb" + "bytes": "2e21d59989f94f559e34f94c9e929e4144894b0f2fc28aade3ce8470fdcd6355" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "70b5df91b9c5748141d4d19337cde934ee7e86be60401341db79242880b48edb" + "bytes": "2e21d59989f94f559e34f94c9e929e4144894b0f2fc28aade3ce8470fdcd6355" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "4d655f1e94dbdc0a4396b31b5e0109c8d75c46f858f867bb8ae6db324c98a427" + "bytes": "bdea8562b3368280ed0f81337552ef997d5506dabe8ede83f4ddcdd7389cdcba" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "4d655f1e94dbdc0a4396b31b5e0109c8d75c46f858f867bb8ae6db324c98a427" + "bytes": "bdea8562b3368280ed0f81337552ef997d5506dabe8ede83f4ddcdd7389cdcba" } ] }, "durability": "persistent", "val": { - "bytes": "15a83b862c07446e316c5a6e6810665826db201a5ce99d4c74f4e0fd2326080b" + "bytes": "e26c0c376e1b3ee333202ee9dfbee3172a987cdf2f580faa9c286f855b444fdf" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.83.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.83.json index fd9cb15..7242c69 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.83.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.83.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b9a2191f6a94c6df2f02d37e29781d5b90f57ef41e0abae67ea7433161d23edf" + "bytes": "735b3a07959db0bfeffbb5891751acfa8cdf6c4fc659125631b23781c44c4c7a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b9a2191f6a94c6df2f02d37e29781d5b90f57ef41e0abae67ea7433161d23edf" + "bytes": "735b3a07959db0bfeffbb5891751acfa8cdf6c4fc659125631b23781c44c4c7a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "7gx" + "string": "k5d2j45g3spmzn" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDEA2625BST64KMKMLAY2BC2M7ODUHO4VFMTQMEA6WC3XQBFOASYEZQJ" + "address": "GDVAZEVODGV4T32GJUKNXHQ3N2IDB34DPJVMJQVOVYF6KGSRD6S57Q2E" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ee1587407458201edb09dc75fefedce173de10120944d309ae11e8d26090ffb333861c16fb4a8fba5c1f25e9b742d149169aa153acae568bb379013c46beeaa8" + "bytes": "0df0f328e338824012805c466be126f2ee211e439f290b1ddea5ff4205c6fb03422858c5f1e43924feae8a26d457a0850c42042139b9e93566c9de09e35fbe20" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1447ad2ed0830b0e0aa5b0ee38b01eb9add37346be710310e23ce571392d088e" + "bytes": "9a0ed25ff1be1835505d2113ecb2dddf567c8e4265df3c11990643ef5c41b3fe" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1447ad2ed0830b0e0aa5b0ee38b01eb9add37346be710310e23ce571392d088e" + "bytes": "9a0ed25ff1be1835505d2113ecb2dddf567c8e4265df3c11990643ef5c41b3fe" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "2e10fb83227c6531f3202930fc5f59f77a279913a09532d5d7721107ed07e431" + "bytes": "21a51e9334e23b2c9047b3d5be6edc7fb6a16e956e8910b9419d18edaec15ade" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "2e10fb83227c6531f3202930fc5f59f77a279913a09532d5d7721107ed07e431" + "bytes": "21a51e9334e23b2c9047b3d5be6edc7fb6a16e956e8910b9419d18edaec15ade" } ] }, "durability": "persistent", "val": { - "bytes": "b9a2191f6a94c6df2f02d37e29781d5b90f57ef41e0abae67ea7433161d23edf" + "bytes": "735b3a07959db0bfeffbb5891751acfa8cdf6c4fc659125631b23781c44c4c7a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.84.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.84.json index 98cb8ef..675ade1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.84.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.84.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "6ed714fa096cfda1b6e328e579d76c2b53469415478f65c67b11ed037cc22220" + "bytes": "dfaef59f44d1c6fa45ae189a242e80e751cf97a456b9d40e715dbd6c542272b0" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "6ed714fa096cfda1b6e328e579d76c2b53469415478f65c67b11ed037cc22220" + "bytes": "dfaef59f44d1c6fa45ae189a242e80e751cf97a456b9d40e715dbd6c542272b0" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "1y23ps52" + "string": "39c" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDJDZAESNBGANPWTBNX74HBZSX3NCP2YAD34U2ZZSOFNQE5YYB2M4XL4" + "address": "GBA6MYGX5WRGVYTDRQHEYRRNZJBA5WYI25W7V3P7CCXGZ5Y2BWBGRYZL" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "792b48ec976e28346deaa305a652e09aba6abef74cd1a41ad96537d76f69b5e244caa3d594ede910805e368c480800f85e70820f61e98131287fcb0506e01d6c" + "bytes": "74a62a42b42e8d905db41023d3cf50c9614d86ef8603c662d4f1111b7e33930ed740669fc15ce2186ed99f07ad9f4949c0b84a701812850b11ebc25e9819449e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "0b86caa7ab8ce9047a32f8e78e864286f782bc804eb9ce611dc4b87beae73f47" + "bytes": "86f1453ba2f23e409d5d586bb9030ca2daacfc2f84292e9dad4e0de2b97437c3" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "0b86caa7ab8ce9047a32f8e78e864286f782bc804eb9ce611dc4b87beae73f47" + "bytes": "86f1453ba2f23e409d5d586bb9030ca2daacfc2f84292e9dad4e0de2b97437c3" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "e3ad98f370e2c8a703be6694bc2c162f3a3297dd30e2faabc4b12fac89b3b0b5" + "bytes": "3e2bc4f5b949144998e016203c0321e34983cb99399c7ba0f3819735cbd2fba4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "e3ad98f370e2c8a703be6694bc2c162f3a3297dd30e2faabc4b12fac89b3b0b5" + "bytes": "3e2bc4f5b949144998e016203c0321e34983cb99399c7ba0f3819735cbd2fba4" } ] }, "durability": "persistent", "val": { - "bytes": "6ed714fa096cfda1b6e328e579d76c2b53469415478f65c67b11ed037cc22220" + "bytes": "dfaef59f44d1c6fa45ae189a242e80e751cf97a456b9d40e715dbd6c542272b0" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.85.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.85.json index ce22b0e..8dd40a5 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.85.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.85.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b016acc860ac538769f94afd7eb8bc64c9a11a522cf7c6e95af6b4df1bfa577e" + "bytes": "4fbea49f9d3b7fe6c09ec1de0aa30f2ba247a22fda2ddafb7bee5f8bf3ba1ba8" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b016acc860ac538769f94afd7eb8bc64c9a11a522cf7c6e95af6b4df1bfa577e" + "bytes": "4fbea49f9d3b7fe6c09ec1de0aa30f2ba247a22fda2ddafb7bee5f8bf3ba1ba8" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "3s34a4n0qeegq" + "string": "il8c4xz3utge2gqftc1ny0rs1ru" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDDANRWPMFKUPZITE3A4MEJK4MYLOAFP7IG63QSG2ABXXKGPHKWWBQOA" + "address": "GCJVNWNXS3FBTEHUHB4BS7FDTHHETDKXZ3G764FVUAINXA2EOOE4HDXJ" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b406a6b5f74bf3d24367092f025a0448df61f7f6ae22a0773b0e3cd8823cc666f740113cb4f61a347b7b6c969870d79f0a66b6b20e45177f784ec37a03ae26ab" + "bytes": "e6210fbb799379df373e5a2bbad4d183117e6e542151a4b9b86a9275b3ccb13178f7bd866b09d215aadfa5c3c362720032cdb6eede656491ab1ac6fc1cc90c52" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "bca80a484c627ebdeb1dca0a9bcd2f92cadd7986f6d298076d08828da1e5782b" + "bytes": "df2137418e633a9a7e428dcab08fbe8dcde8fc3381220d872ab33326307a1660" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "bca80a484c627ebdeb1dca0a9bcd2f92cadd7986f6d298076d08828da1e5782b" + "bytes": "df2137418e633a9a7e428dcab08fbe8dcde8fc3381220d872ab33326307a1660" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "a200af91e6e87b8448bc9b40cb0a05fdbe1488f1e5da29736b179398d6491502" + "bytes": "120f08ec0b6dc06eff12178031c8d5f8748824a64fa3b1b24c5a39b499a22b95" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "a200af91e6e87b8448bc9b40cb0a05fdbe1488f1e5da29736b179398d6491502" + "bytes": "120f08ec0b6dc06eff12178031c8d5f8748824a64fa3b1b24c5a39b499a22b95" } ] }, "durability": "persistent", "val": { - "bytes": "b016acc860ac538769f94afd7eb8bc64c9a11a522cf7c6e95af6b4df1bfa577e" + "bytes": "4fbea49f9d3b7fe6c09ec1de0aa30f2ba247a22fda2ddafb7bee5f8bf3ba1ba8" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.86.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.86.json index ed63395..2c8eb26 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.86.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.86.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "939c7c1c6e4209a4f4781eff3bfaebee9c51098ac5825c420e760ad6b213f2a7" + "bytes": "b64d70c8e87c9b97c512582c00a116f4b683a92d9b1b242fd32b9b42bfc78e98" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "939c7c1c6e4209a4f4781eff3bfaebee9c51098ac5825c420e760ad6b213f2a7" + "bytes": "b64d70c8e87c9b97c512582c00a116f4b683a92d9b1b242fd32b9b42bfc78e98" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "t3w2gm3qlwrvyp" + "string": "a400wjtd" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAYTEPBP5QMQHMR6QVEEYQDZ7VWZDMIIJG5IAOE3P4CHPYUH7NROUAXR" + "address": "GDJIUYCGMCJ6K3FZRJHF36VQCYWMCA3YX7K44N24Y6B676EFOX7MB3VW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "3ab7fa136e8aae21647eb4d8bdc991493fa367edc51bebe9b2823ba88552fbd3eb6e9141c4d6288ee16d66007a12074bd5aabf7f39ac59e5397c81689fd1045f" + "bytes": "990477640b74bbee7bb80f9dbee50334225e5174d69cf6d50b7c25bc78d629b330f62f42a05d887bdd0ea0be2df2a9507af42aa27939a490a5c5a677f4eaa372" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "79cfa9c0912d4f57f9870a005ff876db20997d1adb2a5950548910a0b36258d9" + "bytes": "915823a5c144379797d0285ebe2a49d04eaa973addc5de91a03374b8e409ddaf" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "79cfa9c0912d4f57f9870a005ff876db20997d1adb2a5950548910a0b36258d9" + "bytes": "915823a5c144379797d0285ebe2a49d04eaa973addc5de91a03374b8e409ddaf" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "9f57a7c45dbc319017aad67ff1f4be18c5ba736ab29a470f549a6038636992e6" + "bytes": "d7235972255c7a931a52dd0e7d2ae1bf5287ad6e55ffa537ff66521a33c8975d" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "9f57a7c45dbc319017aad67ff1f4be18c5ba736ab29a470f549a6038636992e6" + "bytes": "d7235972255c7a931a52dd0e7d2ae1bf5287ad6e55ffa537ff66521a33c8975d" } ] }, "durability": "persistent", "val": { - "bytes": "939c7c1c6e4209a4f4781eff3bfaebee9c51098ac5825c420e760ad6b213f2a7" + "bytes": "b64d70c8e87c9b97c512582c00a116f4b683a92d9b1b242fd32b9b42bfc78e98" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.87.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.87.json index 53c6251..bb64ccb 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.87.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.87.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "c4d95e91af03807c5447a5751f8c2364b62e14b98379de0ba05410c47cb3effa" + "bytes": "3c65fc187603b0ddd84425c1296327b49a4577874d8cdfae4851a84f811ccba5" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "c4d95e91af03807c5447a5751f8c2364b62e14b98379de0ba05410c47cb3effa" + "bytes": "3c65fc187603b0ddd84425c1296327b49a4577874d8cdfae4851a84f811ccba5" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "0r176yygebea1bz9200j4k2xptu" + "string": "bg5o87fcagr2940v60he14s7bjp5n" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCLRUOUATJRGGUC63PJC7MZNOHISWJTGNIVHGYDDHGV36F4FMLZIJ2EX" + "address": "GBROGSVDYJ3N7CUWPMG6BCI4X23LEVUU5KAUH4M36QNX6UKPJ3SG3HZO" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "82a13b16c6e8070ee20703c5b2a5c48b4eeb6646781655fa7562c7061ad71989c75e86152657b92aed953cca781fb9c524396f328d066c62ebbfb0f25bd74479" + "bytes": "92650c207708a813e9e08a182771b8461302bb621a583f51a5b2127f449764ea57d64b3a57a9d77f44c1fff16a484353228469b131d41b4294fdc5e80b223fb7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "7d5cac0441b6f60791ebf011209550dab7c57ae6844156acff5e7f9f114d420b" + "bytes": "05b1da24be486d233be5aa78c0ee275297f80aae73e6424d3b4141fd7f836c5c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "7d5cac0441b6f60791ebf011209550dab7c57ae6844156acff5e7f9f114d420b" + "bytes": "05b1da24be486d233be5aa78c0ee275297f80aae73e6424d3b4141fd7f836c5c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "928b875122ea3748f6f51f216eb2ed163309ee30686b592267718da6cd591d68" + "bytes": "2db08c73e99e34f8ac4bc77c1dffc59a92a891a985ce0a7ab7d48f42edb7259b" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "928b875122ea3748f6f51f216eb2ed163309ee30686b592267718da6cd591d68" + "bytes": "2db08c73e99e34f8ac4bc77c1dffc59a92a891a985ce0a7ab7d48f42edb7259b" } ] }, "durability": "persistent", "val": { - "bytes": "c4d95e91af03807c5447a5751f8c2364b62e14b98379de0ba05410c47cb3effa" + "bytes": "3c65fc187603b0ddd84425c1296327b49a4577874d8cdfae4851a84f811ccba5" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.88.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.88.json index f912385..abeb5e9 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.88.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.88.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "cb134fff1312a466168735dd4904ea895a212e6969f44bb05262855528d5be87" + "bytes": "7c99314f8d177dcc4be73feee90712891dcf458b6270c6f53681880ae222000b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "cb134fff1312a466168735dd4904ea895a212e6969f44bb05262855528d5be87" + "bytes": "7c99314f8d177dcc4be73feee90712891dcf458b6270c6f53681880ae222000b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "cbc6" + "string": "63i0h3terxonmzfh24qpf" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCOUIYCIJLLFJ3TBDFM2T3Q2HOTXCK5ES4CZ7OYMJOXQHCV76JATXGOE" + "address": "GBAJNB7XH7RHUVCFDQGYIZTPB3R4IQSNX6UW6XKLU5SMKH3MYAH3QCKY" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "63e05a9836c748f392032c54b2f0c81fe92779b05dfe3086054a3ff75614983ce16affbfeb992c2ef60d3e440799b2e26238dcb01a43e877ac4482f561d8302f" + "bytes": "4ac5f2fd8862b5efaa540d486b436e9f123bd7b0d4484be94b1c37a897ddd121bfbc4db305c2549a5d4169f092feb5690fa45ef2078b2e3e3cafe2d6d6ea3a6b" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "275aac8613daec25edd15536b059f360d6f209e544e72de7381863aff9b23fbc" + "bytes": "35d3df699821c9a236460ba548cacf2f914bfd8c86e0d8413395c43b7ef28dfa" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "275aac8613daec25edd15536b059f360d6f209e544e72de7381863aff9b23fbc" + "bytes": "35d3df699821c9a236460ba548cacf2f914bfd8c86e0d8413395c43b7ef28dfa" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b566bd31075e761f4283fd06662f4ca6dce45f700e9423becfee633767febe36" + "bytes": "962c6941ec5701cacae2ed04cbfdb66b21d98bc1994e72ba5cac3fc3d2d0dcfa" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b566bd31075e761f4283fd06662f4ca6dce45f700e9423becfee633767febe36" + "bytes": "962c6941ec5701cacae2ed04cbfdb66b21d98bc1994e72ba5cac3fc3d2d0dcfa" } ] }, "durability": "persistent", "val": { - "bytes": "cb134fff1312a466168735dd4904ea895a212e6969f44bb05262855528d5be87" + "bytes": "7c99314f8d177dcc4be73feee90712891dcf458b6270c6f53681880ae222000b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.89.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.89.json index 8c389d5..9cfe76f 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.89.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.89.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "1b110004828387d39d2d43f088a358f2544333874bbdcc97bce92230a45c7d42" + "bytes": "13c561bc56d86b3e4de39ab807b2cdcb68380b49ac976cdf6271f6c2a60f7de6" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "1b110004828387d39d2d43f088a358f2544333874bbdcc97bce92230a45c7d42" + "bytes": "13c561bc56d86b3e4de39ab807b2cdcb68380b49ac976cdf6271f6c2a60f7de6" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "428or3n50usyuzke5dkq3" + "string": "458zf202y2fkg0u9a" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GD3PQIPOV4RVYBYNE3RPEQ6KF3COP6J4P4XDDO2VFSX4Z7M4EQS5LRJE" + "address": "GAVZFPVYLS3TQTNYVSLVVOGY5ARCPXBYNY4UL3PFINA7YNNT3A57VN67" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ab22bdd0c9734f856d209f1c99f10f22b663b75d01aaef0d74005c82aa0cdfba685047aadbc4ff5e2e3a2c1e8ac220825ef62d98ba8194bbbbbf8071e5eb26d9" + "bytes": "53332f549ed940c055b8ffb464429c4d4c208e67ae4506399ada71b6c24a019431d94d3dc9ddb85eb5f01f576c295f14777655d1ea87f73ce4351135b74c72c9" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "cb1c537b090ff63f9ff44dd10c54f8a739470bfa6dec75235e7dfedf82f21e88" + "bytes": "5d288b50ad0d44d27f65978352f7b843b8904a9531b5222b5434b4ef94ecb3d4" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "cb1c537b090ff63f9ff44dd10c54f8a739470bfa6dec75235e7dfedf82f21e88" + "bytes": "5d288b50ad0d44d27f65978352f7b843b8904a9531b5222b5434b4ef94ecb3d4" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "eef98f4318fd92ffbf1b84f8f995339ad34cd23fe5e1756cfbc496a2d61429ca" + "bytes": "d41c34136fc00d503c2b37305ab269c52da1dad90218a1b368f3fbfd6b1de69e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "eef98f4318fd92ffbf1b84f8f995339ad34cd23fe5e1756cfbc496a2d61429ca" + "bytes": "d41c34136fc00d503c2b37305ab269c52da1dad90218a1b368f3fbfd6b1de69e" } ] }, "durability": "persistent", "val": { - "bytes": "1b110004828387d39d2d43f088a358f2544333874bbdcc97bce92230a45c7d42" + "bytes": "13c561bc56d86b3e4de39ab807b2cdcb68380b49ac976cdf6271f6c2a60f7de6" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.9.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.9.json index 92d840e..dc1d70b 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.9.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.9.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e421b00e43fd1362e7f28bb541310f752889cbd65d50284a8985c632875615fb" + "bytes": "9ae39adad76433d29fe2a7937d3306008f9dbc8da0fb53a42c2de8a3c669a337" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e421b00e43fd1362e7f28bb541310f752889cbd65d50284a8985c632875615fb" + "bytes": "9ae39adad76433d29fe2a7937d3306008f9dbc8da0fb53a42c2de8a3c669a337" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "6dlcf0zr97ppa97qerinb50ruqf4e9qv" + "string": "n80qkaclub7553gadx5daq" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBKX3SDOGDPATR5VOAM22GBA6D7563KWLQWRSIPLAX2OXQ7ABFGRC4B7" + "address": "GAROCANEV3ETPB2FQ6TQAJJ6JBAJAUXVIS5XMKVKM4ODZ3UJZUDQHS33" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b9824737248302f10c2618dd6dbe517b7871472b02a828fbd4d86ed523b240a5b41efd6b9fd08691ac2bf610e530dd89e9fdb26047cd129da411b4bc46e40164" + "bytes": "7ce0e08d176b483193ee895f92699863337d71cfbe321665c8c8b7c819f48839a447fb92eacc6e46eeeee9e73119f1203ff1bc7ac887996c272ca64be0de8192" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "722b19f58cc82580b2b8dbc935ff11cb5d318682daaed40e7947aa8c012767d0" + "bytes": "ad751ac1c2552ce117a357a21c927c24d15b6f7178b8db877c030705a116f703" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "722b19f58cc82580b2b8dbc935ff11cb5d318682daaed40e7947aa8c012767d0" + "bytes": "ad751ac1c2552ce117a357a21c927c24d15b6f7178b8db877c030705a116f703" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6efc1a3f349ac9bd88343dbd96b855c4391fe4e232bf7ede76b52710147dc2af" + "bytes": "b5858593ad1fac265230c1ccb1c50fb44a9ef30dc819fe402fd40248b96cd7d0" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6efc1a3f349ac9bd88343dbd96b855c4391fe4e232bf7ede76b52710147dc2af" + "bytes": "b5858593ad1fac265230c1ccb1c50fb44a9ef30dc819fe402fd40248b96cd7d0" } ] }, "durability": "persistent", "val": { - "bytes": "e421b00e43fd1362e7f28bb541310f752889cbd65d50284a8985c632875615fb" + "bytes": "9ae39adad76433d29fe2a7937d3306008f9dbc8da0fb53a42c2de8a3c669a337" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.90.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.90.json index f21d200..4b48e1a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.90.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.90.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "57e55fb053950d753c77c8ff6ba4bab2975d3eadfd4bff6d24beaa46fa04496b" + "bytes": "dbce86977d91c1b25fb7c7fdd9b4b132e07bc1b58f756f5b7832de50ea87d197" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "57e55fb053950d753c77c8ff6ba4bab2975d3eadfd4bff6d24beaa46fa04496b" + "bytes": "dbce86977d91c1b25fb7c7fdd9b4b132e07bc1b58f756f5b7832de50ea87d197" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "491d6z5aeh" + "string": "47v09cw3ezlu4a0uyxe2mmuy5xm" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCHPEXE7U2BOHKHZEATCFTK2YHKPMAHHPFQZF6FGPKSXTWUHIF7XMSEI" + "address": "GBS2DLGS3F5HUTWUKKDEXOZGFRFVJKTBFMWXDRN3E7SMTN3QHR4GOI7R" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "43f68bbdb0d7b30ab7a6b502e17626f898d5c54b4d9ce625162d9ced68d023d222ba54e40b8705857626648beb7f8b1695c7677350ecbd69dc9283eeb80418c9" + "bytes": "1b16164c318ba33e980b8cf5a3a2741d67a9989a3750dce34bdb58581184f7a127a8d4dce23b3a80eaf1202274d4e036eb842cdd9f7965521de0612644168f0e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "c33ab62a6c71a2352784663e82fd2aba74656fc024e7421e80f686990361557c" + "bytes": "b7f585eb924d1535cc9e3938e4baa4712bf6740a670ccfd6666ae710fc51744f" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "c33ab62a6c71a2352784663e82fd2aba74656fc024e7421e80f686990361557c" + "bytes": "b7f585eb924d1535cc9e3938e4baa4712bf6740a670ccfd6666ae710fc51744f" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "78a23912ef4a1393304d5050824f3730d6d186436253e4b1042a63a4b7299266" + "bytes": "ddf414d30be0b75407393155ab8efe60e23097e3ee77f6bb7a904cb168af882a" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "78a23912ef4a1393304d5050824f3730d6d186436253e4b1042a63a4b7299266" + "bytes": "ddf414d30be0b75407393155ab8efe60e23097e3ee77f6bb7a904cb168af882a" } ] }, "durability": "persistent", "val": { - "bytes": "57e55fb053950d753c77c8ff6ba4bab2975d3eadfd4bff6d24beaa46fa04496b" + "bytes": "dbce86977d91c1b25fb7c7fdd9b4b132e07bc1b58f756f5b7832de50ea87d197" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.91.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.91.json index 2d98544..6bad84a 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.91.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.91.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "bb945b478c7bb208ea1f103133f8711bfc57deb21a4af8bcbcec059ee3211ee6" + "bytes": "3f32bc6bf5943a83d2e80704f9466336e2e966c4b39811aaaea5d73f009b9ce7" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "bb945b478c7bb208ea1f103133f8711bfc57deb21a4af8bcbcec059ee3211ee6" + "bytes": "3f32bc6bf5943a83d2e80704f9466336e2e966c4b39811aaaea5d73f009b9ce7" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "fa5" + "string": "by76frx4jxl25jai7wnm4b35" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAV5FRSI2AEK6Q67AYBTWEREUASY65QUNR3WQVRFEG2GHQ63DENBGLEE" + "address": "GBENRRICB2ZSWYPVMLPERQPSRSP2DECIZ7ATCX4EMMBVVY3AXEPIRKBW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "7d9a8ce56b4ac3c7cd411557c9c3e15087d6965e0aef408704f7530ac29f1c3d7fa8f1caab3447622da3e6f5fd38a9c79f62ff7da5b0550a044e07f5d58ebcf9" + "bytes": "1a441f60489555bf8722123f7a5bc5ec560fdb79111ab86833a868d91c10c1ed267a208c218e950de22129cdcbe1150d34064c0393a92f395806d1ae4e5a23a1" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "308223bcad86b2d78a09c8be1d407e36d7479eee6b6e96a9bf39ca4c39573203" + "bytes": "f55047241699bb5629850f1afe05372f286d89ff478ad19e8d810a4977f979a7" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "308223bcad86b2d78a09c8be1d407e36d7479eee6b6e96a9bf39ca4c39573203" + "bytes": "f55047241699bb5629850f1afe05372f286d89ff478ad19e8d810a4977f979a7" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "b09e116bcda1c56054a04054b121729b38a2d51e3711ca074fc13c9438eb049e" + "bytes": "25b40ce498d97463a37e30e912d0a959592a0ff62028a29a9e8209d113ca1f65" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "b09e116bcda1c56054a04054b121729b38a2d51e3711ca074fc13c9438eb049e" + "bytes": "25b40ce498d97463a37e30e912d0a959592a0ff62028a29a9e8209d113ca1f65" } ] }, "durability": "persistent", "val": { - "bytes": "bb945b478c7bb208ea1f103133f8711bfc57deb21a4af8bcbcec059ee3211ee6" + "bytes": "3f32bc6bf5943a83d2e80704f9466336e2e966c4b39811aaaea5d73f009b9ce7" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.92.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.92.json index 63b5a50..14648f1 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.92.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.92.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "5d51f3f74c9db295c26365e494dc839ead7795bbda18665c1e35acb3cc9b23c6" + "bytes": "0024f1cda8946a8086a9ee440a4da110f8e8540911c277835dde45983160cb84" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "5d51f3f74c9db295c26365e494dc839ead7795bbda18665c1e35acb3cc9b23c6" + "bytes": "0024f1cda8946a8086a9ee440a4da110f8e8540911c277835dde45983160cb84" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "zci27zf6q6" + "string": "cg0y67u3m54o6n3o11" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCHHP3G7UB3BQWIJ27X7GEAIZTO7NYYUAWH4J6GEARBE7VZ7M2H6ZAR6" + "address": "GBSGLEPNLVTKZ3JD7TN5VOLU6FSTML7FAF3PUKSQSAK3NOKIV77RBXT6" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cfa93b336ac33e38c42956a62aaa61418364420a2878b88bc39b21c88c4c82f00ea9751dc51e49c304ecdd713e0d27ad87391777f03263f9e664bb021e73df4a" + "bytes": "c11d15f7ceab7c4e9e2789386b632779192fce31fc5dabf4899c48a0459180d1ae9671e7d06d519fffe7f811d3855529dd1579af47fe0a078bd5c941fd56f80e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "38b7f3b0ccf2fdad0ef978ea827e8861e8edbfc5218d1826fb4f19cbb96099d2" + "bytes": "08803e0ea3481b5f870896a6b21e9a6bc663a59250bcdf5b5bb3ac976fea3d9c" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "38b7f3b0ccf2fdad0ef978ea827e8861e8edbfc5218d1826fb4f19cbb96099d2" + "bytes": "08803e0ea3481b5f870896a6b21e9a6bc663a59250bcdf5b5bb3ac976fea3d9c" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "7a68c7d48c1646c8c39c581531616a72afb073c9de31310815986bdad82a38b3" + "bytes": "a55dc25405f43e1daf9ff6d33225566fed812adeeff78019a459ddb6760a795e" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "7a68c7d48c1646c8c39c581531616a72afb073c9de31310815986bdad82a38b3" + "bytes": "a55dc25405f43e1daf9ff6d33225566fed812adeeff78019a459ddb6760a795e" } ] }, "durability": "persistent", "val": { - "bytes": "5d51f3f74c9db295c26365e494dc839ead7795bbda18665c1e35acb3cc9b23c6" + "bytes": "0024f1cda8946a8086a9ee440a4da110f8e8540911c277835dde45983160cb84" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.93.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.93.json index 9bbaa61..9ee63ba 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.93.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.93.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "9a3aa56b00cad4b327e03cf11464cc13b4baff0e9b188c06d913428882542af8" + "bytes": "bcb7d31585abc6461a0120cf592b79183530bc3857f1c79509bcf7cb88d26925" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "9a3aa56b00cad4b327e03cf11464cc13b4baff0e9b188c06d913428882542af8" + "bytes": "bcb7d31585abc6461a0120cf592b79183530bc3857f1c79509bcf7cb88d26925" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "10rn9fb81i6" + "string": "y303f4lau59p5" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCFEWSECGDZTJLR2QTCAF4V7NHJTHWOJRYCFV5MXSU2TFGDILIRDLYQ3" + "address": "GDRMDO7IVPT4RFE7ZQJAZKERXO7BTGWERCJGBMDZ6Y5GTLGUBXBWIQUA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "96353ff7c4f77e6eb80df7fe4b80204f594cf7bdb021c27680d2cb0950b33cd78c96a75707222e616efce2c5a4087130db03f153d45a9e22bca1c85e22941278" + "bytes": "127208f4d7896f3ecf638a9ef0045ac8f42ac8e5c1e60beb519be5b7b49045ad54f4cc3fdc94458188a7b0c41c756a3012d97cab2464d36e219ce1ebe1953cdb" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "b948b725cf16a35309d31dc5c1a1c934c82499d057feb80df1214a6ca764c3d7" + "bytes": "5c5d4830409c5956b76638b93d7ca96f4c3b39d13f4969a29b712f515978ead9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "b948b725cf16a35309d31dc5c1a1c934c82499d057feb80df1214a6ca764c3d7" + "bytes": "5c5d4830409c5956b76638b93d7ca96f4c3b39d13f4969a29b712f515978ead9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "aae851d611bafb06c5a6d8700abe62b25d2a71a0272e88b878497a1780f46497" + "bytes": "9296a2b056537d9ea840ceb74cc351f48815f6243311ce62683b1b21e5653e52" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "aae851d611bafb06c5a6d8700abe62b25d2a71a0272e88b878497a1780f46497" + "bytes": "9296a2b056537d9ea840ceb74cc351f48815f6243311ce62683b1b21e5653e52" } ] }, "durability": "persistent", "val": { - "bytes": "9a3aa56b00cad4b327e03cf11464cc13b4baff0e9b188c06d913428882542af8" + "bytes": "bcb7d31585abc6461a0120cf592b79183530bc3857f1c79509bcf7cb88d26925" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.94.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.94.json index d8326eb..2d103c6 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.94.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.94.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "d3b8c43d35063d8ed2aef5eb711115b21608098bca8869bb132cf17f20454a04" + "bytes": "9c7f0617f6868ff2d59e9274c1a5a40d7821fd94e2296e8622b95a6bc20be54b" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "d3b8c43d35063d8ed2aef5eb711115b21608098bca8869bb132cf17f20454a04" + "bytes": "9c7f0617f6868ff2d59e9274c1a5a40d7821fd94e2296e8622b95a6bc20be54b" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "q4e" + "string": "5r722rx15jchh84" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GBUXH5WOOLDJUAOLH2KGXZVREDQP4DOCF7OM6ATYRA5SPCPQ6SRMZ6WR" + "address": "GASY7AAPKPXAFMHNUGMG6PMU2MMGIRKIOMIR6KVCHNGAG4VK2W2LMNPW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "03b408714a20026e61fd21e8620f4169eda67fa54aa16b308eafc5306dbb5df2d0f7931f5f92a06e31f440395aea40394e032d87df6fbf0c94d9dd7c4b49cafb" + "bytes": "adf1ec4c64256963d9e862e65c9ce4920d66c5d8d39a7c38304181c9613f3ae583aa4e76327ae2596d4e96977d4e82b9b3e140ba208f14e67bbe12974d2e5227" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "5c6a4640486e79afa03ae6f52cccb417ddefa3fc67bddb6927d9608b9a6eba2b" + "bytes": "fbb942b9cfd0c6c7e11a3ecf7cf31578f6cc1045f3613cbec94bb60382cb0ba9" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "5c6a4640486e79afa03ae6f52cccb417ddefa3fc67bddb6927d9608b9a6eba2b" + "bytes": "fbb942b9cfd0c6c7e11a3ecf7cf31578f6cc1045f3613cbec94bb60382cb0ba9" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6b40ab1ecf8e8c74747676da28662f8cec269478c4c1ec71eb037d865c018323" + "bytes": "9ca8a5a9e75d763207ec37b7522494f46cfad70bce000400e09760d57fc07107" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6b40ab1ecf8e8c74747676da28662f8cec269478c4c1ec71eb037d865c018323" + "bytes": "9ca8a5a9e75d763207ec37b7522494f46cfad70bce000400e09760d57fc07107" } ] }, "durability": "persistent", "val": { - "bytes": "d3b8c43d35063d8ed2aef5eb711115b21608098bca8869bb132cf17f20454a04" + "bytes": "9c7f0617f6868ff2d59e9274c1a5a40d7821fd94e2296e8622b95a6bc20be54b" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.95.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.95.json index bb60811..c1be808 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.95.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.95.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "46232f0f04aab319ba1c1dd4be21a9ee8fbf68baa9587b4dbaa70cd3e64ea3b3" + "bytes": "1e4fed3cdf8623a1f380379d09e1d82c25c7366dd45ce9594d425f59814c169a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "46232f0f04aab319ba1c1dd4be21a9ee8fbf68baa9587b4dbaa70cd3e64ea3b3" + "bytes": "1e4fed3cdf8623a1f380379d09e1d82c25c7366dd45ce9594d425f59814c169a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "77ll82k5av42mjgwuzsfy9n2j118r" + "string": "ygg7xziq731q" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCOF63VG2U3MZWKWMSWES7RU7KI3PXTEWPEAL5NNTBYRLZAEXIM7U7QP" + "address": "GA6CEKLN6KQH6LJPCKPVN2EOG2YOHHLMAOMVOLSSHOTLAL3VZAYJGZNW" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "aaff1e246af7c569288194495599ffb9becb05fd48b66510befe2e12b988219611ed4aad56a946ec5a8137a645ceac362e8bdeb38be350bfa0f3f1dfd12e1168" + "bytes": "a3b2dba604c93745c8490ad47717b5e5cdce455c1d0736feeaaa39c6745280389b520f81df570ef4771ce580301164c5b3baead0827e1cb3c4f3953577cf38b5" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "84ff10590f3029207685771abfdae1360f2c9c9d60e6e9d1a788e63802565d2e" + "bytes": "055bce6872904d17ccf170f94d16e32f7d79a8406edff4a023c36accf5952481" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "84ff10590f3029207685771abfdae1360f2c9c9d60e6e9d1a788e63802565d2e" + "bytes": "055bce6872904d17ccf170f94d16e32f7d79a8406edff4a023c36accf5952481" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "444970dfb073ac81c7805426d2d1df936370b1f19d9d4f6f434aeee4e3454703" + "bytes": "68821d49fd2400d80534556ba86a321b7d8cec4988c244e0a39087eaccef2408" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "444970dfb073ac81c7805426d2d1df936370b1f19d9d4f6f434aeee4e3454703" + "bytes": "68821d49fd2400d80534556ba86a321b7d8cec4988c244e0a39087eaccef2408" } ] }, "durability": "persistent", "val": { - "bytes": "46232f0f04aab319ba1c1dd4be21a9ee8fbf68baa9587b4dbaa70cd3e64ea3b3" + "bytes": "1e4fed3cdf8623a1f380379d09e1d82c25c7366dd45ce9594d425f59814c169a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.96.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.96.json index e7174d1..5b75796 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.96.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.96.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "b91b71c9be5965577331c193c4c2a5a3562a7a4e8e9231eb60bd68f9800f56ab" + "bytes": "1d39ab6d6386173ec27dd86b47c2fa7717d7994899af9b57f9fa569d3fc8e29e" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "b91b71c9be5965577331c193c4c2a5a3562a7a4e8e9231eb60bd68f9800f56ab" + "bytes": "1d39ab6d6386173ec27dd86b47c2fa7717d7994899af9b57f9fa569d3fc8e29e" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "i189zf9n6583q13" + "string": "8st691gzxd3me4n" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GAOYUJZEXEEB7I7UTE5NSOWTIUXTLOYN3GECTNSPXAH27O7IIOC4626C" + "address": "GANCLRRZUZJTDHJCDQALEGID6VIBIX7PJII6442EAVWQYSBVQCMEY6NA" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "cd9ea8a28e6c931acea6c9cbaa256f044ff1930c8345768b95362aed20343acc1d02417e04a8f0b75b54911967801a52c3d10a61ae745cb30d7b2cd8bbebd68b" + "bytes": "22fd372bb86fed86fed588bfb8cd89af549ba5ea0d5c60d8718634147cf2494f6898aa3855804a32661a234fd4387760ed733f5dd623ca01e238dbb086194b3a" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "169fdc4a5b13abb329fb83fcc0311f9db448e422bdde82330187342f525c4145" + "bytes": "25625e8d663b059afa0a912744adb43c57d23dce008d98bd26f772ee578275e6" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "169fdc4a5b13abb329fb83fcc0311f9db448e422bdde82330187342f525c4145" + "bytes": "25625e8d663b059afa0a912744adb43c57d23dce008d98bd26f772ee578275e6" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "6678d3fce7d58e0136c9cd41d1dde4acaf76b39706415f8c9befe2d83c03aa9d" + "bytes": "5b1d14e335462492c89703f73ffafd2d40c12e054a431117a7fa8ae49b453919" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "6678d3fce7d58e0136c9cd41d1dde4acaf76b39706415f8c9befe2d83c03aa9d" + "bytes": "5b1d14e335462492c89703f73ffafd2d40c12e054a431117a7fa8ae49b453919" } ] }, "durability": "persistent", "val": { - "bytes": "b91b71c9be5965577331c193c4c2a5a3562a7a4e8e9231eb60bd68f9800f56ab" + "bytes": "1d39ab6d6386173ec27dd86b47c2fa7717d7994899af9b57f9fa569d3fc8e29e" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.97.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.97.json index a0670da..2553234 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.97.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.97.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "0564f6f898180ee02fc09a56512ffc0ed5515931bba43cb2a1979e87d6fb1d59" + "bytes": "8a1d638420b10b4d7cced4f875438ea58b1dfec75b1b82fdfc9f45cd55c4b0f6" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "0564f6f898180ee02fc09a56512ffc0ed5515931bba43cb2a1979e87d6fb1d59" + "bytes": "8a1d638420b10b4d7cced4f875438ea58b1dfec75b1b82fdfc9f45cd55c4b0f6" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "r275a214" + "string": "61535" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GDGHKUAREQEKEC3HFP24YXJOKNLD475Z77DG4EYFCY4T4RGU7UKTXNAD" + "address": "GAP3YGCIV4YW4CBM4FEZASP4L7KJ4YNCY2GZMCKKFKXZAIT4B3FGXVTN" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "d1a0fee3ca69f8b6600ac7df966313bfbd74963e52d55f697e0f2d0982f3626d0f3f07a0d9fad9efe8bee4df19423ba226c538811fa76b328de67225513281b4" + "bytes": "23662f175f08fbdb58eb90b843b3057e3d070890ebdd3ae8ba0f4019aaa8651ba0ea3820fccbe4c1cd9c8d1a6f7c7c742255c9d1fdc6a847794d3fab5868b27e" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "f6820bf6f45cec6cae6a8da5573bcff1667b5845f7a28ea555fb93b36b1fd88c" + "bytes": "63f626dd244d9d8d030816640d488512e66fd93d3a7b1002c05415786c213861" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "f6820bf6f45cec6cae6a8da5573bcff1667b5845f7a28ea555fb93b36b1fd88c" + "bytes": "63f626dd244d9d8d030816640d488512e66fd93d3a7b1002c05415786c213861" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "054197bbdbb962165a15a71a96a425da1da18a3740dff09a23be9ec692c5d9fd" + "bytes": "a6133b583b5b5fc0c5cd8086eee559874c9fc6917287a593c8f62431b5f335d1" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "054197bbdbb962165a15a71a96a425da1da18a3740dff09a23be9ec692c5d9fd" + "bytes": "a6133b583b5b5fc0c5cd8086eee559874c9fc6917287a593c8f62431b5f335d1" } ] }, "durability": "persistent", "val": { - "bytes": "0564f6f898180ee02fc09a56512ffc0ed5515931bba43cb2a1979e87d6fb1d59" + "bytes": "8a1d638420b10b4d7cced4f875438ea58b1dfec75b1b82fdfc9f45cd55c4b0f6" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.98.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.98.json index 82ebb4a..137949d 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.98.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.98.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "2c1658045b3644fb016e94ac4c2358542a7b4b231164cecbc2475328a1c5d7b0" + "bytes": "97486fc31a36c1c3ca285e007a8b6510d21f9be16c5170718956612f73a9622f" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "2c1658045b3644fb016e94ac4c2358542a7b4b231164cecbc2475328a1c5d7b0" + "bytes": "97486fc31a36c1c3ca285e007a8b6510d21f9be16c5170718956612f73a9622f" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "j9022xjk0428i5423m2a017if124" + "string": "tniki4ga4og79c4o3446cq" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GARWHQUEHMAHWCBR5BIGECTF54AQLA4FLCI2JJL3FYTY2B6GIIVYKP2S" + "address": "GCFVYXAZITCWLHJAEJL547LQ2ZELFRDSH6FGSTQYNM4BJYZE7L6TNUFV" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "b758fc32bb209001516c3c95d6850f632d02fe4291421b35c5e5689b083f3c7ade34eabc78b1c6210485052115c1376922a69c6a60ffd86ced40b84be72c973c" + "bytes": "818bfd5ad705a8e53515fe0101757c339bdcc3288b2cf1d0fc90f31473c8c306554783fe67293608819a5ad416ecf02ef11bd727a167114d556e3a9ff4c7d59c" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "cdd9cca6b1ab9105e1f3ad436eb233bb5adb6465df9ef083fdc577fde5a67af7" + "bytes": "70e1519236812d5c23d3117efe5c243dc399a3880b6a7644b425b21f05801663" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "cdd9cca6b1ab9105e1f3ad436eb233bb5adb6465df9ef083fdc577fde5a67af7" + "bytes": "70e1519236812d5c23d3117efe5c243dc399a3880b6a7644b425b21f05801663" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0a6c3eab9a70e65a6135af589d4b2cf1d4cb51435f0b5d6c631cec7143d8d499" + "bytes": "02a661517c0c614611cfcf6d478d54602ebfed5d7ec4c482f0e2e4f5de01c3a4" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0a6c3eab9a70e65a6135af589d4b2cf1d4cb51435f0b5d6c631cec7143d8d499" + "bytes": "02a661517c0c614611cfcf6d478d54602ebfed5d7ec4c482f0e2e4f5de01c3a4" } ] }, "durability": "persistent", "val": { - "bytes": "2c1658045b3644fb016e94ac4c2358542a7b4b231164cecbc2475328a1c5d7b0" + "bytes": "97486fc31a36c1c3ca285e007a8b6510d21f9be16c5170718956612f73a9622f" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.99.json b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.99.json index f1a8477..d024a13 100644 --- a/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.99.json +++ b/stellar/wraith-names/test_snapshots/test/prop_register_on_behalf_roundtrip.99.json @@ -28,7 +28,7 @@ "symbol": "Name" }, { - "bytes": "e5cc93b1ae6782e2e6adf17c8c1f1b316bd13efa9ec4559fa67bf1996997c742" + "bytes": "d7272b2afd30e2d4bdcb778f59a5c94a722ee101bac10ee19a1ad8a143c0d13a" } ] }, @@ -48,7 +48,7 @@ "symbol": "Name" }, { - "bytes": "e5cc93b1ae6782e2e6adf17c8c1f1b316bd13efa9ec4559fa67bf1996997c742" + "bytes": "d7272b2afd30e2d4bdcb778f59a5c94a722ee101bac10ee19a1ad8a143c0d13a" } ] }, @@ -60,7 +60,7 @@ "symbol": "name" }, "val": { - "string": "fb577b989bfe6t62wjtj80" + "string": "rtmpy49su248gjig9rwtnli43" } }, { @@ -68,7 +68,7 @@ "symbol": "owner" }, "val": { - "address": "GCHNTW2OFXOMDPGH6WIMMY6BNOSWQS4R22PSQCBKDW35MQIVTPXANKVI" + "address": "GBJ2EGTA6SKPX3DDWGTQJ5OH72HRNNPQIYTDW6WR25FZLRH4ILEZ5GD6" } }, { @@ -82,7 +82,7 @@ "symbol": "stealth_meta_address" }, "val": { - "bytes": "ab857456089ae4a3bf23201bd31c0a481e00dcd985fd8211aa76b52e3ba6c66fc014f0ee9ae27512b36a43fa155c999167f24cfc48ad65b93e0da5205e3d9d3c" + "bytes": "f69b17c6c5980ac125351899cf444779a472a6f6eb5b5c8ccc0109b41c5478aa4ddd3cdebcd43fec125e0e539358d4c13dd6b82805f940b8bd9f45628dcc8da7" } } ] @@ -104,7 +104,7 @@ "symbol": "Replay" }, { - "bytes": "1d2a25b1cbf3ce99aa7c58b7d50626df9d41917276e0f1ff18ca78b7c27b0229" + "bytes": "bb910185b53d196ac7e6d62201c4309860dd4fd2a3361ebc781e12059a2dc389" } ] }, @@ -124,7 +124,7 @@ "symbol": "Replay" }, { - "bytes": "1d2a25b1cbf3ce99aa7c58b7d50626df9d41917276e0f1ff18ca78b7c27b0229" + "bytes": "bb910185b53d196ac7e6d62201c4309860dd4fd2a3361ebc781e12059a2dc389" } ] }, @@ -149,7 +149,7 @@ "symbol": "Reverse" }, { - "bytes": "0c8c0119d909294ed1d265ced6b075282dcea9d12b501b22de8cb70383e06e0f" + "bytes": "e2456eb42bfaedbb7f441123760c22e77423c10233e09c0517224381f63c5dca" } ] }, @@ -169,13 +169,13 @@ "symbol": "Reverse" }, { - "bytes": "0c8c0119d909294ed1d265ced6b075282dcea9d12b501b22de8cb70383e06e0f" + "bytes": "e2456eb42bfaedbb7f441123760c22e77423c10233e09c0517224381f63c5dca" } ] }, "durability": "persistent", "val": { - "bytes": "e5cc93b1ae6782e2e6adf17c8c1f1b316bd13efa9ec4559fa67bf1996997c742" + "bytes": "d7272b2afd30e2d4bdcb778f59a5c94a722ee101bac10ee19a1ad8a143c0d13a" } } }, diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_register_atomic_revert_on_taken.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_register_atomic_revert_on_taken.1.json new file mode 100644 index 0000000..735332c --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_register_atomic_revert_on_taken.1.json @@ -0,0 +1,257 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "taken" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "taken" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_register_exceeds_limit.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_register_exceeds_limit.1.json new file mode 100644 index 0000000..5655749 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_register_exceeds_limit.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_register_happy_path.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_register_happy_path.1.json new file mode 100644 index 0000000..2196644 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_register_happy_path.1.json @@ -0,0 +1,519 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "bulk_register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "vec": [ + { + "string": "app" + }, + { + "string": "docs" + }, + { + "string": "pay" + } + ] + }, + { + "vec": [ + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + }, + { + "bytes": "03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303" + } + ] + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "docs" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "pay" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "app" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "6aa56c4bcd208911792ad24c7681fefb93bed51903afc54860c9bd37e41e5a31" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "6aa56c4bcd208911792ad24c7681fefb93bed51903afc54860c9bd37e41e5a31" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_register_invalid_meta_length.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_register_invalid_meta_length.1.json new file mode 100644 index 0000000..5655749 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_register_invalid_meta_length.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_register_mismatched_lengths.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_register_mismatched_lengths.1.json new file mode 100644 index 0000000..5655749 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_register_mismatched_lengths.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_renew_atomic_revert_on_missing.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_atomic_revert_on_missing.1.json new file mode 100644 index 0000000..ceb2a09 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_atomic_revert_on_missing.1.json @@ -0,0 +1,255 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "exists" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "exists" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_renew_exceeds_limit.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_exceeds_limit.1.json new file mode 100644 index 0000000..a90f00a --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_exceeds_limit.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 1, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test/test_bulk_renew_happy_path.1.json b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_happy_path.1.json new file mode 100644 index 0000000..3dbb70b --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test/test_bulk_renew_happy_path.1.json @@ -0,0 +1,515 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "alpha" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "beta" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "alpha" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "beta" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [ + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "extend" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ], + "data": { + "u32": 10000 + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "extend" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ], + "data": { + "u32": 10000 + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "blk_renew" + } + ], + "data": { + "vec": [ + { + "vec": [ + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + { + "u32": 10000 + } + ] + } + } + } + }, + "failed_call": false + } + ] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_all_succeed.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_all_succeed.1.json new file mode 100644 index 0000000..2196644 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_all_succeed.1.json @@ -0,0 +1,519 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "bulk_register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "vec": [ + { + "string": "app" + }, + { + "string": "docs" + }, + { + "string": "pay" + } + ] + }, + { + "vec": [ + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + }, + { + "bytes": "03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303" + } + ] + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "docs" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "pay" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "app" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "6aa56c4bcd208911792ad24c7681fefb93bed51903afc54860c9bd37e41e5a31" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "6aa56c4bcd208911792ad24c7681fefb93bed51903afc54860c9bd37e41e5a31" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "9350872d712a127c494d7dc35e46b0bc9e62e288239708e581dfc3a1400154a4" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_invalid_meta.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_invalid_meta.1.json new file mode 100644 index 0000000..64688ee --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_invalid_meta.1.json @@ -0,0 +1,77 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_taken.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_taken.1.json new file mode 100644 index 0000000..735332c --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_atomic_revert_on_taken.1.json @@ -0,0 +1,257 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "taken" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "taken" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "99341d56cc28805370b9f449c044a4cf00a1e7eb003362116c814fd96899c55c" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_emits_per_name_events.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_emits_per_name_events.1.json new file mode 100644 index 0000000..9a03d07 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_emits_per_name_events.1.json @@ -0,0 +1,480 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "bulk_register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "vec": [ + { + "string": "app" + }, + { + "string": "docs" + } + ] + }, + { + "vec": [ + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + ] + } + ] + } + }, + "sub_invocations": [] + } + ] + ] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "docs" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "app" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [ + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "register" + }, + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + } + ], + "data": { + "vec": [ + { + "string": "app" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "register" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ], + "data": { + "vec": [ + { + "string": "docs" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + ] + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "bulk_reg" + }, + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + ], + "data": { + "vec": [ + { + "bytes": "a172cedcae47474b615c54d510a5d84a8dea3032e958587430b413538be3f333" + }, + { + "bytes": "46b42b4229cd7a39c564e780bb665a8bde4fdf722007e8473f167fe53ed4b995" + } + ] + } + } + } + }, + "failed_call": false + } + ] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_exceeds_limit.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_exceeds_limit.1.json new file mode 100644 index 0000000..5655749 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_exceeds_limit.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_invalid_name_reverts.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_invalid_name_reverts.1.json new file mode 100644 index 0000000..64688ee --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_invalid_name_reverts.1.json @@ -0,0 +1,77 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_register_mismatched_lengths.1.json b/stellar/wraith-names/test_snapshots/test_bulk_register_mismatched_lengths.1.json new file mode 100644 index 0000000..5655749 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_register_mismatched_lengths.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_renew_all_succeed.1.json b/stellar/wraith-names/test_snapshots/test_bulk_renew_all_succeed.1.json new file mode 100644 index 0000000..4f9b90c --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_renew_all_succeed.1.json @@ -0,0 +1,435 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "alpha" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "beta" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "alpha" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "beta" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_renew_atomic_revert_on_missing.1.json b/stellar/wraith-names/test_snapshots/test_bulk_renew_atomic_revert_on_missing.1.json new file mode 100644 index 0000000..ceb2a09 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_renew_atomic_revert_on_missing.1.json @@ -0,0 +1,255 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "exists" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "exists" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "ad5aabc97d88f6e56deaffc34c7a6e292e9e12db04a56799d773cfb64ca9898d" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_renew_emits_per_name_events.1.json b/stellar/wraith-names/test_snapshots/test_bulk_renew_emits_per_name_events.1.json new file mode 100644 index 0000000..3dbb70b --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_renew_emits_per_name_events.1.json @@ -0,0 +1,515 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "alpha" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "beta" + }, + { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "alpha" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "beta" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "02020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "f83b332be4e6a5a4b1c56aaf6db52657da495e149870057d8590ab9d7a6167ad" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 5541220902715666415 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [ + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "extend" + }, + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + } + ], + "data": { + "u32": 10000 + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "extend" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ], + "data": { + "u32": 10000 + } + } + } + }, + "failed_call": false + }, + { + "event": { + "ext": "v0", + "contract_id": "0000000000000000000000000000000000000000000000000000000000000001", + "type_": "contract", + "body": { + "v0": { + "topics": [ + { + "symbol": "blk_renew" + } + ], + "data": { + "vec": [ + { + "vec": [ + { + "bytes": "8ed3f6ad685b959ead7022518e1af76cd816f8e8ec7ccdda1ed4018e8f2223f8" + }, + { + "bytes": "f44e64e75f3948e9f73f8dfa94721c4ce8cbb4f265c4790c702b2d41cfbf2753" + } + ] + }, + { + "u32": 10000 + } + ] + } + } + } + }, + "failed_call": false + } + ] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_renew_exceeds_limit.1.json b/stellar/wraith-names/test_snapshots/test_bulk_renew_exceeds_limit.1.json new file mode 100644 index 0000000..a90f00a --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_renew_exceeds_limit.1.json @@ -0,0 +1,76 @@ +{ + "generators": { + "address": 1, + "nonce": 0 + }, + "auth": [ + [], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/test_snapshots/test_bulk_renew_invalid_extend_ledger.1.json b/stellar/wraith-names/test_snapshots/test_bulk_renew_invalid_extend_ledger.1.json new file mode 100644 index 0000000..709c529 --- /dev/null +++ b/stellar/wraith-names/test_snapshots/test_bulk_renew_invalid_extend_ledger.1.json @@ -0,0 +1,255 @@ +{ + "generators": { + "address": 2, + "nonce": 0 + }, + "auth": [ + [], + [ + [ + "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + { + "function": { + "contract_fn": { + "contract_address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "function_name": "register", + "args": [ + { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + }, + { + "string": "test" + }, + { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + ] + } + }, + "sub_invocations": [] + } + ] + ], + [] + ], + "ledger": { + "protocol_version": 22, + "sequence_number": 0, + "timestamp": 0, + "network_id": "0000000000000000000000000000000000000000000000000000000000000000", + "base_reserve": 0, + "min_persistent_entry_ttl": 4096, + "min_temp_entry_ttl": 16, + "max_entry_ttl": 6312000, + "ledger_entries": [ + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Name" + }, + { + "bytes": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08" + } + ] + }, + "durability": "persistent", + "val": { + "map": [ + { + "key": { + "symbol": "name" + }, + "val": { + "string": "test" + } + }, + { + "key": { + "symbol": "owner" + }, + "val": { + "address": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4" + } + }, + { + "key": { + "symbol": "parent" + }, + "val": "void" + }, + { + "key": { + "symbol": "stealth_meta_address" + }, + "val": { + "bytes": "01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101" + } + } + ] + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": { + "vec": [ + { + "symbol": "Reverse" + }, + { + "bytes": "7c8975e1e60a5c8337f28edf8c33c3b180360b7279644a9bc1af3c51e6220bf5" + } + ] + }, + "durability": "persistent", + "val": { + "bytes": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08" + } + } + }, + "ext": "v0" + }, + 518400 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD2KM", + "key": "ledger_key_contract_instance", + "durability": "persistent", + "val": { + "contract_instance": { + "executable": { + "wasm": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + }, + "storage": null + } + } + } + }, + "ext": "v0" + }, + 4095 + ] + ], + [ + { + "contract_data": { + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_data": { + "ext": "v0", + "contract": "CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFCT4", + "key": { + "ledger_key_nonce": { + "nonce": 801925984706572462 + } + }, + "durability": "temporary", + "val": "void" + } + }, + "ext": "v0" + }, + 6311999 + ] + ], + [ + { + "contract_code": { + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + } + }, + [ + { + "last_modified_ledger_seq": 0, + "data": { + "contract_code": { + "ext": "v0", + "hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "code": "" + } + }, + "ext": "v0" + }, + 4095 + ] + ] + ] + }, + "events": [] +} \ No newline at end of file diff --git a/stellar/wraith-names/tests/names_bulk.rs b/stellar/wraith-names/tests/names_bulk.rs new file mode 100644 index 0000000..33f46d0 --- /dev/null +++ b/stellar/wraith-names/tests/names_bulk.rs @@ -0,0 +1,341 @@ +use soroban_sdk::testutils::{Address as _, Events}; +use soroban_sdk::{Address, Bytes, Env, String, Vec}; +use wraith_names::{NamesError, WraithNamesContract, WraithNamesContractClient}; + +fn setup() -> (Env, WraithNamesContractClient<'static>) { + let env = Env::default(); + env.mock_all_auths(); + let contract_id = env.register(WraithNamesContract, ()); + let client = WraithNamesContractClient::new(&env, &contract_id); + (env, client) +} + +/// 1. Happy path: bulk_register registers all names atomically. +#[test] +fn test_bulk_register_all_succeed() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "app"), + String::from_str(&env, "docs"), + String::from_str(&env, "pay"), + ], + ); + let metas = Vec::from_array( + &env, + [ + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + Bytes::from_slice(&env, &[3u8; 64]), + ], + ); + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Ok(Ok(()))); + + assert_eq!( + client.resolve(&String::from_str(&env, "app")), + Bytes::from_slice(&env, &[1u8; 64]) + ); + assert_eq!( + client.resolve(&String::from_str(&env, "docs")), + Bytes::from_slice(&env, &[2u8; 64]) + ); + assert_eq!( + client.resolve(&String::from_str(&env, "pay")), + Bytes::from_slice(&env, &[3u8; 64]) + ); +} + +/// 2. Atomicity: if one name is taken, the entire bulk_register reverts. +#[test] +fn test_bulk_register_atomic_revert_on_taken() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + // Pre-register one name + client.register( + &owner, + &String::from_str(&env, "taken"), + &Bytes::from_slice(&env, &[1u8; 64]), + ); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "free1"), + String::from_str(&env, "taken"), + String::from_str(&env, "free2"), + ], + ); + let metas = Vec::from_array( + &env, + [ + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + Bytes::from_slice(&env, &[3u8; 64]), + ], + ); + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::NameTaken))); + + // Verify none of the free names were registered + assert_eq!( + client.try_resolve(&String::from_str(&env, "free1")), + Err(Ok(NamesError::NameNotFound)) + ); + assert_eq!( + client.try_resolve(&String::from_str(&env, "free2")), + Err(Ok(NamesError::NameNotFound)) + ); +} + +/// 3. Atomicity: if one name has invalid meta, the entire operation reverts. +#[test] +fn test_bulk_register_atomic_revert_on_invalid_meta() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "good1"), + String::from_str(&env, "good2"), + ], + ); + let metas = Vec::from_array( + &env, + [ + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 63]), // invalid length + ], + ); + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::InvalidMetaAddress))); + + assert_eq!( + client.try_resolve(&String::from_str(&env, "good1")), + Err(Ok(NamesError::NameNotFound)) + ); +} + +/// 4. Size cap: bulk_register with more than 20 names is rejected. +#[test] +fn test_bulk_register_exceeds_limit() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let mut names = Vec::new(&env); + let mut metas = Vec::new(&env); + for i in 0..21 { + names.push_back(String::from_str(&env, &format!("n{}", i))); + metas.push_back(Bytes::from_slice(&env, &[i as u8; 64])); + } + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::BulkLimitExceeded))); +} + +/// 5. Mismatched input lengths are caught. +#[test] +fn test_bulk_register_mismatched_lengths() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let names = Vec::from_array(&env, [String::from_str(&env, "a"), String::from_str(&env, "b")]); + let metas = Vec::from_array(&env, [Bytes::from_slice(&env, &[1u8; 64])]); + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::InvalidMetaAddress))); +} + +/// 6. Invalid name character causes revert. +#[test] +fn test_bulk_register_invalid_name_reverts() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "valid"), + String::from_str(&env, "BAD"), + ], + ); + let metas = Vec::from_array( + &env, + [ + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + ], + ); + + let result = client.try_bulk_register(&owner, &names, &metas); + assert_eq!(result, Err(Ok(NamesError::InvalidNameCharacter))); + + assert_eq!( + client.try_resolve(&String::from_str(&env, "valid")), + Err(Ok(NamesError::NameNotFound)) + ); +} + +/// 7. Per-name events are emitted for each registration in a bulk_register. +#[test] +fn test_bulk_register_emits_per_name_events() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "app"), + String::from_str(&env, "docs"), + ], + ); + let metas = Vec::from_array( + &env, + [ + Bytes::from_slice(&env, &[1u8; 64]), + Bytes::from_slice(&env, &[2u8; 64]), + ], + ); + + client.bulk_register(&owner, &names, &metas); + + // Should have 2 per-name register events + 1 BulkRegistered event + let events = env.events().all(); + // Each event has 3 components: topics, data + // We check total count + assert_eq!(events.len(), 3, "expected 2 register + 1 bulk_reg events"); +} + +/// 8. Happy path: bulk_renew extends TTL for multiple names. +#[test] +fn test_bulk_renew_all_succeed() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + client.register( + &owner, + &String::from_str(&env, "alpha"), + &Bytes::from_slice(&env, &[1u8; 64]), + ); + client.register( + &owner, + &String::from_str(&env, "beta"), + &Bytes::from_slice(&env, &[2u8; 64]), + ); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "alpha"), + String::from_str(&env, "beta"), + ], + ); + let extend_to = env.ledger().sequence() + 10000; + + let result = client.try_bulk_renew(&names, &extend_to); + assert_eq!(result, Ok(Ok(()))); + + // Names still resolve after renew + assert_eq!( + client.resolve(&String::from_str(&env, "alpha")), + Bytes::from_slice(&env, &[1u8; 64]) + ); +} + +/// 9. Atomicity: bulk_renew reverts if any name does not exist. +#[test] +fn test_bulk_renew_atomic_revert_on_missing() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + client.register( + &owner, + &String::from_str(&env, "exists"), + &Bytes::from_slice(&env, &[1u8; 64]), + ); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "exists"), + String::from_str(&env, "ghost"), + ], + ); + let extend_to = env.ledger().sequence() + 10000; + + let result = client.try_bulk_renew(&names, &extend_to); + assert_eq!(result, Err(Ok(NamesError::NameNotFound))); +} + +/// 10. Size cap: bulk_renew with more than 20 names is rejected. +#[test] +fn test_bulk_renew_exceeds_limit() { + let (env, client) = setup(); + + let mut names = Vec::new(&env); + for i in 0..21 { + names.push_back(String::from_str(&env, &format!("n{}", i))); + } + let extend_to = env.ledger().sequence() + 10000; + + let result = client.try_bulk_renew(&names, &extend_to); + assert_eq!(result, Err(Ok(NamesError::BulkLimitExceeded))); +} + +/// 11. bulk_renew with invalid extend_to_ledger (past) is rejected. +#[test] +fn test_bulk_renew_invalid_extend_ledger() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + client.register( + &owner, + &String::from_str(&env, "test"), + &Bytes::from_slice(&env, &[1u8; 64]), + ); + + let names = Vec::from_array(&env, [String::from_str(&env, "test")]); + let current = env.ledger().sequence(); + let result = client.try_bulk_renew(&names, ¤t); + assert_eq!(result, Err(Ok(NamesError::InvalidExtendLedger))); +} + +/// 12. Per-name extend events are emitted in bulk_renew. +#[test] +fn test_bulk_renew_emits_per_name_events() { + let (env, client) = setup(); + let owner = Address::generate(&env); + + client.register( + &owner, + &String::from_str(&env, "alpha"), + &Bytes::from_slice(&env, &[1u8; 64]), + ); + client.register( + &owner, + &String::from_str(&env, "beta"), + &Bytes::from_slice(&env, &[2u8; 64]), + ); + + let names = Vec::from_array( + &env, + [ + String::from_str(&env, "alpha"), + String::from_str(&env, "beta"), + ], + ); + let extend_to = env.ledger().sequence() + 10000; + client.bulk_renew(&names, &extend_to); + + let events = env.events().all(); + // 2 per-name extend events + 1 bulk_renew event + assert_eq!(events.len(), 3, "expected 2 extend + 1 blk_renew events"); +}