pods-sdk 0.2.62 → 0.2.64

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.
Files changed (57) hide show
  1. package/package.json +59 -57
  2. package/dist/components/earn/StrategyDetailsView.d.ts +0 -14
  3. package/dist/components/earn/StrategyDetailsView.d.ts.map +0 -1
  4. package/dist/components/earn/desktop/ExploreStrategiesGrid.d.ts +0 -30
  5. package/dist/components/earn/desktop/ExploreStrategiesGrid.d.ts.map +0 -1
  6. package/dist/components/earn/desktop/InvestedStrategiesSection.d.ts +0 -22
  7. package/dist/components/earn/desktop/InvestedStrategiesSection.d.ts.map +0 -1
  8. package/dist/components/earn/desktop/InvestmentSummaryDesktop.d.ts +0 -27
  9. package/dist/components/earn/desktop/InvestmentSummaryDesktop.d.ts.map +0 -1
  10. package/dist/components/earn/desktop/RecentTransactions.d.ts +0 -32
  11. package/dist/components/earn/desktop/RecentTransactions.d.ts.map +0 -1
  12. package/dist/components/earn/desktop/StrategyGridCard.d.ts +0 -35
  13. package/dist/components/earn/desktop/StrategyGridCard.d.ts.map +0 -1
  14. package/dist/domain/swap/resolveEffectivePrice.d.ts +0 -14
  15. package/dist/domain/swap/resolveEffectivePrice.d.ts.map +0 -1
  16. package/dist/pages/TransactionProcessingDetails/StepDisplay.d.ts +0 -10
  17. package/dist/pages/TransactionProcessingDetails/StepDisplay.d.ts.map +0 -1
  18. package/dist/pages/TransactionProcessingDetails/StepStatusIcon.d.ts +0 -11
  19. package/dist/pages/TransactionProcessingDetails/StepStatusIcon.d.ts.map +0 -1
  20. package/dist/pages/TransactionProcessingDetails/StepStatusText.d.ts +0 -10
  21. package/dist/pages/TransactionProcessingDetails/StepStatusText.d.ts.map +0 -1
  22. package/dist/pages/TransactionProcessingDetails/index.d.ts +0 -4
  23. package/dist/pages/TransactionProcessingDetails/index.d.ts.map +0 -1
  24. package/dist/pages/TransactionProcessingDetails.d.ts +0 -22
  25. package/dist/pages/TransactionProcessingDetails.d.ts.map +0 -1
  26. package/dist/pages/TransactionStepValue.d.ts +0 -12
  27. package/dist/pages/TransactionStepValue.d.ts.map +0 -1
  28. package/dist/ui/action-sheet/ChooseAStrategyActionsheetView.d.ts +0 -14
  29. package/dist/ui/action-sheet/ChooseAStrategyActionsheetView.d.ts.map +0 -1
  30. package/dist/ui/loading/LoadingDots.d.ts +0 -11
  31. package/dist/ui/loading/LoadingDots.d.ts.map +0 -1
  32. package/dist/ui/loading/index.d.ts +0 -2
  33. package/dist/ui/loading/index.d.ts.map +0 -1
  34. package/dist/ui/swap-form/SwapAdvancedSettings.d.ts +0 -9
  35. package/dist/ui/swap-form/SwapAdvancedSettings.d.ts.map +0 -1
  36. package/dist/ui/swap-form/SwapAmountInputView.d.ts +0 -11
  37. package/dist/ui/swap-form/SwapAmountInputView.d.ts.map +0 -1
  38. package/dist/ui/swap-form/SwapNetworkSelectorView.d.ts +0 -10
  39. package/dist/ui/swap-form/SwapNetworkSelectorView.d.ts.map +0 -1
  40. package/dist/ui/swap-form/SwapOutputAmountView.d.ts +0 -8
  41. package/dist/ui/swap-form/SwapOutputAmountView.d.ts.map +0 -1
  42. package/dist/ui/swap-form/SwapQuoteBlockchainCostsView.d.ts +0 -9
  43. package/dist/ui/swap-form/SwapQuoteBlockchainCostsView.d.ts.map +0 -1
  44. package/dist/ui/swap-form/SwapQuoteErrorsView.d.ts +0 -7
  45. package/dist/ui/swap-form/SwapQuoteErrorsView.d.ts.map +0 -1
  46. package/dist/ui/swap-form/SwapQuoteHeaderView.d.ts +0 -7
  47. package/dist/ui/swap-form/SwapQuoteHeaderView.d.ts.map +0 -1
  48. package/dist/ui/swap-form/SwapSlippageToleranceButtonsView.d.ts +0 -7
  49. package/dist/ui/swap-form/SwapSlippageToleranceButtonsView.d.ts.map +0 -1
  50. package/dist/ui/swap-form/SwapTokenSelectorView.d.ts +0 -11
  51. package/dist/ui/swap-form/SwapTokenSelectorView.d.ts.map +0 -1
  52. package/dist/ui/swap-form/SwapTransactionDetails.d.ts +0 -6
  53. package/dist/ui/swap-form/SwapTransactionDetails.d.ts.map +0 -1
  54. package/dist/ui/transaction-screen/history/HistoryDepositDetailsView.d.ts +0 -25
  55. package/dist/ui/transaction-screen/history/HistoryDepositDetailsView.d.ts.map +0 -1
  56. package/dist/ui/transaction-screen/history/HistoryWithdrawDetailsView.d.ts +0 -5
  57. package/dist/ui/transaction-screen/history/HistoryWithdrawDetailsView.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "pods-sdk",
