Skip to content

Commit a45a9ce

Browse files
committed
fix(addresses): feedback
1 parent e84fc6a commit a45a9ce

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

packages/blue-sdk/src/addresses.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ const _addressesRegistry = {
560560
chainlinkOracleFactory: "0xF24C6eAB91e43EacE18a4e893a48565C09132505",
561561
preLiquidationFactory: "0x741A6604e974FeAF35a5FBb1416B3e01c33e5C0e",
562562

563-
wNative: "0xDEd1660192d4d82e7c0B628ba556861EdBB5CAda",
563+
wNative: "0x0000000000000000000000000000000000000001",
564564
},
565565
} as const;
566566

@@ -950,18 +950,18 @@ const _deployments = {
950950
[ChainId.StableMainnet]: {
951951
morpho: 1504506n,
952952
bundler3: {
953-
bundler3: 1748111n,
954-
generalAdapter1: 1748122n,
953+
bundler3: 1741861n,
954+
generalAdapter1: 1741861n,
955955
},
956956
adaptiveCurveIrm: 1504506n,
957957
publicAllocator: 1504506n,
958-
metaMorphoFactory: 1504506n,
959-
vaultV2Factory: 1504506n,
958+
metaMorphoFactory: 1504774n,
959+
vaultV2Factory: 1506182n,
960960
morphoMarketV1AdapterFactory: 1506182n,
961961
morphoVaultV1AdapterFactory: 1506182n,
962-
registryList: 1506182n,
963-
chainlinkOracleFactory: 1505186n,
964-
preLiquidationFactory: 1951601n,
962+
registryList: 1506877n,
963+
chainlinkOracleFactory: 1504774n,
964+
preLiquidationFactory: 1741861n,
965965
},
966966
} as const satisfies Record<ChainId, ChainDeployments>;
967967

packages/blue-sdk/src/chain.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export enum ChainId {
3030
export interface ChainMetadata {
3131
readonly name: string;
3232
readonly id: ChainId;
33-
readonly explorerUrl: string;
33+
readonly explorerUrl: string | undefined;
3434
readonly nativeCurrency: {
3535
readonly name: string;
3636
readonly symbol: string;
@@ -235,8 +235,8 @@ export namespace ChainUtils {
235235
[ChainId.StableMainnet]: {
236236
name: "Stable",
237237
id: ChainId.StableMainnet,
238-
nativeCurrency: { name: "USDT", symbol: "USDT", decimals: 18 },
239-
explorerUrl: "https://partners-explorer.stable.xyz",
238+
nativeCurrency: { name: "gUSDT", symbol: "gUSDT", decimals: 18 },
239+
explorerUrl: undefined,
240240
identifier: "stable",
241241
},
242242
} satisfies Record<ChainId, ChainMetadata>;

packages/liquidation-sdk-viem/src/addresses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,6 @@ export const preLiquidationFactoryConfigs: Record<
238238
},
239239
[ChainId.StableMainnet]: {
240240
address: addressesRegistry[ChainId.StableMainnet].preLiquidationFactory,
241-
startBlock: 1951601n,
241+
startBlock: 1741861n,
242242
},
243243
};

0 commit comments

Comments
 (0)