diff --git a/public/images/logos/wallets/gatewallet.svg b/public/images/logos/wallets/gatewallet.svg
new file mode 100644
index 000000000..0cf19ec5e
--- /dev/null
+++ b/public/images/logos/wallets/gatewallet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/.editorconfig b/wallets/gatewallet-extension/.editorconfig
new file mode 100644
index 000000000..4a7ea3036
--- /dev/null
+++ b/wallets/gatewallet-extension/.editorconfig
@@ -0,0 +1,12 @@
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/wallets/gatewallet-extension/.eslintignore b/wallets/gatewallet-extension/.eslintignore
new file mode 100644
index 000000000..91689c308
--- /dev/null
+++ b/wallets/gatewallet-extension/.eslintignore
@@ -0,0 +1,7 @@
+node_modules/
+dist/
+main/
+module/
+types/
+coverage/
+/index.ts
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/.eslintrc.json b/wallets/gatewallet-extension/.eslintrc.json
new file mode 100644
index 000000000..d95fc326b
--- /dev/null
+++ b/wallets/gatewallet-extension/.eslintrc.json
@@ -0,0 +1,82 @@
+{
+ "plugins": [
+ "@typescript-eslint",
+ "simple-import-sort",
+ "unused-imports"
+ ],
+ "extends": [
+ "eslint:recommended",
+ "plugin:@typescript-eslint/recommended",
+ // configures both eslint-plugin-prettier and eslint-config-prettier
+ "plugin:prettier/recommended"
+ ],
+ "parser": "@typescript-eslint/parser",
+ "parserOptions": {
+ "ecmaVersion": 2020,
+ "sourceType": "module",
+ "project": "tsconfig.json"
+ },
+ "env": {
+ "es6": true,
+ "browser": true,
+ "node": true,
+ "jest": true
+ },
+ "rules": {
+ "simple-import-sort/imports": 2,
+ "simple-import-sort/exports": 2,
+ "prettier/prettier": 2,
+ "unused-imports/no-unused-imports": 2,
+ "no-console": 1,
+ "no-debugger": 2,
+ "no-alert": 2,
+ "no-await-in-loop": 0,
+ "no-prototype-builtins": 0,
+ "no-return-assign": [
+ "error",
+ "except-parens"
+ ],
+ "no-restricted-syntax": [
+ 2,
+ "ForInStatement",
+ "LabeledStatement",
+ "WithStatement"
+ ],
+ "no-unused-vars": 0,
+ "@typescript-eslint/no-unused-vars": [
+ "warn",
+ {
+ "argsIgnorePattern": "React|res|next|^_"
+ }
+ ],
+ "prefer-const": [
+ "error",
+ {
+ "destructuring": "all"
+ }
+ ],
+ "no-unused-expressions": [
+ 2,
+ {
+ "allowTaggedTemplates": true
+ }
+ ],
+ "comma-dangle": 0,
+ "jsx-quotes": [
+ 2,
+ "prefer-double"
+ ],
+ "linebreak-style": [
+ "error",
+ "unix"
+ ],
+ "quotes": [
+ 2,
+ "single",
+ {
+ "avoidEscape": true,
+ "allowTemplateLiterals": true
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/.gitignore b/wallets/gatewallet-extension/.gitignore
new file mode 100644
index 000000000..a91a2f788
--- /dev/null
+++ b/wallets/gatewallet-extension/.gitignore
@@ -0,0 +1,48 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+
+# dist
+main
+module
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Compiled binary addons (http://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules
+jspm_packages
+
+# Optional npm cache directory
+.npm
+
+# Optional REPL history
+.node_repl_history
+
+# Editors
+.idea
+
+# Lib
+lib
+
+# npm package lock
+package-lock.json
+yarn.lock
+
+# others
+.DS_Store
diff --git a/wallets/gatewallet-extension/.npmignore b/wallets/gatewallet-extension/.npmignore
new file mode 100644
index 000000000..cc2605fa8
--- /dev/null
+++ b/wallets/gatewallet-extension/.npmignore
@@ -0,0 +1,32 @@
+*.log
+npm-debug.log*
+
+# Coverage directory used by tools like istanbul
+coverage
+.nyc_output
+
+# Dependency directories
+node_modules
+
+# npm package lock
+package-lock.json
+yarn.lock
+
+# project files
+__fixtures__
+__tests__
+.babelrc
+.babelrc.js
+.editorconfig
+.eslintignore
+.eslintrc
+.eslintrc.js
+.gitignore
+.travis.yml
+.vscode
+CHANGELOG.md
+examples
+jest.config.js
+package.json
+src
+test
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/.npmrc b/wallets/gatewallet-extension/.npmrc
new file mode 100644
index 000000000..a21347f1b
--- /dev/null
+++ b/wallets/gatewallet-extension/.npmrc
@@ -0,0 +1 @@
+scripts-prepend-node-path=true
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/.prettierrc.json b/wallets/gatewallet-extension/.prettierrc.json
new file mode 100644
index 000000000..4aa2a0dc9
--- /dev/null
+++ b/wallets/gatewallet-extension/.prettierrc.json
@@ -0,0 +1,7 @@
+{
+ "trailingComma": "es5",
+ "tabWidth": 2,
+ "semi": true,
+ "singleQuote": true,
+ "useTabs": false
+}
\ No newline at end of file
diff --git a/wallets/gatewallet-extension/CHANGELOG.md b/wallets/gatewallet-extension/CHANGELOG.md
new file mode 100644
index 000000000..fd749d9a9
--- /dev/null
+++ b/wallets/gatewallet-extension/CHANGELOG.md
@@ -0,0 +1,8 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+# 1.0.0 (2022-07-31)
+
+**Note:** Version bump only for package @cosmos-kit/core
diff --git a/wallets/gatewallet-extension/LICENSE b/wallets/gatewallet-extension/LICENSE
new file mode 100644
index 000000000..b3ac161b5
--- /dev/null
+++ b/wallets/gatewallet-extension/LICENSE
@@ -0,0 +1,33 @@
+The Clear BSD License
+
+Copyright (c) 2024 Cosmos Kit Contributors
+Copyright (c) 2024 Interweb, Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted (subject to the limitations in the disclaimer
+below) provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ * Neither the name of the copyright holder nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY
+THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
+IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff --git a/wallets/gatewallet-extension/README.md b/wallets/gatewallet-extension/README.md
new file mode 100644
index 000000000..0367b0bb9
--- /dev/null
+++ b/wallets/gatewallet-extension/README.md
@@ -0,0 +1,41 @@
+# @cosmos-kit/gatewallet-extension
+
+
+
+Cosmos Kit is a univeral wallet adapter for developers to build apps that quickly and easily interact with Cosmos blockchains and wallets.
+
+@cosmos-kit/gatewallet is the gatewallet integration for Cosmos Kit.
+
+## Related
+
+Checkout these related projects:
+
+* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
+* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
+* [chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
+* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
+* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
+* [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
+* [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
+
+## Credits
+
+🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.zone/validator)
+
+
+## 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/gatewallet/index.ts b/wallets/gatewallet/index.ts
new file mode 100644
index 000000000..deae8cf81
--- /dev/null
+++ b/wallets/gatewallet/index.ts
@@ -0,0 +1,2 @@
+// not for module, but for local development..
+export * from './src';
\ No newline at end of file
diff --git a/wallets/gatewallet/package.json b/wallets/gatewallet/package.json
new file mode 100644
index 000000000..dd1e8178e
--- /dev/null
+++ b/wallets/gatewallet/package.json
@@ -0,0 +1,58 @@
+{
+ "name": "@cosmos-kit/gatewallet",
+ "version": "1.0.0",
+ "description": "cosmos-kit wallet connector",
+ "author": "developers@cosmology.zone",
+ "contributors": [
+ {
+ "name": "gatewallet"
+ }
+ ],
+ "homepage": "https://github.com/cosmology-tech/cosmos-kit#readme",
+ "license": "SEE LICENSE IN LICENSE",
+ "main": "cjs/index.js",
+ "module": "esm/index.js",
+ "types": "cjs/index.d.ts",
+ "directories": {
+ "lib": "src"
+ },
+ "files": [
+ "cjs",
+ "esm",
+ "!CHANGELOG.md",
+ "!LICENSE"
+ ],
+ "scripts": {
+ "build:cjs": "yarn tsc -p tsconfig.json --outDir cjs --module commonjs || true",
+ "build:esm": "yarn tsc -p tsconfig.json --outDir esm --module es2022 || true",
+ "clean:cjs": "rimraf cjs",
+ "clean:esm": "rimraf esm",
+ "clean": "npm run clean:cjs && npm run clean:esm",
+ "build": "npm run clean && npm run build:cjs && npm run build:esm",
+ "prepare": "npm run build",
+ "lint": "eslint --ext .tsx,.ts .",
+ "format": "eslint --ext .tsx,.ts --fix .",
+ "test": "jest",
+ "test:watch": "jest --watch",
+ "test:debug": "node --inspect node_modules/.bin/jest --runInBand"
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/cosmology-tech/cosmos-kit"
+ },
+ "keywords": [
+ "cosmos",
+ "cosmos-kit",
+ "gatewallet",
+ "wallet"
+ ],
+ "bugs": {
+ "url": "https://github.com/cosmology-tech/cosmos-kit/issues"
+ },
+ "dependencies": {
+ "@cosmos-kit/gatewallet-extension": "^1.0.0"
+ }
+}
\ No newline at end of file
diff --git a/wallets/gatewallet/src/index.ts b/wallets/gatewallet/src/index.ts
new file mode 100644
index 000000000..25d305521
--- /dev/null
+++ b/wallets/gatewallet/src/index.ts
@@ -0,0 +1,3 @@
+import { wallets as ext } from '@cosmos-kit/gatewallet-extension';
+
+export const wallets = [...ext];
diff --git a/wallets/gatewallet/tsconfig.json b/wallets/gatewallet/tsconfig.json
new file mode 100644
index 000000000..cddc39bc4
--- /dev/null
+++ b/wallets/gatewallet/tsconfig.json
@@ -0,0 +1,9 @@
+{
+ "extends": "../../tsconfig.json",
+ "compilerOptions": {
+ "baseUrl": ".",
+ "rootDir": "src"
+ },
+ "include": ["src/**/*"],
+ "exclude": ["node_modules"]
+}