diff --git a/src/components/collator/join.tsx b/src/components/collator/join.tsx index 2df3ded..afad4ce 100644 --- a/src/components/collator/join.tsx +++ b/src/components/collator/join.tsx @@ -145,7 +145,7 @@ const CollatorJoin = ({ hasSessionKey, sessionKey, hasPool, refetch }: CollatorJ Note that you need to complete two steps in sequence, setup [Session Key] and setup [Commission] before becoming a collator. Please{' '} ([ export const KTON_TOKEN_INFO_MAP = new Map< ChainId, - { symbol: string; decimals: number; address: `0x${string}` } + { symbol: string; decimals: number; address: `0x${string}`; governanceName: string } >([ [ ChainId.CRAB, - { symbol: 'CKTON', decimals: 18, address: '0x0000000000000000000000000000000000000402' } + { + symbol: 'CKTON', + decimals: 18, + address: '0x0000000000000000000000000000000000000402', + governanceName: 'CktonDAO' + } ], [ ChainId.DARWINIA, - { symbol: 'KTON', decimals: 18, address: '0x0000000000000000000000000000000000000402' } + { + symbol: 'KTON', + decimals: 18, + address: '0x0000000000000000000000000000000000000402', + governanceName: 'KtonDAO' + } ], [ ChainId.KOI, - { symbol: 'PKTON', decimals: 18, address: '0x0000000000000000000000000000000000000402' } + { + symbol: 'PKTON', + decimals: 18, + address: '0x0000000000000000000000000000000000000402', + governanceName: 'PktonDAO' + } ] ]); diff --git a/src/view/deposit/_components/index.tsx b/src/view/deposit/_components/index.tsx index 04ec91d..bb64a13 100644 --- a/src/view/deposit/_components/index.tsx +++ b/src/view/deposit/_components/index.tsx @@ -105,15 +105,21 @@ const Deposit = () => { > Deposit - + +
+ +

+ Powered and governed by {ktonInfo?.governanceName} +

+