Skip to content

Commit

Permalink
feat: mainnet address book entry for usdc
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Jul 7, 2024
1 parent 61650d9 commit 0f3493f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/address_book.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crate::chain_id::ChainIdSource;

const CHAIN_ID_KATANA: Felt = felt!("0x4b4154414e41");

pub const HARDCODED_ADDRESS_BOOK: [AddressBookEntry; 8] = [
pub const HARDCODED_ADDRESS_BOOK: [AddressBookEntry; 9] = [
AddressBookEntry {
chain_id: chain_id::MAINNET,
name: "eth",
Expand All @@ -23,6 +23,11 @@ pub const HARDCODED_ADDRESS_BOOK: [AddressBookEntry; 8] = [
name: "strk",
address: felt!("0x04718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d"),
},
AddressBookEntry {
chain_id: chain_id::MAINNET,
name: "usdc",
address: felt!("0x053c91253bc9682c04929ca02ed00b3e423f6710d2ee7e0d5ebb06f3ecf368a8"),
},
AddressBookEntry {
chain_id: short_string!("SN_SEPOLIA"),
name: "eth",
Expand Down

0 comments on commit 0f3493f

Please sign in to comment.