Skip to content

Commit 2aef624

Browse files
authored
feat(config): add USDC credits addresses for sepolia and mainnet-alpha environments (#104)
1 parent 0874835 commit 2aef624

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/sdk/src/client/common/config/environment.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const ENVIRONMENTS: Record<string, Omit<EnvironmentConfig, "chainID">> = {
4545
kmsServerURL: "http://10.128.0.57:8080",
4646
userApiServerURL: "https://userapi-compute-sepolia-dev.eigencloud.xyz",
4747
defaultRPCURL: "https://ethereum-sepolia-rpc.publicnode.com",
48-
usdcCreditsAddress: "0xbdA3897c3A428763B59015C64AB766c288C97376" as Address,
48+
usdcCreditsAddress: "0xbdA3897c3A428763B59015C64AB766c288C97376",
4949
},
5050
sepolia: {
5151
name: "sepolia",
@@ -57,6 +57,7 @@ const ENVIRONMENTS: Record<string, Omit<EnvironmentConfig, "chainID">> = {
5757
userApiServerURL: "https://userapi-compute-sepolia-prod.eigencloud.xyz",
5858
defaultRPCURL: "https://ethereum-sepolia-rpc.publicnode.com",
5959
billingRPCURL: "https://ethereum-rpc.publicnode.com",
60+
usdcCreditsAddress: "0xed9c88640ca9149Bd9f7ee6620074af10F2E145d",
6061
},
6162
"mainnet-alpha": {
6263
name: "mainnet-alpha",
@@ -67,6 +68,7 @@ const ENVIRONMENTS: Record<string, Omit<EnvironmentConfig, "chainID">> = {
6768
kmsServerURL: "http://10.128.0.2:8080",
6869
userApiServerURL: "https://userapi-compute.eigencloud.xyz",
6970
defaultRPCURL: "https://ethereum-rpc.publicnode.com",
71+
usdcCreditsAddress: "0xed9c88640ca9149Bd9f7ee6620074af10F2E145d",
7072
},
7173
};
7274

0 commit comments

Comments
 (0)