3
- "version": "0.2.62",
3
+ "version": "0.2.64",
4
4
  "type": "module",
5
+ "packageManager": "pnpm@9.0.0",
5
6
  "description": "UI Components for Deframe integration on the frontend",
6
7
  "engines": {
7
8
  "node": ">=18.0.0",
@@ -32,46 +33,62 @@
32
33
  "cd examples/earn-widget && tsc --noEmit --skipLibCheck"
33
34
  ]
34
35
  },
36
+ "scripts": {
37
+ "preinstall": "npx only-allow pnpm",
38
+ "build": "rollup -c",
39
+ "dev": "rollup -c -w",
40
+ "test": "vitest",
41
+ "storybook": "storybook dev -p 6006 --no-open",
42
+ "build-storybook": "storybook build",
43
+ "deploy-storybook": "pnpm run build-storybook",
44
+ "clean": "rm -rf node_modules package-lock.json pnpm-lock.yaml",
45
+ "fresh-install": "pnpm run clean && pnpm install",
46
+ "lint": "tsc --noEmit",
47
+ "lint:fix": "tsc --noEmit",
48
+ "check:earn-widget": "cd examples/earn-widget && pnpm run build",
49
+ "check:all": "pnpm run lint && pnpm run build && pnpm run check:earn-widget",
50
+ "prepare": "husky"
51
+ },
35
52
  "author": "Bruno Eleodoro Roza",
36
53
  "license": "ISC",
37
54
  "devDependencies": {
38
- "@babel/preset-react": "^7.27.1",
39
- "@babel/preset-typescript": "^7.27.1",
55
+ "@babel/preset-react": "7.28.5",
56
+ "@babel/preset-typescript": "7.28.5",
40
57
  "@deframe-sdk/components": "0.1.74",
41
- "@reduxjs/toolkit": "^2.9.0",
42
- "@rollup/plugin-commonjs": "^28.0.6",
43
- "@rollup/plugin-json": "^6.1.0",
44
- "@rollup/plugin-node-resolve": "^16.0.2",
45
- "@rollup/plugin-terser": "^0.4.4",
46
- "@rollup/plugin-typescript": "^12.1.2",
47
- "@rollup/plugin-url": "^8.0.2",
48
- "@storybook/addon-docs": "^9.1.5",
49
- "@storybook/addon-onboarding": "^9.1.5",
50
- "@storybook/react-vite": "^9.1.5",
51
- "@tsconfig/recommended": "^1.0.10",
52
- "@types/node": "^24.5.0",
53
- "@types/react": "^19.2.2",
54
- "@types/react-dom": "^19.2.1",
55
- "autoprefixer": "^10.4.21",
56
- "husky": "^9.1.7",
57
- "postcss": "^8.5.6",
58
- "react": "^19.1.1",
59
- "react-dom": "^19.1.1",
60
- "react-redux": "^9.2.0",
61
- "redux": "^5.0.1",
62
- "rollup": "^2.79.2",
63
- "rollup-plugin-babel": "^4.4.0",
64
- "rollup-plugin-peer-deps-external": "^2.2.4",
65
- "rollup-plugin-postcss": "^4.0.2",
66
- "rollup-plugin-svg": "^2.0.0",
67
- "storybook": "^9.1.5",
68
- "tailwindcss": "^3.4.17",
69
- "tslib": "^2.6.2",
70
- "typescript": "^5.9.2",
58
+ "@reduxjs/toolkit": "2.11.1",
59
+ "@rollup/plugin-commonjs": "28.0.9",
60
+ "@rollup/plugin-json": "6.1.0",
61
+ "@rollup/plugin-node-resolve": "16.0.3",
62
+ "@rollup/plugin-terser": "0.4.4",
63
+ "@rollup/plugin-typescript": "12.3.0",
64
+ "@rollup/plugin-url": "8.0.2",
65
+ "@storybook/addon-docs": "9.1.16",
66
+ "@storybook/addon-onboarding": "9.1.16",
67
+ "@storybook/react-vite": "9.1.16",
68
+ "@tsconfig/recommended": "1.0.13",
69
+ "@types/node": "24.10.2",
70
+ "@types/react": "19.2.7",
71
+ "@types/react-dom": "19.2.3",
72
+ "autoprefixer": "10.4.22",
73
+ "husky": "9.1.7",
74
+ "postcss": "8.5.6",
75
+ "react": "19.2.1",
76
+ "react-dom": "19.2.1",
77
+ "react-redux": "9.2.0",
78
+ "redux": "5.0.1",
79
+ "rollup": "2.79.2",
80
+ "rollup-plugin-babel": "4.4.0",
81
+ "rollup-plugin-peer-deps-external": "2.2.4",
82
+ "rollup-plugin-postcss": "4.0.2",
83
+ "rollup-plugin-svg": "2.0.0",
84
+ "storybook": "9.1.16",
85
+ "tailwindcss": "3.4.18",
86
+ "tslib": "2.8.1",
87
+ "typescript": "5.9.3",
71
88
  "vitest": "4.0.4"
72
89
  },
