@raac/rpc 1.1.0-beta.43 → 1.1.0-beta.44
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/RPCLibrary.js +4 -0
- package/dist/types/RPCLibrary.d.ts +4 -0
- package/package.json +1 -1
package/dist/RPCLibrary.js
CHANGED
|
@@ -117,6 +117,8 @@ const getApprovalForAll_1 = __importDefault(require("./nfts/getApprovalForAll"))
|
|
|
117
117
|
const setApprovalForAll_1 = __importDefault(require("./nfts/setApprovalForAll"));
|
|
118
118
|
const approveNFT_1 = __importDefault(require("./nfts/approveNFT"));
|
|
119
119
|
const vaultOpened_1 = __importDefault(require("./pools/lendingPool/vaultOpened"));
|
|
120
|
+
const getWithdrawRequestInfo_2 = require("./pools/stabilityPool/getWithdrawRequestInfo");
|
|
121
|
+
const requestWithdraw_2 = require("./pools/stabilityPool/requestWithdraw");
|
|
120
122
|
class RPCLibrary {
|
|
121
123
|
signer;
|
|
122
124
|
isConnected;
|
|
@@ -269,6 +271,8 @@ class RPCLibrary {
|
|
|
269
271
|
getStabilityPoolInfo: getStabilityPoolInfo_1.default,
|
|
270
272
|
depositToStabilityPool: depositToStabilityPool_1.default,
|
|
271
273
|
withdrawFromStabilityPool: withdrawFromStabilityPool_1.default,
|
|
274
|
+
getWithdrawRequestInfo: getWithdrawRequestInfo_2.getWithdrawRequestInfo,
|
|
275
|
+
requestWithdraw: requestWithdraw_2.requestWithdraw,
|
|
272
276
|
};
|
|
273
277
|
this.zeno = {
|
|
274
278
|
createAuction: createAuction_1.default,
|
|
@@ -92,6 +92,8 @@ import getApprovedForAll from "./nfts/getApprovalForAll";
|
|
|
92
92
|
import setApprovalForAll from "./nfts/setApprovalForAll";
|
|
93
93
|
import approveNFT from "./nfts/approveNFT";
|
|
94
94
|
import vaultOpened from "./pools/lendingPool/vaultOpened";
|
|
95
|
+
import { getWithdrawRequestInfo as getStabilityPoolWithdrawRequestInfo } from "./pools/stabilityPool/getWithdrawRequestInfo";
|
|
96
|
+
import { requestWithdraw as requestStabilityPoolWithdraw } from "./pools/stabilityPool/requestWithdraw";
|
|
95
97
|
declare class RPCLibrary {
|
|
96
98
|
signer: Signer | null;
|
|
97
99
|
isConnected: boolean;
|
|
@@ -218,6 +220,8 @@ declare class RPCLibrary {
|
|
|
218
220
|
getStabilityPoolInfo: typeof getStabilityPoolInfo;
|
|
219
221
|
depositToStabilityPool: typeof depositToStabilityPool;
|
|
220
222
|
withdrawFromStabilityPool: typeof withdrawFromStabilityPool;
|
|
223
|
+
getWithdrawRequestInfo: typeof getStabilityPoolWithdrawRequestInfo;
|
|
224
|
+
requestWithdraw: typeof requestStabilityPoolWithdraw;
|
|
221
225
|
};
|
|
222
226
|
zeno: {
|
|
223
227
|
createAuction: typeof createAuction;
|