Skip to content

Commit

Permalink
feat: update key algos
Browse files Browse the repository at this point in the history
  • Loading branch information
grikomsn committed Dec 14, 2023
1 parent 341e1df commit 0fe8f12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { ImageType, Status } from "./shared";

export type NetworkType = "mainnet" | "testnet" | "devnet";

export type KeyAlgos = "secp256k1" | "ethsecp256k1" | "ed25519" | "sr25519";
export type KeyAlgos = "secp256k1" | "ethsecp256k1" | "ed25519" | "sr25519" | "bn254";

export type ConsensusType = "tendermint" | "cometbft" | "sei-tendermint";

Expand Down
1 change: 1 addition & 0 deletions src/schemas/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const keyAlgosSchema = /* @__PURE__ */ z.union([
z.literal("ethsecp256k1"),
z.literal("ed25519"),
z.literal("sr25519"),
z.literal("bn254"),
]);

export const consensusTypeSchema = /* @__PURE__ */ z.union([
Expand Down

0 comments on commit 0fe8f12

Please sign in to comment.