Skip to content

Commit

Permalink
feat: add keystone wallet type
Browse files Browse the repository at this point in the history
feat: add keystone wallet type
  • Loading branch information
keystoneGithub authored Jan 9, 2025
1 parent 9ef1708 commit ce21679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request/types/common.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as v from 'valibot';

export const walletTypes = ['software', 'ledger'] as const;
export const walletTypes = ['software', 'ledger', 'keystone'] as const;
export const walletTypeSchema = v.picklist(walletTypes);
export type WalletType = v.InferOutput<typeof walletTypeSchema>;

0 comments on commit ce21679

Please sign in to comment.