Skip to content

Commit

Permalink
fix: bug for gate wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
S_PONY committed Oct 17, 2024
1 parent 3b2e8c1 commit 241fbee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion wallets/gatewallet-extension/src/extension/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Wallet } from '@cosmos-kit/core';

import { ICON } from '../constant';

export const OkxwalletExtensionInfo: Wallet = {
export const GatewalletExtensionInfo: Wallet = {
name: 'okxwallet-extension',
prettyName: 'OKX Wallet',
logo: ICON,
Expand Down
6 changes: 3 additions & 3 deletions wallets/gatewallet-extension/src/gatewallet.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { OkxwalletExtensionInfo, OkxwalletExtensionWallet } from './extension';
import { GatewalletExtensionInfo, GatewalletExtensionWallet } from './extension';

const okxwalletExtension = new OkxwalletExtensionWallet(OkxwalletExtensionInfo);
const gatewalletExtension = new GatewalletExtensionWallet(GatewalletExtensionInfo);

export const wallets = [okxwalletExtension];
export const wallets = [gatewalletExtension];
2 changes: 1 addition & 1 deletion wallets/gatewallet-extension/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './extension';
export * from './extension/client';
export * from './okxwallet';
export * from './gatewallet';
2 changes: 1 addition & 1 deletion wallets/gatewallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"dependencies": {
"@cosmos-kit/gatewallet-extension": "^2.13.0"
"@cosmos-kit/gatewallet-extension": "^1.0.0"
}
}

0 comments on commit 241fbee

Please sign in to comment.