🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@turnkey/sdk-types

Package Overview
Dependencies
Maintainers
3
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@turnkey/sdk-types - npm Package Compare versions

Comparing version
1.1.0
to
1.2.0
+27
-0
CHANGELOG.md
# @turnkey/sdk-types
## 1.2.0
### Minor Changes
- [#1433](https://github.com/tkhq/sdk/pull/1433) [`cd1af93`](https://github.com/tkhq/sdk/commit/cd1af93c41a3f41c3c68589cfa6cfe17c1812c2f) Author [@amircheikh](https://github.com/amircheikh) - - Synced with Mono v2026.7.3
- Added version-specific types for `ACTIVITY_TYPE_ETH_SEND_TRANSACTION_V2`, which supports batching multiple eth calls together via the new `calls` array.
```ts
// V1 (unchanged) — single call, top-level fields
type v1EthSendTransactionIntent = {
from: string;
caip2: string;
to: string;
value?: string;
data?: string;
// ...
};
// V2 (new) — one or more calls in a `calls` array
type v1EthSendTransactionIntentV2 = {
from: string;
caip2: string;
calls: v1EthCallParams[]; // [{ to, value?, data? }]
// ...
};
```
## 1.1.0

@@ -4,0 +31,0 @@

+1
-1
{
"name": "@turnkey/sdk-types",
"version": "1.1.0",
"version": "1.2.0",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "types": "dist/index.d.ts",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display