@xswap-link/sdk 0.6.10 → 0.7.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @xswap-link/xswap-sdk
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - cddadc4: change modal rendering
8
+
3
9
  ## 0.6.10
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -222,8 +222,8 @@ type ModalIntegrationStyles = Pick<ModalIntegrationThemeStyles, "mainAccentLight
222
222
  };
223
223
  type ModalIntegrationPayload = {
224
224
  integratorId: string;
225
- dstChain: string;
226
- dstToken: string;
225
+ dstChain?: string;
226
+ dstToken?: string;
227
227
  srcChain?: string;
228
228
  srcToken?: string;
229
229
  customContractCalls?: ContractCall[];
package/dist/index.d.ts CHANGED
@@ -222,8 +222,8 @@ type ModalIntegrationStyles = Pick<ModalIntegrationThemeStyles, "mainAccentLight
222
222
  };
223
223
  type ModalIntegrationPayload = {
224
224
  integratorId: string;
225
- dstChain: string;
226
- dstToken: string;
225
+ dstChain?: string;
226
+ dstToken?: string;
227
227
  srcChain?: string;
228
228
  srcToken?: string;
229
229
  customContractCalls?: ContractCall[];