Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ sync-sdk-gen-docs:
cp $(JS_SDK_ROOT)/generated-docs/docs.json docs.json

@echo Copying formatted docs to ./generated-docs...
cp -R $(JS_SDK_ROOT)/generated-docs/react-wallet-kit ./generated-docs/formatted
cp -R $(JS_SDK_ROOT)/generated-docs/core ./generated-docs/formatted
cp -R $(JS_SDK_ROOT)/generated-docs/react-wallet-kit ./generated-docs
cp -R $(JS_SDK_ROOT)/generated-docs/core ./generated-docs

@echo Copying formatted changelogs to ./changelogs...
cp -R $(JS_SDK_ROOT)/generated-docs/changelogs .
Expand Down
12 changes: 12 additions & 0 deletions changelogs/api-key-stamper/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ mode: wide

# @turnkey/api-key-stamper

## 0.6.0

### Minor Changes

- [#1135](https://github.com/tkhq/sdk/pull/1135) [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6) Author [@ethankonk](https://github.com/ethankonk) - Exposed a `sign` method from the stamper for signing arbitrary payloads
- Accepts a string payload and returns a signature in either `RAW` or `DER` format.

### Patch Changes

- Updated dependencies [[`d0dba04`](https://github.com/tkhq/sdk/commit/d0dba0412fa7b0c7c9b135e73cc0ef6f55187314)]:
- @turnkey/[email protected]

## 0.5.0

### Minor Changes
Expand Down
66 changes: 66 additions & 0 deletions changelogs/core/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,72 @@ mode: wide

# @turnkey/core

## 1.11.0

### Minor Changes

- [#1135](https://github.com/tkhq/sdk/pull/1135) [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6) Author [@ethankonk](https://github.com/ethankonk) - - Added client signature support for OTP authentication flows
- Synced with `mono` v2025.12.2

### Patch Changes

- [#1117](https://github.com/tkhq/sdk/pull/1117) [`699fbd7`](https://github.com/tkhq/sdk/commit/699fbd75ef3f44f768ae641ab4f652e966b8e289) Author [@ethankonk](https://github.com/ethankonk) - Fixed broken OTP flow when "Verification Token Required for Account Lookups" was enabled in the Auth Proxy

- Updated dependencies [[`d0dba04`](https://github.com/tkhq/sdk/commit/d0dba0412fa7b0c7c9b135e73cc0ef6f55187314), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.10.0

### Minor Changes

- [#1153](https://github.com/tkhq/sdk/pull/1153) [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea) Thanks [@moe-dev](https://github.com/moe-dev)! - Update as per mono v2025.12.3.

### Behavioral Changes
- `appName` is now **required**:
- In `emailCustomization` for Email Auth activities
- At the top-level intent for OTP activities
- Auth proxy endpoints are **not affected**

### Activity Version Bumps

The following activity types have been versioned:
- `ACTIVITY_TYPE_INIT_OTP` → `ACTIVITY_TYPE_INIT_OTP_V2`
- `ACTIVITY_TYPE_INIT_OTP_AUTH_V2` → `ACTIVITY_TYPE_INIT_OTP_V3`
- `ACTIVITY_TYPE_EMAIL_AUTH_V2` → `ACTIVITY_TYPE_EMAIL_AUTH_V3`
- `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY` -> `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2`

### Patch Changes

- [#1145](https://github.com/tkhq/sdk/pull/1145) [`6261eed`](https://github.com/tkhq/sdk/commit/6261eed95af8627bf1e95e7291b9760a2267e301) Author [@moeodeh3](https://github.com/moeodeh3) - Add session `organizationId` fallback to HTTP client stamp functions

- Updated dependencies [[`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.9.0

### Minor Changes

- [#1118](https://github.com/tkhq/sdk/pull/1118) [`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e) Thanks [@moe-dev](https://github.com/moe-dev)! - Add support for high-level Ethereum transaction utilities (**for embedded wallet use only**):
- **`ethSendTransaction`** — new helper used as a dedicated method for submitting Ethereum transactions (sign and broadcast) via the Turnkey API.
- **`pollTransactionStatus`** — new helper for polling Turnkey’s transaction status endpoint until the transaction reaches a terminal state.

These methods enable a clean two-step flow:
1. Submit the transaction intent using `ethSendTransaction`, receiving a `sendTransactionStatusId`.
2. Poll for completion using `pollTransactionStatus` to retrieve the final on-chain transaction hash and execution status.

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.8.3

### Patch Changes
Expand Down
30 changes: 30 additions & 0 deletions changelogs/cosmjs/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,36 @@ mode: wide

# @turnkey/cosmjs

## 0.8.22

### Patch Changes

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`699fbd7`](https://github.com/tkhq/sdk/commit/699fbd75ef3f44f768ae641ab4f652e966b8e289)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 0.8.21

### Patch Changes

- Updated dependencies [[`6261eed`](https://github.com/tkhq/sdk/commit/6261eed95af8627bf1e95e7291b9760a2267e301), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea), [`dbd4d8e`](https://github.com/tkhq/sdk/commit/dbd4d8e4ea567240c4d287452dd0d8f53050beca), [`cfd34ab`](https://github.com/tkhq/sdk/commit/cfd34ab14ff2abed0e22dca9a802c58a96b9e8e1), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 0.8.20

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 0.8.19

### Patch Changes
Expand Down
23 changes: 23 additions & 0 deletions changelogs/crypto/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ mode: wide

# @turnkey/crypto

## 2.8.9

### Patch Changes

- [#1165](https://github.com/tkhq/sdk/pull/1165) [`d0dba04`](https://github.com/tkhq/sdk/commit/d0dba0412fa7b0c7c9b135e73cc0ef6f55187314) Author [@moeodeh3](https://github.com/moeodeh3) - Remove `@turnkey/http` and `@turnkey/api-key-stamper` from devDependencies

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6)]:
- @turnkey/[email protected]

## 2.8.8

### Patch Changes

- Updated dependencies [[`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]

## 2.8.7

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]

## 2.8.6

### Patch Changes
Expand Down
27 changes: 27 additions & 0 deletions changelogs/eip-1193-provider/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ mode: wide

# @turnkey/eip-1193-provider

## 3.4.21

### Patch Changes

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`699fbd7`](https://github.com/tkhq/sdk/commit/699fbd75ef3f44f768ae641ab4f652e966b8e289)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 3.4.20

### Patch Changes

- Updated dependencies [[`6261eed`](https://github.com/tkhq/sdk/commit/6261eed95af8627bf1e95e7291b9760a2267e301), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea), [`cfd34ab`](https://github.com/tkhq/sdk/commit/cfd34ab14ff2abed0e22dca9a802c58a96b9e8e1), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 3.4.19

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]

## 3.4.18

### Patch Changes
Expand Down
30 changes: 30 additions & 0 deletions changelogs/ethers/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,36 @@ mode: wide

# @turnkey/ethers

## 1.3.21

### Patch Changes

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`699fbd7`](https://github.com/tkhq/sdk/commit/699fbd75ef3f44f768ae641ab4f652e966b8e289)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.3.20

### Patch Changes

- Updated dependencies [[`6261eed`](https://github.com/tkhq/sdk/commit/6261eed95af8627bf1e95e7291b9760a2267e301), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea), [`dbd4d8e`](https://github.com/tkhq/sdk/commit/dbd4d8e4ea567240c4d287452dd0d8f53050beca), [`cfd34ab`](https://github.com/tkhq/sdk/commit/cfd34ab14ff2abed0e22dca9a802c58a96b9e8e1), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.3.19

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.3.18

### Patch Changes
Expand Down
27 changes: 27 additions & 0 deletions changelogs/http/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,33 @@ mode: wide

# @turnkey/http

## 3.16.1

### Patch Changes

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6)]:
- @turnkey/[email protected]

## 3.16.0

### Minor Changes

- [#1153](https://github.com/tkhq/sdk/pull/1153) [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea) Thanks [@moe-dev](https://github.com/moe-dev)! - Update as per mono v2025.12.3.

### Behavioral Changes
- `appName` is now **required**:
- In `emailCustomization` for Email Auth activities
- At the top-level intent for OTP activities
- Auth proxy endpoints are **not affected**

### Activity Version Bumps

The following activity types have been versioned:
- `ACTIVITY_TYPE_INIT_OTP` → `ACTIVITY_TYPE_INIT_OTP_V2`
- `ACTIVITY_TYPE_INIT_OTP_AUTH_V2` → `ACTIVITY_TYPE_INIT_OTP_V3`
- `ACTIVITY_TYPE_EMAIL_AUTH_V2` → `ACTIVITY_TYPE_EMAIL_AUTH_V3`
- `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY` -> `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2`

## 3.15.0

### Minor Changes
Expand Down
14 changes: 14 additions & 0 deletions changelogs/react-native-passkey-stamper/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ mode: wide

# @turnkey/react-native-passkey-stamper

## 1.2.7

### Patch Changes

- Updated dependencies []:
- @turnkey/[email protected]

## 1.2.6

### Patch Changes

- Updated dependencies [[`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]

## 1.2.5

### Patch Changes
Expand Down
37 changes: 37 additions & 0 deletions changelogs/react-wallet-kit/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,43 @@ mode: wide

# @turnkey/react-wallet-kit

## 1.7.2

### Patch Changes

- Updated dependencies [[`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`699fbd7`](https://github.com/tkhq/sdk/commit/699fbd75ef3f44f768ae641ab4f652e966b8e289), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6)]:
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.7.1

### Patch Changes

- Updated dependencies [[`6261eed`](https://github.com/tkhq/sdk/commit/6261eed95af8627bf1e95e7291b9760a2267e301), [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.7.0

### Minor Changes

- [#1118](https://github.com/tkhq/sdk/pull/1118) [`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e) Thanks [@moe-dev](https://github.com/moe-dev)! - Add a new `handleSendTransaction` helper to the Wallet Kit (**for embedded wallet use only**).

This handler provides a complete transaction-submission flow, including:
- Construction of the Ethereum transaction intent (sponsored and non-sponsored)
- Submission via `ethSendTransaction` from `@turnkey/core`
- Integrated modal UI for progress + success states
- Polling for transaction confirmation using `pollTransactionStatus`
- Surfacing of the final on-chain `txHash` back to the caller

This addition centralizes all transaction UX and logic into a single, reusable helper and enables consistent send-transaction flows across applications using the Wallet Kit.

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e), [`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]

## 1.6.3

### Patch Changes
Expand Down
53 changes: 53 additions & 0 deletions changelogs/sdk-browser/readme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,59 @@ mode: wide

# @turnkey/sdk-browser

## 5.14.1

### Patch Changes

- Updated dependencies [[`d0dba04`](https://github.com/tkhq/sdk/commit/d0dba0412fa7b0c7c9b135e73cc0ef6f55187314), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6), [`91d6a9e`](https://github.com/tkhq/sdk/commit/91d6a9eb1b9ac9e21745749615ac7a7be66f5cf6)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 5.14.0

### Minor Changes

- [#1153](https://github.com/tkhq/sdk/pull/1153) [`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea) Thanks [@moe-dev](https://github.com/moe-dev)! - Update as per mono v2025.12.3.

### Breaking/Behavioral Changes
- `appName` is now **required**:
- In `emailCustomization` for Email Auth activities
- At the top-level intent for OTP activities
- Auth proxy endpoints are **not affected**

### Activity Version Bumps

The following activity types have been versioned:
- `ACTIVITY_TYPE_INIT_OTP` → `ACTIVITY_TYPE_INIT_OTP_V2`
- `ACTIVITY_TYPE_INIT_OTP_AUTH_V2` → `ACTIVITY_TYPE_INIT_OTP_V3`
- `ACTIVITY_TYPE_EMAIL_AUTH_V2` → `ACTIVITY_TYPE_EMAIL_AUTH_V3`
- `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY` -> `ACTIVITY_TYPE_INIT_USER_EMAIL_RECOVERY_V2`

### Patch Changes

- [#1145](https://github.com/tkhq/sdk/pull/1145) [`cfd34ab`](https://github.com/tkhq/sdk/commit/cfd34ab14ff2abed0e22dca9a802c58a96b9e8e1) Author [@moeodeh3](https://github.com/moeodeh3) - Stamp function improvements
- Queries: add `organizationId` fallback from config
- Activities: fix request structure to include the `parameters wrapper`, `organizationId`, `timestampMs`, and `type` fields

- Updated dependencies [[`78ec1d9`](https://github.com/tkhq/sdk/commit/78ec1d9afcafde3ca7107fc720323d486d6afaea)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 5.13.6

### Patch Changes

- Updated dependencies [[`29a42db`](https://github.com/tkhq/sdk/commit/29a42db8f5f3ef8b9c23c90cd00f4c21027aac2e)]:
- @turnkey/[email protected]
- @turnkey/[email protected]
- @turnkey/[email protected]

## 5.13.5

### Patch Changes
Expand Down
Loading