-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Revert "fix: keplr poc" This reverts commit eec7db6. * do not rollup @cosmjs/stargate because it does not work with pre-rendering in NextJs
- Loading branch information
Showing
10 changed files
with
1,225 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@babylonlabs-io/bbn-wallet-connect": patch | ||
--- | ||
|
||
Re-add @cosmjs/stargate |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { BBNProvider } from "./BBNProvider"; | ||
import icon from "./babylon.jpeg"; | ||
// import keplr from "./keplr"; | ||
import keplr from "./keplr"; | ||
|
||
import { BBNConfig, ChainMetadata } from "@/core/types"; | ||
|
||
const metadata: ChainMetadata<"BBN", BBNProvider, BBNConfig> = { | ||
chain: "BBN", | ||
name: "Babylon Chain", | ||
icon, | ||
wallets: [], | ||
wallets: [keplr], | ||
}; | ||
|
||
export default metadata; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
// import { Network, type WalletMetadata, type BBNConfig } from "@/core/types"; | ||
import { Network, type WalletMetadata, type BBNConfig } from "@/core/types"; | ||
|
||
// import logo from "./logo.svg"; | ||
// import type { BBNProvider } from "../BBNProvider"; | ||
// import { KeplrProvider } from "./provider"; | ||
import logo from "./logo.svg"; | ||
import type { BBNProvider } from "../BBNProvider"; | ||
import { KeplrProvider } from "./provider"; | ||
|
||
// const metadata: WalletMetadata<BBNProvider, BBNConfig> = { | ||
// id: "keplr", | ||
// name: "Keplr", | ||
// icon: logo, | ||
// docs: "https://www.keplr.app/", | ||
// wallet: "keplr", | ||
// createProvider: (wallet, config) => new KeplrProvider(wallet, config), | ||
// networks: [Network.MAINNET, Network.SIGNET], | ||
// }; | ||
const metadata: WalletMetadata<BBNProvider, BBNConfig> = { | ||
id: "keplr", | ||
name: "Keplr", | ||
icon: logo, | ||
docs: "https://www.keplr.app/", | ||
wallet: "keplr", | ||
createProvider: (wallet, config) => new KeplrProvider(wallet, config), | ||
networks: [Network.MAINNET, Network.SIGNET], | ||
}; | ||
|
||
// export default metadata; | ||
export default metadata; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,85 @@ | ||
// import { Window as KeplrWindow } from "@keplr-wallet/types"; | ||
// import { Buffer } from "buffer"; | ||
|
||
// import { BBNConfig, WalletInfo } from "@/core/types"; | ||
// import { BBNProvider } from "@/core/wallets/bbn/BBNProvider"; | ||
|
||
// import { OfflineAminoSigner, OfflineDirectSigner } from "@keplr-wallet/types/src/cosmjs"; | ||
// import { SigningStargateClient, SigningStargateClientOptions } from "@cosmjs/stargate"; | ||
|
||
// declare global { | ||
// // eslint-disable-next-line @typescript-eslint/no-empty-object-type | ||
// interface Window extends KeplrWindow {} | ||
// } | ||
|
||
// export class KeplrProvider extends BBNProvider { | ||
// private walletInfo: WalletInfo | undefined; | ||
// private chainId: string | undefined; | ||
// private rpc: string | undefined; | ||
// private offlineSigner?: OfflineAminoSigner & OfflineDirectSigner; | ||
// private stargateClient?: Promise<SigningStargateClient>; | ||
|
||
// constructor( | ||
// private keplr: Window["keplr"], | ||
// config: BBNConfig, | ||
// ) { | ||
// super(); | ||
// if (!keplr) { | ||
// throw new Error("Keplr extension not found"); | ||
// } | ||
// this.chainId = config.chainId; | ||
// this.rpc = config.rpc; | ||
// } | ||
|
||
// async connectWallet(): Promise<this> { | ||
// if (!this.chainId) throw new Error("Chain ID is not initialized"); | ||
// if (!this.rpc) throw new Error("RPC URL is not initialized"); | ||
|
||
// await this.keplr?.enable(this.chainId); | ||
// const key = await this.keplr?.getKey(this.chainId); | ||
|
||
// if (!key) throw new Error("Failed to get Keplr key"); | ||
|
||
// this.offlineSigner = this.keplr?.getOfflineSigner(this.chainId); | ||
|
||
// const { bech32Address, pubKey } = key; | ||
|
||
// if (bech32Address && pubKey) { | ||
// this.walletInfo = { | ||
// publicKeyHex: Buffer.from(key.pubKey).toString("hex"), | ||
// address: bech32Address, | ||
// }; | ||
// return this; | ||
// } else { | ||
// throw new Error("Could not connect to Keplr"); | ||
// } | ||
// } | ||
|
||
// async getAddress(): Promise<string> { | ||
// if (!this.walletInfo) throw new Error("Wallet not connected"); | ||
// return this.walletInfo.address; | ||
// } | ||
|
||
// async getPublicKeyHex(): Promise<string> { | ||
// if (!this.walletInfo) throw new Error("Wallet not connected"); | ||
// return this.walletInfo.publicKeyHex; | ||
// } | ||
|
||
// async getSigningStargateClient(options?: SigningStargateClientOptions) { | ||
// if (!this.stargateClient) { | ||
// this.stargateClient = this.createSigningStargateClient(options); | ||
// } | ||
// return await this.stargateClient; | ||
// } | ||
|
||
// async createSigningStargateClient(options?: SigningStargateClientOptions) { | ||
// if (!this.rpc) throw new Error("RPC URL is not initialized"); | ||
// if (!this.offlineSigner) throw new Error("Offline signer is not initialized"); | ||
// return await SigningStargateClient.connectWithSigner(this.rpc, this.offlineSigner, options); | ||
// } | ||
|
||
// async getBalance(searchDenom: string) { | ||
// const signingStargateClient = await this.getSigningStargateClient(); | ||
// return BigInt((await signingStargateClient.getBalance(await this.getAddress(), searchDenom)).amount); | ||
// } | ||
// } | ||
import { Window as KeplrWindow } from "@keplr-wallet/types"; | ||
import { Buffer } from "buffer"; | ||
|
||
import { BBNConfig, WalletInfo } from "@/core/types"; | ||
import { BBNProvider } from "@/core/wallets/bbn/BBNProvider"; | ||
|
||
import { OfflineAminoSigner, OfflineDirectSigner } from "@keplr-wallet/types/src/cosmjs"; | ||
import { SigningStargateClient, SigningStargateClientOptions } from "@cosmjs/stargate"; | ||
|
||
declare global { | ||
// eslint-disable-next-line @typescript-eslint/no-empty-object-type | ||
interface Window extends KeplrWindow {} | ||
} | ||
|
||
export class KeplrProvider extends BBNProvider { | ||
private walletInfo: WalletInfo | undefined; | ||
private chainId: string | undefined; | ||
private rpc: string | undefined; | ||
private offlineSigner?: OfflineAminoSigner & OfflineDirectSigner; | ||
private stargateClient?: Promise<SigningStargateClient>; | ||
|
||
constructor( | ||
private keplr: Window["keplr"], | ||
config: BBNConfig, | ||
) { | ||
super(); | ||
if (!keplr) { | ||
throw new Error("Keplr extension not found"); | ||
} | ||
this.chainId = config.chainId; | ||
this.rpc = config.rpc; | ||
} | ||
|
||
async connectWallet(): Promise<this> { | ||
if (!this.chainId) throw new Error("Chain ID is not initialized"); | ||
if (!this.rpc) throw new Error("RPC URL is not initialized"); | ||
|
||
await this.keplr?.enable(this.chainId); | ||
const key = await this.keplr?.getKey(this.chainId); | ||
|
||
if (!key) throw new Error("Failed to get Keplr key"); | ||
|
||
this.offlineSigner = this.keplr?.getOfflineSigner(this.chainId); | ||
|
||
const { bech32Address, pubKey } = key; | ||
|
||
if (bech32Address && pubKey) { | ||
this.walletInfo = { | ||
publicKeyHex: Buffer.from(key.pubKey).toString("hex"), | ||
address: bech32Address, | ||
}; | ||
return this; | ||
} else { | ||
throw new Error("Could not connect to Keplr"); | ||
} | ||
} | ||
|
||
async getAddress(): Promise<string> { | ||
if (!this.walletInfo) throw new Error("Wallet not connected"); | ||
return this.walletInfo.address; | ||
} | ||
|
||
async getPublicKeyHex(): Promise<string> { | ||
if (!this.walletInfo) throw new Error("Wallet not connected"); | ||
return this.walletInfo.publicKeyHex; | ||
} | ||
|
||
async getSigningStargateClient(options?: SigningStargateClientOptions) { | ||
if (!this.stargateClient) { | ||
this.stargateClient = this.createSigningStargateClient(options); | ||
} | ||
return await this.stargateClient; | ||
} | ||
|
||
async createSigningStargateClient(options?: SigningStargateClientOptions) { | ||
if (!this.rpc) throw new Error("RPC URL is not initialized"); | ||
if (!this.offlineSigner) throw new Error("Offline signer is not initialized"); | ||
return await SigningStargateClient.connectWithSigner(this.rpc, this.offlineSigner, options); | ||
} | ||
|
||
async getBalance(searchDenom: string) { | ||
const signingStargateClient = await this.getSigningStargateClient(); | ||
return BigInt((await signingStargateClient.getBalance(await this.getAddress(), searchDenom)).amount); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters