-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: better encapsulations in starknet_ibc_apps
- Loading branch information
1 parent
29db8c3
commit f3b05c5
Showing
3 changed files
with
22 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
pub mod transfer; | ||
pub mod transfer { | ||
pub mod components; | ||
mod erc20_call; | ||
mod errors; | ||
pub mod interfaces; | ||
pub mod types; | ||
|
||
pub use erc20_call::{ERC20Contract, ERC20ContractTrait}; | ||
pub use errors::TransferErrors; | ||
|
||
/// The poseidon hash of the transfer port id. | ||
pub const TRANSFER_PORT_ID_HASH: felt252 = | ||
506076466176013583354797631368330115868609515147080483618120063858966368900; | ||
|
||
pub fn TRANSFER_PORT_ID() -> ByteArray { | ||
"transfer" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters