@reown/appkit-common-react-native 0.0.0-feat-siwx-20250923150457 → 0.0.0-feat-siwx-20250923175950

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.
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.ConstantsUtil = void 0;
7
7
  const ConstantsUtil = exports.ConstantsUtil = {
8
- VERSION: '0.0.0-feat-siwx-20250923150457',
8
+ VERSION: '0.0.0-feat-siwx-20250923175950',
9
9
  EIP155: 'eip155',
10
10
  ADD_CHAIN_METHOD: 'wallet_addEthereumChain',
11
11
  WC_NAME_SUFFIX: '.reown.id',
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  export const ConstantsUtil = {
4
- VERSION: '0.0.0-feat-siwx-20250923150457',
4
+ VERSION: '0.0.0-feat-siwx-20250923175950',
5
5
  EIP155: 'eip155',
6
6
  ADD_CHAIN_METHOD: 'wallet_addEthereumChain',
7
7
  WC_NAME_SUFFIX: '.reown.id',
@@ -1,5 +1,5 @@
1
1
  import { BlockchainAdapter } from './BlockchainAdapter';
2
2
  export declare abstract class BitcoinBaseAdapter extends BlockchainAdapter {
3
- abstract signMessage(address: string, message: string): Promise<string>;
3
+ abstract signMessage(address: string, message: string, chainId?: string): Promise<string>;
4
4
  }
5
5
  //# sourceMappingURL=BitcoinBaseAdapter.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BitcoinBaseAdapter.d.ts","sourceRoot":"","sources":["../../../src/adapters/BitcoinBaseAdapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,8BAAsB,kBAAmB,SAAQ,iBAAiB;IAChE,QAAQ,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CACxE"}
1
+ {"version":3,"file":"BitcoinBaseAdapter.d.ts","sourceRoot":"","sources":["../../../src/adapters/BitcoinBaseAdapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,8BAAsB,kBAAmB,SAAQ,iBAAiB;IAChE,QAAQ,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAC1F"}
@@ -2,6 +2,6 @@ import { BlockchainAdapter } from './BlockchainAdapter';
2
2
  export declare abstract class SolanaBaseAdapter extends BlockchainAdapter {
3
3
  abstract signTransaction(data: any): Promise<string | null>;
4
4
  abstract sendTransaction(data: any): Promise<string | null>;
5
- abstract signMessage(address: string, message: string): Promise<string>;
5
+ abstract signMessage(address: string, message: string, chainId?: string): Promise<string>;
6
6
  }
7
7
  //# sourceMappingURL=SolanaBaseAdapter.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SolanaBaseAdapter.d.ts","sourceRoot":"","sources":["../../../src/adapters/SolanaBaseAdapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,8BAAsB,iBAAkB,SAAQ,iBAAiB;IAC/D,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAC3D,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAC3D,QAAQ,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CACxE"}
1
+ {"version":3,"file":"SolanaBaseAdapter.d.ts","sourceRoot":"","sources":["../../../src/adapters/SolanaBaseAdapter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,8BAAsB,iBAAkB,SAAQ,iBAAiB;IAC/D,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAC3D,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAC3D,QAAQ,CAAC,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;CAC1F"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-common-react-native",
3
- "version": "0.0.0-feat-siwx-20250923150457",
3
+ "version": "0.0.0-feat-siwx-20250923175950",
4
4
  "main": "lib/commonjs/index.js",
5
5
  "types": "lib/typescript/index.d.ts",
6
6
  "module": "lib/module/index.js",
@@ -1,5 +1,5 @@
1
1
  import { BlockchainAdapter } from './BlockchainAdapter';
2
2
 
3
3
  export abstract class BitcoinBaseAdapter extends BlockchainAdapter {
4
- abstract signMessage(address: string, message: string): Promise<string>;
4
+ abstract signMessage(address: string, message: string, chainId?: string): Promise<string>;
5
5
  }
@@ -3,5 +3,5 @@ import { BlockchainAdapter } from './BlockchainAdapter';
3
3
  export abstract class SolanaBaseAdapter extends BlockchainAdapter {
4
4
  abstract signTransaction(data: any): Promise<string | null>;
5
5
  abstract sendTransaction(data: any): Promise<string | null>;
6
- abstract signMessage(address: string, message: string): Promise<string>;
6
+ abstract signMessage(address: string, message: string, chainId?: string): Promise<string>;
7
7
  }
@@ -1,5 +1,5 @@
1
1
  export const ConstantsUtil = {
2
- VERSION: '0.0.0-feat-siwx-20250923150457',
2
+ VERSION: '0.0.0-feat-siwx-20250923175950',
3
3
 
4
4
  EIP155: 'eip155',
5
5
  ADD_CHAIN_METHOD: 'wallet_addEthereumChain',