@0xio/sdk 2.1.5 → 2.1.6

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  All notable changes to the 0xio Wallet SDK will be documented in this file.
4
4
 
5
- ## [2.1.5] - 2026-01-27
5
+ ## [2.1.6] - 2026-01-27
6
6
 
7
7
  ### Added
8
8
  - `signMessage` method to `ZeroXIOWallet` class for signing arbitrary text messages using Ed25519.
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # 0xio Wallet SDK
2
2
 
3
- **Version:** 2.1.5
3
+ **Version:** 2.1.6
4
4
 
5
5
  Official TypeScript SDK for integrating DApps with 0xio Wallet on Octra Network.
6
6
 
7
- ## What's New in v2.1.5
7
+ ## What's New in v2.1.6
8
8
 
9
9
  - **Message Signing**: Added `signMessage()` method for signing arbitrary messages with Ed25519
10
10
  - **Input Validation**: Message signing now validates input and provides clear error messages
package/dist/index.d.ts CHANGED
@@ -693,7 +693,7 @@ declare function createLogger(prefix: string, debug: boolean): {
693
693
  groupEnd: () => void;
694
694
  };
695
695
 
696
- declare const SDK_VERSION = "2.1.5";
696
+ declare const SDK_VERSION = "2.1.6";
697
697
  declare const MIN_EXTENSION_VERSION = "2.0.1";
698
698
  declare const SUPPORTED_EXTENSION_VERSIONS = "^2.0.1";
699
699
  declare function createZeroXIOWallet(config: {
package/dist/index.esm.js CHANGED
@@ -1644,7 +1644,7 @@ var wallet = /*#__PURE__*/Object.freeze({
1644
1644
  */
1645
1645
  // Main exports
1646
1646
  // Version information
1647
- const SDK_VERSION = '2.1.5';
1647
+ const SDK_VERSION = '2.1.6';
1648
1648
  const MIN_EXTENSION_VERSION = '2.0.1';
1649
1649
  const SUPPORTED_EXTENSION_VERSIONS = '^2.0.1'; // Supports all versions >= 2.0.1
1650
1650
  // Quick setup function for simple use cases
package/dist/index.js CHANGED
@@ -1646,7 +1646,7 @@ var wallet = /*#__PURE__*/Object.freeze({
1646
1646
  */
1647
1647
  // Main exports
1648
1648
  // Version information
1649
- const SDK_VERSION = '2.1.5';
1649
+ const SDK_VERSION = '2.1.6';
1650
1650
  const MIN_EXTENSION_VERSION = '2.0.1';
1651
1651
  const SUPPORTED_EXTENSION_VERSIONS = '^2.0.1'; // Supports all versions >= 2.0.1
1652
1652
  // Quick setup function for simple use cases
package/dist/index.umd.js CHANGED
@@ -1650,7 +1650,7 @@
1650
1650
  */
1651
1651
  // Main exports
1652
1652
  // Version information
1653
- const SDK_VERSION = '2.1.5';
1653
+ const SDK_VERSION = '2.1.6';
1654
1654
  const MIN_EXTENSION_VERSION = '2.0.1';
1655
1655
  const SUPPORTED_EXTENSION_VERSIONS = '^2.0.1'; // Supports all versions >= 2.0.1
1656
1656
  // Quick setup function for simple use cases
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xio/sdk",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "type": "module",
5
5
  "description": "Official TypeScript SDK for 0xio Wallet - Secure Octra blockchain integration for dApps",
6
6
  "main": "dist/index.js",