@thenamespace/ens-components 0.32.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.
@@ -14,5 +14,6 @@ export interface EnsRecordsFormProps {
14
14
  onRecordsUpdated?: (newRecords: EnsRecordsDiff) => void;
15
15
  onGreat?: () => void;
16
16
  onTransactionSent?: (hash: Hash) => void;
17
+ txConfirmations?: number;
17
18
  }
18
- export declare const EnsRecordsForm: ({ name, existingRecords, resolverChainId, isTestnet, resolverAddress, noBorder, className, onCancel, onGreat, onRecordsUpdated, onTransactionSent }: EnsRecordsFormProps) => import("react/jsx-runtime").JSX.Element;
19
+ export declare const EnsRecordsForm: ({ name, existingRecords, resolverChainId, isTestnet, resolverAddress, noBorder, className, onCancel, onGreat, onRecordsUpdated, onTransactionSent, txConfirmations }: EnsRecordsFormProps) => import("react/jsx-runtime").JSX.Element;
@@ -12,6 +12,7 @@ interface EnsUpdateRecordsForm {
12
12
  onRecordsUpdated?: (diff: EnsRecordsDiff) => void;
13
13
  onGreat?: () => void;
14
14
  onTransactionSent?: (hash: Hash) => void;
15
+ txConfirmations?: number;
15
16
  }
16
- export declare const EnsUpdateRecordsForm: ({ name, existingRecords, resolverChainId, resolverAddress, isTestnet, onGreat, onRecordsUpdated, onCancel, onTransactionSent, }: EnsUpdateRecordsForm) => import("react/jsx-runtime").JSX.Element;
17
+ export declare const EnsUpdateRecordsForm: ({ name, existingRecords, resolverChainId, resolverAddress, isTestnet, onGreat, onRecordsUpdated, onCancel, onTransactionSent, txConfirmations }: EnsUpdateRecordsForm) => import("react/jsx-runtime").JSX.Element;
17
18
  export {};
@@ -27,6 +27,7 @@ interface SubnameMintFormProps {
27
27
  onCancel?: () => void;
28
28
  onSuccess?: (data: MintSuccessData) => void;
29
29
  onSubnameMinted?: (data: SubnameMintedData) => void;
30
+ txConfirmations?: number;
30
31
  }
31
- export declare const SubnameMintForm: ({ parentName, label, isTestnet, onCancel, onSuccess, onSubnameMinted, }: SubnameMintFormProps) => import("react/jsx-runtime").JSX.Element;
32
+ export declare const SubnameMintForm: ({ parentName, label, isTestnet, onCancel, onSuccess, onSubnameMinted, txConfirmations }: SubnameMintFormProps) => import("react/jsx-runtime").JSX.Element;
32
33
  export {};
@@ -4,8 +4,9 @@ interface WaitTransactionOptions {
4
4
  retries?: number;
5
5
  retryDelay?: number;
6
6
  timeout?: number;
7
+ txConfirmations?: number;
7
8
  }
8
- export declare const useWaitTransaction: ({ isTestnet, chainId }: {
9
+ export declare const useWaitTransaction: ({ isTestnet, chainId, }: {
9
10
  isTestnet?: boolean;
10
11
  chainId?: number;
11
12
  }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thenamespace/ens-components",
3
- "version": "0.32.0",
3
+ "version": "0.34.0",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",