73
90
  "peerDependencies": {
74
- "@deframe-sdk/components": "*",
91
+ "@deframe-sdk/components": "0.1.75",
75
92
  "@reduxjs/toolkit": "^2.0.0",
76
93
  "react": "^18.0.0 || ^19.0.0",
77
94
  "react-dom": "^18.0.0 || ^19.0.0",
@@ -93,13 +110,13 @@
93
110
  }
94
111
  },
95
112
  "dependencies": {
96
- "@hookform/resolvers": "^5.2.2",
97
- "@sentry/browser": "^10.38.0",
98
- "clsx": "^2.1.1",
99
- "framer-motion": "^12.23.24",
100
- "react-hook-form": "^7.65.0",
101
- "react-icons": "^5.5.0",
102
- "zod": "^4.1.12"
113
+ "@hookform/resolvers": "5.2.2",
114
+ "@sentry/browser": "10.38.0",
115
+ "clsx": "2.1.1",
116
+ "framer-motion": "12.23.25",
117
+ "react-hook-form": "7.68.0",
118
+ "react-icons": "5.5.0",
119
+ "zod": "4.1.13"
103
120
  },
104
121
  "overrides": {
105
122
  "chalk": "4.1.2",
@@ -111,20 +128,5 @@
111
128
  "has-ansi": "5.0.1",
112
129
  "simple-swizzle": "0.2.2",
113
130
  "ansi-styles": "4.3.0"
114
- },
115
- "scripts": {
116
- "preinstall": "npx only-allow pnpm",
117
- "build": "rollup -c",
118
- "dev": "rollup -c -w",
119
- "test": "vitest",
120
- "storybook": "storybook dev -p 6006 --no-open",
121
- "build-storybook": "storybook build",
122
- "deploy-storybook": "pnpm run build-storybook",
123
- "clean": "rm -rf node_modules package-lock.json pnpm-lock.yaml",
124
- "fresh-install": "pnpm run clean && pnpm install",
125
- "lint": "tsc --noEmit",
126
- "lint:fix": "tsc --noEmit",
127
- "check:earn-widget": "cd examples/earn-widget && pnpm run build",
128
- "check:all": "pnpm run lint && pnpm run build && pnpm run check:earn-widget"
129
131
  }
