@gvnrdao/dh-sdk 0.0.254 → 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.
- package/dist/constants/chunks/contract-abis.d.ts +1 -1
- package/dist/deployments.js +70 -70
- package/dist/deployments.mjs +70 -70
- package/dist/index.js +119 -112
- package/dist/index.mjs +119 -112
- package/package.json +3 -3
|
@@ -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)"];
|
package/dist/deployments.js
CHANGED
|
@@ -65,51 +65,51 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
65
65
|
},
|
|
66
66
|
upgraded: {
|
|
67
67
|
PositionManager: {
|
|
68
|
-
previousImplementation: "
|
|
69
|
-
newImplementation: "
|
|
70
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
76
|
-
newImplementation: "
|
|
77
|
-
upgradedAt: "2026-05-
|
|
75
|
+
previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
|
|
76
|
+
newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
|
|
77
|
+
upgradedAt: "2026-05-17T20:02:12.883Z",
|
|
78
78
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
79
|
-
reason: "Shared upgrade script: LoanOperationsManagerModule
|
|
79
|
+
reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
|
|
80
80
|
},
|
|
81
81
|
UCDController: {
|
|
82
|
-
previousImplementation: "
|
|
83
|
-
newImplementation: "
|
|
84
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
88
88
|
TermManagerModule: {
|
|
89
|
-
previousImplementation: "
|
|
90
|
-
newImplementation: "
|
|
91
|
-
upgradedAt: "2026-05-
|
|
89
|
+
previousImplementation: "0x309CE239A87ffFB31d4C720804e9908E482d4f10",
|
|
90
|
+
newImplementation: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
|
|
91
|
+
upgradedAt: "2026-05-17T15:35:37.627Z",
|
|
92
92
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
93
93
|
reason: "Shared upgrade script: TermManagerModule implementation update"
|
|
94
94
|
},
|
|
95
95
|
CircuitBreakerModule: {
|
|
96
|
-
previousImplementation: "
|
|
97
|
-
newImplementation: "
|
|
98
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
104
|
-
newImplementation: "
|
|
105
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
111
|
-
newImplementation: "
|
|
112
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
@@ -121,72 +121,72 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
121
121
|
reason: "Add setPositionExpiry() for expiry-liquidation E2E testing"
|
|
122
122
|
},
|
|
123
123
|
UCDToken: {
|
|
124
|
-
previousImplementation: "
|
|
125
|
-
newImplementation: "
|
|
126
|
-
upgradedAt: "2026-05-
|
|
124
|
+
previousImplementation: "0x65c23B6fB5331ACeeC2d82328c6de7dB6b62bB65",
|
|
125
|
+
newImplementation: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
|
|
126
|
+
upgradedAt: "2026-05-17T15:30:48.963Z",
|
|
127
127
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
128
128
|
reason: "Shared upgrade script: UCDToken implementation update"
|
|
129
129
|
},
|
|
130
130
|
PositionManagerCoreModule: {
|
|
131
|
-
previousImplementation: "
|
|
132
|
-
newImplementation: "
|
|
133
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
139
|
-
newImplementation: "
|
|
140
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
146
|
-
newImplementation: "
|
|
147
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
153
|
-
newImplementation: "
|
|
154
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
160
|
-
newImplementation: "
|
|
161
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
165
165
|
UpgradeValidator: {
|
|
166
|
-
previousImplementation: "
|
|
167
|
-
newImplementation: "
|
|
168
|
-
upgradedAt: "2026-05-
|
|
166
|
+
previousImplementation: "0x535c9d66F9CFa4f2337cF6074BFc8fdcBBb9cFC4",
|
|
167
|
+
newImplementation: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
|
|
168
|
+
upgradedAt: "2026-05-17T15:58:37.805Z",
|
|
169
169
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
170
170
|
reason: "Shared upgrade script: UpgradeValidator implementation update"
|
|
171
171
|
},
|
|
172
172
|
LITActionValidator: {
|
|
173
|
-
previousImplementation: "
|
|
174
|
-
newImplementation: "
|
|
175
|
-
upgradedAt: "2026-
|
|
173
|
+
previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
|
|
174
|
+
newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
|
|
175
|
+
upgradedAt: "2026-05-17T18:39:24.784Z",
|
|
176
176
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
177
|
-
reason: "
|
|
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
|
-
previousImplementation: "
|
|
181
|
-
newImplementation: "
|
|
182
|
-
upgradedAt: "2026-05-
|
|
180
|
+
previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
|
|
181
|
+
newImplementation: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
|
|
182
|
+
upgradedAt: "2026-05-17T15:26:25.349Z",
|
|
183
183
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
184
184
|
reason: "Shared upgrade script: ContractVersionRegistry implementation update"
|
|
185
185
|
},
|
|
186
186
|
PositionDelegateRegistry: {
|
|
187
|
-
previousImplementation: "
|
|
188
|
-
newImplementation: "
|
|
189
|
-
upgradedAt: "2026-05-
|
|
187
|
+
previousImplementation: "0xAE227De03D5aeDC870d6e096D9C6652E001a92aF",
|
|
188
|
+
newImplementation: "0x301fa9AA527016D033e151b982C64cD8670a39E3",
|
|
189
|
+
upgradedAt: "2026-05-17T16:00:25.211Z",
|
|
190
190
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
191
191
|
reason: "Shared upgrade script: PositionDelegateRegistry implementation update"
|
|
192
192
|
},
|
|
@@ -271,36 +271,36 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
271
271
|
POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
|
|
272
272
|
CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
|
|
273
273
|
ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
|
|
274
|
-
UCD_CONTROLLER_IMPL: "
|
|
275
|
-
LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "
|
|
276
|
-
TERM_MANAGER_MODULE_IMPL: "
|
|
277
|
-
CIRCUIT_BREAKER_MODULE_IMPL: "
|
|
278
|
-
ADMIN_MODULE_IMPL: "
|
|
279
|
-
POSITION_MANAGER_VIEWS_IMPL: "
|
|
280
|
-
POSITION_MANAGER_IMPL: "
|
|
274
|
+
UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
|
|
275
|
+
LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
|
|
276
|
+
TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
|
|
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: "
|
|
283
|
-
UCD_TOKEN_IMPL: "
|
|
282
|
+
SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
|
|
283
|
+
UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
|
|
284
284
|
POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
|
|
285
|
-
POSITION_MANAGER_CORE_MODULE_IMPL: "
|
|
285
|
+
POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
|
|
286
286
|
COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
|
|
287
|
-
COLLATERAL_MANAGER_MODULE_IMPL: "
|
|
287
|
+
COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
|
|
288
288
|
LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
|
|
289
|
-
LIQUIDATION_MANAGER_MODULE_IMPL: "
|
|
289
|
+
LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
|
|
290
290
|
BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
|
|
291
|
-
BTC_SPEND_AUTHORIZER_IMPL: "
|
|
291
|
+
BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
|
|
292
292
|
UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
|
|
293
|
-
UPGRADE_VALIDATOR_IMPL: "
|
|
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: "
|
|
297
|
+
LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
|
|
298
298
|
CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
|
|
299
|
-
CONTRACT_VERSION_REGISTRY_IMPL: "
|
|
299
|
+
CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
|
|
300
300
|
MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
|
|
301
301
|
MOCK_USDT_TOKEN: "0xF8b7fB38b17a310960E47805Be9adba0b0e0394D",
|
|
302
302
|
POSITION_DELEGATE_REGISTRY: "0x482369De283622E7b05731875ec137d4E3D208F9",
|
|
303
|
-
POSITION_DELEGATE_REGISTRY_IMPL: "
|
|
303
|
+
POSITION_DELEGATE_REGISTRY_IMPL: "0x301fa9AA527016D033e151b982C64cD8670a39E3",
|
|
304
304
|
AGENT_MODULE: "0xefb8C29C1e7e92ed7d81a52dbedaed74e37fe380",
|
|
305
305
|
FEE_RECIPIENT_REGISTRY: "0x95795F8403DDb629E8527B2934C4e71f5fC0C374",
|
|
306
306
|
FEE_RECIPIENT_REGISTRY_IMPL: "0xd08513a7cB2dd354B26cDDf549616F12054c34c9",
|
package/dist/deployments.mjs
CHANGED
|
@@ -32,51 +32,51 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
32
32
|
},
|
|
33
33
|
upgraded: {
|
|
34
34
|
PositionManager: {
|
|
35
|
-
previousImplementation: "
|
|
36
|
-
newImplementation: "
|
|
37
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
43
|
-
newImplementation: "
|
|
44
|
-
upgradedAt: "2026-05-
|
|
42
|
+
previousImplementation: "0x291B412c573a4F52410f09D7Ba82eead17D9a674",
|
|
43
|
+
newImplementation: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
|
|
44
|
+
upgradedAt: "2026-05-17T20:02:12.883Z",
|
|
45
45
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
46
|
-
reason: "Shared upgrade script: LoanOperationsManagerModule
|
|
46
|
+
reason: "Shared upgrade script: LoanOperationsManagerModule implementation update"
|
|
47
47
|
},
|
|
48
48
|
UCDController: {
|
|
49
|
-
previousImplementation: "
|
|
50
|
-
newImplementation: "
|
|
51
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
55
55
|
TermManagerModule: {
|
|
56
|
-
previousImplementation: "
|
|
57
|
-
newImplementation: "
|
|
58
|
-
upgradedAt: "2026-05-
|
|
56
|
+
previousImplementation: "0x309CE239A87ffFB31d4C720804e9908E482d4f10",
|
|
57
|
+
newImplementation: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
|
|
58
|
+
upgradedAt: "2026-05-17T15:35:37.627Z",
|
|
59
59
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
60
60
|
reason: "Shared upgrade script: TermManagerModule implementation update"
|
|
61
61
|
},
|
|
62
62
|
CircuitBreakerModule: {
|
|
63
|
-
previousImplementation: "
|
|
64
|
-
newImplementation: "
|
|
65
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
71
|
-
newImplementation: "
|
|
72
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
78
|
-
newImplementation: "
|
|
79
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
@@ -88,72 +88,72 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
88
88
|
reason: "Add setPositionExpiry() for expiry-liquidation E2E testing"
|
|
89
89
|
},
|
|
90
90
|
UCDToken: {
|
|
91
|
-
previousImplementation: "
|
|
92
|
-
newImplementation: "
|
|
93
|
-
upgradedAt: "2026-05-
|
|
91
|
+
previousImplementation: "0x65c23B6fB5331ACeeC2d82328c6de7dB6b62bB65",
|
|
92
|
+
newImplementation: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
|
|
93
|
+
upgradedAt: "2026-05-17T15:30:48.963Z",
|
|
94
94
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
95
95
|
reason: "Shared upgrade script: UCDToken implementation update"
|
|
96
96
|
},
|
|
97
97
|
PositionManagerCoreModule: {
|
|
98
|
-
previousImplementation: "
|
|
99
|
-
newImplementation: "
|
|
100
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
106
|
-
newImplementation: "
|
|
107
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
113
|
-
newImplementation: "
|
|
114
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
120
|
-
newImplementation: "
|
|
121
|
-
upgradedAt: "2026-05-
|
|
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: "
|
|
127
|
-
newImplementation: "
|
|
128
|
-
upgradedAt: "2026-05-
|
|
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
|
},
|
|
132
132
|
UpgradeValidator: {
|
|
133
|
-
previousImplementation: "
|
|
134
|
-
newImplementation: "
|
|
135
|
-
upgradedAt: "2026-05-
|
|
133
|
+
previousImplementation: "0x535c9d66F9CFa4f2337cF6074BFc8fdcBBb9cFC4",
|
|
134
|
+
newImplementation: "0x2Dd375041Be067E7d12bAB2106911Ce209EbD12f",
|
|
135
|
+
upgradedAt: "2026-05-17T15:58:37.805Z",
|
|
136
136
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
137
137
|
reason: "Shared upgrade script: UpgradeValidator implementation update"
|
|
138
138
|
},
|
|
139
139
|
LITActionValidator: {
|
|
140
|
-
previousImplementation: "
|
|
141
|
-
newImplementation: "
|
|
142
|
-
upgradedAt: "2026-
|
|
140
|
+
previousImplementation: "0x7D2a754AaF41E135c626553000139d5039095E29",
|
|
141
|
+
newImplementation: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
|
|
142
|
+
upgradedAt: "2026-05-17T18:39:24.784Z",
|
|
143
143
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
144
|
-
reason: "
|
|
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
|
-
previousImplementation: "
|
|
148
|
-
newImplementation: "
|
|
149
|
-
upgradedAt: "2026-05-
|
|
147
|
+
previousImplementation: "0x2cDba7a3440399Ef276fa18edAE7D90168382D09",
|
|
148
|
+
newImplementation: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
|
|
149
|
+
upgradedAt: "2026-05-17T15:26:25.349Z",
|
|
150
150
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
151
151
|
reason: "Shared upgrade script: ContractVersionRegistry implementation update"
|
|
152
152
|
},
|
|
153
153
|
PositionDelegateRegistry: {
|
|
154
|
-
previousImplementation: "
|
|
155
|
-
newImplementation: "
|
|
156
|
-
upgradedAt: "2026-05-
|
|
154
|
+
previousImplementation: "0xAE227De03D5aeDC870d6e096D9C6652E001a92aF",
|
|
155
|
+
newImplementation: "0x301fa9AA527016D033e151b982C64cD8670a39E3",
|
|
156
|
+
upgradedAt: "2026-05-17T16:00:25.211Z",
|
|
157
157
|
upgradedBy: "0xF20986F02420EF443AE9BE5092FB8A4975cF3aA6",
|
|
158
158
|
reason: "Shared upgrade script: PositionDelegateRegistry implementation update"
|
|
159
159
|
},
|
|
@@ -238,36 +238,36 @@ var SEPOLIA_DEPLOYMENT = {
|
|
|
238
238
|
POSITION_MANAGER_VIEWS: "0x3b970E41a0668508B4B2ACb83653b2A402F745AE",
|
|
239
239
|
CIRCUIT_BREAKER_MODULE: "0x3D0B2cAE481821E57BA9CC3807bCC0d0D7F18bd8",
|
|
240
240
|
ADMIN_MODULE: "0xAcd1f07915b17CA3727e7fE89BdF618A1545a1ed",
|
|
241
|
-
UCD_CONTROLLER_IMPL: "
|
|
242
|
-
LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "
|
|
243
|
-
TERM_MANAGER_MODULE_IMPL: "
|
|
244
|
-
CIRCUIT_BREAKER_MODULE_IMPL: "
|
|
245
|
-
ADMIN_MODULE_IMPL: "
|
|
246
|
-
POSITION_MANAGER_VIEWS_IMPL: "
|
|
247
|
-
POSITION_MANAGER_IMPL: "
|
|
241
|
+
UCD_CONTROLLER_IMPL: "0x30d0458bE846f4C5D231242eB5a9e9Db68e7232F",
|
|
242
|
+
LOAN_OPERATIONS_MANAGER_MODULE_IMPL: "0x9DA8d69d7BcF9Fa3ba5734580e8C32618aB52D36",
|
|
243
|
+
TERM_MANAGER_MODULE_IMPL: "0x358d6A7A864853beAA3E157fEB83dCEb1628E8eB",
|
|
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: "
|
|
250
|
-
UCD_TOKEN_IMPL: "
|
|
249
|
+
SIMPLE_PSM_V2_IMPL: "0x12Fa503C05700a54E41659B3EE456D2F8D024C50",
|
|
250
|
+
UCD_TOKEN_IMPL: "0xC587a2cb7e828A44d8C6190eDA6c47b08BA07115",
|
|
251
251
|
POSITION_MANAGER_CORE_MODULE: "0xfFAA39a08887FeFB697eBC8691A8630CbCC33391",
|
|
252
|
-
POSITION_MANAGER_CORE_MODULE_IMPL: "
|
|
252
|
+
POSITION_MANAGER_CORE_MODULE_IMPL: "0xD023E83fdcb7BafCA74E40Cd0D1fca154Faf84DB",
|
|
253
253
|
COLLATERAL_MANAGER_MODULE: "0x967E92c976Fc0fa8268D37D4d6B7245d912aA7dB",
|
|
254
|
-
COLLATERAL_MANAGER_MODULE_IMPL: "
|
|
254
|
+
COLLATERAL_MANAGER_MODULE_IMPL: "0x124e61aBff60CC70c4B81ab3019A8A7D35B412d4",
|
|
255
255
|
LIQUIDATION_MANAGER_MODULE: "0xC4AB00f39e7ceD812F5C67058C9fa44e15d40e76",
|
|
256
|
-
LIQUIDATION_MANAGER_MODULE_IMPL: "
|
|
256
|
+
LIQUIDATION_MANAGER_MODULE_IMPL: "0x0d6e44D514C75D4f11bfa07eb7de16B6C6811D00",
|
|
257
257
|
BTC_SPEND_AUTHORIZER: "0xd7E9Eb5eE53f1d9ee55Dc162bBC7486bE437B6bD",
|
|
258
|
-
BTC_SPEND_AUTHORIZER_IMPL: "
|
|
258
|
+
BTC_SPEND_AUTHORIZER_IMPL: "0x8775a520cAA18c03Cc3f51ee254cAB830960f80E",
|
|
259
259
|
UPGRADE_VALIDATOR: "0x592e650edD9bA26ecc407989fdd6F9cdcDeC27A6",
|
|
260
|
-
UPGRADE_VALIDATOR_IMPL: "
|
|
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: "
|
|
264
|
+
LIT_ACTION_VALIDATOR_IMPL: "0xc71935a9B7A54e9D1FD266ab4D216644974A154d",
|
|
265
265
|
CONTRACT_VERSION_REGISTRY: "0x97E43AA6aFF2C0cf659d3aE501658D2Ef6777522",
|
|
266
|
-
CONTRACT_VERSION_REGISTRY_IMPL: "
|
|
266
|
+
CONTRACT_VERSION_REGISTRY_IMPL: "0x327Ced106C2804283994F0C0e2436E4B76AA7dAD",
|
|
267
267
|
MOCK_USDC_TOKEN: "0x96409A98e0D322d6566b7F44a0fAbD1BD4ce2AEc",
|
|
268
268
|
MOCK_USDT_TOKEN: "0xF8b7fB38b17a310960E47805Be9adba0b0e0394D",
|
|
269
269
|
POSITION_DELEGATE_REGISTRY: "0x482369De283622E7b05731875ec137d4E3D208F9",
|
|
270
|
-
POSITION_DELEGATE_REGISTRY_IMPL: "
|
|
270
|
+
POSITION_DELEGATE_REGISTRY_IMPL: "0x301fa9AA527016D033e151b982C64cD8670a39E3",
|
|
271
271
|
AGENT_MODULE: "0xefb8C29C1e7e92ed7d81a52dbedaed74e37fe380",
|
|
272
272
|
FEE_RECIPIENT_REGISTRY: "0x95795F8403DDb629E8527B2934C4e71f5fC0C374",
|
|
273
273
|
FEE_RECIPIENT_REGISTRY_IMPL: "0xd08513a7cB2dd354B26cDDf549616F12054c34c9",
|