@instadapp/avocado-base 0.0.0-dev.8dda10f → 0.0.0-dev.8ed8fca

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/utils/utils.d.ts CHANGED
@@ -20,6 +20,8 @@ declare global {
20
20
  | 63400
21
21
  | 169
22
22
  | 34443
23
+ | 81457
24
+ | 59144
23
25
 
24
26
  type ISlackMessageType = "danger" | "error" | "success" | "banner";
25
27
 
@@ -43,7 +45,8 @@ declare global {
43
45
  explorerUrl: string;
44
46
  fakeTransactionHash: string;
45
47
  viemChain: Chain;
46
- apiURL?: string;
48
+ // must start with https://
49
+ apiURL: `https://${string}` | null;
47
50
  params: {
48
51
  chainName?: string;
49
52
  iconUrls?: string[];
@@ -80,8 +83,10 @@ declare global {
80
83
  toChainId: string;
81
84
  amount: string;
82
85
  receiver: string;
86
+ provider?: string;
83
87
  };
84
88
 
89
+
85
90
  type AuthMetadataProps = {
86
91
  address: string;
87
92
  chainId: string;
@@ -107,6 +112,8 @@ declare global {
107
112
  toChainId: string;
108
113
  bridgeFee: string;
109
114
  nativeToken: string;
115
+ version?: string;
116
+ provider: string;
110
117
  };
111
118
 
112
119
  type SwapMetadataProps = {