Skip to content

Commit

Permalink
feat: update wallet type
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuanatanielnm committed Dec 31, 2024
1 parent ada9330 commit b961605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/graz/src/types/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export type Wallet = Pick<Keplr, "enable" | "getOfflineSignerOnlyAmino" | "signA
setDefaultOptions?: (options: KeplrIntereactionOptions) => void;
onAfterLoginSuccessful?: () => Promise<void>;
getKey: (chainId: string) => Promise<Key>;
getOfflineSigner: (chainId: string) => OfflineAminoSigner | OfflineDirectSigner;
getOfflineSignerAuto: (chainId: string) => Promise<OfflineAminoSigner | OfflineDirectSigner>;
getOfflineSigner: (chainId: string, signOptions?: KeplrSignOptions) => OfflineAminoSigner | OfflineDirectSigner;
getOfflineSignerAuto: (chainId: string) => Promise<OfflineDirectSigner | OfflineAminoSigner>;
signDirect: (
chainId: string,
signer: string,
Expand Down

0 comments on commit b961605

Please sign in to comment.