vega-frontend-monorepo/libs/wallet/src/chains.ts
Matthew Russell 28b4593a1d
refactor(trading,governance,wallet): wallet rewrite (#5815)
Co-authored-by: bwallacee <ben@vega.xyz>
2024-03-01 14:25:56 +00:00

30 lines
476 B
TypeScript

export type Chain = {
id: string;
testnet: boolean;
name: string;
};
export const mainnet = {
id: 'vega-mainnet-0011',
testnet: false,
name: 'Fairground',
};
export const fairground = {
id: 'vega-fairground-202305051805',
testnet: true,
name: 'Fairground',
};
export const stagnet = {
id: 'vega-stagnet1-202307191148',
testnet: true,
name: 'Stagnet',
};
export const mockChain = {
id: 'mock-chain',
testnet: true,
name: 'My Mocked Chain',
};