SEP109: On-chain Verification of Verifiable Random Functions
1. Summary
This SEP specifies a precompiled contract which can verify VRFs (Verifiable Random Functions).
2. Abstract
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.
3. Motivation
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.
4. Status
This SEP was already deployed at the XHedge upgrade.
5. Specification
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:
6. License
The content is licensed under CC0.
Last updated