Verify UUPS contract on BSC Testnet

I have a question about verifying UUPS contract in the BSC Testnet I do have this contract deployed in Testnet https://testnet.bscscan.com/address/0x8958573f78a4e0ed728b8573529dbe55ae0c56bc#code
but I cannot see Read as proxy and Write as proxy same as this https://bscscan.com/address/0xe29f0b490f0d89ca7acac1c7bed2e07ecad65201#writeProxyContract

Could someone help point me what I did wrong ?

:1234: Code to reproduce

deploy script

async function main() {
  const SUMM = await ethers.getContractFactory("SUMMToken");
  const token = await upgrades.deployProxy(SUMM, { kind: "uups" });

  console.log(token.address);
}

main().catch((error) => {
  console.error(error);
  process.exitCode = 1;
});

:computer: Environment

Testnet

Hardhat 2.7.0

Hi @nattaaek,
You need to go to this page to mark your contract as a proxy:

We have a guide about verification but I realized this is not mentioned there so I'll add it now:

1 Like