@particle-network/universal-account-sdk 1.0.27 → 1.1.1
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/CHANGELOG.md +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -353,7 +353,7 @@ interface ITransaction {
|
|
|
353
353
|
depositTokens: ITokenWithUSD[];
|
|
354
354
|
lendingTokens: ITokenWithUSD[];
|
|
355
355
|
feeQuotes: IFeeQuote[];
|
|
356
|
-
gasless?:
|
|
356
|
+
gasless?: IFeeQuote | null;
|
|
357
357
|
transactionFees: ITransactionFees;
|
|
358
358
|
totalDepositTokenAmountInUSD: string;
|
|
359
359
|
tag: string;
|
|
@@ -417,7 +417,6 @@ declare class UniversalAccount {
|
|
|
417
417
|
getTokenTransactions(token: IBasicToken, pageToken?: number): Promise<any>;
|
|
418
418
|
getTokenPair(token: IBasicToken): Promise<any>;
|
|
419
419
|
warmUpToken(token: IBasicToken): Promise<any>;
|
|
420
|
-
getUniversalSignature(dataHash: string, signature: string): Promise<any>;
|
|
421
420
|
private injectRootHash;
|
|
422
421
|
private getTradeConfig;
|
|
423
422
|
private getTokenConfig;
|