Skip to content

Commit

Permalink
Merge pull request #499 from VanishMax/feat/prax-extension
Browse files Browse the repository at this point in the history
feat(prax-extension): add support for Prax wallet
  • Loading branch information
pyramation authored Sep 30, 2024
2 parents 1e159bb + 9ba74c6 commit 977aa71
Show file tree
Hide file tree
Showing 22 changed files with 902 additions and 4 deletions.
12 changes: 12 additions & 0 deletions wallets/prax-extension/.editorconfig
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions wallets/prax-extension/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
dist/
main/
module/
types/
coverage/
/index.ts
82 changes: 82 additions & 0 deletions wallets/prax-extension/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -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
}
]
}
}
49 changes: 49 additions & 0 deletions wallets/prax-extension/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# dist
main
module
dist

# 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
32 changes: 32 additions & 0 deletions wallets/prax-extension/.npmignore
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions wallets/prax-extension/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
scripts-prepend-node-path=true
7 changes: 7 additions & 0 deletions wallets/prax-extension/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"useTabs": false
}
4 changes: 4 additions & 0 deletions wallets/prax-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
33 changes: 33 additions & 0 deletions wallets/prax-extension/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
The Clear BSD License

Copyright (c) 2024 Cosmos Kit Contributors
Copyright (c) 2024 Interweb, Inc. <[email protected]>
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.
40 changes: 40 additions & 0 deletions wallets/prax-extension/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# @cosmos-kit/prax-extension

<p align="center" width="100%">
<img height="90" src="https://user-images.githubusercontent.com/545047/190171432-5526db8f-9952-45ce-a745-bea4302f912b.svg" />
</p>

<p align="center" width="100%">
<a href="https://github.com/cosmology-tech/cosmos-kit/actions/workflows/run-tests.yml">
<img height="20" src="https://github.com/cosmology-tech/cosmos-kit/actions/workflows/run-tests.yml/badge.svg" />
</a>
<a href="https://github.com/cosmology-tech/cosmos-kit/blob/main/wallets/prax-extension/LICENSE"><img height="20" src="https://img.shields.io/badge/license-BSD%203--Clause%20Clear-blue.svg"></a>
<a href="https://www.npmjs.com/package/@cosmos-kit/prax-extension"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/cosmos-kit?filename=wallets%2Fprax-extension%2Fpackage.json"></a>
</p>

Cosmos Kit is a univeral wallet adapter for developers to build apps that quickly and easily interact with Cosmos blockchains and wallets.

@cosmos-kit/prax-extension is the prax integration for CosmosKit.

## 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.
2 changes: 2 additions & 0 deletions wallets/prax-extension/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// not for module, but for local development..
export * from './src';
68 changes: 68 additions & 0 deletions wallets/prax-extension/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"name": "@cosmos-kit/prax-extension",
"version": "0.0.1",
"description": "cosmos-kit wallet connector for Prax",
"homepage": "https://github.com/cosmology-tech/cosmos-kit#readme",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist",
"!CHANGELOG.md",
"!LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsup src/index.ts --dts --format esm,cjs",
"prepare": "npm run build",
"lint": "eslint --ext .tsx,.ts .",
"format": "eslint --ext .tsx,.ts --fix ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit"
},
"keywords": [
"cosmos-kit",
"cosmos",
"prax",
"wallet"
],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"dependencies": {
"@chain-registry/keplr": "1.68.2",
"@cosmos-kit/core": "^2.13.1"
},
"devDependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@penumbra-zone/bech32m": "^7.0.0",
"@penumbra-zone/client": "^18.1.0",
"@penumbra-zone/protobuf": "^6.0.0",
"@penumbra-zone/transport-dom": "^7.5.0",
"tsup": "^8.2.4"
},
"peerDependencies": {
"@cosmjs/amino": ">=0.32.3",
"@cosmjs/proto-signing": ">=0.32.3"
},
"gitHead": "2b5f2de5d9ed1580be4137736dfc6cce779679d1"
}
6 changes: 6 additions & 0 deletions wallets/prax-extension/src/constant.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export const PRAX_ORIGIN = new URL(
'chrome-extension://lkpmkhpnhknhmibgnmmhdhgdilepfghe'
).origin;

