ghost-extension-wallet/src/constants.ts
Uncle Fatso 6906ca83b7
initial commit in remote repository
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-07-22 13:53:22 +03:00

18 lines
696 B
TypeScript

export const wellKnownGenesisHashByChainId: Record<string, string> = {
casper_staging_testnet: "0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1",
}
export const wellKnownChainIdByGenesisHash: Record<string, string> = {
"0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1": "casper_staging_testnet",
}
export const wellKnownPrefixByGenesisHash: Record<string, number> = {
"0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1": 1996,
}
export const wellKnownDecimalsByGenesisHash: Record<string, number> = {
"0x07074eb5f47a6f4dd70430674e5174d5414bc055292b90392fb6f0a28c7524d1": 18,
}
export const CHANNEL_ID = "ghost-extension"