Skip to content

Commit

Permalink
feat: add keystone walelt type
Browse files Browse the repository at this point in the history
  • Loading branch information
keystoneGithub committed Nov 26, 2024
1 parent 86c43fa commit 4c1c198
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 4c1c198

Please sign in to comment.