@orderly.network/ui-transfer 2.0.4 → 2.0.5

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.mts CHANGED
@@ -9,8 +9,8 @@ type DST = {
9
9
  symbol: string;
10
10
  address?: string;
11
11
  decimals?: number;
12
- chainId: number;
13
- network: string;
12
+ chainId?: number;
13
+ network?: string;
14
14
  };
15
15
  declare enum DepositAction {
16
16
  Deposit = 0,
@@ -98,8 +98,8 @@ declare const useDepositFormScript: (options: UseDepositFormScriptOptions) => {
98
98
  symbol: string;
99
99
  address: string | undefined;
100
100
  decimals: number | undefined;
101
- chainId: number;
102
- network: string;
101
+ chainId: number | undefined;
102
+ network: string | undefined;
103
103
  };
104
104
  wrongNetwork: boolean;
105
105
  balanceRevalidating: boolean;
package/dist/index.d.ts CHANGED
@@ -9,8 +9,8 @@ type DST = {
9
9
  symbol: string;
10
10
  address?: string;
11
11
  decimals?: number;
12
- chainId: number;
13
- network: string;
12
+ chainId?: number;
13
+ network?: string;
14
14
  };
15
15
  declare enum DepositAction {
16
16
  Deposit = 0,
@@ -98,8 +98,8 @@ declare const useDepositFormScript: (options: UseDepositFormScriptOptions) => {
98
98
  symbol: string;
99
99
  address: string | undefined;
100
100
  decimals: number | undefined;
101
- chainId: number;
102
- network: string;
101
+ chainId: number | undefined;
102
+ network: string | undefined;
103
103
  };
104
104
  wrongNetwork: boolean;
105
105
  balanceRevalidating: boolean;