130
- }
132
+ }
@@ -1,14 +0,0 @@
1
- import React from 'react';
2
- export interface StrategyDetailsViewProps {
3
- logoUrl: string;
4
- title: string;
5
- description: string;
6
- strategyInfo: {
7
- label: string;
8
- value: string;
9
- }[];
10
- onBack?: () => void;
11
- onDeposit?: () => void;
12
- }
13
- export declare const StrategyDetailsView: React.FC<StrategyDetailsViewProps>;
14
- //# sourceMappingURL=StrategyDetailsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StrategyDetailsView.d.ts","sourceRoot":"","sources":["../../../src/components/earn/StrategyDetailsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,wBAAwB;IACvC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IACjD,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAuClE,CAAC"}
@@ -1,30 +0,0 @@
1
- import React from 'react';
2
- import { StrategyWithApy } from '../../../hooks/useStrategiesWithApy';
3
- export interface ExploreStrategiesGridProps {
4
- /**
5
- * All strategies with APY data
6
- */
7
- strategies: StrategyWithApy[];
8
- /**
9
- * Loading state
10
- */
11
- isLoading: boolean;
12
- /**
13
- * Error state
14
- */
15
- error?: Error | null;
16
- /**
17
- * Click handler for strategy card
18
- */
19
- onStrategyClick?: (strategyId: string) => void;
20
- /**
21
- * Additional class names
22
- */
23
- className?: string;
24
- }
25
- /**
26
- * Desktop grid of strategies with search and category filters
27
- */
28
- export declare const ExploreStrategiesGrid: React.FC<ExploreStrategiesGridProps>;
29
- export default ExploreStrategiesGrid;
30
- //# sourceMappingURL=ExploreStrategiesGrid.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ExploreStrategiesGrid.d.ts","sourceRoot":"","sources":["../../../../src/components/earn/desktop/ExploreStrategiesGrid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AAYjD,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AAItE,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,UAAU,EAAE,eAAe,EAAE,CAAC;IAC9B;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IACrB;;OAEG;IACH,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CAqGtE,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
@@ -1,22 +0,0 @@
1
- import React from 'react';
2
- import { WalletPosition } from '../../../types/api';
3
- export interface InvestedStrategiesSectionProps {
4
- /**
5
- * User's invested positions
6
- */
7
- positions: WalletPosition[];
8
- /**
9
- * Click handler for position item
10
- */
11
- onPositionClick?: (strategyId: string) => void;
12
- /**
13
- * Additional class names
14
- */
15
- className?: string;
16
- }
17
- /**
18
- * Section showing user's invested strategies in a vertical list (desktop only)
19
- */
20
- export declare const InvestedStrategiesSection: React.FC<InvestedStrategiesSectionProps>;
21
- export default InvestedStrategiesSection;
22
- //# sourceMappingURL=InvestedStrategiesSection.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"InvestedStrategiesSection.d.ts","sourceRoot":"","sources":["../../../../src/components/earn/desktop/InvestedStrategiesSection.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AASpD,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,SAAS,EAAE,cAAc,EAAE,CAAC;IAC5B;;OAEG;IACH,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;GAEG;AACH,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,8BAA8B,CAwH9E,CAAC;AAEF,eAAe,yBAAyB,CAAC"}
@@ -1,27 +0,0 @@
1
- import React from 'react';
2
- export interface InvestmentSummaryDesktopProps {
3
- /**
4
- * Total invested amount in USD
5
- */
6
- totalInvested: number;
7
- /**
8
- * Total earned/profit amount in USD
9
- */
10
- totalEarned: number;
11
- /**
12
- * Currency formatter function
13
- */
14
- formatCurrency: (value: number) => string;
15
- /**
16
- * Additional class names
17
- */
18
- className?: string;
19
- }
20
- /**
21
- * Investment Summary section for desktop layout
22
- *
23
- * Displays total invested and total earned values
24
- */
25
- export declare const InvestmentSummaryDesktop: React.FC<InvestmentSummaryDesktopProps>;
26
- export default InvestmentSummaryDesktop;
27
- //# sourceMappingURL=InvestmentSummaryDesktop.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"InvestmentSummaryDesktop.d.ts","sourceRoot":"","sources":["../../../../src/components/earn/desktop/InvestmentSummaryDesktop.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAC1C;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,eAAO,MAAM,wBAAwB,EAAE,KAAK,CAAC,EAAE,CAAC,6BAA6B,CAwB5E,CAAC;AAEF,eAAe,wBAAwB,CAAC"}
@@ -1,32 +0,0 @@
1
- import React from 'react';
2
- import { HistoryItem } from '../../../state/features/history/types';
3
- export interface RecentTransactionsProps {
4
- /**
5
- * History items to display
6
- */
7
- historyItems: HistoryItem[];
8
- /**
9
- * Loading state
10
- */
11
- isLoading: boolean;
12
- /**
13
- * Maximum number of transactions to show (default: 5)
14
- */
15
- limit?: number;
16
- /**
17
- * Click handler for "Ver todas" button
18
- */
19
- onViewAll?: () => void;
20
- /**
21
- * Additional class names
22
- */
23
- className?: string;
24
- }
25
- /**
26
- * Recent transactions section for desktop layout
27
- *
28
- * Shows a preview of recent transactions with a "Ver todas" link.
29
- */
30
- export declare const RecentTransactions: React.FC<RecentTransactionsProps>;
31
- export default RecentTransactions;
32
- //# sourceMappingURL=RecentTransactions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RecentTransactions.d.ts","sourceRoot":"","sources":["../../../../src/components/earn/desktop/RecentTransactions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AAMpE,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,YAAY,EAAE,WAAW,EAAE,CAAC;IAC5B;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CA6ChE,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
@@ -1,35 +0,0 @@
1
- import React from 'react';
2
- export interface StrategyGridCardProps {
3
- /**
4
- * Strategy logo URL
5
- */
6
- logoUrl: string;
7
- /**
8
- * Strategy title (e.g., "Rendimento USDC")
9
- */
10
- title: string;
11
- /**
12
- * Strategy subtitle (e.g., asset name)
13
- */
14
- subtitle: string;
15
- /**
16
- * APY formatted string (e.g., "5.00%")
17
- */
18
- apyFormatted: string;
19
- /**
20
- * Click handler
21
- */
22
- onClick?: () => void;
23
- /**
24
- * Additional class names
25
- */
26
- className?: string;
27
- }
28
- /**
29
- * Grid card for desktop strategy display
30
- *
31
- * Shows strategy info in a card format suitable for a 3-column grid layout.
32
- */
33
- export declare const StrategyGridCard: React.FC<StrategyGridCardProps>;
34
- export default StrategyGridCard;
35
- //# sourceMappingURL=StrategyGridCard.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StrategyGridCard.d.ts","sourceRoot":"","sources":["../../../../src/components/earn/desktop/StrategyGridCard.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CAmD5D,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
@@ -1,14 +0,0 @@
1
- export interface ResolveEffectivePriceParams {
2
- balanceDerivedPriceInUSD: number;
3
- fetchedPriceInUSD: number;
4
- tokenDataPriceInUSD: number | undefined;
5
- }
6
- /**
7
- * Resolve the effective token price from multiple sources (priority order):
8
- * 1. Balance-derived price (amountInUSD / amountUI)
9
- * 2. Price from address-fetch API
10
- * 3. Token data priceInUSD field
11
- * 4. 0
12
- */
13
- export declare function resolveEffectivePrice(params: ResolveEffectivePriceParams): number;
14
- //# sourceMappingURL=resolveEffectivePrice.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"resolveEffectivePrice.d.ts","sourceRoot":"","sources":["../../../src/domain/swap/resolveEffectivePrice.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,2BAA2B;IAC1C,wBAAwB,EAAE,MAAM,CAAC;IACjC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,mBAAmB,EAAE,MAAM,GAAG,SAAS,CAAC;CACzC;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,2BAA2B,GAAG,MAAM,CAGjF"}
@@ -1,10 +0,0 @@
1
- import { TransactionStep } from '../../types/transaction';
2
- interface StepDisplayProps {
3
- step: TransactionStep;
4
- }
5
- /**
6
- * Renders a single processing step with icon, label, and status
7
- */
8
- export declare function StepDisplay({ step }: StepDisplayProps): import("react/jsx-runtime").JSX.Element;
9
- export {};
10
- //# sourceMappingURL=StepDisplay.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StepDisplay.d.ts","sourceRoot":"","sources":["../../../src/pages/TransactionProcessingDetails/StepDisplay.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAG1D,UAAU,gBAAgB;IACxB,IAAI,EAAE,eAAe,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,EAAE,IAAI,EAAE,EAAE,gBAAgB,2CAmBrD"}
@@ -1,11 +0,0 @@
1
- import { TransactionStepStatus } from '../../types/transaction';
2
- interface StepStatusIconProps {
3
- status: TransactionStepStatus;
4
- }
5
- /**
6
- * Renders a step status icon based on the step status
7
- * Only three icon types: success (checkmark), timer (clock), and error (alert)
8
- */
9
- export declare function StepStatusIcon({ status }: StepStatusIconProps): import("react/jsx-runtime").JSX.Element;
10
- export {};
11
- //# sourceMappingURL=StepStatusIcon.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StepStatusIcon.d.ts","sourceRoot":"","sources":["../../../src/pages/TransactionProcessingDetails/StepStatusIcon.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,UAAU,mBAAmB;IAC3B,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,EAAE,MAAM,EAAE,EAAE,mBAAmB,2CAqB7D"}
@@ -1,10 +0,0 @@
1
- import { TransactionStep } from '../../types/transaction';
2
- interface StepStatusTextProps {
3
- step: TransactionStep;
4
- }
5
- /**
6
- * Renders the status text and optional explorer link for a step
7
- */
8
- export declare function StepStatusText({ step }: StepStatusTextProps): import("react/jsx-runtime").JSX.Element;
9
- export {};
10
- //# sourceMappingURL=StepStatusText.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StepStatusText.d.ts","sourceRoot":"","sources":["../../../src/pages/TransactionProcessingDetails/StepStatusText.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAG1D,UAAU,mBAAmB;IAC3B,IAAI,EAAE,eAAe,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,mBAAmB,2CA+C3D"}
@@ -1,4 +0,0 @@
1
- export { StepStatusIcon } from './StepStatusIcon';
2
- export { StepStatusText } from './StepStatusText';
3
- export { StepDisplay } from './StepDisplay';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/pages/TransactionProcessingDetails/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
@@ -1,22 +0,0 @@
1
- /**
2
- * Transaction Processing Details Component
3
- *
4
- * Displays a visual breakdown of transaction processing steps with status icons,
5
- * vertical connectors, and explorer links for deposit/withdraw flows.
6
- */
7
- import { TransactionStep } from '../types/transaction';
8
- interface TransactionProcessingDetailsProps {
9
- /** Array of transaction steps to display */
10
- steps: TransactionStep[];
11
- /** Optional CSS class name */
12
- className?: string;
13
- /** Whether the details section is open by default */
14
- defaultOpen?: boolean;
15
- }
16
- /**
17
- * Displays transaction processing steps with visual breakdown using vertical connectors
18
- * Similar to SwapProcessingDetails but designed for deposit/withdraw flows
19
- */
20
- export declare function TransactionProcessingDetails({ steps, className, defaultOpen, }: TransactionProcessingDetailsProps): import("react/jsx-runtime").JSX.Element | null;
21
- export {};
22
- //# sourceMappingURL=TransactionProcessingDetails.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TransactionProcessingDetails.d.ts","sourceRoot":"","sources":["../../src/pages/TransactionProcessingDetails.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAIvD,UAAU,iCAAiC;IACzC,4CAA4C;IAC5C,KAAK,EAAE,eAAe,EAAE,CAAC;IACzB,8BAA8B;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qDAAqD;IACrD,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;GAGG;AACH,wBAAgB,4BAA4B,CAAC,EAC3C,KAAK,EACL,SAAkE,EAClE,WAAkB,GACnB,EAAE,iCAAiC,kDA+CnC"}
@@ -1,12 +0,0 @@
1
- import React from 'react';
2
- export type TransactionStepStatus = 'completed' | 'processing' | 'awaiting' | 'error';
3
- export interface TransactionStepValueProps {
4
- status: TransactionStepStatus;
5
- statusText?: string;
6
- explorerUrl?: string;
7
- }
8
- /**
9
- * Renders the value part (icon + status text) for a transaction step in SummaryDetails
10
- */
11
- export declare const TransactionStepValue: React.FC<TransactionStepValueProps>;
12
- //# sourceMappingURL=TransactionStepValue.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TransactionStepValue.d.ts","sourceRoot":"","sources":["../../src/pages/TransactionStepValue.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,MAAM,qBAAqB,GAAG,WAAW,GAAG,YAAY,GAAG,UAAU,GAAG,OAAO,CAAC;AAEtF,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE,qBAAqB,CAAC;IAC9B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAsGpE,CAAC"}
@@ -1,14 +0,0 @@
1
- import React from 'react';
2
- export interface ChooseAStrategyActionsheetViewProps {
3
- isOpen: boolean;
4
- currentActionSheetId: string | null;
5
- assetName: string;
6
- apy: string;
7
- logoUrl: string;
8
- strategyId: string;
9
- riskLevel: 'low' | 'medium' | 'high';
10
- onStrategyClick: () => void;
11
- onClose: () => void;
12
- }
13
- export declare const ChooseAStrategyActionsheetView: React.FC<ChooseAStrategyActionsheetViewProps>;
14
- //# sourceMappingURL=ChooseAStrategyActionsheetView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ChooseAStrategyActionsheetView.d.ts","sourceRoot":"","sources":["../../../src/ui/action-sheet/ChooseAStrategyActionsheetView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,MAAM,WAAW,mCAAmC;IAClD,MAAM,EAAE,OAAO,CAAC;IAChB,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,CAAC;IACrC,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,eAAO,MAAM,8BAA8B,EAAE,KAAK,CAAC,EAAE,CAAC,mCAAmC,CA8DxF,CAAC"}
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- interface LoadingDotsProps {
3
- className?: string;
4
- }
5
- /**
6
- * Animated loading dots component with a bouncing effect
7
- * Used to indicate loading states throughout the application
8
- */
9
- export declare const LoadingDots: React.FC<LoadingDotsProps>;
10
- export {};
11
- //# sourceMappingURL=LoadingDots.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"LoadingDots.d.ts","sourceRoot":"","sources":["../../../src/ui/loading/LoadingDots.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,gBAAgB;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAQlD,CAAC"}
@@ -1,2 +0,0 @@
1
- export { LoadingDots } from './LoadingDots';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/loading/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- export interface SwapAdvancedSettingsProps {
3
- slippageFormatted: string;
4
- open: boolean;
5
- onOpenChange: (open: boolean) => void;
6
- onPercentageClick: (bps: number) => void;
7
- }
8
- export declare const SwapAdvancedSettings: React.FC<SwapAdvancedSettingsProps>;
9
- //# sourceMappingURL=SwapAdvancedSettings.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapAdvancedSettings.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapAdvancedSettings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,MAAM,WAAW,yBAAyB;IACxC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,IAAI,EAAE,OAAO,CAAC;IACd,YAAY,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IACtC,iBAAiB,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CAC1C;AAED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CA8BpE,CAAC"}
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- import type { UseFormRegisterReturn } from 'react-hook-form';
3
- export interface SwapAmountInputViewProps {
4
- value: string;
5
- hasError: boolean;
6
- onChange: (value: string) => void;
7
- maxFractionDigits?: number;
8
- field?: UseFormRegisterReturn;
9
- }
10
- export declare const SwapAmountInputView: React.FC<SwapAmountInputViewProps>;
11
- //# sourceMappingURL=SwapAmountInputView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapAmountInputView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapAmountInputView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAG7D,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,KAAK,CAAC,EAAE,qBAAqB,CAAC;CAC/B;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CA8DlE,CAAC"}
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- export interface SwapNetworkSelectorViewProps {
3
- chainLabel: string;
4
- chainImage?: string;
5
- onClick: () => void;
6
- directionLabel?: string;
7
- testId?: string;
8
- }
9
- export declare const SwapNetworkSelectorView: React.FC<SwapNetworkSelectorViewProps>;
10
- //# sourceMappingURL=SwapNetworkSelectorView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapNetworkSelectorView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapNetworkSelectorView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,4BAA4B;IAC3C,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,uBAAuB,EAAE,KAAK,CAAC,EAAE,CAAC,4BAA4B,CAgC1E,CAAC"}
@@ -1,8 +0,0 @@
1
- import React from 'react';
2
- export interface SwapOutputAmountViewProps {
3
- displayOutput: string | number;
4
- isLoading: boolean;
5
- loadingElement?: React.ReactNode;
6
- }
7
- export declare const SwapOutputAmountView: React.FC<SwapOutputAmountViewProps>;
8
- //# sourceMappingURL=SwapOutputAmountView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapOutputAmountView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapOutputAmountView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,yBAAyB;IACxC,aAAa,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAClC;AAED,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CAkBpE,CAAC"}
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- export interface SwapQuoteBlockchainCostsViewProps {
3
- totalCostFormatted: string;
4
- feePercentage: string;
5
- gasCostFormatted: string;
6
- protocolFee: string;
7
- }
8
- export declare const SwapQuoteBlockchainCostsView: React.FC<SwapQuoteBlockchainCostsViewProps>;
9
- //# sourceMappingURL=SwapQuoteBlockchainCostsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapQuoteBlockchainCostsView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapQuoteBlockchainCostsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,iCAAiC;IAChD,kBAAkB,EAAE,MAAM,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,4BAA4B,EAAE,KAAK,CAAC,EAAE,CAAC,iCAAiC,CA0BpF,CAAC"}
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface SwapQuoteErrorsViewProps {
3
- hasQuoteError: boolean;
4
- hasBytecodeError: boolean;
5
- }
6
- export declare const SwapQuoteErrorsView: React.FC<SwapQuoteErrorsViewProps>;
7
- //# sourceMappingURL=SwapQuoteErrorsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapQuoteErrorsView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapQuoteErrorsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,MAAM,WAAW,wBAAwB;IACvC,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CA4BlE,CAAC"}
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface SwapQuoteHeaderViewProps {
3
- label: React.ReactNode;
4
- timerElement?: React.ReactNode;
5
- }
6
- export declare const SwapQuoteHeaderView: React.FC<SwapQuoteHeaderViewProps>;
7
- //# sourceMappingURL=SwapQuoteHeaderView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapQuoteHeaderView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapQuoteHeaderView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAChC;AAED,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,wBAAwB,CAgBlE,CAAC"}
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- export interface SwapSlippageToleranceButtonsViewProps {
3
- slippageBps: number;
4
- onSelect: (bps: number) => void;
5
- }
6
- export declare const SwapSlippageToleranceButtonsView: React.FC<SwapSlippageToleranceButtonsViewProps>;
7
- //# sourceMappingURL=SwapSlippageToleranceButtonsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapSlippageToleranceButtonsView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapSlippageToleranceButtonsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,MAAM,WAAW,qCAAqC;IACpD,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;CACjC;AAED,eAAO,MAAM,gCAAgC,EAAE,KAAK,CAAC,EAAE,CAAC,qCAAqC,CA2B5F,CAAC"}
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- export interface SwapTokenSelectorViewProps {
3
- token: {
4
- symbol: string;
5
- logoURI?: string;
6
- } | null;
7
- onClick: () => void;
8
- testId?: string;
9
- }
10
- export declare const SwapTokenSelectorView: React.FC<SwapTokenSelectorViewProps>;
11
- //# sourceMappingURL=SwapTokenSelectorView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapTokenSelectorView.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapTokenSelectorView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,MAAM,WAAW,0BAA0B;IACzC,KAAK,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IACnD,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,qBAAqB,EAAE,KAAK,CAAC,EAAE,CAAC,0BAA0B,CA2CtE,CAAC"}
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export interface SwapTransactionDetailsProps {
3
- onQuoteExpire: () => void;
4
- }
5
- export declare const SwapTransactionDetails: React.FC<SwapTransactionDetailsProps>;
6
- //# sourceMappingURL=SwapTransactionDetails.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SwapTransactionDetails.d.ts","sourceRoot":"","sources":["../../../src/ui/swap-form/SwapTransactionDetails.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAqBxC,MAAM,WAAW,2BAA2B;IAC1C,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,eAAO,MAAM,sBAAsB,EAAE,KAAK,CAAC,EAAE,CAAC,2BAA2B,CAqSxE,CAAC"}
@@ -1,25 +0,0 @@
1
- import React from 'react';
2
- export interface HistoryAssetViewProps {
3
- iconUrl: string;
4
- symbol: string;
5
- amount: string;
6
- amountInUSD: string | null;
7
- }
8
- export interface HistoryDetailsViewProps {
9
- transactionTypeLabel: string;
10
- symbol: string;
11
- amountWithSymbol: string;
12
- amountInUsdFormatted: string;
13
- shouldShowFlow: boolean;
14
- assetIn?: HistoryAssetViewProps;
15
- assetOut?: HistoryAssetViewProps;
16
- primaryAssetIconUrl: string;
17
- protocolLabel: string;
18
- statusLabel: string;
19
- txHash: string | null;
20
- date: string;
21
- explorerUrl: string | null;
22
- onClose: () => void;
23
- }
24
- export declare const HistoryDepositDetailsView: React.FC<HistoryDetailsViewProps>;
25
- //# sourceMappingURL=HistoryDepositDetailsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HistoryDepositDetailsView.d.ts","sourceRoot":"","sources":["../../../../src/ui/transaction-screen/history/HistoryDepositDetailsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAoB1B,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B;AAED,MAAM,WAAW,uBAAuB;IACtC,oBAAoB,EAAE,MAAM,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,cAAc,EAAE,OAAO,CAAC;IACxB,OAAO,CAAC,EAAE,qBAAqB,CAAC;IAChC,QAAQ,CAAC,EAAE,qBAAqB,CAAC;IACjC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,eAAO,MAAM,yBAAyB,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAyHvE,CAAC"}
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import type { HistoryDetailsViewProps } from './HistoryDepositDetailsView';
3
- export type { HistoryDetailsViewProps, HistoryAssetViewProps } from './HistoryDepositDetailsView';
4
- export declare const HistoryWithdrawDetailsView: React.FC<HistoryDetailsViewProps>;
5
- //# sourceMappingURL=HistoryWithdrawDetailsView.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HistoryWithdrawDetailsView.d.ts","sourceRoot":"","sources":["../../../../src/ui/transaction-screen/history/HistoryWithdrawDetailsView.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAmB1B,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AAE3E,YAAY,EAAE,uBAAuB,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAC;AAElG,eAAO,MAAM,0BAA0B,EAAE,KAAK,CAAC,EAAE,CAAC,uBAAuB,CAyHxE,CAAC"}