@rabby-wallet/rabby-api 0.8.6 → 0.9.0
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/index.d.ts +9 -1
- package/dist/index.js +13 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -70,7 +70,15 @@ export declare class OpenApiService {
|
|
|
70
70
|
explainText: (origin: string, address: string, text: string) => Promise<{
|
|
71
71
|
comment: string;
|
|
72
72
|
}>;
|
|
73
|
-
gasMarket: (
|
|
73
|
+
gasMarket: (options: {
|
|
74
|
+
chainId: string;
|
|
75
|
+
customGas?: number;
|
|
76
|
+
}) => Promise<GasLevel[]>;
|
|
77
|
+
gasMarketV2: (options: {
|
|
78
|
+
chainId: string;
|
|
79
|
+
tx?: Tx;
|
|
80
|
+
customGas?: number;
|
|
81
|
+
}) => Promise<GasLevel[]>;
|
|
74
82
|
getTx: (chainId: string, hash: string, gasPrice: number) => Promise<GetTxResponse>;
|
|
75
83
|
getEnsAddressByName: (name: string) => Promise<{
|
|
76
84
|
addr: string;
|
package/dist/index.js
CHANGED
|
@@ -201,11 +201,21 @@ export class OpenApiService {
|
|
|
201
201
|
});
|
|
202
202
|
return data;
|
|
203
203
|
});
|
|
204
|
-
this.gasMarket = (
|
|
204
|
+
this.gasMarket = (options) => __awaiter(this, void 0, void 0, function* () {
|
|
205
205
|
const { data } = yield this.request.get('/v1/wallet/gas_market', {
|
|
206
206
|
params: {
|
|
207
|
-
chain_id: chainId,
|
|
208
|
-
custom_price: customGas,
|
|
207
|
+
chain_id: options.chainId,
|
|
208
|
+
custom_price: options.customGas,
|
|
209
|
+
},
|
|
210
|
+
});
|
|
211
|
+
return data;
|
|
212
|
+
});
|
|
213
|
+
this.gasMarketV2 = (options) => __awaiter(this, void 0, void 0, function* () {
|
|
214
|
+
const { data } = yield this.request.post('/v2/wallet/gas_market', {
|
|
215
|
+
params: {
|
|
216
|
+
chain_id: options.chainId,
|
|
217
|
+
custom_price: options.customGas,
|
|
218
|
+
tx: options.tx,
|
|
209
219
|
},
|
|
210
220
|
});
|
|
211
221
|
return data;
|