@turtleclub/opportunities 0.1.0-beta.63 → 0.1.0-beta.64

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.1.0-beta.64](https://github.com/turtle-dao/turtle-tools/compare/@turtleclub/opportunities@0.1.0-beta.63...@turtleclub/opportunities@0.1.0-beta.64) (2026-01-28)
7
+
8
+ ### Features
9
+
10
+ - add deposit mode query param ([#238](https://github.com/turtle-dao/turtle-tools/issues/238)) ([752f8f1](https://github.com/turtle-dao/turtle-tools/commit/752f8f12b86564615c8ad15129a828812f0cc4db))
11
+
6
12
  # [0.1.0-beta.63](https://github.com/turtle-dao/turtle-tools/compare/@turtleclub/opportunities@0.1.0-beta.62...@turtleclub/opportunities@0.1.0-beta.63) (2026-01-28)
7
13
 
8
14
  **Note:** Version bump only for package @turtleclub/opportunities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turtleclub/opportunities",
3
- "version": "0.1.0-beta.63",
3
+ "version": "0.1.0-beta.64",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/index.ts"
@@ -13,7 +13,7 @@
13
13
  "@tanstack/react-form": "^1.27.6",
14
14
  "@tanstack/react-query": "^5.62.3",
15
15
  "@tanstack/react-table": "^8.21.3",
16
- "@turtleclub/hooks": "0.5.0-beta.44",
16
+ "@turtleclub/hooks": "0.5.0-beta.45",
17
17
  "@turtleclub/multichain": "0.5.0-beta.1",
18
18
  "@turtleclub/ui": "0.7.0-beta.24",
19
19
  "@turtleclub/utils": "0.4.0-beta.0",
@@ -31,5 +31,5 @@
31
31
  "@types/react-dom": "^18.3.5",
32
32
  "typescript": "^5.7.2"
33
33
  },
34
- "gitHead": "71a3c5dac4d7ea659a6c0a2098f35386450958b8"
34
+ "gitHead": "ad121d25e23baaa35859fb18e2ced00f9cffc462"
35
35
  }
@@ -75,6 +75,7 @@ export function NativeDepositSection({
75
75
  const slippageBps = Math.round(slippage * 10000);
76
76
 
77
77
  const { selection, validation, deposit } = useDepositFlow({
78
+ mode: effectiveDepositMode === "native" ? "direct" : "swap",
78
79
  opportunity,
79
80
  userAddress: address,
80
81
  distributorId,