diff --git a/wallets/onekey-extension/CHANGELOG.md b/wallets/onekey-extension/CHANGELOG.md
new file mode 100644
index 000000000..e4d87c4d4
--- /dev/null
+++ b/wallets/onekey-extension/CHANGELOG.md
@@ -0,0 +1,4 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
diff --git a/wallets/onekey-extension/README.md b/wallets/onekey-extension/README.md
new file mode 100644
index 000000000..0517108d6
--- /dev/null
+++ b/wallets/onekey-extension/README.md
@@ -0,0 +1,78 @@
+# @interchain-kit/onekey-extension
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## install
+
+```sh
+npm install @interchain-kit/onekey-extension
+```
+
+## Table of contents
+
+- [onekey-extension](#onekey-extension)
+ - [Install](#install)
+ - [Table of contents](#table-of-contents)
+- [Developing](#developing)
+- [Credits](#credits)
+
+## Developing
+
+When first cloning the repo:
+
+```sh
+yarn
+# build the prod packages. When devs would like to navigate to the source code, this will only navigate from references to their definitions (.d.ts files) between packages.
+yarn build
+```
+
+Or if you want to make your dev process smoother, you can run:
+
+```sh
+yarn
+# build the dev packages with .map files, this enables navigation from references to their source code between packages.
+yarn build:dev
+```
+
+## Interchain JavaScript Stack
+
+A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️
+
+| Category | Tools | Description |
+| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
+| **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
+| **Wallet Connectors** | [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)beta, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
+| **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)beta, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
+| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
+| **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)beta, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
+| **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
+| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
+| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
+| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
+
+## Credits
+
+🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
+
+## Disclaimer
+
+AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
+
+No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
diff --git a/wallets/onekey-extension/__tests__/first.test.ts b/wallets/onekey-extension/__tests__/first.test.ts
new file mode 100644
index 000000000..a8333131f
--- /dev/null
+++ b/wallets/onekey-extension/__tests__/first.test.ts
@@ -0,0 +1,3 @@
+it('works', () => {
+ console.log('hello test world!');
+});
\ No newline at end of file
diff --git a/wallets/onekey-extension/jest.config.js b/wallets/onekey-extension/jest.config.js
new file mode 100644
index 000000000..057a9420e
--- /dev/null
+++ b/wallets/onekey-extension/jest.config.js
@@ -0,0 +1,18 @@
+/** @type {import('ts-jest').JestConfigWithTsJest} */
+module.exports = {
+ preset: 'ts-jest',
+ testEnvironment: 'node',
+ transform: {
+ '^.+\\.tsx?$': [
+ 'ts-jest',
+ {
+ babelConfig: false,
+ tsconfig: 'tsconfig.json',
+ },
+ ],
+ },
+ transformIgnorePatterns: [`/node_modules/*`],
+ testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
+ modulePathIgnorePatterns: ['dist/*']
+};
diff --git a/wallets/onekey-extension/package.json b/wallets/onekey-extension/package.json
new file mode 100644
index 000000000..f43030190
--- /dev/null
+++ b/wallets/onekey-extension/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "@interchain-kit/onekey-extension",
+ "version": "0.3.49",
+ "author": "Hyperweb ",
+ "description": "interchain-kit wallet connector",
+ "main": "index.js",
+ "module": "esm/index.js",
+ "types": "index.d.ts",
+ "homepage": "https://github.com/interchain-kit/onekey-extension",
+ "license": "SEE LICENSE IN LICENSE",
+ "publishConfig": {
+ "access": "public",
+ "directory": "dist"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/interchain-kit/onekey-extension"
+ },
+ "bugs": {
+ "url": "https://github.com/interchain-kit/onekey-extension/issues"
+ },
+ "scripts": {
+ "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
+ "clean": "rimraf dist/**",
+ "prepare": "npm run build",
+ "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
+ "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
+ "lint": "eslint . --fix",
+ "test": "jest",
+ "test:watch": "jest --watch",
+ "watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w"
+ },
+ "keywords": [],
+ "gitHead": "3d11fb1fccadec958696aaa78817e2440360cf1c"
+}
diff --git a/wallets/onekey-extension/src/constant.ts b/wallets/onekey-extension/src/constant.ts
new file mode 100644
index 000000000..f933ba28b
--- /dev/null
+++ b/wallets/onekey-extension/src/constant.ts
@@ -0,0 +1,2 @@
+export const ICON =
+ 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiByeD0iNi42NjY2NyIgZmlsbD0iIzQ0RDYyQyIvPgo8cGF0aCBkPSJNMTcuNDQ1NyA2Ljc4MzJMMTIuOTk0NSA2Ljc4MzJMMTIuMjEzNiA5LjE0NDQ2SDE0LjY4NTlMMTQuNjg1OSAxNC4xMTgySDE3LjQ0NTdWNi43ODMyWiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMS4wNzY0IDIwLjEzNzhDMjEuMDc2NCAyMi45NDEzIDE4LjgwMzcgMjUuMjE0MSAxNi4wMDAxIDI1LjIxNDFDMTMuMTk2NiAyNS4yMTQxIDEwLjkyMzggMjIuOTQxMyAxMC45MjM4IDIwLjEzNzhDMTAuOTIzOCAxNy4zMzQyIDEzLjE5NjYgMTUuMDYxNSAxNi4wMDAxIDE1LjA2MTVDMTguODAzNyAxNS4wNjE1IDIxLjA3NjQgMTcuMzM0MiAyMS4wNzY0IDIwLjEzNzhaTTE4Ljc3MTggMjAuMTM3OEMxOC43NzE4IDIxLjY2ODUgMTcuNTMwOSAyMi45MDk1IDE2LjAwMDEgMjIuOTA5NUMxNC40NjkzIDIyLjkwOTUgMTMuMjI4NCAyMS42Njg1IDEzLjIyODQgMjAuMTM3OEMxMy4yMjg0IDE4LjYwNyAxNC40NjkzIDE3LjM2NiAxNi4wMDAxIDE3LjM2NkMxNy41MzA5IDE3LjM2NiAxOC43NzE4IDE4LjYwNyAxOC43NzE4IDIwLjEzNzhaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K';
diff --git a/wallets/onekey-extension/src/index.ts b/wallets/onekey-extension/src/index.ts
new file mode 100644
index 000000000..d5336b0d7
--- /dev/null
+++ b/wallets/onekey-extension/src/index.ts
@@ -0,0 +1,29 @@
+import {
+ CosmosWallet,
+ EthereumWallet,
+ ExtensionWallet,
+ selectWalletByPlatform,
+ SolanaWallet,
+ WCMobileWebWallet,
+} from '@interchain-kit/core';
+
+import { OneKeywalletExtensionInfo } from './registry';
+
+export * from './registry';
+
+const web = new ExtensionWallet(OneKeywalletExtensionInfo);
+
+web.setNetworkWallet('cosmos', new CosmosWallet(OneKeywalletExtensionInfo));
+web.setNetworkWallet('eip155', new EthereumWallet(OneKeywalletExtensionInfo));
+web.setNetworkWallet('solana', new SolanaWallet(OneKeywalletExtensionInfo));
+
+const onekeyWallet = selectWalletByPlatform(
+ {
+ mobileBrowser: new WCMobileWebWallet(OneKeywalletExtensionInfo),
+ inAppBrowser: web,
+ desktopBrowser: web,
+ },
+ OneKeywalletExtensionInfo
+);
+
+export { onekeyWallet };
diff --git a/wallets/onekey-extension/src/registry.ts b/wallets/onekey-extension/src/registry.ts
new file mode 100644
index 000000000..dbd657ebc
--- /dev/null
+++ b/wallets/onekey-extension/src/registry.ts
@@ -0,0 +1,35 @@
+import { Wallet } from '@interchain-kit/core';
+
+import { ICON } from './constant';
+
+export const OneKeywalletExtensionInfo: Wallet = {
+ windowKey: '$onekey.ethereum',
+ cosmosKey: '$onekey.cosmos',
+ ethereumKey: '$onekey.ethereum',
+ solanaKey: '$onekey.solana',
+ walletIdentifyKey: '$onekey.ethereum.isOneKey',
+ name: 'onekeywallet-extension',
+ prettyName: 'OneKey',
+ logo: ICON,
+ mode: 'extension',
+ keystoreChange: 'onekey_keystorechange',
+ downloads: [
+ {
+ device: 'desktop',
+ browser: 'chrome',
+ link: 'https://chrome.google.com/webstore/detail/onekey/jnmbobjmhlngoefaiojfljckilhhlhcj',
+ },
+ {
+ link: 'https://onekey.so/download',
+ },
+ ],
+ walletconnect: {
+ name: 'OneKey',
+ projectId:
+ '1aedbcfc1f31aade56ca34c38b0a1607b41cccfa3de93c946ef3b4ba2dfab11c',
+ },
+ walletConnectLink: {
+ android: `onekey-wallet://wc?uri={wc-uri}`,
+ ios: `onekey-wallet://wc?uri={wc-uri}`,
+ },
+};
diff --git a/wallets/onekey-extension/tsconfig.esm.json b/wallets/onekey-extension/tsconfig.esm.json
new file mode 100644
index 000000000..800d7506d
--- /dev/null
+++ b/wallets/onekey-extension/tsconfig.esm.json
@@ -0,0 +1,9 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist/esm",
+ "module": "es2022",
+ "rootDir": "src/",
+ "declaration": false
+ }
+}
diff --git a/wallets/onekey-extension/tsconfig.json b/wallets/onekey-extension/tsconfig.json
new file mode 100644
index 000000000..1a9d5696c
--- /dev/null
+++ b/wallets/onekey-extension/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist",
+ "rootDir": "src/"
+ },
+ "include": ["src/**/*.ts"],
+ "exclude": ["dist", "node_modules", "**/*.spec.*", "**/*.test.*"]
+}
diff --git a/wallets/onekey-mobile/CHANGELOG.md b/wallets/onekey-mobile/CHANGELOG.md
new file mode 100644
index 000000000..e4d87c4d4
--- /dev/null
+++ b/wallets/onekey-mobile/CHANGELOG.md
@@ -0,0 +1,4 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
diff --git a/wallets/onekey-mobile/README.md b/wallets/onekey-mobile/README.md
new file mode 100644
index 000000000..8349450be
--- /dev/null
+++ b/wallets/onekey-mobile/README.md
@@ -0,0 +1,78 @@
+# @interchain-kit/onekey-mobile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## install
+
+```sh
+npm install @interchain-kit/onekey-mobile
+```
+
+## Table of contents
+
+- [onekey-mobile](#onekey-mobile)
+ - [Install](#install)
+ - [Table of contents](#table-of-contents)
+- [Developing](#developing)
+- [Credits](#credits)
+
+## Developing
+
+When first cloning the repo:
+
+```sh
+yarn
+# build the prod packages. When devs would like to navigate to the source code, this will only navigate from references to their definitions (.d.ts files) between packages.
+yarn build
+```
+
+Or if you want to make your dev process smoother, you can run:
+
+```sh
+yarn
+# build the dev packages with .map files, this enables navigation from references to their source code between packages.
+yarn build:dev
+```
+
+## Interchain JavaScript Stack
+
+A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️
+
+| Category | Tools | Description |
+| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
+| **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
+| **Wallet Connectors** | [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)beta, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
+| **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)beta, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
+| **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
+| **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)beta, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
+| **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
+| **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
+| **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
+| **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
+
+## Credits
+
+🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
+
+## Disclaimer
+
+AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
+
+No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
diff --git a/wallets/onekey-mobile/__tests__/first.test.ts b/wallets/onekey-mobile/__tests__/first.test.ts
new file mode 100644
index 000000000..a8333131f
--- /dev/null
+++ b/wallets/onekey-mobile/__tests__/first.test.ts
@@ -0,0 +1,3 @@
+it('works', () => {
+ console.log('hello test world!');
+});
\ No newline at end of file
diff --git a/wallets/onekey-mobile/jest.config.js b/wallets/onekey-mobile/jest.config.js
new file mode 100644
index 000000000..057a9420e
--- /dev/null
+++ b/wallets/onekey-mobile/jest.config.js
@@ -0,0 +1,18 @@
+/** @type {import('ts-jest').JestConfigWithTsJest} */
+module.exports = {
+ preset: 'ts-jest',
+ testEnvironment: 'node',
+ transform: {
+ '^.+\\.tsx?$': [
+ 'ts-jest',
+ {
+ babelConfig: false,
+ tsconfig: 'tsconfig.json',
+ },
+ ],
+ },
+ transformIgnorePatterns: [`/node_modules/*`],
+ testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$',
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
+ modulePathIgnorePatterns: ['dist/*']
+};
diff --git a/wallets/onekey-mobile/package.json b/wallets/onekey-mobile/package.json
new file mode 100644
index 000000000..d4d98544b
--- /dev/null
+++ b/wallets/onekey-mobile/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "@interchain-kit/onekey-mobile",
+ "version": "0.3.49",
+ "author": "Cosmology ",
+ "description": "interchain-kit wallet connector",
+ "main": "index.js",
+ "module": "esm/index.js",
+ "types": "index.d.ts",
+ "homepage": "https://github.com/interchain-kit/onekey-mobile",
+ "license": "SEE LICENSE IN LICENSE",
+ "publishConfig": {
+ "access": "public",
+ "directory": "dist"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/interchain-kit/onekey-mobile"
+ },
+ "bugs": {
+ "url": "https://github.com/interchain-kit/onekey-mobile/issues"
+ },
+ "scripts": {
+ "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
+ "clean": "rimraf dist/**",
+ "prepare": "npm run build",
+ "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
+ "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
+ "lint": "eslint . --fix",
+ "test": "jest",
+ "test:watch": "jest --watch",
+ "watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w"
+ },
+ "keywords": [],
+ "dependencies": {
+ "@interchain-kit/core": "0.3.49"
+ },
+ "gitHead": "3d11fb1fccadec958696aaa78817e2440360cf1c"
+}
diff --git a/wallets/onekey-mobile/src/constant.ts b/wallets/onekey-mobile/src/constant.ts
new file mode 100644
index 000000000..f933ba28b
--- /dev/null
+++ b/wallets/onekey-mobile/src/constant.ts
@@ -0,0 +1,2 @@
+export const ICON =
+ 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiByeD0iNi42NjY2NyIgZmlsbD0iIzQ0RDYyQyIvPgo8cGF0aCBkPSJNMTcuNDQ1NyA2Ljc4MzJMMTIuOTk0NSA2Ljc4MzJMMTIuMjEzNiA5LjE0NDQ2SDE0LjY4NTlMMTQuNjg1OSAxNC4xMTgySDE3LjQ0NTdWNi43ODMyWiIgZmlsbD0iYmxhY2siLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMS4wNzY0IDIwLjEzNzhDMjEuMDc2NCAyMi45NDEzIDE4LjgwMzcgMjUuMjE0MSAxNi4wMDAxIDI1LjIxNDFDMTMuMTk2NiAyNS4yMTQxIDEwLjkyMzggMjIuOTQxMyAxMC45MjM4IDIwLjEzNzhDMTAuOTIzOCAxNy4zMzQyIDEzLjE5NjYgMTUuMDYxNSAxNi4wMDAxIDE1LjA2MTVDMTguODAzNyAxNS4wNjE1IDIxLjA3NjQgMTcuMzM0MiAyMS4wNzY0IDIwLjEzNzhaTTE4Ljc3MTggMjAuMTM3OEMxOC43NzE4IDIxLjY2ODUgMTcuNTMwOSAyMi45MDk1IDE2LjAwMDEgMjIuOTA5NUMxNC40NjkzIDIyLjkwOTUgMTMuMjI4NCAyMS42Njg1IDEzLjIyODQgMjAuMTM3OEMxMy4yMjg0IDE4LjYwNyAxNC40NjkzIDE3LjM2NiAxNi4wMDAxIDE3LjM2NkMxNy41MzA5IDE3LjM2NiAxOC43NzE4IDE4LjYwNyAxOC43NzE4IDIwLjEzNzhaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K';
diff --git a/wallets/onekey-mobile/src/index.ts b/wallets/onekey-mobile/src/index.ts
new file mode 100644
index 000000000..4bf937a7a
--- /dev/null
+++ b/wallets/onekey-mobile/src/index.ts
@@ -0,0 +1,9 @@
+import { WCMobileWebWallet } from '@interchain-kit/core';
+
+import { OneKeyMobileInfo } from './registry';
+
+export class OneKeyMobile extends WCMobileWebWallet {}
+
+const onekeyMobile = new OneKeyMobile(OneKeyMobileInfo);
+
+export { onekeyMobile };
diff --git a/wallets/onekey-mobile/src/registry.ts b/wallets/onekey-mobile/src/registry.ts
new file mode 100644
index 000000000..fabb5820e
--- /dev/null
+++ b/wallets/onekey-mobile/src/registry.ts
@@ -0,0 +1,59 @@
+import { OS, Wallet } from '@interchain-kit/core';
+
+import { ICON } from './constant';
+
+export const OneKeyMobileInfo: Wallet = {
+ name: 'onekey-mobile',
+ prettyName: 'OneKey Mobile',
+ logo: ICON,
+ mode: 'wallet-connect',
+ downloads: [
+ {
+ device: 'mobile',
+ os: 'android',
+ link: 'https://play.google.com/store/apps/details?id=so.onekey.app.wallet',
+ },
+ {
+ device: 'mobile',
+ os: 'ios',
+ link: 'https://apps.apple.com/app/onekey-secure-crypto-wallet/id1609559473',
+ },
+ {
+ link: 'https://chrome.google.com/webstore/detail/onekey/jnmbobjmhlngoefaiojfljckilhhlhcj',
+ },
+ ],
+ walletConnectLink: {
+ android: `onekey-wallet://wc?uri={wc-uri}`,
+ ios: `onekey-wallet://wc?uri={wc-uri}`,
+ },
+ walletconnect: {
+ name: 'OneKey Wallet',
+ projectId:
+ '1aedbcfc1f31aade56ca34c38b0a1607b41cccfa3de93c946ef3b4ba2dfab11c',
+ encoding: 'base64',
+ mobile: {
+ native: {
+ ios: 'onekey-wallet:',
+ android: 'onekey-wallet:',
+ },
+ },
+ formatNativeUrl: (
+ appUrl: string,
+ wcUri: string,
+ os: OS | undefined,
+ _name: string
+ ): string => {
+
+ const plainAppUrl = appUrl.split(':')[0];
+ const encodedWcUrl = encodeURIComponent(wcUri);
+ switch (os) {
+ case 'ios':
+ return `${plainAppUrl}://wc?uri=${encodedWcUrl}`;
+ case 'android':
+ return `${plainAppUrl}://wc?uri=${encodedWcUrl}`;
+ default:
+ return `${plainAppUrl}://wc?uri=${encodedWcUrl}`;
+ }
+ },
+ },
+};
diff --git a/wallets/onekey-mobile/tsconfig.esm.json b/wallets/onekey-mobile/tsconfig.esm.json
new file mode 100644
index 000000000..800d7506d
--- /dev/null
+++ b/wallets/onekey-mobile/tsconfig.esm.json
@@ -0,0 +1,9 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist/esm",
+ "module": "es2022",
+ "rootDir": "src/",
+ "declaration": false
+ }
+}
diff --git a/wallets/onekey-mobile/tsconfig.json b/wallets/onekey-mobile/tsconfig.json
new file mode 100644
index 000000000..1a9d5696c
--- /dev/null
+++ b/wallets/onekey-mobile/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist",
+ "rootDir": "src/"
+ },
+ "include": ["src/**/*.ts"],
+ "exclude": ["dist", "node_modules", "**/*.spec.*", "**/*.test.*"]
+}