Skip to content

Commit

Permalink
added contract constants
Browse files Browse the repository at this point in the history
  • Loading branch information
antiyro committed Jun 17, 2024
1 parent d9a47de commit 6627f92
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion unit_tests/src/constants/mainnet/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,52 @@ pub const CONTRACT_ERC20: &str =
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x046ef77bd47ba7b1424ba2b2b1442d14168ac3dc6897032bf491ecbafd5f5c32)
pub const CONTRACT_ACCOUNT: &str =
"0x046ef77bd47ba7b1424ba2b2b1442d14168ac3dc6897032bf491ecbafd5f5c32";
"0x046ef77bd47ba7b1424ba2b2b1442d14168ac3dc6897032bf491ecbafd5f5c32";

///
/// Random Cairo 0 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x03cdabdf2ea700a667c63024523ccb04a22d18104da826ac10984a18eddadbbe)
///
pub const CONTRACT_CAIRO_0: &str =
"0x03cdabdf2ea700a667c63024523ccb04a22d18104da826ac10984a18eddadbbe";

///
/// Random Braavos account Cairo 0 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x0179d67854d1b9429d276ed7c59010be187af15d2e6ede31a513bdfbfa3e1af7)
///
pub const CONTRACT_BRAAVOS_ACCOUNT_CAIRO_0: &str =
"0x0179d67854d1b9429d276ed7c59010be187af15d2e6ede31a513bdfbfa3e1af7";

///
/// Random Braavos account Cairo 1 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x017de82f930be1caec165b9501197046ecc7d2d86d9721cd57f0cb16c2a99b2e)
///
pub const CONTRACT_BRAAVOS_ACCOUNT_CAIRO_1: &str =
"0x017de82f930be1caec165b9501197046ecc7d2d86d9721cd57f0cb16c2a99b2e";

///
/// Random Argent account Cairo 0 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x0314a5cbf7f368446d38ed4d0de19f5ca16546c1a519e8994c07590ecff803c0)
///
pub const CONTRACT_ARGENT_ACCOUNT_CAIRO_0: &str =
"0x0314a5cbf7f368446d38ed4d0de19f5ca16546c1a519e8994c07590ecff803c0";

///
/// Random Argent account Cairo 1 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x017317d13c8278d38720d2d70d7adcf6a3cf9ef3abb5422ad60ea4f98f8d6eba)
///
pub const CONTRACT_ARGENT_ACCOUNT_CAIRO_1: &str =
"0x017317d13c8278d38720d2d70d7adcf6a3cf9ef3abb5422ad60ea4f98f8d6eba";

///
/// Random ERC721 Cairo 0 contract address.
///
/// Details concerning this contract can be found on [StarkScan](https://starkscan.co/contract/0x0717e6b64e3c48c016ffec829963696480bf40ad8ca1d5303902c1b23347ff57)
///
pub const CONTRACT_ERC721_CAIRO_0: &str =
"0x0717e6b64e3c48c016ffec829963696480bf40ad8ca1d5303902c1b23347ff57";

0 comments on commit 6627f92

Please sign in to comment.