@gvnrdao/dh-sdk 0.0.255 → 0.0.256

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,4 +4,4 @@
4
4
  export declare const POSITION_MANAGER_ABI: readonly ["function createPosition(bytes32 pkpId, bytes calldata validatorSignature, address borrower, string calldata vaultAddress, uint256 selectedTermMonths) external returns (bool)", "function getPositionById(bytes32 positionId) external view returns (tuple(bytes32 positionId, bytes32 pkpId, uint256 ucdDebt, string vaultAddress, address borrower, uint40 createdAt, uint40 lastUpdated, uint16 selectedTerm, uint40 expiryAt, uint8 status))", "function getUserPositions(address user) external view returns (bytes32[] memory)", "function calculateCollateralRatio(bytes32 positionId) external view returns (uint256)", "function hasRole(bytes32 role, address account) external view returns (bool)", "function ADMIN_ROLE() external view returns (bytes32)", "function paused() external view returns (bool)", "function mintUCD(bytes32 positionId, uint256 mintAmount, uint256 mintFee, uint256 newDebt, uint256 newCollateral, uint256 btcPrice, bytes32 authorizedSpendsHash, bytes32 ucdDebtHash, bytes32 contractHash, uint256 quantumTimestamp, bytes calldata mintValidatorSignature) external returns (bool)", "function makePayment(bytes32 positionId, uint256 paymentAmount, uint256 quantumTimestamp, uint256 btcPrice, bytes calldata paymentValidatorSignature) external returns (bool)", "function withdrawBTC(bytes32 positionId, string withdrawalAddress, uint256 networkFee) external returns (bool)", "function extendPosition(bytes32 positionId, uint256 selectedTerm, uint256 quantumTimestamp, uint256 btcPrice, uint256 availableBTCBalance, bytes calldata extensionValidatorSignature) external returns (bool)", "function liquidatePosition(bytes32 positionId) external returns (bool)", "function commitLiquidation(bytes32 positionId, bytes32 commitHash) external", "function revealAndLiquidate(bytes32 positionId, uint256 nonce, uint256 deadline) external returns (bool)", "function getExpiredLoanLiquidationThreshold(bytes32 positionId) external view returns (uint256)", "function isExpiredLoanLiquidatable(bytes32 positionId, uint256 collateralValue, uint256 debtAmount) external view returns (bool)", "event PositionCreated(bytes32 indexed positionId, bytes32 indexed pkpId, address indexed borrower, uint256 requestedCollateralRatio, uint256 selectedTerm, uint256 expiryAt)", "event UCDMinted(bytes32 indexed positionId, uint256 amount, bytes proof)", "event PositionLiquidated(bytes32 indexed positionId, address indexed liquidator, uint256 collateralRatio, uint256 debtRepaid, uint256 collateralValue, bool wasExpired, uint256 timestamp)", "event CollateralRatioUpdated(bytes32 indexed positionId, uint256 oldRatio, uint256 newRatio)", "event PositionUpdated(bytes32 indexed positionId, uint256 oldDebt, uint256 newDebt)"];
5
5
  export declare const UCD_TOKEN_ABI: readonly ["function balanceOf(address account) external view returns (uint256)", "function transfer(address to, uint256 amount) external returns (bool)", "function approve(address spender, uint256 amount) external returns (bool)", "function allowance(address owner, address spender) external view returns (uint256)", "function mint(address to, uint256 amount) external", "function burn(uint256 amount) external", "function burnFrom(address account, uint256 amount) external", "event Transfer(address indexed from, address indexed to, uint256 value)", "event Approval(address indexed owner, address indexed spender, uint256 value)"];
6
6
  export declare const PRICE_FEED_CONSUMER_ABI: readonly ["function getCurrentPrice() external view returns (uint256)", "function isPriceStale() external view returns (bool)", "function updatePrice() external", "event PriceUpdated(uint256 indexed price, uint256 timestamp)"];
