@wireio/stake 0.2.1 → 0.2.2
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/lib/stake.browser.js +8 -8
- package/lib/stake.browser.js.map +1 -1
- package/lib/stake.js +8 -8
- package/lib/stake.js.map +1 -1
- package/lib/stake.m.js +8 -8
- package/lib/stake.m.js.map +1 -1
- package/package.json +1 -1
- package/src/networks/ethereum/contract.ts +9 -12
package/package.json
CHANGED
|
@@ -53,20 +53,17 @@ export const ADDRESSES: AddressBook = {
|
|
|
53
53
|
StakingModule: "0xBd13C85fdefBBc63904e7301aCdeFE87c9C93234",
|
|
54
54
|
WithdrawalQueue: "0xD9A1D38ae4A636DEf20B02F35387a6b126D73fAe", //aka "queue"
|
|
55
55
|
WithdrawalVault: "0x150334D09a1d3d30EE93d5e6009EB897B5dDF5b2", //aka withdrawVault
|
|
56
|
-
|
|
57
|
-
//not in last set of deployments 12/18/25
|
|
58
|
-
// LiqEthMint: "0xdBAa1539eB7b80C29d825FCda76c0d7F8F0E6cFB",
|
|
59
|
-
// LiqEthBurn: "0x02e0A02fE2311FAd661677B7117FDdc801c1216b",
|
|
56
|
+
|
|
60
57
|
|
|
61
58
|
//Outpost contracts
|
|
62
|
-
Depositor: "
|
|
63
|
-
ReceiptNFT: "
|
|
64
|
-
OutpostManager: "
|
|
65
|
-
BAR: "
|
|
66
|
-
OPP: "
|
|
67
|
-
OPPCommon: "
|
|
68
|
-
OPPInbound: "
|
|
69
|
-
Warrant: "
|
|
59
|
+
Depositor: "0x6aE1D7095B81970654Bd51bCAD42825C6E579088",
|
|
60
|
+
ReceiptNFT: "0x38eAEa05cB1FFD0c8426A3f9e77815a251DdC197",
|
|
61
|
+
OutpostManager: "0x6512bB8E7f8418A8e3bB73c49E33EcC30F53f221",
|
|
62
|
+
BAR: "0x00c128A37598d018Eb8ca4f516688695D83bD413",
|
|
63
|
+
OPP: "0x8C5710103Ec6a7608dAC539DC232d3822bA3d14C",
|
|
64
|
+
OPPCommon: "0x52C1d7F02B35176F79b03F6eF7E5b74b27d1dB8c",
|
|
65
|
+
OPPInbound: "0x39feC7536BaEd4E376b1B5cf2f2e8182ab203418",
|
|
66
|
+
Warrant: "0x9190bBcaB5cfeb4b7b6DE5Ae21105F3114753F10",
|
|
70
67
|
};
|
|
71
68
|
|
|
72
69
|
export type Contracts<T extends string = ContractName> = Record<T, ContractConfig>;
|