zigap-utils 2.0.1 → 2.0.3

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.
@@ -1,4 +1,4 @@
1
1
  import { LoginQRProps } from './LoginQR.types';
2
2
 
3
- declare const LoginQR: ({ availableNetworks, dapp, url, sigMessage, onReceive, validSeconds, isShowLogo, logoSize, expire, icon, size, processingMark, ...props }: LoginQRProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const LoginQR: ({ availableNetworks, dapp, url, sigMessage, onReceive, validSeconds, isShowLogo, logoSize, expire, icon, size, processingMark, qrDomain, ...props }: LoginQRProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default LoginQR;
@@ -44,6 +44,7 @@ export type ProcessingMarkType = {
44
44
  type: 'NONE';
45
45
  };
46
46
  export type LoginQRProps = {
47
+ qrDomain?: string;
47
48
  availableNetworks: string[];
48
49
  dapp: string;
49
50
  url: string;
@@ -1,4 +1,4 @@
1
1
  import { SendTransactionQRProps } from './SendTransactionQR.types';
2
2
 
3
- declare const SendTransactionQR: ({ availableNetworks, dapp, url, onReceive, validSeconds, isShowLogo, logoSize, size, icon, transaction, processingMark, ...props }: SendTransactionQRProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const SendTransactionQR: ({ availableNetworks, dapp, url, onReceive, validSeconds, isShowLogo, logoSize, size, icon, transaction, processingMark, qrDomain, ...props }: SendTransactionQRProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default SendTransactionQR;
@@ -44,6 +44,7 @@ export type SendTransactionResultType = {
44
44
  error: string;
45
45
  };
46
46
  export type SendTransactionQRProps = {
47
+ qrDomain?: string;
47
48
  availableNetworks: 'binance' | 'ethereum' | 'v2xphere' | 'v3xphere';
48
49
  dapp: string;
49
50
  url: string;
@@ -1,4 +1,4 @@
1
1
  import { SignatureQRProps } from './SignatureQR.types';
2
2
 
3
- declare const SignatureQR: ({ availableNetworks, dapp, url, sigMessage, onReceive, validSeconds, isShowLogo, logoSize, expire, icon, size, processingMark, ...props }: SignatureQRProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const SignatureQR: ({ availableNetworks, dapp, url, sigMessage, onReceive, validSeconds, isShowLogo, logoSize, expire, icon, size, processingMark, qrDomain, ...props }: SignatureQRProps) => import("react/jsx-runtime").JSX.Element;
4
4
  export default SignatureQR;
@@ -44,6 +44,7 @@ export type SignatureProcessingMarkType = {
44
44
  type: 'NONE';
45
45
  };
46
46
  export type SignatureQRProps = {
47
+ qrDomain?: string;
47
48
  availableNetworks: string[];
48
49
  dapp: string;
49
50
  url: string;