@0xsquid/ui 3.2.0 → 3.2.2-beta.1.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/cjs/index.js +40592 -44481
- package/dist/cjs/types/components/badges/TransactionState.d.ts +2 -2
- package/dist/cjs/types/components/buttons/TokenOnlyButton.d.ts +18 -0
- package/dist/cjs/types/components/buttons/index.d.ts +1 -0
- package/dist/cjs/types/components/controls/DatePicker.d.ts +9 -0
- package/dist/cjs/types/components/icons/Arrow.d.ts +4 -0
- package/dist/cjs/types/components/icons/Clock.d.ts +4 -0
- package/dist/cjs/types/components/icons/NotAllowed.d.ts +3 -1
- package/dist/cjs/types/components/icons/Tick.d.ts +4 -0
- package/dist/cjs/types/components/layout/SwapConfiguration.d.ts +2 -1
- package/dist/cjs/types/components/layout/TransactionFilters/ChainsFilter.d.ts +15 -0
- package/dist/cjs/types/components/layout/TransactionFilters/DateFilters.d.ts +8 -0
- package/dist/cjs/types/components/layout/TransactionFilters/FilterSection.d.ts +10 -0
- package/dist/cjs/types/components/layout/TransactionFilters/StatusFilter.d.ts +12 -0
- package/dist/cjs/types/components/layout/TransactionFilters/TransactionFilters.d.ts +29 -0
- package/dist/cjs/types/components/layout/index.d.ts +1 -1
- package/dist/cjs/types/components/lists/TransactionItem.d.ts +1 -0
- package/dist/cjs/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +2 -0
- package/dist/cjs/types/components/views/TransactionView/BridgeTransactionView.d.ts +3 -2
- package/dist/cjs/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +1 -1
- package/dist/cjs/types/components/views/TransactionView/InteractionTransactionView.d.ts +1 -1
- package/dist/cjs/types/components/views/TransactionView/Properties/TimeToCompleteProperty.d.ts +5 -0
- package/dist/cjs/types/components/views/TransactionView/SwapTransactionView.d.ts +1 -2
- package/dist/cjs/types/core/utils.d.ts +1 -1
- package/dist/cjs/types/hooks/useTimer.d.ts +2 -1
- package/dist/cjs/types/stories/buttons/TokenOnlyButton.stories.d.ts +18 -0
- package/dist/cjs/types/stories/layout/TransactionFilters.stories.d.ts +1 -1
- package/dist/cjs/types/stories/lists/TransactionItem.stories.d.ts +31 -0
- package/dist/cjs/types/stories/views/TransactionView.stories.d.ts +317 -1
- package/dist/cjs/types/types/components.d.ts +1 -1
- package/dist/esm/index.js +40589 -44483
- package/dist/esm/types/components/badges/TransactionState.d.ts +2 -2
- package/dist/esm/types/components/buttons/TokenOnlyButton.d.ts +18 -0
- package/dist/esm/types/components/buttons/index.d.ts +1 -0
- package/dist/esm/types/components/controls/DatePicker.d.ts +9 -0
- package/dist/esm/types/components/icons/Arrow.d.ts +4 -0
- package/dist/esm/types/components/icons/Clock.d.ts +4 -0
- package/dist/esm/types/components/icons/NotAllowed.d.ts +3 -1
- package/dist/esm/types/components/icons/Tick.d.ts +4 -0
- package/dist/esm/types/components/layout/SwapConfiguration.d.ts +2 -1
- package/dist/esm/types/components/layout/TransactionFilters/ChainsFilter.d.ts +15 -0
- package/dist/esm/types/components/layout/TransactionFilters/DateFilters.d.ts +8 -0
- package/dist/esm/types/components/layout/TransactionFilters/FilterSection.d.ts +10 -0
- package/dist/esm/types/components/layout/TransactionFilters/StatusFilter.d.ts +12 -0
- package/dist/esm/types/components/layout/TransactionFilters/TransactionFilters.d.ts +29 -0
- package/dist/esm/types/components/layout/index.d.ts +1 -1
- package/dist/esm/types/components/lists/TransactionItem.d.ts +1 -0
- package/dist/esm/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +2 -0
- package/dist/esm/types/components/views/TransactionView/BridgeTransactionView.d.ts +3 -2
- package/dist/esm/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +1 -1
- package/dist/esm/types/components/views/TransactionView/InteractionTransactionView.d.ts +1 -1
- package/dist/esm/types/components/views/TransactionView/Properties/TimeToCompleteProperty.d.ts +5 -0
- package/dist/esm/types/components/views/TransactionView/SwapTransactionView.d.ts +1 -2
- package/dist/esm/types/core/utils.d.ts +1 -1
- package/dist/esm/types/hooks/useTimer.d.ts +2 -1
- package/dist/esm/types/stories/buttons/TokenOnlyButton.stories.d.ts +18 -0
- package/dist/esm/types/stories/layout/TransactionFilters.stories.d.ts +1 -1
- package/dist/esm/types/stories/lists/TransactionItem.stories.d.ts +31 -0
- package/dist/esm/types/stories/views/TransactionView.stories.d.ts +317 -1
- package/dist/esm/types/types/components.d.ts +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +70 -23
- package/package.json +1 -1
- package/dist/cjs/types/components/layout/TransactionFilters.d.ts +0 -20
- package/dist/esm/types/components/layout/TransactionFilters.d.ts +0 -20
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ReactNode } from "react";
|
|
2
|
-
import { ActionStatus, TransactionStateVariant } from "../../types/components";
|
|
1
|
+
import { type ReactNode } from "react";
|
|
2
|
+
import { type ActionStatus, type TransactionStateVariant } from "../../types/components";
|
|
3
3
|
export declare const statusTextClassMap: Record<ActionStatus, string>;
|
|
4
4
|
interface TransactionStateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
5
5
|
status: ActionStatus;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type AssetsButtonVariant } from "../../types/components";
|
|
2
|
+
import { type TooltipProps } from "../controls";
|
|
3
|
+
interface TokenOnlyButtonProps {
|
|
4
|
+
token?: {
|
|
5
|
+
iconUrl: string;
|
|
6
|
+
fallbackIconUrl?: string;
|
|
7
|
+
symbol: string;
|
|
8
|
+
bgColor: string;
|
|
9
|
+
textColor: string;
|
|
10
|
+
};
|
|
11
|
+
onClick?: () => void;
|
|
12
|
+
variant?: AssetsButtonVariant;
|
|
13
|
+
isLoading?: boolean;
|
|
14
|
+
tooltip?: Omit<TooltipProps, "children">;
|
|
15
|
+
emptyTokenLabel?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare function TokenOnlyButton({ token, onClick, variant, isLoading, tooltip, emptyTokenLabel, }: TokenOnlyButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface DatePickerProps {
|
|
2
|
+
date?: Date;
|
|
3
|
+
highlightDate?: Date;
|
|
4
|
+
setDate: (date: Date) => void;
|
|
5
|
+
hoveredDate?: Date;
|
|
6
|
+
setHoveredDate?: (date?: Date) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const DatePicker: ({ date, highlightDate, setDate, }: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -31,6 +31,10 @@ export declare function ChevronLargeRightIcon({ size, className, }: {
|
|
|
31
31
|
size?: string;
|
|
32
32
|
className?: string;
|
|
33
33
|
}): import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export declare function ChevronRightIcon({ className, size, }: {
|
|
35
|
+
className?: string;
|
|
36
|
+
size?: string;
|
|
37
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
34
38
|
export declare function ChevronRightSmallIcon({ className, size, }: {
|
|
35
39
|
className?: string;
|
|
36
40
|
size?: string;
|
|
@@ -18,3 +18,7 @@ export declare function TimeFliesIcon({ size, className, }: {
|
|
|
18
18
|
size?: string;
|
|
19
19
|
className?: string;
|
|
20
20
|
}): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare function TimeFliesSolidIcon({ size, className, }: {
|
|
22
|
+
size?: string;
|
|
23
|
+
className?: string;
|
|
24
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -67,6 +67,7 @@ interface SwapConfigurationProps {
|
|
|
67
67
|
fullHeight?: boolean;
|
|
68
68
|
debounceInput?: boolean;
|
|
69
69
|
showWalletButtonHeader?: boolean;
|
|
70
|
+
hideChainSelector?: boolean;
|
|
70
71
|
}
|
|
71
|
-
export declare function SwapConfiguration({ amount, tokenPrice, isFetching: isFetchingProp, chain, token, direction, onAmountChange, balance, criticalPriceImpactPercentage, error, priceImpactPercentage, maxUsdDecimals, isInputInteractive, isLoading, inputModeButton, balanceButton, assetsButton, walletButton, showNumericInputDetails, fullHeight, debounceInput, showWalletButtonHeader, }: SwapConfigurationProps): import("react/jsx-runtime").JSX.Element;
|
|
72
|
+
export declare function SwapConfiguration({ amount, tokenPrice, isFetching: isFetchingProp, chain, token, direction, onAmountChange, balance, criticalPriceImpactPercentage, error, priceImpactPercentage, maxUsdDecimals, isInputInteractive, isLoading, inputModeButton, balanceButton, assetsButton, walletButton, showNumericInputDetails, fullHeight, debounceInput, showWalletButtonHeader, hideChainSelector, }: SwapConfigurationProps): import("react/jsx-runtime").JSX.Element;
|
|
72
73
|
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type ChainTypeFilter } from "../../../types/components";
|
|
2
|
+
export interface ChainData {
|
|
3
|
+
iconURI: string;
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
}
|
|
7
|
+
interface ChainsFilterProps {
|
|
8
|
+
chainType: ChainTypeFilter;
|
|
9
|
+
setChainType: (chainType: ChainTypeFilter) => void;
|
|
10
|
+
chain?: ChainData;
|
|
11
|
+
handleChain: (chain?: ChainData) => void;
|
|
12
|
+
chains: ChainData[];
|
|
13
|
+
}
|
|
14
|
+
export declare function ChainsFilter({ chainType, setChainType, chain, handleChain, chains, }: ChainsFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface DateFilterProps {
|
|
2
|
+
fromDate?: Date;
|
|
3
|
+
toDate?: Date;
|
|
4
|
+
setFromDate: (value?: Date) => void;
|
|
5
|
+
setToDate: (value?: Date) => void;
|
|
6
|
+
}
|
|
7
|
+
export declare function DateFilters({ fromDate, setFromDate, toDate, setToDate, }: DateFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface FilterSectionProps {
|
|
3
|
+
title: string;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
collapsed: boolean;
|
|
6
|
+
handleExpand: () => void;
|
|
7
|
+
handleCollapse: () => void;
|
|
8
|
+
}
|
|
9
|
+
export declare function FilterSection({ title, children, collapsed, handleCollapse, handleExpand, }: FilterSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface StatusFiltersProps {
|
|
3
|
+
status?: string;
|
|
4
|
+
statuses?: Array<{
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
icon: React.ReactNode;
|
|
8
|
+
}>;
|
|
9
|
+
handleStatus: (status?: string) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare function StatusFilters({ handleStatus, status, statuses, }: StatusFiltersProps): import("react/jsx-runtime").JSX.Element | null;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import "react-day-picker/dist/style.css";
|
|
3
|
+
import { type ChainTypeFilter } from "../../../types/components";
|
|
4
|
+
import { type ChainData } from "./ChainsFilter";
|
|
5
|
+
interface TransactionFiltersProps {
|
|
6
|
+
chainType: ChainTypeFilter;
|
|
7
|
+
setChainType: (chainType: ChainTypeFilter) => void;
|
|
8
|
+
chain?: ChainData;
|
|
9
|
+
handleChain: (chain?: ChainData) => void;
|
|
10
|
+
fromDate?: Date;
|
|
11
|
+
handleFromDate: (fromDate?: Date) => void;
|
|
12
|
+
toDate?: Date;
|
|
13
|
+
handleToDate: (toDate?: Date) => void;
|
|
14
|
+
status?: string;
|
|
15
|
+
statuses?: Array<{
|
|
16
|
+
label: string;
|
|
17
|
+
value: string;
|
|
18
|
+
icon: React.ReactNode;
|
|
19
|
+
}>;
|
|
20
|
+
handleStatus: (status?: string) => void;
|
|
21
|
+
chains: ChainData[];
|
|
22
|
+
}
|
|
23
|
+
export declare function TransactionFilters({ chainType, setChainType, chain, handleChain, fromDate, handleFromDate, toDate, handleToDate, status, statuses, handleStatus, chains, }: TransactionFiltersProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
interface CheckboxProps {
|
|
25
|
+
checked: boolean;
|
|
26
|
+
className?: string;
|
|
27
|
+
}
|
|
28
|
+
export declare function Checkbox({ checked, className }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export {};
|
|
@@ -27,7 +27,7 @@ export * from "./SwapStepsCollapsed";
|
|
|
27
27
|
export * from "./Toast";
|
|
28
28
|
export * from "./TokenDetailsView";
|
|
29
29
|
export * from "./TokenPair";
|
|
30
|
-
export * from "./TransactionFilters";
|
|
30
|
+
export * from "./TransactionFilters/TransactionFilters";
|
|
31
31
|
export * from "./TransactionHeader/TransactionHeaderLayout";
|
|
32
32
|
export * from "./TransactionProperties/PropertiesLayout";
|
|
33
33
|
export * from "./TransactionSearch";
|
|
@@ -20,7 +20,8 @@ interface BaseBridgeTransactionViewProps extends BaseTransactionViewProps {
|
|
|
20
20
|
name: string;
|
|
21
21
|
bgColor: string;
|
|
22
22
|
};
|
|
23
|
-
|
|
23
|
+
fromAddress: string;
|
|
24
|
+
toAddress: string;
|
|
24
25
|
boosted?: boolean;
|
|
25
26
|
timeToComplete: string;
|
|
26
27
|
fromLink?: string;
|
|
@@ -33,5 +34,5 @@ type BridgeTransactionViewProps = (BaseBridgeTransactionViewProps & {
|
|
|
33
34
|
}) | (Partial<Omit<BaseBridgeTransactionViewProps, keyof BaseTransactionViewProps>> & BaseTransactionViewProps & {
|
|
34
35
|
isLoading: true;
|
|
35
36
|
});
|
|
36
|
-
export declare function BridgeTransactionView({ title, hash, fromLink, toLink, status, url, fromAmount, toAmount, fromToken, toToken, fromChain, toChain,
|
|
37
|
+
export declare function BridgeTransactionView({ title, hash, fromLink, toLink, status, url, fromAmount, toAmount, fromToken, toToken, fromChain, toChain, fromAddress, toAddress, actions, fees, timeToComplete, timestamp, isLoading, }: BridgeTransactionViewProps): import("react/jsx-runtime").JSX.Element;
|
|
37
38
|
export {};
|
|
@@ -28,5 +28,5 @@ type BuyNFTTransactionViewProps = (BaseBuyNFTTransactionViewProps & {
|
|
|
28
28
|
}) | (Partial<BaseBuyNFTTransactionViewProps> & {
|
|
29
29
|
isLoading: true;
|
|
30
30
|
});
|
|
31
|
-
export declare function BuyNFTTransactionView({ title, hash, status, url, price, token, marketplace, fromChain, toChain, fromAddress, toAddress, boosted, timeToComplete, nft, actions, fees, isLoading, }: BuyNFTTransactionViewProps): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare function BuyNFTTransactionView({ title, hash, status, url, price, token, marketplace, fromChain, toChain, fromAddress, toAddress, boosted, timeToComplete, timestamp, nft, actions, fees, isLoading, }: BuyNFTTransactionViewProps): import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export {};
|
|
@@ -15,5 +15,5 @@ type InteractionTransactionViewProps = (BaseInteractionTransactionViewProps & {
|
|
|
15
15
|
}) | (Partial<BaseInteractionTransactionViewProps> & BaseTransactionViewProps & {
|
|
16
16
|
isLoading: true;
|
|
17
17
|
});
|
|
18
|
-
export declare function InteractionTransactionView({ title, hash, status, url, chain, address,
|
|
18
|
+
export declare function InteractionTransactionView({ title, hash, status, url, chain, address, timeToComplete, timestamp, actions, fees, isLoading, }: InteractionTransactionViewProps): import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
export {};
|
|
@@ -26,12 +26,11 @@ interface BaseSwapTransactionViewProps extends BaseTransactionViewProps {
|
|
|
26
26
|
toAddress: string;
|
|
27
27
|
exchangeRate: string;
|
|
28
28
|
boosted?: boolean;
|
|
29
|
-
timeToComplete: string;
|
|
30
29
|
}
|
|
31
30
|
type SwapTransactionViewProps = (BaseSwapTransactionViewProps & {
|
|
32
31
|
isLoading?: false;
|
|
33
32
|
}) | (Partial<Omit<BaseSwapTransactionViewProps, keyof BaseTransactionViewProps>> & BaseTransactionViewProps & {
|
|
34
33
|
isLoading: true;
|
|
35
34
|
});
|
|
36
|
-
export declare function SwapTransactionView({ title, hash, toLink, fromLink, status, url, fromAmount, fromToken, toAmount, toToken, fromChain, toChain, fromAddress, toAddress, exchangeRate,
|
|
35
|
+
export declare function SwapTransactionView({ title, hash, toLink, fromLink, status, url, fromAmount, fromToken, toAmount, toToken, fromChain, toChain, fromAddress, toAddress, exchangeRate, timeToComplete, timestamp, actions, fees, isLoading, }: SwapTransactionViewProps): import("react/jsx-runtime").JSX.Element;
|
|
37
36
|
export {};
|
|
@@ -18,7 +18,7 @@ export declare function debounce<F extends AnyFunction>(func: F, delay: number):
|
|
|
18
18
|
export declare const formatDuration: (elapsedTime: number) => string;
|
|
19
19
|
export declare function formatCountdown(seconds: number): string;
|
|
20
20
|
export declare const formatTime: (timestampSeconds: number) => string;
|
|
21
|
-
export declare const formatRelativeTime: (
|
|
21
|
+
export declare const formatRelativeTime: (timestamp: number) => string;
|
|
22
22
|
export declare const formatRelativeDate: (timestampSeconds: number) => string;
|
|
23
23
|
export declare function capitalize(text: string): string;
|
|
24
24
|
type Falsy = false | null | undefined | 0 | "";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type Meta, type StoryObj } from "@storybook/react";
|
|
2
|
+
import { TokenOnlyButton } from "../../components/buttons/TokenOnlyButton";
|
|
3
|
+
declare const meta: Meta<typeof TokenOnlyButton>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const PrimaryVariantLoading: Story;
|
|
7
|
+
export declare const AccentVariantLoading: Story;
|
|
8
|
+
export declare const PrimaryVariantEmpty: Story;
|
|
9
|
+
export declare const AccentVariantEmpty: Story;
|
|
10
|
+
export declare const TokenWithLightText: Story;
|
|
11
|
+
export declare const TokenWithDarkText: Story;
|
|
12
|
+
export declare const AvaxToken: Story;
|
|
13
|
+
export declare const LongTokenSymbol: Story;
|
|
14
|
+
export declare const Tooltip: Story;
|
|
15
|
+
export declare const BrokenTokenImage: Story;
|
|
16
|
+
export declare const BrokenTokenImageWithFallback: Story;
|
|
17
|
+
export declare const BrokenTokenImageAndBrokenFallback: Story;
|
|
18
|
+
export declare const AccentVariantWithToken: Story;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Meta, StoryObj } from "@storybook/react/*";
|
|
1
|
+
import { type Meta, type StoryObj } from "@storybook/react/*";
|
|
2
2
|
declare function TransactionFiltersWithState(): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
declare const meta: Meta<typeof TransactionFiltersWithState>;
|
|
4
4
|
export default meta;
|
|
@@ -30,6 +30,7 @@ export declare const Swap: {
|
|
|
30
30
|
symbol: string;
|
|
31
31
|
};
|
|
32
32
|
timestamp: number;
|
|
33
|
+
timeToComplete: string;
|
|
33
34
|
};
|
|
34
35
|
};
|
|
35
36
|
export declare const SwapOngoing: {
|
|
@@ -60,6 +61,34 @@ export declare const SwapOngoing: {
|
|
|
60
61
|
symbol: string;
|
|
61
62
|
};
|
|
62
63
|
timestamp: number;
|
|
64
|
+
timeToComplete: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
export declare const SwapOngoingMissingToToken: {
|
|
68
|
+
args: {
|
|
69
|
+
toToken: undefined;
|
|
70
|
+
status: string;
|
|
71
|
+
type: string;
|
|
72
|
+
hash: string;
|
|
73
|
+
fromChain: {
|
|
74
|
+
logoURI: string;
|
|
75
|
+
name: string;
|
|
76
|
+
bgColor: string;
|
|
77
|
+
};
|
|
78
|
+
toChain: {
|
|
79
|
+
logoURI: string;
|
|
80
|
+
name: string;
|
|
81
|
+
bgColor: string;
|
|
82
|
+
};
|
|
83
|
+
fromAmount: string;
|
|
84
|
+
fromToken: {
|
|
85
|
+
logoURI: string;
|
|
86
|
+
bgColor: string;
|
|
87
|
+
symbol: string;
|
|
88
|
+
};
|
|
89
|
+
toAmount: string;
|
|
90
|
+
timestamp: number;
|
|
91
|
+
timeToComplete: string;
|
|
63
92
|
};
|
|
64
93
|
};
|
|
65
94
|
export declare const SwapError: {
|
|
@@ -90,6 +119,7 @@ export declare const SwapError: {
|
|
|
90
119
|
symbol: string;
|
|
91
120
|
};
|
|
92
121
|
timestamp: number;
|
|
122
|
+
timeToComplete: string;
|
|
93
123
|
};
|
|
94
124
|
};
|
|
95
125
|
export declare const SwapIncomplete: {
|
|
@@ -120,6 +150,7 @@ export declare const SwapIncomplete: {
|
|
|
120
150
|
symbol: string;
|
|
121
151
|
};
|
|
122
152
|
timestamp: number;
|
|
153
|
+
timeToComplete: string;
|
|
123
154
|
};
|
|
124
155
|
};
|
|
125
156
|
export declare const BuyNft: {
|