@deframe-sdk/components 0.1.39 → 0.1.40
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.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1632,6 +1632,7 @@ interface ConfirmSwapButtonLabels {
|
|
|
1632
1632
|
noAmountLabel: string;
|
|
1633
1633
|
belowMinimumLabel: string;
|
|
1634
1634
|
insufficientBalanceLabel: string;
|
|
1635
|
+
noRouteFoundLabel: string;
|
|
1635
1636
|
}
|
|
1636
1637
|
|
|
1637
1638
|
interface ConfirmSwapButtonViewProps {
|
|
@@ -3201,7 +3202,7 @@ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
|
3201
3202
|
|
|
3202
3203
|
declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
3203
3204
|
|
|
3204
|
-
type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
|
|
3205
|
+
type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'NO_ROUTE_FOUND' | 'VALID_SWAP';
|
|
3205
3206
|
|
|
3206
3207
|
interface DashboardStrategyItem {
|
|
3207
3208
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1632,6 +1632,7 @@ interface ConfirmSwapButtonLabels {
|
|
|
1632
1632
|
noAmountLabel: string;
|
|
1633
1633
|
belowMinimumLabel: string;
|
|
1634
1634
|
insufficientBalanceLabel: string;
|
|
1635
|
+
noRouteFoundLabel: string;
|
|
1635
1636
|
}
|
|
1636
1637
|
|
|
1637
1638
|
interface ConfirmSwapButtonViewProps {
|
|
@@ -3201,7 +3202,7 @@ declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
|
3201
3202
|
|
|
3202
3203
|
declare const OfframpFailedSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
3203
3204
|
|
|
3204
|
-
type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
|
|
3205
|
+
type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'NO_ROUTE_FOUND' | 'VALID_SWAP';
|
|
3205
3206
|
|
|
3206
3207
|
interface DashboardStrategyItem {
|
|
3207
3208
|
id: string;
|