Skip to content

Commit

Permalink
Set sepolia SC address
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil committed Dec 18, 2024
1 parent 166f281 commit d77119a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions utils/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ var (
fallBackSequencerAddressMainnet, _ = new(felt.Felt).SetString("0x021f4b90b0377c82bf330b7b5295820769e72d79d8acd0effa0ebde6e9988bc5")
fallBackSequencerAddress, _ = new(felt.Felt).SetString("0x046a89ae102987331d369645031b49c27738ed096f2789c24449966da4c6de6b")
// The following are necessary for Cobra and Viper, respectively, to unmarshal log level CLI/config parameters properly.
_ pflag.Value = (*Network)(nil)
_ encoding.TextUnmarshaler = (*Network)(nil)
_ pflag.Value = (*Network)(nil)
_ encoding.TextUnmarshaler = (*Network)(nil)
ipAddressRegistry = common.HexToAddress("0xa2499F2a3Fb071fd99f921038d043eF31B446883")

// The docs states the addresses for each network: https://docs.starknet.io/tools/important-addresses/
Mainnet = Network{
Expand Down Expand Up @@ -108,6 +109,7 @@ var (
First07Block: 0,
FallBackSequencerAddress: fallBackSequencerAddress,
},
IPAddressRegistry: &ipAddressRegistry,
}
SepoliaIntegration = Network{
Name: "sepolia-integration",
Expand Down

0 comments on commit d77119a

Please sign in to comment.