Skip to content

Commit

Permalink
move most of core IBC types into IBC crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed May 23, 2024
1 parent d1bd5d6 commit a49637e
Show file tree
Hide file tree
Showing 19 changed files with 572 additions and 587 deletions.
2 changes: 1 addition & 1 deletion crates/core/src/address.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ use std::str::FromStr;

use borsh::{BorshDeserialize, BorshSchema, BorshSerialize};
use data_encoding::HEXUPPER;
use ibc::primitives::Signer;
use namada_macros::BorshDeserializer;
#[cfg(feature = "migrations")]
use namada_migrations::*;
use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256};

use crate::ethereum_events::EthAddress;
use crate::ibc::primitives::Signer;
use crate::ibc::IbcTokenHash;
use crate::key::PublicKeyHash;
use crate::{impl_display_and_from_str_via_format, key, string_encoding};
Expand Down
Loading

0 comments on commit a49637e

Please sign in to comment.