18 lines
696 B
TypeScript
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"
|