export const ICON =
'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogdXJsKCNsaW5lYXItZ3JhZGllbnQpOwogICAgICAgIHN0cm9rZS13aWR0aDogMHB4OwogICAgICB9CiAgICA8L3N0eWxlPgogICAgPGxpbmVhckdyYWRpZW50IGlkPSJsaW5lYXItZ3JhZGllbnQiIHgxPSIxMzcuNzIiIHkxPSI0NDUuMzciIHgyPSIzNjYuOTYiIHkyPSIxMzguMTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KICAgICAgPHN0b3Agb2Zmc2V0PSIuMTYiIHN0b3AtY29sb3I9IiNmZjkwMmYiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIuMzgiIHN0b3AtY29sb3I9IiNkMmIwNmYiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIuNTkiIHN0b3AtY29sb3I9IiNhY2NjYTgiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIuNzUiIHN0b3AtY29sb3I9IiM5NGRkY2IiLz4KICAgICAgPHN0b3Agb2Zmc2V0PSIuODQiIHN0b3AtY29sb3I9IiM4YmU0ZDkiLz4KICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgPC9kZWZzPgogIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwMy45NywyMjEuODZjMTMuNDUtNC4zNCwyNC4wMS0xMC4zOCwzMS4zOC0xNy45Nyw2LjUyLTYuNzEsMTEuMDUtMTQuODMsMTQuMjUtMjUuNTQsMy4zNi0xMS4yNyw1LTI0Ljc3LDUtNDEuMjl2LTI1LjM5aC0zNS4yNnYzMy4yMmMwLDguMzgtLjg2LDE1LjMzLTIuNjIsMjEuMjMtMS44Miw2LjA4LTQuNDUsMTAuNzUtOC4yOCwxNC43LTQuMjIsNC4zNC0xMC4wOCw3Ljc0LTE3LjQzLDEwLjExLTguOTgsMi45LTIwLjM5LDQuMzYtMzMuOTEsNC4zNmgtODguMjh2MzUuMmg2Ny4wNGMyNy40MiwwLDUwLjM0LTIuOTEsNjguMTEtOC42NVpNMTg4LjIsMTgyLjIzYzUuOTEtMS45MSwxMC41MS00LjUzLDEzLjY4LTcuNzgsMi43Ni0yLjg0LDQuNy02LjMyLDYuMDctMTAuOTQsMS41LTUuMDQsMi4yMy0xMS4xMywyLjIzLTE4LjYxdi0zMy4yMmgtMzUuODF2MzIuMTFjMCwxLjQtLjE2LDIuNjEtLjQ4LDMuNy0uNCwxLjM1LTEuMDQsMi40Ny0xLjk2LDMuNDEtLjk2Ljk5LTIuMjIsMS43NS0zLjc0LDIuMjQtMS40OC40OC0zLjI2LjcyLTUuMzEuNzJoLTk0LjA3djMyLjNoODguMjhjMTIuNTcsMCwyMy4wMy0xLjMyLDMxLjEtMy45MlpNMTYyLjksNDA4LjQ5aC05NC4wN3YzMi41NGg1OC44NXY0Ny4zaDM3LjU2di03OC45MmMwLS4zLS4wMS0uNTMtLjAzLS43LS4zOC0uMS0xLjEtLjIyLTIuMzEtLjIyWk00MDEsMTc0LjQ1YzMuMTcsMy4yNiw3Ljc3LDUuODgsMTMuNjgsNy43OCw4LjA3LDIuNiwxOC41MywzLjkyLDMxLjEsMy45Mmg2Ny4wMWMtNS4yNi05LjkyLTExLjYzLTE4Ljc5LTE5LjMxLTI2LjY5LTEuODgtMS45My0zLjgzLTMuOC01Ljg3LTUuNjJoLTQ3LjYyYy0yLjA0LDAtMy44Mi0uMjQtNS4zLS43Mi0xLjUyLS40OS0yLjc4LTEuMjUtMy43NS0yLjI0LS45Mi0uOTQtMS41Ni0yLjA2LTEuOTYtMy40Mi0uMzItMS4wOC0uNDgtMi4yOS0uNDgtMy42OXYtMjAuOTJjLTEwLjk1LTMuMTctMjIuOTEtNS42Ni0zNS44MS03LjQ5djI5LjUyYzAsNy40OC43MywxMy41NywyLjIzLDE4LjYxLDEuMzgsNC42MiwzLjMxLDguMDksNi4wOCwxMC45NFpNMjAxLjg4LDM3OC43NGMtMy4xNy0zLjI2LTcuNzctNS44OC0xMy42OC03Ljc4LTguMDctMi42LTE4LjUzLTMuOTItMzEuMS0zLjkyaC04OC4yOHYzMi4zaDk0LjA3YzIuMDUsMCwzLjgzLjI0LDUuMzEuNzIsMS41LjQ4LDIuNzYsMS4yMywzLjczLDIuMjMuOTIuOTUsMS41NiwyLjA3LDEuOTcsMy40My4zMiwxLjA3LjQ4LDIuMjguNDgsMy42OXY3OC45MmgzNS44MXYtODAuMDNjMC03LjQ4LS43My0xMy41Ny0yLjIzLTE4LjYyLTEuMzgtNC42Mi0zLjMxLTguMDktNi4wNy0xMC45NFpNMTY1LjIsMTQ0LjQ5Yy4wMi0uMTcuMDMtLjQuMDMtLjd2LTMyLjExaC05Ni40MXYzMy4wM2g5NC4wN2MxLjIsMCwxLjkyLS4xMiwyLjMxLS4yMlpNNDM5Ljk4LDE0NC43MWgzNS45N2MtMTEuMDQtNy42Ny0yMy44NS0xNC4wMS0zOC4zMS0xOC45NnYxOC4wNGMwLC4zLjAxLjUzLjAzLjcuMzguMSwxLjExLjIyLDIuMzEuMjJaTTM2NS4zOCwyMDMuOWM3LjM3LDcuNTgsMTcuOTMsMTMuNjMsMzEuMzgsMTcuOTcsMTcuNzcsNS43Myw0MC42OSw4LjY0LDY4LjExLDguNjRoNjIuNjVjLTEuMi02LjY4LTIuNjgtMTMuMDYtNC40OS0xOS4xMi0xLjY5LTUuNjUtMy42NS0xMC45OS01Ljg1LTE2LjA4aC03MS40MmMtMTMuNTIsMC0yNC45My0xLjQ3LTMzLjkxLTQuMzYtNy4zNS0yLjM3LTEzLjIxLTUuNzctMTcuNDMtMTAuMTEtMy44My0zLjk0LTYuNDYtOC42MS04LjI4LTE0LjctMS43Ni01LjktMi42Mi0xMi44NS0yLjYyLTIxLjIzdi0zMC43Yy0xMS43NS0xLjMzLTI0LjI0LTIuMTMtMzcuNC0yLjR2MjUuMjdjMCwxNi41MiwxLjYzLDMwLjAzLDUsNDEuMywzLjIsMTAuNzEsNy43MiwxOC44MiwxNC4yNSwyNS41M1pNNjguODIsNDg4LjMzaDQ5Ljcxdi0zOC4xNWgtNDkuNzF2MzguMTVaTTQxNC43NSwzNzAuOTZjLTUuOTEsMS45MS0xMC41MSw0LjUzLTEzLjY3LDcuNzgtMi43NywyLjg1LTQuNyw2LjMyLTYuMDgsMTAuOTQtMS41LDUuMDQtMi4yMywxMS4xMy0yLjIzLDE4LjYxdjI4Ljg4YzEyLjktMS44MywyNC44Ni00LjMzLDM1LjgtNy41di0yMC4yN2MwLTEuNC4xNi0yLjYxLjQ4LTMuNy40MS0xLjM2LDEuMDUtMi40OCwxLjk3LTMuNDIuOTctLjk5LDIuMjItMS43NCwzLjczLTIuMjMsMS40Ny0uNDgsMy4yNi0uNzIsNS4zLS43Mmg0Ni44MWMyLjMtMi4wMSw0LjUtNC4wOSw2LjYtNi4yNSw3LjUyLTcuNzMsMTMuNzgtMTYuMzksMTguOTgtMjYuMDZoLTY2LjU5Yy0xMi41NywwLTIzLjAzLDEuMzItMzEuMSwzLjkyWk00MzcuNzUsNDA4LjcxYy0uMDIuMTctLjAzLjQtLjAzLjd2MTcuMzhjMTQuMDMtNC44MSwyNi41Mi0xMC45MywzNy4zMy0xOC4zaC0zNC45OWMtMS4yLDAtMS45Mi4xMi0yLjMxLjIyWk0zOTYuODUsMzMxLjMzYy0xMy40NSw0LjM0LTI0LjAxLDEwLjM5LTMxLjM4LDE3Ljk3LTYuNTIsNi43MS0xMS4wNSwxNC44My0xNC4yNSwyNS41My0zLjM2LDExLjI3LTUsMjQuNzgtNSw0MS4zdjI0LjY0YzEzLjE2LS4yOCwyNS42NS0xLjA4LDM3LjQtMi40MXYtMzAuMDZjMC04LjM4Ljg2LTE1LjMzLDIuNjEtMjEuMjMsMS44Mi02LjA5LDQuNDUtMTAuNzYsOC4yOC0xNC43LDQuMjItNC4zNCwxMC4wOC03Ljc0LDE3LjQyLTEwLjExLDguOTgtMi45LDIwLjM5LTQuMzYsMzMuOTEtNC4zNmg3MS4wNGMyLjMxLTUuMjksNC4zOC0xMC44Myw2LjEzLTE2LjcxLDEuNzUtNS44NywzLjE4LTEyLjA0LDQuMzctMTguNDloLTYyLjQ1Yy0yNy40MiwwLTUwLjMzLDIuOTEtNjguMTEsOC42NFpNMzg0LjEyLDI5MS41NGMtMTkuOTEsNi40My0zNi4xNCwxNi00OC4yNSwyOC40NS0xMS4xNywxMS40OS0xOS4wOCwyNS4zOC0yNC4xNyw0Mi40NS00LjUxLDE1LjEyLTYuNzEsMzIuNDYtNi43MSw1Mi45OXYyNS40NmgzMC43M2MuNDMsMCwuODUsMCwxLjI4LDB2LTI1LjQ0YzAtMTcuNCwxLjc2LTMxLjc0LDUuMzgtNDMuODUsMy42My0xMi4xOCw4Ljg2LTIxLjQ5LDE2LjQ1LTI5LjMsOC40Mi04LjY2LDIwLjI0LTE1LjQ5LDM1LjEzLTIwLjMsMTguNjctNi4wMyw0Mi41My05LjA4LDcwLjkxLTkuMDhoNjQuMDljMS4zMy05LjkyLDIuMDYtMjAuNTYsMi4yMi0zMi4wMWgtNjYuMzFjLTMxLjcyLDAtNTguODksMy41OC04MC43NSwxMC42M1pNMzM1Ljg3LDIzMi41OGMxMi4xLDEyLjQ1LDI4LjM0LDIyLjAyLDQ4LjI1LDI4LjQ1LDIxLjg2LDcuMDYsNDkuMDMsMTAuNjMsODAuNzUsMTAuNjNoMHM2Ni4zMSwwLDY2LjMxLDBjLS4xNi0xMS40NS0uODgtMjIuMS0yLjIyLTMyLjAxaC02NC4wOWMtMjguMzcsMC01Mi4yMy0zLjA2LTcwLjkxLTkuMDgtMTQuODktNC44MS0yNi43MS0xMS42NC0zNS4xMy0yMC4zLTcuNTktNy44MS0xMi44Mi0xNy4xMi0xNi40NS0yOS4yOS0zLjYyLTEyLjEzLTUuMzgtMjYuNS01LjM4LTQzLjkxdi0yNS4zOGMtLjQzLDAtLjg1LDAtMS4yOCwwaC0zMC43M3YyNS4zOWgwYzAsMjAuNTcsMi4yLDM3LjkyLDYuNzIsNTMuMDcsNS4xLDE3LjA4LDEzLDMwLjk2LDI0LjE3LDQyLjQ1Wk0yNjQuODYsMzE5Ljk5Yy0xMi4xLTEyLjQ1LTI4LjM0LTIyLjAyLTQ4LjI1LTI4LjQ1LTIxLjg2LTcuMDYtNDkuMDMtMTAuNjMtODAuNzUtMTAuNjNoLTY3LjA0djMyLjAxaDY3LjA0YzI3LjA2LDAsNTAsMi43OSw2OC4yNyw4LjI3LDEuNjMuNDYsMy4yMy45Myw0Ljc5LDEuNDQsMTQuODksNC44MSwyNi43MSwxMS42NCwzNS4xMywyMC4zLDcuNTksNy44MSwxMi44MiwxNy4xMiwxNi40NSwyOS4yOSwzLjYyLDEyLjEzLDUuMzgsMjYuNSw1LjM4LDQzLjkxdjcyLjJoMjkuODd2LTcyLjgyYzAtMjAuNTctMi4yLTM3LjkyLTYuNzEtNTMuMDYtNS4xLTE3LjA4LTEzLTMwLjk2LTI0LjE3LTQyLjQ1Wk0yMzUuMzUsMzQ4LjY3Yy03LjM3LTcuNTgtMTcuOTMtMTMuNjMtMzEuMzgtMTcuOTctLjgzLS4yNy0xLjY4LS41Mi0yLjUyLS43OC0xNy4wNi00LjgtMzguMzUtNy4yNC02My40NC03LjI0aC02OS4xOHYzNS4yaDg4LjI4YzEzLjUyLDAsMjQuOTMsMS40NywzMy45MSw0LjM2LDcuMzUsMi4zNywxMy4yMSw1Ljc3LDE3LjQzLDEwLjExLDMuODMsMy45NCw2LjQ2LDguNjEsOC4yOCwxNC43LDEuNzYsNS45MSwyLjYyLDEyLjg1LDIuNjIsMjEuMjN2ODAuMDNoMzUuMjZ2LTcyLjgyYzAtMTYuNTItMS42My0zMC4wMy01LTQxLjMtMy4yLTEwLjcxLTcuNzItMTguODItMTQuMjUtMjUuNTNaTTI5NS43NSwxMTEuNjdoLTI5Ljg3djI1LjM5YzAsMTcuNDItMS43NiwzMS43OC01LjM4LDQzLjkxLTMuNjQsMTIuMTgtOC44NiwyMS40OC0xNi40NSwyOS4yOS04LjQyLDguNjYtMjAuMjQsMTUuNDktMzUuMTMsMjAuMy0xOC42OCw2LjAzLTQyLjU0LDkuMDgtNzAuOTIsOS4wOGgtNjkuMTh2MzIuMDFoNjcuMDRjMzEuNzIsMCw1OC44OS0zLjU4LDgwLjc1LTEwLjYzLDE5LjkxLTYuNDMsMzYuMTQtMTYsNDguMjUtMjguNDUsMTEuMTctMTEuNDksMTkuMDgtMjUuMzgsMjQuMTctNDIuNDUsNC41Mi0xNS4xNCw2LjcyLTMyLjUsNi43Mi01My4wN2gwdi0yNS4zOVoiLz4KPC9zdmc+';
7 changes: 7 additions & 0 deletions wallets/prax-extension/src/extension/chain-wallet.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { ChainRecord, ChainWalletBase, Wallet } from '@cosmos-kit/core';

export class ChainPraxExtension extends ChainWalletBase {
constructor(walletInfo: Wallet, chainInfo: ChainRecord) {
super(walletInfo, chainInfo);
}
}
Loading

0 comments on commit 977aa71

Please sign in to comment.