diff --git a/app/[locale]/staking/deposit-contract/_components/deposit-contract.tsx b/app/[locale]/staking/deposit-contract/_components/deposit-contract.tsx index 8456b86c71a..09ea9c44b42 100644 --- a/app/[locale]/staking/deposit-contract/_components/deposit-contract.tsx +++ b/app/[locale]/staking/deposit-contract/_components/deposit-contract.tsx @@ -140,7 +140,8 @@ const StyledFakeLink = (props: ButtonProps) => ( /> ) -const CHUNKED_ADDRESS = DEPOSIT_CONTRACT_ADDRESS.match(/.{1,3}/g)?.join(" ") +const CHUNKED_ADDRESS = + DEPOSIT_CONTRACT_ADDRESS.match(/(?:^0x|.{4})/g)?.join(" ") const blockieSrc = makeBlockie(DEPOSIT_CONTRACT_ADDRESS)