@cfxjs/sirius-next-common 0.2.11 → 0.2.12
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/{chunk-YDA7DDMQ.js → chunk-3HO74CMH.js} +2 -2
- package/dist/{chunk-735VMABS.js → chunk-4J3SQGIV.js} +2 -2
- package/dist/{chunk-AKMGJWIM.js → chunk-6HJCR6PQ.js} +2 -2
- package/dist/chunk-6HJCR6PQ.js.map +1 -0
- package/dist/{chunk-7CBOXGGA.js → chunk-QMLPHJCA.js} +2 -2
- package/dist/components/OutputData/ErrorDecode.js +1 -1
- package/dist/components/OutputData/index.js +2 -2
- package/dist/components/ProxyContractAddress/index.js +1 -1
- package/dist/components/ProxyContractAddress/index.js.map +1 -1
- package/dist/components/TransactionTrace/TraceDetail.js +3 -3
- package/dist/components/TransactionTrace/TreeTraceTable.js +4 -4
- package/dist/components/TransactionTrace/index.js +4 -4
- package/dist/uno.css +1 -1
- package/package.json +1 -1
- package/dist/chunk-AKMGJWIM.js.map +0 -1
- /package/dist/{chunk-YDA7DDMQ.js.map → chunk-3HO74CMH.js.map} +0 -0
- /package/dist/{chunk-735VMABS.js.map → chunk-4J3SQGIV.js.map} +0 -0
- /package/dist/{chunk-7CBOXGGA.js.map → chunk-QMLPHJCA.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "./chunk-YIZCD4WG.js";
|
|
10
10
|
import {
|
|
11
11
|
OutputData
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-QMLPHJCA.js";
|
|
13
13
|
import {
|
|
14
14
|
InputData
|
|
15
15
|
} from "./chunk-NXCZ5PMI.js";
|
|
@@ -183,4 +183,4 @@ var TraceDetail = (props) => {
|
|
|
183
183
|
export {
|
|
184
184
|
TraceDetail
|
|
185
185
|
};
|
|
186
|
-
//# sourceMappingURL=chunk-
|
|
186
|
+
//# sourceMappingURL=chunk-3HO74CMH.js.map
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
} from "./chunk-XZ7IV2FF.js";
|
|
4
4
|
import {
|
|
5
5
|
TraceDetail
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-3HO74CMH.js";
|
|
7
7
|
|
|
8
8
|
// src/components/TransactionTrace/TreeTraceTable.tsx
|
|
9
9
|
import { useMemo } from "react";
|
|
@@ -79,4 +79,4 @@ var TreeTraceTable = ({
|
|
|
79
79
|
export {
|
|
80
80
|
TreeTraceTable
|
|
81
81
|
};
|
|
82
|
-
//# sourceMappingURL=chunk-
|
|
82
|
+
//# sourceMappingURL=chunk-4J3SQGIV.js.map
|
|
@@ -41,7 +41,7 @@ var ErrorDecode = ({
|
|
|
41
41
|
children: "Error:"
|
|
42
42
|
}
|
|
43
43
|
),
|
|
44
|
-
/* @__PURE__ */ jsx(Original, { data: errorData })
|
|
44
|
+
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(Original, { data: errorData }) })
|
|
45
45
|
] });
|
|
46
46
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
47
47
|
/* @__PURE__ */ jsxs("div", { className: "flex min-h-32px", children: [
|
|
@@ -76,4 +76,4 @@ var ErrorDecode = ({
|
|
|
76
76
|
export {
|
|
77
77
|
ErrorDecode
|
|
78
78
|
};
|
|
79
|
-
//# sourceMappingURL=chunk-
|
|
79
|
+
//# sourceMappingURL=chunk-6HJCR6PQ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/components/OutputData/ErrorDecode.tsx"],"sourcesContent":["import { cn } from 'src/utils';\nimport { useDecodeFunctionError } from 'src/utils/hooks/useDecodeFunctionError';\nimport { Original } from '../InputData/Original';\nimport { DecodedParameters } from '../InputData/OptimizationDecode';\nimport { FunctionName } from '../InputData/FunctionName';\n\nexport const ErrorDecode = ({\n to,\n errorData,\n space,\n labelClassName,\n proxy,\n}: {\n errorData: `0x${string}`;\n to?: string;\n space: 'evm' | 'core';\n labelClassName?: string;\n proxy?: {\n beaconAddress?: string;\n implAddress: string;\n };\n}) => {\n const [decodedError, isLoading] = useDecodeFunctionError({\n to,\n implementation: proxy?.implAddress,\n errorData,\n space,\n });\n\n if (\n isLoading ||\n !decodedError ||\n !decodedError.abiItem ||\n decodedError.abiItem.type !== 'error'\n )\n return (\n <div className=\"flex min-h-32px\">\n <div\n className={cn(\n 'w-100px shrink-0 grow-0 text-14px lh-18px pt-6px text-#6a737d',\n labelClassName,\n )}\n >\n Error:\n </div>\n <div className=\"flex-1\">\n <Original data={errorData} />\n </div>\n </div>\n );\n return (\n <>\n <div className=\"flex min-h-32px\">\n <div\n className={cn(\n 'w-100px shrink-0 grow-0 text-14px lh-18px text-#6a737d pt-1px',\n labelClassName,\n )}\n >\n Error:{' '}\n </div>\n <div>\n <FunctionName abiItem={decodedError.abiItem}></FunctionName>\n </div>\n </div>\n {decodedError.args && decodedError.args.length > 0 && (\n <DecodedParameters\n args={decodedError.args}\n params={decodedError.abiItem.inputs}\n label=\"Parameters:\"\n labelClassName={labelClassName}\n space={space}\n />\n )}\n </>\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;AAoCM,SAeF,UAdI,KADF;AA9BC,IAAM,cAAc,CAAC;AAAA,EAC1B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MASM;AACJ,QAAM,CAAC,cAAc,SAAS,IAAI,uBAAuB;AAAA,IACvD;AAAA,IACA,gBAAgB,OAAO;AAAA,IACvB;AAAA,IACA;AAAA,EACF,CAAC;AAED,MACE,aACA,CAAC,gBACD,CAAC,aAAa,WACd,aAAa,QAAQ,SAAS;AAE9B,WACE,qBAAC,SAAI,WAAU,mBACb;AAAA;AAAA,QAAC;AAAA;AAAA,UACC,WAAW;AAAA,YACT;AAAA,YACA;AAAA,UACF;AAAA,UACD;AAAA;AAAA,MAED;AAAA,MACA,oBAAC,SAAI,WAAU,UACb,8BAAC,YAAS,MAAM,WAAW,GAC7B;AAAA,OACF;AAEJ,SACE,iCACE;AAAA,yBAAC,SAAI,WAAU,mBACb;AAAA;AAAA,QAAC;AAAA;AAAA,UACC,WAAW;AAAA,YACT;AAAA,YACA;AAAA,UACF;AAAA,UACD;AAAA;AAAA,YACQ;AAAA;AAAA;AAAA,MACT;AAAA,MACA,oBAAC,SACC,8BAAC,gBAAa,SAAS,aAAa,SAAS,GAC/C;AAAA,OACF;AAAA,IACC,aAAa,QAAQ,aAAa,KAAK,SAAS,KAC/C;AAAA,MAAC;AAAA;AAAA,QACC,MAAM,aAAa;AAAA,QACnB,QAAQ,aAAa,QAAQ;AAAA,QAC7B,OAAM;AAAA,QACN;AAAA,QACA;AAAA;AAAA,IACF;AAAA,KAEJ;AAEJ;","names":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ErrorDecode
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-6HJCR6PQ.js";
|
|
4
4
|
import {
|
|
5
5
|
GeneralDecode
|
|
6
6
|
} from "./chunk-OYESIV3F.js";
|
|
@@ -75,4 +75,4 @@ var OutputData = ({
|
|
|
75
75
|
export {
|
|
76
76
|
OutputData
|
|
77
77
|
};
|
|
78
|
-
//# sourceMappingURL=chunk-
|
|
78
|
+
//# sourceMappingURL=chunk-QMLPHJCA.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
OutputData
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-QMLPHJCA.js";
|
|
4
|
+
import "../../chunk-6HJCR6PQ.js";
|
|
5
5
|
import "../../chunk-K6FHTS3F.js";
|
|
6
6
|
import "../../chunk-6SXAFSBF.js";
|
|
7
7
|
import "../../chunk-JIRLY7OG.js";
|
|
@@ -97,7 +97,7 @@ var ProxyContractAddress = (props) => {
|
|
|
97
97
|
"a",
|
|
98
98
|
{
|
|
99
99
|
className: cn(
|
|
100
|
-
"block relative align-bottom cursor-pointer truncate max-w-
|
|
100
|
+
"block relative align-bottom cursor-pointer truncate max-w-220px",
|
|
101
101
|
className
|
|
102
102
|
),
|
|
103
103
|
href: `/address/${address}`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/ProxyContractAddress/index.tsx"],"sourcesContent":["import { useTranslation } from 'react-i18next';\nimport { getTranslations } from 'src/store';\nimport { isInnerContractAddress } from 'src/utils/address';\nimport { Tooltip } from '../Tooltip';\nimport InternalContractIcon from '../../images/internal-contract-icon.png';\nimport ContractIcon from '../../images/contract-icon.png';\nimport VerifiedIcon from '../../images/verified.png';\nimport { shortenAddress } from '@cfx-kit/dapp-utils/dist/address';\nimport { cn } from 'src/utils';\nimport { ProxyType } from 'src/utils/hooks/useTxTrace';\nimport { useAddressLabel } from 'src/utils/hooks/useAddressLabel';\n\nexport const ProxyContractAddress = (props: {\n address: string;\n alias?: string;\n isFull?: boolean;\n verify?: boolean;\n showIcon?: boolean;\n showAddressLabel?: boolean;\n proxy: {\n type: ProxyType;\n implAddress: string;\n beaconAddress?: string;\n };\n style?: React.CSSProperties;\n className?: string;\n}) => {\n const {\n showIcon = true,\n showAddressLabel = true,\n verify,\n address,\n alias,\n isFull = false,\n proxy,\n className,\n style,\n } = props;\n\n const { t } = useTranslation();\n const translations = getTranslations();\n const addressLabel = useAddressLabel(address, showAddressLabel);\n const text =\n addressLabel || alias || (isFull ? address : shortenAddress(address));\n\n const isInnerContract = address && isInnerContractAddress(address);\n\n const typeText = t(\n isInnerContract\n ? translations.general.internalContract\n : verify\n ? translations.general.verifiedContract\n : translations.general.unverifiedContract,\n );\n\n return (\n <div className=\"inline-flex\">\n {showIcon && (\n <div className={`mr-[2px] flex-shrink-0`}>\n <Tooltip title={typeText}>\n <div className=\"relative w-[16px] h-[16px]\">\n {isInnerContract ? (\n <img\n className=\"w-[16px] h-[16px] align-bottom mb-[5px]\"\n src={InternalContractIcon}\n alt={typeText}\n />\n ) : (\n <>\n <img\n className=\"w-[16px] h-[16px] align-bottom mb-[5px]\"\n src={ContractIcon}\n alt={typeText}\n />\n {verify ? (\n <img\n className=\"w-[8px] h-[8px] absolute bottom-[-1px] right-[1px]\"\n src={VerifiedIcon}\n alt={''}\n />\n ) : (\n <></>\n )}\n </>\n )}\n </div>\n </Tooltip>\n </div>\n )}\n <Tooltip\n title={\n <div className=\"flex flex-col gap-5px\">\n <div>\n {proxy.type}: {address}\n </div>\n {proxy.beaconAddress && <div>Beacon: {proxy.beaconAddress}</div>}\n <div>Impl: {proxy.implAddress}</div>\n </div>\n }\n containerClassName=\"max-w-unset\"\n >\n <a\n className={cn(\n 'block relative align-bottom cursor-pointer truncate max-w-
|
|
1
|
+
{"version":3,"sources":["../../../src/components/ProxyContractAddress/index.tsx"],"sourcesContent":["import { useTranslation } from 'react-i18next';\nimport { getTranslations } from 'src/store';\nimport { isInnerContractAddress } from 'src/utils/address';\nimport { Tooltip } from '../Tooltip';\nimport InternalContractIcon from '../../images/internal-contract-icon.png';\nimport ContractIcon from '../../images/contract-icon.png';\nimport VerifiedIcon from '../../images/verified.png';\nimport { shortenAddress } from '@cfx-kit/dapp-utils/dist/address';\nimport { cn } from 'src/utils';\nimport { ProxyType } from 'src/utils/hooks/useTxTrace';\nimport { useAddressLabel } from 'src/utils/hooks/useAddressLabel';\n\nexport const ProxyContractAddress = (props: {\n address: string;\n alias?: string;\n isFull?: boolean;\n verify?: boolean;\n showIcon?: boolean;\n showAddressLabel?: boolean;\n proxy: {\n type: ProxyType;\n implAddress: string;\n beaconAddress?: string;\n };\n style?: React.CSSProperties;\n className?: string;\n}) => {\n const {\n showIcon = true,\n showAddressLabel = true,\n verify,\n address,\n alias,\n isFull = false,\n proxy,\n className,\n style,\n } = props;\n\n const { t } = useTranslation();\n const translations = getTranslations();\n const addressLabel = useAddressLabel(address, showAddressLabel);\n const text =\n addressLabel || alias || (isFull ? address : shortenAddress(address));\n\n const isInnerContract = address && isInnerContractAddress(address);\n\n const typeText = t(\n isInnerContract\n ? translations.general.internalContract\n : verify\n ? translations.general.verifiedContract\n : translations.general.unverifiedContract,\n );\n\n return (\n <div className=\"inline-flex\">\n {showIcon && (\n <div className={`mr-[2px] flex-shrink-0`}>\n <Tooltip title={typeText}>\n <div className=\"relative w-[16px] h-[16px]\">\n {isInnerContract ? (\n <img\n className=\"w-[16px] h-[16px] align-bottom mb-[5px]\"\n src={InternalContractIcon}\n alt={typeText}\n />\n ) : (\n <>\n <img\n className=\"w-[16px] h-[16px] align-bottom mb-[5px]\"\n src={ContractIcon}\n alt={typeText}\n />\n {verify ? (\n <img\n className=\"w-[8px] h-[8px] absolute bottom-[-1px] right-[1px]\"\n src={VerifiedIcon}\n alt={''}\n />\n ) : (\n <></>\n )}\n </>\n )}\n </div>\n </Tooltip>\n </div>\n )}\n <Tooltip\n title={\n <div className=\"flex flex-col gap-5px\">\n <div>\n {proxy.type}: {address}\n </div>\n {proxy.beaconAddress && <div>Beacon: {proxy.beaconAddress}</div>}\n <div>Impl: {proxy.implAddress}</div>\n </div>\n }\n containerClassName=\"max-w-unset\"\n >\n <a\n className={cn(\n 'block relative align-bottom cursor-pointer truncate max-w-220px',\n className,\n )}\n href={`/address/${address}`}\n style={style}\n >\n {text}({proxy.type})\n </a>\n </Tooltip>\n </div>\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA,SAAS,sBAAsB;AAI/B,OAAO,0BAA0B;AACjC,OAAO,kBAAkB;AACzB,OAAO,kBAAkB;AACzB,SAAS,sBAAsB;AAuDf,SAmBI,UAnBJ,KAMA,YANA;AAlDT,IAAM,uBAAuB,CAAC,UAc/B;AACJ,QAAM;AAAA,IACJ,WAAW;AAAA,IACX,mBAAmB;AAAA,IACnB;AAAA,IACA;AAAA,IACA;AAAA,IACA,SAAS;AAAA,IACT;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI;AAEJ,QAAM,EAAE,EAAE,IAAI,eAAe;AAC7B,QAAM,eAAe,gBAAgB;AACrC,QAAM,eAAe,gBAAgB,SAAS,gBAAgB;AAC9D,QAAM,OACJ,gBAAgB,UAAU,SAAS,UAAU,eAAe,OAAO;AAErE,QAAM,kBAAkB,WAAW,uBAAuB,OAAO;AAEjE,QAAM,WAAW;AAAA,IACf,kBACI,aAAa,QAAQ,mBACrB,SACE,aAAa,QAAQ,mBACrB,aAAa,QAAQ;AAAA,EAC7B;AAEA,SACE,qBAAC,SAAI,WAAU,eACZ;AAAA,gBACC,oBAAC,SAAI,WAAW,0BACd,8BAAC,WAAQ,OAAO,UACd,8BAAC,SAAI,WAAU,8BACZ,4BACC;AAAA,MAAC;AAAA;AAAA,QACC,WAAU;AAAA,QACV,KAAK;AAAA,QACL,KAAK;AAAA;AAAA,IACP,IAEA,iCACE;AAAA;AAAA,QAAC;AAAA;AAAA,UACC,WAAU;AAAA,UACV,KAAK;AAAA,UACL,KAAK;AAAA;AAAA,MACP;AAAA,MACC,SACC;AAAA,QAAC;AAAA;AAAA,UACC,WAAU;AAAA,UACV,KAAK;AAAA,UACL,KAAK;AAAA;AAAA,MACP,IAEA,gCAAE;AAAA,OAEN,GAEJ,GACF,GACF;AAAA,IAEF;AAAA,MAAC;AAAA;AAAA,QACC,OACE,qBAAC,SAAI,WAAU,yBACb;AAAA,+BAAC,SACE;AAAA,kBAAM;AAAA,YAAK;AAAA,YAAG;AAAA,aACjB;AAAA,UACC,MAAM,iBAAiB,qBAAC,SAAI;AAAA;AAAA,YAAS,MAAM;AAAA,aAAc;AAAA,UAC1D,qBAAC,SAAI;AAAA;AAAA,YAAO,MAAM;AAAA,aAAY;AAAA,WAChC;AAAA,QAEF,oBAAmB;AAAA,QAEnB;AAAA,UAAC;AAAA;AAAA,YACC,WAAW;AAAA,cACT;AAAA,cACA;AAAA,YACF;AAAA,YACA,MAAM,YAAY;AAAA,YAClB;AAAA,YAEC;AAAA;AAAA,cAAK;AAAA,cAAE,MAAM;AAAA,cAAK;AAAA;AAAA;AAAA,QACrB;AAAA;AAAA,IACF;AAAA,KACF;AAEJ;","names":[]}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TraceDetail
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-3HO74CMH.js";
|
|
4
4
|
import "../../chunk-UM5J477V.js";
|
|
5
5
|
import "../../chunk-EERNUGUK.js";
|
|
6
6
|
import "../../chunk-E3ZD2GGG.js";
|
|
7
7
|
import "../../chunk-YIZCD4WG.js";
|
|
8
8
|
import "../../chunk-EMPFZFBS.js";
|
|
9
9
|
import "../../chunk-NWVSTRCG.js";
|
|
10
|
-
import "../../chunk-
|
|
11
|
-
import "../../chunk-
|
|
10
|
+
import "../../chunk-QMLPHJCA.js";
|
|
11
|
+
import "../../chunk-6HJCR6PQ.js";
|
|
12
12
|
import "../../chunk-K6FHTS3F.js";
|
|
13
13
|
import "../../chunk-6SXAFSBF.js";
|
|
14
14
|
import "../../chunk-JIRLY7OG.js";
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TreeTraceTable
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-4J3SQGIV.js";
|
|
4
4
|
import "../../chunk-XZ7IV2FF.js";
|
|
5
|
-
import "../../chunk-
|
|
5
|
+
import "../../chunk-3HO74CMH.js";
|
|
6
6
|
import "../../chunk-UM5J477V.js";
|
|
7
7
|
import "../../chunk-EERNUGUK.js";
|
|
8
8
|
import "../../chunk-E3ZD2GGG.js";
|
|
9
9
|
import "../../chunk-YIZCD4WG.js";
|
|
10
10
|
import "../../chunk-EMPFZFBS.js";
|
|
11
11
|
import "../../chunk-NWVSTRCG.js";
|
|
12
|
-
import "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-QMLPHJCA.js";
|
|
13
|
+
import "../../chunk-6HJCR6PQ.js";
|
|
14
14
|
import "../../chunk-K6FHTS3F.js";
|
|
15
15
|
import "../../chunk-6SXAFSBF.js";
|
|
16
16
|
import "../../chunk-JIRLY7OG.js";
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TreeTraceTable
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-4J3SQGIV.js";
|
|
4
4
|
import "../../chunk-XZ7IV2FF.js";
|
|
5
5
|
import {
|
|
6
6
|
TraceDetail
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-3HO74CMH.js";
|
|
8
8
|
import "../../chunk-UM5J477V.js";
|
|
9
9
|
import "../../chunk-EERNUGUK.js";
|
|
10
10
|
import "../../chunk-E3ZD2GGG.js";
|
|
11
11
|
import "../../chunk-YIZCD4WG.js";
|
|
12
12
|
import "../../chunk-EMPFZFBS.js";
|
|
13
13
|
import "../../chunk-NWVSTRCG.js";
|
|
14
|
-
import "../../chunk-
|
|
15
|
-
import "../../chunk-
|
|
14
|
+
import "../../chunk-QMLPHJCA.js";
|
|
15
|
+
import "../../chunk-6HJCR6PQ.js";
|
|
16
16
|
import "../../chunk-K6FHTS3F.js";
|
|
17
17
|
import "../../chunk-6SXAFSBF.js";
|
|
18
18
|
import "../../chunk-JIRLY7OG.js";
|
package/dist/uno.css
CHANGED
|
@@ -176,8 +176,8 @@
|
|
|
176
176
|
.max-w-100\%,
|
|
177
177
|
.max-w-full{max-width:100%;}
|
|
178
178
|
.max-w-1368px{max-width:1368px;}
|
|
179
|
-
.max-w-190px{max-width:190px;}
|
|
180
179
|
.max-w-192px{max-width:192px;}
|
|
180
|
+
.max-w-220px{max-width:220px;}
|
|
181
181
|
.max-w-260px{max-width:260px;}
|
|
182
182
|
.max-w-320px{max-width:320px;}
|
|
183
183
|
.max-w-fit{max-width:fit-content;}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/OutputData/ErrorDecode.tsx"],"sourcesContent":["import { cn } from 'src/utils';\nimport { useDecodeFunctionError } from 'src/utils/hooks/useDecodeFunctionError';\nimport { Original } from '../InputData/Original';\nimport { DecodedParameters } from '../InputData/OptimizationDecode';\nimport { FunctionName } from '../InputData/FunctionName';\n\nexport const ErrorDecode = ({\n to,\n errorData,\n space,\n labelClassName,\n proxy,\n}: {\n errorData: `0x${string}`;\n to?: string;\n space: 'evm' | 'core';\n labelClassName?: string;\n proxy?: {\n beaconAddress?: string;\n implAddress: string;\n };\n}) => {\n const [decodedError, isLoading] = useDecodeFunctionError({\n to,\n implementation: proxy?.implAddress,\n errorData,\n space,\n });\n\n if (\n isLoading ||\n !decodedError ||\n !decodedError.abiItem ||\n decodedError.abiItem.type !== 'error'\n )\n return (\n <div className=\"flex min-h-32px\">\n <div\n className={cn(\n 'w-100px shrink-0 grow-0 text-14px lh-18px pt-6px text-#6a737d',\n labelClassName,\n )}\n >\n Error:\n </div>\n <Original data={errorData} />\n </div>\n );\n return (\n <>\n <div className=\"flex min-h-32px\">\n <div\n className={cn(\n 'w-100px shrink-0 grow-0 text-14px lh-18px text-#6a737d pt-1px',\n labelClassName,\n )}\n >\n Error:{' '}\n </div>\n <div>\n <FunctionName abiItem={decodedError.abiItem}></FunctionName>\n </div>\n </div>\n {decodedError.args && decodedError.args.length > 0 && (\n <DecodedParameters\n args={decodedError.args}\n params={decodedError.abiItem.inputs}\n label=\"Parameters:\"\n labelClassName={labelClassName}\n space={space}\n />\n )}\n </>\n );\n};\n"],"mappings":";;;;;;;;;;;;;;;;;AAoCM,SAaF,UAZI,KADF;AA9BC,IAAM,cAAc,CAAC;AAAA,EAC1B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MASM;AACJ,QAAM,CAAC,cAAc,SAAS,IAAI,uBAAuB;AAAA,IACvD;AAAA,IACA,gBAAgB,OAAO;AAAA,IACvB;AAAA,IACA;AAAA,EACF,CAAC;AAED,MACE,aACA,CAAC,gBACD,CAAC,aAAa,WACd,aAAa,QAAQ,SAAS;AAE9B,WACE,qBAAC,SAAI,WAAU,mBACb;AAAA;AAAA,QAAC;AAAA;AAAA,UACC,WAAW;AAAA,YACT;AAAA,YACA;AAAA,UACF;AAAA,UACD;AAAA;AAAA,MAED;AAAA,MACA,oBAAC,YAAS,MAAM,WAAW;AAAA,OAC7B;AAEJ,SACE,iCACE;AAAA,yBAAC,SAAI,WAAU,mBACb;AAAA;AAAA,QAAC;AAAA;AAAA,UACC,WAAW;AAAA,YACT;AAAA,YACA;AAAA,UACF;AAAA,UACD;AAAA;AAAA,YACQ;AAAA;AAAA;AAAA,MACT;AAAA,MACA,oBAAC,SACC,8BAAC,gBAAa,SAAS,aAAa,SAAS,GAC/C;AAAA,OACF;AAAA,IACC,aAAa,QAAQ,aAAa,KAAK,SAAS,KAC/C;AAAA,MAAC;AAAA;AAAA,QACC,MAAM,aAAa;AAAA,QACnB,QAAQ,aAAa,QAAQ;AAAA,QAC7B,OAAM;AAAA,QACN;AAAA,QACA;AAAA;AAAA,IACF;AAAA,KAEJ;AAEJ;","names":[]}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|