This SEP specifies a precompiled contract which can verify VRFs (Verifiable Random Functions).
A Verifiable Random Functions is the public-key version of a keyed cryptographic hash. Only the holder of the private key can compute the hash, but anyone with public key can verify the correctness of the hash. It is very hard to implmenent VRF using EVM's bytecode, since VRF needs a lot of computations on eliptic curves. So on smartBCH, we implement VRF using the native language (Golang) and expose its interface as a precompile contract, which has a predefined address: 10003.
Verifiable random functions are very useful in electing a random quorum in a fair way. They have been used in some blockchains, such as Algorand, VeChain and harmony.one.
If smart contracts can support VRFs, on-chain governance can also use them in electing quorems, which will benefit smartBCH's ecosystem.
This SEP was already deployed at the XHedge upgrade.
The smart contract at the address of 0x0000000000000000000000000000000000002713 can verify VRFs. It takes a byte string as input, which contains the following information:
Alpha
(byte 0~31), this is the preimage to be hashed. Although IETF's standard allows variable-length alpha, on smartBCH only fixed length preimages are supported.Public Key
(byte 32~64), this is a 33-byte compress public key for the secp256k1 curve.Pi
(bytes 65~end), this is the proof for hashing.
It returns 32-byte output data and a status code. When Public Key
and Pi
are valid, the status code is 1 and the 32-byte output data is hash result of Alpha
; when any of them is invalid, the status code is 0 and the output data are all zeros.
Example usage in solidity:
function verify(uint alpha, bytes calldata pk, bytes calldata pi, bytes calldata beta) external returns (bool) {
require(pk.length == 33, 'pk.length != 33');
(bool ok, bytes memory retData) = address(0x2713).call(abi.encodePacked(alpha, pk, pi));
return ok && keccak256(retData) == keccak256(beta);
}
The content is licensed under CC0.