-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
57 additions
and
52 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
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,4 +1,4 @@ | ||
pub mod block; | ||
pub mod transaction; | ||
pub mod contract; | ||
pub mod network; | ||
pub mod contract; | ||
pub mod transaction; |
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,3 +1,3 @@ | ||
pub const DEOXYS: &str = "deoxys"; | ||
pub const PATHFINDER: &str = "pathfinder"; | ||
pub const JUNO: &str = "juno"; | ||
pub const JUNO: &str = "juno"; |
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,47 +1,42 @@ | ||
/// | ||
/// Random INVOKE_V0 transaction | ||
/// | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x02c02d6f0d75bc71b1c629cde038199ccfb6e18343a76943275405817727f76c) | ||
/// | ||
pub const TX_INVOKE_V0: &str = | ||
"0x02c02d6f0d75bc71b1c629cde038199ccfb6e18343a76943275405817727f76c"; | ||
/// | ||
pub const TX_INVOKE_V0: &str = "0x02c02d6f0d75bc71b1c629cde038199ccfb6e18343a76943275405817727f76c"; | ||
|
||
/// | ||
/// Random INVOKE_V1 transaction | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x027ed707907aef09c39ece1b24540308eee8d74a14c77728604c3a2da546fd6d) | ||
/// | ||
pub const TX_INVOKE_V1: &str = | ||
"0x027ed707907aef09c39ece1b24540308eee8d74a14c77728604c3a2da546fd6d"; | ||
pub const TX_INVOKE_V1: &str = "0x027ed707907aef09c39ece1b24540308eee8d74a14c77728604c3a2da546fd6d"; | ||
|
||
/// | ||
/// Random DECLARE_V0 transaction | ||
/// | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x5f430525084fe54a73e6f6de7d5d3ac20311ac4ba48002c665dade0c585af82) | ||
/// | ||
pub const TX_DECLARE_V0: &str = | ||
"0x5f430525084fe54a73e6f6de7d5d3ac20311ac4ba48002c665dade0c585af82"; | ||
/// | ||
pub const TX_DECLARE_V0: &str = "0x5f430525084fe54a73e6f6de7d5d3ac20311ac4ba48002c665dade0c585af82"; | ||
|
||
/// | ||
/// Random DECLARE_V1 transaction | ||
/// | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x30fd34d7ffbe2aea6121f76c7c82a9edb7250a69a86eaf4ea55e9fb39237d71) | ||
/// | ||
pub const TX_DECLARE_V1: &str = | ||
"0x30fd34d7ffbe2aea6121f76c7c82a9edb7250a69a86eaf4ea55e9fb39237d71"; | ||
|
||
pub const TX_DECLARE_V1: &str = "0x30fd34d7ffbe2aea6121f76c7c82a9edb7250a69a86eaf4ea55e9fb39237d71"; | ||
|
||
/// | ||
/// Random DECLARE_V2 transaction | ||
/// | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x62c6e41b306db3dd03fbbb14bd169e84819e5ac1058ffde93a924b3abe9b3c1) | ||
/// | ||
pub const TX_DECLARE_V2: &str = | ||
"0x62c6e41b306db3dd03fbbb14bd169e84819e5ac1058ffde93a924b3abe9b3c1"; | ||
/// | ||
pub const TX_DECLARE_V2: &str = "0x62c6e41b306db3dd03fbbb14bd169e84819e5ac1058ffde93a924b3abe9b3c1"; | ||
|
||
/// | ||
/// Random L1_HANDLER_V0 transaction | ||
/// | ||
/// | ||
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/tx/0x006a555ac598673a215ef69815db1ebe89cb11eed9a489215c21c7d32d6e581a) | ||
/// | ||
/// | ||
pub const TX_L1_HANDLER_V0: &str = | ||
"0x006a555ac598673a215ef69815db1ebe89cb11eed9a489215c21c7d32d6e581a"; |
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,2 +1,2 @@ | ||
pub mod mainnet; | ||
pub mod sepolia; | ||
pub mod sepolia; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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,4 +1,4 @@ | ||
pub mod block; | ||
pub mod transaction; | ||
pub mod contract; | ||
pub mod network; | ||
pub mod contract; | ||
pub mod transaction; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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
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
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