From cd2d960d2fbadbc2c5816e65a7b91693f4ea3b04 Mon Sep 17 00:00:00 2001 From: Michal S Date: Mon, 2 Sep 2024 08:51:39 +0100 Subject: [PATCH] chore(wallet-mobile): Enable governance on mainnet (#3583) --- apps/wallet-mobile/src/kernel/config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/wallet-mobile/src/kernel/config.ts b/apps/wallet-mobile/src/kernel/config.ts index b4a8017bc4..461c08071c 100644 --- a/apps/wallet-mobile/src/kernel/config.ts +++ b/apps/wallet-mobile/src/kernel/config.ts @@ -5,9 +5,7 @@ import {isDev} from './env' export const governaceAfterBlock = freeze({ [Chain.Network.Sancho]: 0, - - // TODO: Add block number once known - [Chain.Network.Mainnet]: Infinity, + [Chain.Network.Mainnet]: 10782931, [Chain.Network.Preprod]: 2639667, [Chain.Network.Preview]: Infinity, })