@rabby-wallet/rabby-api 0.9.15-beta3 → 0.9.15-beta4
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 +1 -1
- package/dist/index.js +1 -1
- package/dist/types.js +0 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ export declare class OpenApiService {
|
|
|
94
94
|
getToken: (id: string, chainId: string, tokenId: string) => Promise<TokenItem>;
|
|
95
95
|
getCachedTokenList: (id: string) => Promise<TokenItem[]>;
|
|
96
96
|
listToken: (id: string, chainId?: string, isAll?: boolean) => Promise<TokenItem[]>;
|
|
97
|
-
|
|
97
|
+
getTokenEntity: (id: string, chainId?: string) => Promise<TokenEntityDetail>;
|
|
98
98
|
getHistoryTokenList: (params: {
|
|
99
99
|
id: string;
|
|
100
100
|
chainId?: string;
|
package/dist/index.js
CHANGED
|
@@ -298,7 +298,7 @@ export class OpenApiService {
|
|
|
298
298
|
});
|
|
299
299
|
return data;
|
|
300
300
|
});
|
|
301
|
-
this.
|
|
301
|
+
this.getTokenEntity = (id, chainId) => __awaiter(this, void 0, void 0, function* () {
|
|
302
302
|
const { data } = yield this.request.get('/v1/token/entity', {
|
|
303
303
|
params: {
|
|
304
304
|
id,
|
package/dist/types.js
CHANGED