7
- export declare const PSM_ABI: readonly ["function swap(address stablecoin, uint256 amountIn, uint256 minUcdOut) external returns (uint256 ucdAmount)", "function addSupportedStablecoin(address stablecoin, uint256 exchangeRate, uint256 entryFeeBps, uint256 exitFeeBps, uint8 decimals, uint256 minSwapAmount, uint256 minRedeemAmount) external", "function updateSupportedStablecoin(address stablecoin, uint256 exchangeRate, uint256 entryFeeBps, uint256 exitFeeBps, uint8 decimals, uint256 minSwapAmount, uint256 minRedeemAmount) external", "function removeSupportedStablecoin(address stablecoin) external", "function withdrawStablecoin(address stablecoin, uint256 amount) external", "function pause() external", "function unpause() external", "function redeem(address stablecoin, uint256 ucdAmount, uint256 minStablecoinOut) external returns (uint256 stablecoinAmount)", "function setExitFee(address stablecoin, uint256 fee) external", "function setEntryFee(address stablecoin, uint256 fee) external", "function setExchangeRate(address stablecoin, uint256 rate) external", "function setRedeemEnabled(bool enabled) external", "function addReserves(address stablecoin, uint256 amount) external", "function syncReserves(address stablecoin) external", "function forceSyncReserves(address stablecoin) external", "function getRedemptionQuote(address stablecoin, uint256 ucdAmount) external view returns (uint256 stablecoinOut, uint256 exitFee)", "function getAvailableReserves(address stablecoin) external view returns (uint256)", "function canRedeem(address stablecoin, uint256 ucdAmount) external view returns (bool)", "function version() external pure returns (string memory)", "function supportedStablecoins(address) external view returns (bool)", "function exchangeRates(address) external view returns (uint256)", "function fees(address) external view returns (uint256)", "function exitFees(address) external view returns (uint256)", "function reserves(address) external view returns (uint256)", "function redeemEnabled() external view returns (bool)", "function stablecoinDecimals(address) external view returns (uint8)", "function lastOperationBlock(address) external view returns (uint256)", "function operationCount(address) external view returns (uint256)", "function BASIS_POINTS() external view returns (uint256)", "function EXCHANGE_RATE_SCALE() external view returns (uint256)", "function MAX_EXIT_FEE() external view returns (uint256)", "function MAX_RESERVE_DRIFT() external view returns (uint256)", "event Swap(address indexed user, address indexed stablecoin, uint256 stablecoinAmount, uint256 ucdAmount, uint256 fee, uint256 timestamp)", "event Redeem(address indexed user, address indexed stablecoin, uint256 ucdAmount, uint256 stablecoinAmount, uint256 exitFee, uint256 timestamp)", "event StablecoinAdded(address indexed stablecoin, uint256 exchangeRate, uint256 fee)", "event StablecoinRemoved(address indexed stablecoin)", "event ReserveUpdated(address indexed stablecoin, uint256 oldReserve, uint256 newReserve)", "event ExitFeeUpdated(address indexed stablecoin, uint256 oldFee, uint256 newFee)", "event EntryFeeUpdated(address indexed stablecoin, uint256 oldFee, uint256 newFee)", "event ExchangeRateUpdated(address indexed stablecoin, uint256 oldRate, uint256 newRate)"];
7
+ export declare const PSM_ABI: readonly ["function swap(address stablecoin, uint256 amountIn, uint256 minUcdOut) external returns (uint256 ucdAmount)", "function addSupportedStablecoin(address stablecoin, uint256 exchangeRate, uint256 entryFeeBps, uint256 exitFeeBps, uint8 decimals, uint256 minSwapAmount, uint256 minRedeemAmount, uint256 maxSwapAmount, uint256 maxRedeemAmount, uint256 initialSwapVolumeCap, uint256 initialRedeemVolumeCap) external", "function updateSupportedStablecoin(address stablecoin, uint256 exchangeRate, uint256 entryFeeBps, uint256 exitFeeBps, uint8 decimals, uint256 minSwapAmount, uint256 minRedeemAmount) external", "function removeSupportedStablecoin(address stablecoin) external", "function withdrawStablecoin(address stablecoin, uint256 amount) external", "function pause() external", "function unpause() external", "function redeem(address stablecoin, uint256 ucdAmount, uint256 minStablecoinOut) external returns (uint256 stablecoinAmount)", "function setExitFee(address stablecoin, uint256 fee) external", "function setEntryFee(address stablecoin, uint256 fee) external", "function setExchangeRate(address stablecoin, uint256 rate) external", "function setRedeemEnabled(bool enabled) external", "function addReserves(address stablecoin, uint256 amount) external", "function syncReserves(address stablecoin) external", "function forceSyncReserves(address stablecoin) external", "function getRedemptionQuote(address stablecoin, uint256 ucdAmount) external view returns (uint256 stablecoinOut, uint256 exitFee)", "function getAvailableReserves(address stablecoin) external view returns (uint256)", "function canRedeem(address stablecoin, uint256 ucdAmount) external view returns (bool)", "function version() external pure returns (string memory)", "function supportedStablecoins(address) external view returns (bool)", "function exchangeRates(address) external view returns (uint256)", "function fees(address) external view returns (uint256)", "function exitFees(address) external view returns (uint256)", "function reserves(address) external view returns (uint256)", "function redeemEnabled() external view returns (bool)", "function stablecoinDecimals(address) external view returns (uint8)", "function lastOperationBlock(address) external view returns (uint256)", "function operationCount(address) external view returns (uint256)", "function BASIS_POINTS() external view returns (uint256)", "function EXCHANGE_RATE_SCALE() external view returns (uint256)", "function MAX_EXIT_FEE() external view returns (uint256)", "function MAX_RESERVE_DRIFT() external view returns (uint256)", "event Swap(address indexed user, address indexed stablecoin, uint256 stablecoinAmount, uint256 ucdAmount, uint256 fee, uint256 timestamp)", "event Redeem(address indexed user, address indexed stablecoin, uint256 ucdAmount, uint256 stablecoinAmount, uint256 exitFee, uint256 timestamp)", "event StablecoinAdded(address indexed stablecoin, uint256 exchangeRate, uint256 fee)", "event StablecoinRemoved(address indexed stablecoin)", "event ReserveUpdated(address indexed stablecoin, uint256 oldReserve, uint256 newReserve)", "event ExitFeeUpdated(address indexed stablecoin, uint256 oldFee, uint256 newFee)", "event EntryFeeUpdated(address indexed stablecoin, uint256 oldFee, uint256 newFee)", "event ExchangeRateUpdated(address indexed stablecoin, uint256 oldRate, uint256 newRate)"];
@@ -65,23 +65,23 @@ var SEPOLIA_DEPLOYMENT = {
65
65
  },
