@staticmethod
def calculate_create_case_contract_address(deployer: ChecksumAddress, nonce: Nonce) -> Optional[ChecksumAddress]
# 计算合约地址
contract_address = Utils.calculate_create_case_contract_address(
deployer="0x...", # 部署者地址
nonce=5 # 部署者的 nonce 值
)
if contract_address:
print(f"Contract will be deployed at: {contract_address}")