@reown/appkit-coinbase-react-native 0.0.0-feat-multichain-20250925152655 → 0.0.0-feat-multichain-20250925153407

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.
@@ -1,3 +1,4 @@
1
+ import type { MMKV } from 'react-native-mmkv';
1
2
  import type { Namespaces } from '@reown/appkit-common-react-native';
2
3
  import type { KVStorage, WalletMobileSDKProviderOptions } from '@coinbase/wallet-mobile-sdk/build/WalletMobileSDKEVMProvider';
3
4
  import type { COINBASE_METHODS } from './utils';
@@ -10,7 +11,7 @@ export type CoinbaseSession = {
10
11
  namespaces: Namespaces;
11
12
  };
12
13
  export type CoinbaseConnectorConfig = {
13
- storage?: KVStorage;
14
+ storage?: KVStorage | MMKV;
14
15
  jsonRpcUrl?: string;
15
16
  };
16
17
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,EACV,SAAS,EACT,8BAA8B,EAC/B,MAAM,8DAA8D,CAAC;AACtE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,MAAM,MAAM,sBAAsB,GAAG,IAAI,CAAC,8BAA8B,EAAE,SAAS,GAAG,SAAS,CAAC,GAAG;IACjG,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AAEnC,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D,MAAM,MAAM,eAAe,GAAG;IAC5B,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACpE,OAAO,KAAK,EACV,SAAS,EACT,8BAA8B,EAC/B,MAAM,8DAA8D,CAAC;AACtE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,MAAM,MAAM,sBAAsB,GAAG,IAAI,CAAC,8BAA8B,EAAE,SAAS,GAAG,SAAS,CAAC,GAAG;IACjG,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;AAEnC,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE7D,MAAM,MAAM,eAAe,GAAG;IAC5B,UAAU,EAAE,UAAU,CAAC;CACxB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,OAAO,CAAC,EAAE,SAAS,GAAG,IAAI,CAAC;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-coinbase-react-native",
3
- "version": "0.0.0-feat-multichain-20250925152655",
3
+ "version": "0.0.0-feat-multichain-20250925153407",
4
4
  "main": "lib/commonjs/index.js",
5
5
  "types": "lib/typescript/index.d.ts",
6
6
  "module": "lib/module/index.js",
@@ -37,7 +37,7 @@
37
37
  "provenance": true
38
38
  },
39
39
  "dependencies": {
40
- "@reown/appkit-common-react-native": "0.0.0-feat-multichain-20250925152655"
40
+ "@reown/appkit-common-react-native": "0.0.0-feat-multichain-20250925153407"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@coinbase/wallet-mobile-sdk": ">=1.1.2",
package/src/types.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import type { MMKV } from 'react-native-mmkv';
1
2
  import type { Namespaces } from '@reown/appkit-common-react-native';
2
3
  import type {
3
4
  KVStorage,
@@ -18,6 +19,6 @@ export type CoinbaseSession = {
18
19
  };
19
20
 
20
21
  export type CoinbaseConnectorConfig = {
21
- storage?: KVStorage;
22
+ storage?: KVStorage | MMKV;
22
23
  jsonRpcUrl?: string;
23
24
  };