66
66
  upgraded: {
67
67
  PositionManager: {
68
- previousImplementation: "0x623f3bDff8830d2161D3b5D42d38b39697c65eBE",
69
- newImplementation: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
70
- upgradedAt: "2026-05-17T15:53:13.068Z",
68
+ previousImplementation: "0x10D220f7724Ceca26a25248DC8F609962343f97e",
69
+ newImplementation: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
70
+ upgradedAt: "2026-05-17T20:00:12.958Z",
71
71
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
72
72
  reason: "Shared upgrade script: PositionManager implementation update"
73
73
  },
74
74
  LoanOperationsManagerModule: {
75
- previousImplementation: "0xFE48026f88706Bb0AA5CD47E4cBCf0BeD2bE9D6b",
76
- newImplementation: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
77
- upgradedAt: "2026-05-17T15:55:00.789Z",
75
+ previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
76
+ newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
77
+ upgradedAt: "2026-05-17T20:02:12.883Z",
78
78
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
79
79
  reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
80
80
  },
81
81
  UCDController: {
82
- previousImplementation: "0x9AFE20da679EA9877893c4A991c8087caE5F7e4C",
83
- newImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
84
- upgradedAt: "2026-05-17T15:28:37.792Z",
82
+ previousImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
83
+ newImplementation: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
84
+ upgradedAt: "2026-05-17T18:41:48.528Z",
85
85
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
86
86
  reason: "Shared upgrade script: UCDController implementation update"
87
87
  },
@@ -93,23 +93,23 @@ var SEPOLIA_DEPLOYMENT = {
93
93
  reason: "Shared upgrade script: TermManagerModule implementation update"
94
94
  },
95
95
  CircuitBreakerModule: {
96
- previousImplementation: "0x24C345841360EEe81C944c00e0E5c8f6CCc53C00",
97
- newImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
98
- upgradedAt: "2026-05-17T15:41:49.053Z",
96
+ previousImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
97
+ newImplementation: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
98
+ upgradedAt: "2026-05-17T19:22:13.051Z",
99
99
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
100
100
  reason: "Shared upgrade script: CircuitBreakerModule implementation update"
101
101
  },
102
102
  AdminModule: {
103
- previousImplementation: "0x70a500896A26E4e7CDb56886b9e6438e39DB5ae4",
104
- newImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
105
- upgradedAt: "2026-05-17T15:43:53.074Z",
103
+ previousImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
104
+ newImplementation: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
105
+ upgradedAt: "2026-05-17T19:24:24.939Z",
106
106
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
107
107
  reason: "Shared upgrade script: AdminModule implementation update"
108
108
  },
109
109
  PositionManagerViews: {
110
- previousImplementation: "0xBd1F92F24E89cC55acFc422eCA0df00F68B99565",
111
- newImplementation: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
112
- upgradedAt: "2026-05-17T15:49:48.840Z",
110
+ previousImplementation: "0x4fB9438bf7c5D01030F8848d5086a7F750EaF6fD",
111
+ newImplementation: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
112
+ upgradedAt: "2026-05-17T19:57:25.453Z",
113
113
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
114
114
  reason: "Shared upgrade script: PositionManagerViews implementation update"
115
115
  },
@@ -128,37 +128,37 @@ var SEPOLIA_DEPLOYMENT = {
128
128
  reason: "Shared upgrade script: UCDToken implementation update"
129
129
  },
130
130
  PositionManagerCoreModule: {
131
- previousImplementation: "0x2e34353852d95f8D39aE648af817de9f750c84D6",
132
- newImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
133
- upgradedAt: "2026-05-17T15:32:48.894Z",
131
+ previousImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
132
+ newImplementation: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
133
+ upgradedAt: "2026-05-17T18:54:12.882Z",
134
134
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
135
135
  reason: "Shared upgrade script: PositionManagerCoreModule implementation update"
136
136
  },
137
137
  CollateralManagerModule: {
138
- previousImplementation: "0xC3DD73d669174ED7012579bf2dAAf77085AdD4Cf",
139
- newImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
140
- upgradedAt: "2026-05-17T15:37:25.129Z",
138
+ previousImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
139
+ newImplementation: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
140
+ upgradedAt: "2026-05-17T19:17:01.129Z",
141
141
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
142
142
  reason: "Shared upgrade script: CollateralManagerModule implementation update"
143
143
  },
144
144
  LiquidationManagerModule: {
145
- previousImplementation: "0x15864ea3ECBe7E9FFa0a52b49c4dc7f258FA6300",
146
- newImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
147
- upgradedAt: "2026-05-17T15:39:25.668Z",
145
+ previousImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
146
+ newImplementation: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
147
+ upgradedAt: "2026-05-17T19:19:12.446Z",
148
148
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
149
149
  reason: "Shared upgrade script: LiquidationManagerModule implementation update"
150
150
  },
151
151
  BTCSpendAuthorizer: {
152
- previousImplementation: "0x8021588673Abf0396c1756EdD16F9B9b6d09fcaC",
153
- newImplementation: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
154
- upgradedAt: "2026-05-17T15:45:37.882Z",
152
+ previousImplementation: "0x4c0dc0Da80B7c51fE1719Ffd28c82c083e74A9D3",
153
+ newImplementation: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
154
+ upgradedAt: "2026-05-17T19:54:27.975Z",
155
155
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
156
156
  reason: "Shared upgrade script: BTCSpendAuthorizer implementation update"
157
157
  },
158
158
  SimplePSMV2: {
159
- previousImplementation: "0x0728434d86532FD67A4a7227958654C029b333F6",
160
- newImplementation: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
161
- upgradedAt: "2026-05-17T15:57:01.116Z",
159
+ previousImplementation: "0x7589F066bFbdb8149f02a11759D60c822D6CBcAB",
160
+ newImplementation: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
161
+ upgradedAt: "2026-05-17T20:04:13.030Z",
162
162
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
163
163
  reason: "Shared upgrade script: SimplePSMV2 implementation update"
164
164
  },
@@ -170,11 +170,11 @@ var SEPOLIA_DEPLOYMENT = {
170
170
  reason: "Shared upgrade script: UpgradeValidator implementation update"
171
171
  },
172
172
  LITActionValidator: {
173
- previousImplementation: "0x4548bbF8e0798Aa883604F3ae44EDFc1BAc8278c",
174
- newImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
175
- upgradedAt: "2026-04-22T11:46:48.503Z",
173
+ previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
174
+ newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
175
+ upgradedAt: "2026-05-17T18:39:24.784Z",
176
176
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
177
- reason: "Fresh UUPS proxy deployment (v2.1.0). Previous address was a plain implementation contract with _disableInitializers() \u2014 no proxy, no live state to migrate."
177
+ reason: "C-1: 2.1.0 \u2192 2.2.0 \u2014 adds liquidationManager storage + onlyLiquidationManager gate on transferPKPOwnership (H-6), whenNotPaused on transferPKPOwnership (M-5), and initializeV3 reinitializer wired atomically via AdminModule timelock."
178
178
  },
179
179
  ContractVersionRegistry: {
180
180
  previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
@@ -271,30 +271,30 @@ var SEPOLIA_DEPLOYMENT = {
271
271
  POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
272
272
  CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
273
273
  ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
274
- UCD_CONTROLLER_IMPL: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
275
- LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
274
+ UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
275
+ LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
276
276
  TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
277
- CIRCUIT_BREAKER_MODULE_IMPL: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
278
- ADMIN_MODULE_IMPL: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
279
- POSITION_MANAGER_VIEWS_IMPL: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
280
- POSITION_MANAGER_IMPL: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
277
+ CIRCUIT_BREAKER_MODULE_IMPL: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
278
+ ADMIN_MODULE_IMPL: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
279
+ POSITION_MANAGER_VIEWS_IMPL: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
280
+ POSITION_MANAGER_IMPL: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
281
281
  SIMPLE_PSM_V2: "0x19EcF7BA26e054fd4Ff06009A03070103dbBB058",
282
- SIMPLE_PSM_V2_IMPL: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
282
+ SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
283
283
  UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
284
284
  POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
285
- POSITION_MANAGER_CORE_MODULE_IMPL: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
285
+ POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
286
286
  COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
287
- COLLATERAL_MANAGER_MODULE_IMPL: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
287
+ COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
288
288
  LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
289
- LIQUIDATION_MANAGER_MODULE_IMPL: "0x52e2231f26E8410881BF929e881d295175e078Be",
289
+ LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
290
290
  BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
291
- BTC_SPEND_AUTHORIZER_IMPL: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
291
+ BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
292
292
  UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
293
293
  UPGRADE_VALIDATOR_IMPL: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
294
294
  BITCOIN_PROVIDER_REGISTRY: "0xbfA0c48B070D0a9A9CD27469AeacFD2d4261cEE2",
295
295
  BITCOIN_PROVIDER_REGISTRY_IMPL: "0x225309A4ae6D146ba93A3278A7b40224FfC81448",
296
296
  LIT_ACTION_VALIDATOR: "0x54eECd7C90F8A8fac27749Ba30BbE8AFBAccc856",
297
- LIT_ACTION_VALIDATOR_IMPL: "0x7D2a754AaF41E135c626553000139d5039095E29",
297
+ LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
298
298
  CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
299
299
  CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
300
300
  MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
@@ -32,23 +32,23 @@ var SEPOLIA_DEPLOYMENT = {
32
32
  },
33
33
  upgraded: {
34
34
  PositionManager: {
35
- previousImplementation: "0x623f3bDff8830d2161D3b5D42d38b39697c65eBE",
36
- newImplementation: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
37
- upgradedAt: "2026-05-17T15:53:13.068Z",
35
+ previousImplementation: "0x10D220f7724Ceca26a25248DC8F609962343f97e",
36
+ newImplementation: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
37
+ upgradedAt: "2026-05-17T20:00:12.958Z",
38
38
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
39
39
  reason: "Shared upgrade script: PositionManager implementation update"
40
40
  },
41
41
  LoanOperationsManagerModule: {
42
- previousImplementation: "0xFE48026f88706Bb0AA5CD47E4cBCf0BeD2bE9D6b",
43
- newImplementation: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
44
- upgradedAt: "2026-05-17T15:55:00.789Z",
42
+ previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
43
+ newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
44
+ upgradedAt: "2026-05-17T20:02:12.883Z",
45
45
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
46
46
  reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
47
47
  },
48
48
  UCDController: {
49
- previousImplementation: "0x9AFE20da679EA9877893c4A991c8087caE5F7e4C",
50
- newImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
51
- upgradedAt: "2026-05-17T15:28:37.792Z",
49
+ previousImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
50
+ newImplementation: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
51
+ upgradedAt: "2026-05-17T18:41:48.528Z",
52
52
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
53
53
  reason: "Shared upgrade script: UCDController implementation update"
54
54
  },
@@ -60,23 +60,23 @@ var SEPOLIA_DEPLOYMENT = {
60
60
  reason: "Shared upgrade script: TermManagerModule implementation update"
61
61
  },
62
62
  CircuitBreakerModule: {
63
- previousImplementation: "0x24C345841360EEe81C944c00e0E5c8f6CCc53C00",
64
- newImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
65
- upgradedAt: "2026-05-17T15:41:49.053Z",
63
+ previousImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
64
+ newImplementation: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
65
+ upgradedAt: "2026-05-17T19:22:13.051Z",
66
66
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
67
67
  reason: "Shared upgrade script: CircuitBreakerModule implementation update"
68
68
  },
69
69
  AdminModule: {
70
- previousImplementation: "0x70a500896A26E4e7CDb56886b9e6438e39DB5ae4",
71
- newImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
72
- upgradedAt: "2026-05-17T15:43:53.074Z",
70
+ previousImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
71
+ newImplementation: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
72
+ upgradedAt: "2026-05-17T19:24:24.939Z",
73
73
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
74
74
  reason: "Shared upgrade script: AdminModule implementation update"
75
75
  },
76
76
  PositionManagerViews: {
77
- previousImplementation: "0xBd1F92F24E89cC55acFc422eCA0df00F68B99565",
78
- newImplementation: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
79
- upgradedAt: "2026-05-17T15:49:48.840Z",
77
+ previousImplementation: "0x4fB9438bf7c5D01030F8848d5086a7F750EaF6fD",
78
+ newImplementation: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
79
+ upgradedAt: "2026-05-17T19:57:25.453Z",
80
80
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
81
81
  reason: "Shared upgrade script: PositionManagerViews implementation update"
82
82
  },
@@ -95,37 +95,37 @@ var SEPOLIA_DEPLOYMENT = {
95
95
  reason: "Shared upgrade script: UCDToken implementation update"
96
96
  },
97
97
  PositionManagerCoreModule: {
98
- previousImplementation: "0x2e34353852d95f8D39aE648af817de9f750c84D6",
99
- newImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
100
- upgradedAt: "2026-05-17T15:32:48.894Z",
98
+ previousImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
99
+ newImplementation: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
100
+ upgradedAt: "2026-05-17T18:54:12.882Z",
101
101
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
102
102
  reason: "Shared upgrade script: PositionManagerCoreModule implementation update"
103
103
  },
104
104
  CollateralManagerModule: {
105
- previousImplementation: "0xC3DD73d669174ED7012579bf2dAAf77085AdD4Cf",
106
- newImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
107
- upgradedAt: "2026-05-17T15:37:25.129Z",
105
+ previousImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
106
+ newImplementation: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
107
+ upgradedAt: "2026-05-17T19:17:01.129Z",
108
108
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
109
109
  reason: "Shared upgrade script: CollateralManagerModule implementation update"
110
110
  },
111
111
  LiquidationManagerModule: {
112
- previousImplementation: "0x15864ea3ECBe7E9FFa0a52b49c4dc7f258FA6300",
113
- newImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
114
- upgradedAt: "2026-05-17T15:39:25.668Z",
112
+ previousImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
113
+ newImplementation: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
114
+ upgradedAt: "2026-05-17T19:19:12.446Z",
115
115
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
116
116
  reason: "Shared upgrade script: LiquidationManagerModule implementation update"
117
117
  },
118
118
  BTCSpendAuthorizer: {
119
- previousImplementation: "0x8021588673Abf0396c1756EdD16F9B9b6d09fcaC",
120
- newImplementation: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
121
- upgradedAt: "2026-05-17T15:45:37.882Z",
119
+ previousImplementation: "0x4c0dc0Da80B7c51fE1719Ffd28c82c083e74A9D3",
120
+ newImplementation: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
121
+ upgradedAt: "2026-05-17T19:54:27.975Z",
122
122
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
123
123
  reason: "Shared upgrade script: BTCSpendAuthorizer implementation update"
124
124
  },
125
125
  SimplePSMV2: {
126
- previousImplementation: "0x0728434d86532FD67A4a7227958654C029b333F6",
127
- newImplementation: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
128
- upgradedAt: "2026-05-17T15:57:01.116Z",
126
+ previousImplementation: "0x7589F066bFbdb8149f02a11759D60c822D6CBcAB",
127
+ newImplementation: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
128
+ upgradedAt: "2026-05-17T20:04:13.030Z",
129
129
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
130
130
  reason: "Shared upgrade script: SimplePSMV2 implementation update"
131
131
  },
@@ -137,11 +137,11 @@ var SEPOLIA_DEPLOYMENT = {
137
137
  reason: "Shared upgrade script: UpgradeValidator implementation update"
138
138
  },
139
139
  LITActionValidator: {
140
- previousImplementation: "0x4548bbF8e0798Aa883604F3ae44EDFc1BAc8278c",
141
- newImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
142
- upgradedAt: "2026-04-22T11:46:48.503Z",
140
+ previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
141
+ newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
142
+ upgradedAt: "2026-05-17T18:39:24.784Z",
143
143
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
144
- reason: "Fresh UUPS proxy deployment (v2.1.0). Previous address was a plain implementation contract with _disableInitializers() \u2014 no proxy, no live state to migrate."
144
+ reason: "C-1: 2.1.0 \u2192 2.2.0 \u2014 adds liquidationManager storage + onlyLiquidationManager gate on transferPKPOwnership (H-6), whenNotPaused on transferPKPOwnership (M-5), and initializeV3 reinitializer wired atomically via AdminModule timelock."
145
145
  },
146
146
  ContractVersionRegistry: {
147
147
  previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
@@ -238,30 +238,30 @@ var SEPOLIA_DEPLOYMENT = {
238
238
  POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
239
239
  CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
240
240
  ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
241
- UCD_CONTROLLER_IMPL: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
242
- LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
241
+ UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
242
+ LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
243
243
  TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
244
- CIRCUIT_BREAKER_MODULE_IMPL: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
245
- ADMIN_MODULE_IMPL: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
246
- POSITION_MANAGER_VIEWS_IMPL: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
247
- POSITION_MANAGER_IMPL: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
244
+ CIRCUIT_BREAKER_MODULE_IMPL: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
245
+ ADMIN_MODULE_IMPL: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
246
+ POSITION_MANAGER_VIEWS_IMPL: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
247
+ POSITION_MANAGER_IMPL: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
248
248
  SIMPLE_PSM_V2: "0x19EcF7BA26e054fd4Ff06009A03070103dbBB058",
249
- SIMPLE_PSM_V2_IMPL: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
249
+ SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
250
250
  UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
251
251
  POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
252
- POSITION_MANAGER_CORE_MODULE_IMPL: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
252
+ POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
253
253
  COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
254
- COLLATERAL_MANAGER_MODULE_IMPL: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
254
+ COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
255
255
  LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
256
- LIQUIDATION_MANAGER_MODULE_IMPL: "0x52e2231f26E8410881BF929e881d295175e078Be",
256
+ LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
257
257
  BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
258
- BTC_SPEND_AUTHORIZER_IMPL: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
258
+ BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
259
259
  UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
260
260
  UPGRADE_VALIDATOR_IMPL: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
261
261
  BITCOIN_PROVIDER_REGISTRY: "0xbfA0c48B070D0a9A9CD27469AeacFD2d4261cEE2",
262
262
  BITCOIN_PROVIDER_REGISTRY_IMPL: "0x225309A4ae6D146ba93A3278A7b40224FfC81448",
263
263
  LIT_ACTION_VALIDATOR: "0x54eECd7C90F8A8fac27749Ba30BbE8AFBAccc856",
264
- LIT_ACTION_VALIDATOR_IMPL: "0x7D2a754AaF41E135c626553000139d5039095E29",
264
+ LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
265
265
  CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
266
266
  CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
267
267
  MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
package/dist/index.js CHANGED
@@ -3675,23 +3675,23 @@ var init_deployment_addresses = __esm({
3675
3675
  },
3676
3676
  upgraded: {
3677
3677
  PositionManager: {
3678
- previousImplementation: "0x623f3bDff8830d2161D3b5D42d38b39697c65eBE",
3679
- newImplementation: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
3680
- upgradedAt: "2026-05-17T15:53:13.068Z",
3678
+ previousImplementation: "0x10D220f7724Ceca26a25248DC8F609962343f97e",
3679
+ newImplementation: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
3680
+ upgradedAt: "2026-05-17T20:00:12.958Z",
3681
3681
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3682
3682
  reason: "Shared upgrade script: PositionManager implementation update"
3683
3683
  },
3684
3684
  LoanOperationsManagerModule: {
3685
- previousImplementation: "0xFE48026f88706Bb0AA5CD47E4cBCf0BeD2bE9D6b",
3686
- newImplementation: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
3687
- upgradedAt: "2026-05-17T15:55:00.789Z",
3685
+ previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
3686
+ newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
3687
+ upgradedAt: "2026-05-17T20:02:12.883Z",
3688
3688
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3689
3689
  reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
3690
3690
  },
3691
3691
  UCDController: {
3692
- previousImplementation: "0x9AFE20da679EA9877893c4A991c8087caE5F7e4C",
3693
- newImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3694
- upgradedAt: "2026-05-17T15:28:37.792Z",
3692
+ previousImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3693
+ newImplementation: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
3694
+ upgradedAt: "2026-05-17T18:41:48.528Z",
3695
3695
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3696
3696
  reason: "Shared upgrade script: UCDController implementation update"
3697
3697
  },
@@ -3703,23 +3703,23 @@ var init_deployment_addresses = __esm({
3703
3703
  reason: "Shared upgrade script: TermManagerModule implementation update"
3704
3704
  },
3705
3705
  CircuitBreakerModule: {
3706
- previousImplementation: "0x24C345841360EEe81C944c00e0E5c8f6CCc53C00",
3707
- newImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3708
- upgradedAt: "2026-05-17T15:41:49.053Z",
3706
+ previousImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3707
+ newImplementation: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
3708
+ upgradedAt: "2026-05-17T19:22:13.051Z",
3709
3709
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3710
3710
  reason: "Shared upgrade script: CircuitBreakerModule implementation update"
3711
3711
  },
3712
3712
  AdminModule: {
3713
- previousImplementation: "0x70a500896A26E4e7CDb56886b9e6438e39DB5ae4",
3714
- newImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3715
- upgradedAt: "2026-05-17T15:43:53.074Z",
3713
+ previousImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3714
+ newImplementation: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
3715
+ upgradedAt: "2026-05-17T19:24:24.939Z",
3716
3716
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3717
3717
  reason: "Shared upgrade script: AdminModule implementation update"
3718
3718
  },
3719
3719
  PositionManagerViews: {
3720
- previousImplementation: "0xBd1F92F24E89cC55acFc422eCA0df00F68B99565",
3721
- newImplementation: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
3722
- upgradedAt: "2026-05-17T15:49:48.840Z",
3720
+ previousImplementation: "0x4fB9438bf7c5D01030F8848d5086a7F750EaF6fD",
3721
+ newImplementation: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
3722
+ upgradedAt: "2026-05-17T19:57:25.453Z",
3723
3723
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3724
3724
  reason: "Shared upgrade script: PositionManagerViews implementation update"
3725
3725
  },
@@ -3738,37 +3738,37 @@ var init_deployment_addresses = __esm({
3738
3738
  reason: "Shared upgrade script: UCDToken implementation update"
3739
3739
  },
3740
3740
  PositionManagerCoreModule: {
3741
- previousImplementation: "0x2e34353852d95f8D39aE648af817de9f750c84D6",
3742
- newImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3743
- upgradedAt: "2026-05-17T15:32:48.894Z",
3741
+ previousImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3742
+ newImplementation: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
3743
+ upgradedAt: "2026-05-17T18:54:12.882Z",
3744
3744
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3745
3745
  reason: "Shared upgrade script: PositionManagerCoreModule implementation update"
3746
3746
  },
3747
3747
  CollateralManagerModule: {
3748
- previousImplementation: "0xC3DD73d669174ED7012579bf2dAAf77085AdD4Cf",
3749
- newImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3750
- upgradedAt: "2026-05-17T15:37:25.129Z",
3748
+ previousImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3749
+ newImplementation: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
3750
+ upgradedAt: "2026-05-17T19:17:01.129Z",
3751
3751
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3752
3752
  reason: "Shared upgrade script: CollateralManagerModule implementation update"
3753
3753
  },
3754
3754
  LiquidationManagerModule: {
3755
- previousImplementation: "0x15864ea3ECBe7E9FFa0a52b49c4dc7f258FA6300",
3756
- newImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
3757
- upgradedAt: "2026-05-17T15:39:25.668Z",
3755
+ previousImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
3756
+ newImplementation: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
3757
+ upgradedAt: "2026-05-17T19:19:12.446Z",
3758
3758
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3759
3759
  reason: "Shared upgrade script: LiquidationManagerModule implementation update"
3760
3760
  },
3761
3761
  BTCSpendAuthorizer: {
3762
- previousImplementation: "0x8021588673Abf0396c1756EdD16F9B9b6d09fcaC",
3763
- newImplementation: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
3764
- upgradedAt: "2026-05-17T15:45:37.882Z",
3762
+ previousImplementation: "0x4c0dc0Da80B7c51fE1719Ffd28c82c083e74A9D3",
3763
+ newImplementation: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
3764
+ upgradedAt: "2026-05-17T19:54:27.975Z",
3765
3765
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3766
3766
  reason: "Shared upgrade script: BTCSpendAuthorizer implementation update"
3767
3767
  },
3768
3768
  SimplePSMV2: {
3769
- previousImplementation: "0x0728434d86532FD67A4a7227958654C029b333F6",
3770
- newImplementation: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
3771
- upgradedAt: "2026-05-17T15:57:01.116Z",
3769
+ previousImplementation: "0x7589F066bFbdb8149f02a11759D60c822D6CBcAB",
3770
+ newImplementation: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
3771
+ upgradedAt: "2026-05-17T20:04:13.030Z",
3772
3772
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3773
3773
  reason: "Shared upgrade script: SimplePSMV2 implementation update"
3774
3774
  },
@@ -3780,11 +3780,11 @@ var init_deployment_addresses = __esm({
3780
3780
  reason: "Shared upgrade script: UpgradeValidator implementation update"
3781
3781
  },
3782
3782
  LITActionValidator: {
3783
- previousImplementation: "0x4548bbF8e0798Aa883604F3ae44EDFc1BAc8278c",
3784
- newImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
3785
- upgradedAt: "2026-04-22T11:46:48.503Z",
3783
+ previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
3784
+ newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
3785
+ upgradedAt: "2026-05-17T18:39:24.784Z",
3786
3786
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3787
- reason: "Fresh UUPS proxy deployment (v2.1.0). Previous address was a plain implementation contract with _disableInitializers() \u2014 no proxy, no live state to migrate."
3787
+ reason: "C-1: 2.1.0 \u2192 2.2.0 \u2014 adds liquidationManager storage + onlyLiquidationManager gate on transferPKPOwnership (H-6), whenNotPaused on transferPKPOwnership (M-5), and initializeV3 reinitializer wired atomically via AdminModule timelock."
3788
3788
  },
3789
3789
  ContractVersionRegistry: {
3790
3790
  previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
@@ -3881,30 +3881,30 @@ var init_deployment_addresses = __esm({
3881
3881
  POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
3882
3882
  CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
3883
3883
  ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
3884
- UCD_CONTROLLER_IMPL: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3885
- LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
3884
+ UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
3885
+ LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
3886
3886
  TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
3887
- CIRCUIT_BREAKER_MODULE_IMPL: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3888
- ADMIN_MODULE_IMPL: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3889
- POSITION_MANAGER_VIEWS_IMPL: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
3890
- POSITION_MANAGER_IMPL: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
3887
+ CIRCUIT_BREAKER_MODULE_IMPL: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
3888
+ ADMIN_MODULE_IMPL: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
3889
+ POSITION_MANAGER_VIEWS_IMPL: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
3890
+ POSITION_MANAGER_IMPL: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
3891
3891
  SIMPLE_PSM_V2: "0x19EcF7BA26e054fd4Ff06009A03070103dbBB058",
3892
- SIMPLE_PSM_V2_IMPL: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
3892
+ SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
3893
3893
  UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
3894
3894
  POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
3895
- POSITION_MANAGER_CORE_MODULE_IMPL: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3895
+ POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
3896
3896
  COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
3897
- COLLATERAL_MANAGER_MODULE_IMPL: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3897
+ COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
3898
3898
  LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
3899
- LIQUIDATION_MANAGER_MODULE_IMPL: "0x52e2231f26E8410881BF929e881d295175e078Be",
3899
+ LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
3900
3900
  BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
3901
- BTC_SPEND_AUTHORIZER_IMPL: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
3901
+ BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
3902
3902
  UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
3903
3903
  UPGRADE_VALIDATOR_IMPL: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
3904
3904
  BITCOIN_PROVIDER_REGISTRY: "0xbfA0c48B070D0a9A9CD27469AeacFD2d4261cEE2",
3905
3905
  BITCOIN_PROVIDER_REGISTRY_IMPL: "0x225309A4ae6D146ba93A3278A7b40224FfC81448",
3906
3906
  LIT_ACTION_VALIDATOR: "0x54eECd7C90F8A8fac27749Ba30BbE8AFBAccc856",
3907
- LIT_ACTION_VALIDATOR_IMPL: "0x7D2a754AaF41E135c626553000139d5039095E29",
3907
+ LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
3908
3908
  CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
3909
3909
  CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
3910
3910
  MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
package/dist/index.mjs CHANGED
@@ -3681,23 +3681,23 @@ var init_deployment_addresses = __esm({
3681
3681
  },
3682
3682
  upgraded: {
3683
3683
  PositionManager: {
3684
- previousImplementation: "0x623f3bDff8830d2161D3b5D42d38b39697c65eBE",
3685
- newImplementation: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
3686
- upgradedAt: "2026-05-17T15:53:13.068Z",
3684
+ previousImplementation: "0x10D220f7724Ceca26a25248DC8F609962343f97e",
3685
+ newImplementation: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
3686
+ upgradedAt: "2026-05-17T20:00:12.958Z",
3687
3687
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3688
3688
  reason: "Shared upgrade script: PositionManager implementation update"
3689
3689
  },
3690
3690
  LoanOperationsManagerModule: {
3691
- previousImplementation: "0xFE48026f88706Bb0AA5CD47E4cBCf0BeD2bE9D6b",
3692
- newImplementation: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
3693
- upgradedAt: "2026-05-17T15:55:00.789Z",
3691
+ previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
3692
+ newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
3693
+ upgradedAt: "2026-05-17T20:02:12.883Z",
3694
3694
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3695
3695
  reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
3696
3696
  },
3697
3697
  UCDController: {
3698
- previousImplementation: "0x9AFE20da679EA9877893c4A991c8087caE5F7e4C",
3699
- newImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3700
- upgradedAt: "2026-05-17T15:28:37.792Z",
3698
+ previousImplementation: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3699
+ newImplementation: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
3700
+ upgradedAt: "2026-05-17T18:41:48.528Z",
3701
3701
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3702
3702
  reason: "Shared upgrade script: UCDController implementation update"
3703
3703
  },
@@ -3709,23 +3709,23 @@ var init_deployment_addresses = __esm({
3709
3709
  reason: "Shared upgrade script: TermManagerModule implementation update"
3710
3710
  },
3711
3711
  CircuitBreakerModule: {
3712
- previousImplementation: "0x24C345841360EEe81C944c00e0E5c8f6CCc53C00",
3713
- newImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3714
- upgradedAt: "2026-05-17T15:41:49.053Z",
3712
+ previousImplementation: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3713
+ newImplementation: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
3714
+ upgradedAt: "2026-05-17T19:22:13.051Z",
3715
3715
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3716
3716
  reason: "Shared upgrade script: CircuitBreakerModule implementation update"
3717
3717
  },
3718
3718
  AdminModule: {
3719
- previousImplementation: "0x70a500896A26E4e7CDb56886b9e6438e39DB5ae4",
3720
- newImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3721
- upgradedAt: "2026-05-17T15:43:53.074Z",
3719
+ previousImplementation: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3720
+ newImplementation: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
3721
+ upgradedAt: "2026-05-17T19:24:24.939Z",
3722
3722
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3723
3723
  reason: "Shared upgrade script: AdminModule implementation update"
3724
3724
  },
3725
3725
  PositionManagerViews: {
3726
- previousImplementation: "0xBd1F92F24E89cC55acFc422eCA0df00F68B99565",
3727
- newImplementation: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
3728
- upgradedAt: "2026-05-17T15:49:48.840Z",
3726
+ previousImplementation: "0x4fB9438bf7c5D01030F8848d5086a7F750EaF6fD",
3727
+ newImplementation: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
3728
+ upgradedAt: "2026-05-17T19:57:25.453Z",
3729
3729
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3730
3730
  reason: "Shared upgrade script: PositionManagerViews implementation update"
3731
3731
  },
@@ -3744,37 +3744,37 @@ var init_deployment_addresses = __esm({
3744
3744
  reason: "Shared upgrade script: UCDToken implementation update"
3745
3745
  },
3746
3746
  PositionManagerCoreModule: {
3747
- previousImplementation: "0x2e34353852d95f8D39aE648af817de9f750c84D6",
3748
- newImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3749
- upgradedAt: "2026-05-17T15:32:48.894Z",
3747
+ previousImplementation: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3748
+ newImplementation: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
3749
+ upgradedAt: "2026-05-17T18:54:12.882Z",
3750
3750
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3751
3751
  reason: "Shared upgrade script: PositionManagerCoreModule implementation update"
3752
3752
  },
3753
3753
  CollateralManagerModule: {
3754
- previousImplementation: "0xC3DD73d669174ED7012579bf2dAAf77085AdD4Cf",
3755
- newImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3756
- upgradedAt: "2026-05-17T15:37:25.129Z",
3754
+ previousImplementation: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3755
+ newImplementation: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
3756
+ upgradedAt: "2026-05-17T19:17:01.129Z",
3757
3757
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3758
3758
  reason: "Shared upgrade script: CollateralManagerModule implementation update"
3759
3759
  },
3760
3760
  LiquidationManagerModule: {
3761
- previousImplementation: "0x15864ea3ECBe7E9FFa0a52b49c4dc7f258FA6300",
3762
- newImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
3763
- upgradedAt: "2026-05-17T15:39:25.668Z",
3761
+ previousImplementation: "0x52e2231f26E8410881BF929e881d295175e078Be",
3762
+ newImplementation: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
3763
+ upgradedAt: "2026-05-17T19:19:12.446Z",
3764
3764
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3765
3765
  reason: "Shared upgrade script: LiquidationManagerModule implementation update"
3766
3766
  },
3767
3767
  BTCSpendAuthorizer: {
3768
- previousImplementation: "0x8021588673Abf0396c1756EdD16F9B9b6d09fcaC",
3769
- newImplementation: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
3770
- upgradedAt: "2026-05-17T15:45:37.882Z",
3768
+ previousImplementation: "0x4c0dc0Da80B7c51fE1719Ffd28c82c083e74A9D3",
3769
+ newImplementation: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
3770
+ upgradedAt: "2026-05-17T19:54:27.975Z",
3771
3771
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3772
3772
  reason: "Shared upgrade script: BTCSpendAuthorizer implementation update"
3773
3773
  },
3774
3774
  SimplePSMV2: {
3775
- previousImplementation: "0x0728434d86532FD67A4a7227958654C029b333F6",
3776
- newImplementation: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
3777
- upgradedAt: "2026-05-17T15:57:01.116Z",
3775
+ previousImplementation: "0x7589F066bFbdb8149f02a11759D60c822D6CBcAB",
3776
+ newImplementation: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
3777
+ upgradedAt: "2026-05-17T20:04:13.030Z",
3778
3778
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3779
3779
  reason: "Shared upgrade script: SimplePSMV2 implementation update"
3780
3780
  },
@@ -3786,11 +3786,11 @@ var init_deployment_addresses = __esm({
3786
3786
  reason: "Shared upgrade script: UpgradeValidator implementation update"
3787
3787
  },
3788
3788
  LITActionValidator: {
3789
- previousImplementation: "0x4548bbF8e0798Aa883604F3ae44EDFc1BAc8278c",
3790
- newImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
3791
- upgradedAt: "2026-04-22T11:46:48.503Z",
3789
+ previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
3790
+ newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
3791
+ upgradedAt: "2026-05-17T18:39:24.784Z",
3792
3792
  upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
3793
- reason: "Fresh UUPS proxy deployment (v2.1.0). Previous address was a plain implementation contract with _disableInitializers() \u2014 no proxy, no live state to migrate."
3793
+ reason: "C-1: 2.1.0 \u2192 2.2.0 \u2014 adds liquidationManager storage + onlyLiquidationManager gate on transferPKPOwnership (H-6), whenNotPaused on transferPKPOwnership (M-5), and initializeV3 reinitializer wired atomically via AdminModule timelock."
3794
3794
  },
3795
3795
  ContractVersionRegistry: {
3796
3796
  previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
@@ -3887,30 +3887,30 @@ var init_deployment_addresses = __esm({
3887
3887
  POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
3888
3888
  CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
3889
3889
  ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
3890
- UCD_CONTROLLER_IMPL: "0x397dE5069270d90c1A62679e0496029D856Cb0ff",
3891
- LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x07f4710B7A5FF0d532b362c4Ba7a1DC5e4B9D187",
3890
+ UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
3891
+ LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
3892
3892
  TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
3893
- CIRCUIT_BREAKER_MODULE_IMPL: "0xA5b11b895fB5a49731ab81BF9FC807b9029c8C98",
3894
- ADMIN_MODULE_IMPL: "0x6ec85cb3F377d8D778F7830eA69C578C75cD7488",
3895
- POSITION_MANAGER_VIEWS_IMPL: "0x3ae633b330Ea80F92c27479639F7ff14351A63Bb",
3896
- POSITION_MANAGER_IMPL: "0xa89b9DA4C2C4715d83EF08daC080a39545367467",
3893
+ CIRCUIT_BREAKER_MODULE_IMPL: "0xF6277dEF72D51312CC99616B5380f34Eb7603D75",
3894
+ ADMIN_MODULE_IMPL: "0xF94A1801Fcc416e621Ae83B8030D1fE08b2DeB41",
3895
+ POSITION_MANAGER_VIEWS_IMPL: "0x1EB2B1d058006ACd9033E01e846D73eDE686b620",
3896
+ POSITION_MANAGER_IMPL: "0x70f0Ef61703d97D58b81738B1C39aA0679FE28Ce",
3897
3897
  SIMPLE_PSM_V2: "0x19EcF7BA26e054fd4Ff06009A03070103dbBB058",
3898
- SIMPLE_PSM_V2_IMPL: "0x6C36fc51D81601db681217B3083A9D3148c352D8",
3898
+ SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
3899
3899
  UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
3900
3900
  POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
3901
- POSITION_MANAGER_CORE_MODULE_IMPL: "0xBf62F7568B6847C08E943548dC727fCAFaa1e6Df",
3901
+ POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
3902
3902
  COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
3903
- COLLATERAL_MANAGER_MODULE_IMPL: "0x428982fCC9A0455c56881B8e21C96B220CC1506B",
3903
+ COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
3904
3904
  LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
3905
- LIQUIDATION_MANAGER_MODULE_IMPL: "0x52e2231f26E8410881BF929e881d295175e078Be",
3905
+ LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
3906
3906
  BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
3907
- BTC_SPEND_AUTHORIZER_IMPL: "0x4614F3aAEB53AE8d8FB2F44d28011bD717764F8f",
3907
+ BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
3908
3908
  UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
3909
3909
  UPGRADE_VALIDATOR_IMPL: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
3910
3910
  BITCOIN_PROVIDER_REGISTRY: "0xbfA0c48B070D0a9A9CD27469AeacFD2d4261cEE2",
3911
3911
  BITCOIN_PROVIDER_REGISTRY_IMPL: "0x225309A4ae6D146ba93A3278A7b40224FfC81448",
3912
3912
  LIT_ACTION_VALIDATOR: "0x54eECd7C90F8A8fac27749Ba30BbE8AFBAccc856",
3913
- LIT_ACTION_VALIDATOR_IMPL: "0x7D2a754AaF41E135c626553000139d5039095E29",
3913
+ LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
3914
3914
  CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
3915
3915
  CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
3916
3916
  MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gvnrdao/dh-sdk",
3
- "version": "0.0.255",
3
+ "version": "0.0.256",
4
4
  "description": "TypeScript SDK for Diamond Hands Protocol - Bitcoin-backed lending with LIT Protocol PKPs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -75,8 +75,8 @@
75
75
  },
76
76
  "sideEffects": false,
77
77
  "dependencies": {
78
- "@gvnrdao/dh-lit-actions": "file:../lit-actions/gvnrdao-dh-lit-actions-0.0.296.tgz",
79
- "@gvnrdao/dh-lit-ops": "file:../lit-ops/gvnrdao-dh-lit-ops-0.0.281.tgz",
78
+ "@gvnrdao/dh-lit-actions": "file:../lit-actions/gvnrdao-dh-lit-actions-0.0.297.tgz",
79
+ "@gvnrdao/dh-lit-ops": "file:../lit-ops/gvnrdao-dh-lit-ops-0.0.282.tgz",
80
80
  "@noble/hashes": "^1.5.0",
81
81
  "axios": "^1.15.2",
82
82
  "bech32": "^2.0.0",