@thenamespace/ens-components 0.33.0 → 0.34.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/index.d.ts
CHANGED
|
@@ -149,8 +149,9 @@ interface EnsRecordsFormProps {
|
|
|
149
149
|
onRecordsUpdated?: (newRecords: EnsRecordsDiff) => void;
|
|
150
150
|
onGreat?: () => void;
|
|
151
151
|
onTransactionSent?: (hash: Hash) => void;
|
|
152
|
+
txConfirmations?: number;
|
|
152
153
|
}
|
|
153
|
-
declare const EnsRecordsForm: ({ name, existingRecords, resolverChainId, isTestnet, resolverAddress, noBorder, className, onCancel, onGreat, onRecordsUpdated, onTransactionSent }: EnsRecordsFormProps) => react_jsx_runtime.JSX.Element;
|
|
154
|
+
declare const EnsRecordsForm: ({ name, existingRecords, resolverChainId, isTestnet, resolverAddress, noBorder, className, onCancel, onGreat, onRecordsUpdated, onTransactionSent, txConfirmations }: EnsRecordsFormProps) => react_jsx_runtime.JSX.Element;
|
|
154
155
|
|
|
155
156
|
interface MintSuccessData {
|
|
156
157
|
fullName: string;
|
package/dist/index.js
CHANGED
|
@@ -61240,7 +61240,8 @@ const EnsRecordsForm = ({
|
|
|
61240
61240
|
onCancel,
|
|
61241
61241
|
onGreat,
|
|
61242
61242
|
onRecordsUpdated,
|
|
61243
|
-
onTransactionSent
|
|
61243
|
+
onTransactionSent,
|
|
61244
|
+
txConfirmations
|
|
61244
61245
|
}) => {
|
|
61245
61246
|
const mainnetChainId = isTestnet ? sepolia$1.id : mainnet$1.id;
|
|
61246
61247
|
const resolverChain = resolverChainId ? resolverChainId : mainnetChainId;
|
|
@@ -61333,7 +61334,8 @@ const EnsRecordsForm = ({
|
|
|
61333
61334
|
},
|
|
61334
61335
|
onGreat,
|
|
61335
61336
|
onCancel,
|
|
61336
|
-
onTransactionSent
|
|
61337
|
+
onTransactionSent,
|
|
61338
|
+
txConfirmations
|
|
61337
61339
|
}
|
|
61338
61340
|
)
|
|
61339
61341
|
]
|