[docs]defcreate_randomness(secret_key:str,seed:int,)->Tuple[str,str,str]:# Alice generates a secret and public key pairpublic_key=get_public_key(secret_key)_,pi_string=ecvrf_prove(secret_key,seed)# type: ignore[no-untyped-call]b_status,beta_string=ecvrf_proof_to_hash(pi_string)# type: ignore[no-untyped-call]assertb_status=="VALID"returnbeta_string,pi_string,public_key