Provably Fair Framework
This library aims to provide a flexible but thorough provably fair framework.
Algorithms
randomInteger(algorithm, inputs, min, max)
randomSequence(algorithm, inputs, array)
Strategies (included)
- Crash
- Dice
- American Roulette
- European Roulette
Hash Functions
Accepted Hash Functions are currently sha256 and sha512.
Seeding Event
"A provably fair seeding event makes it possible to
generate publicSeed using a trustless randomization service (e.g. the hash
of a specific upcoming block in the blockchain of a cryptocurrency), disallowing participants to have a direct influence on in-game randomization"
Proof of Commitment
The default proof of commitment strategy is as follows:
Take an initial Server Seed (it could be a private key of Bitcoin wallet) and recusively sha256 hash it 10,000,000 times.
You can set your own custom Proof of Commitment strategy.
Proof of Existence
The default proof of existence strategy is as follows:
Broadcast via the Blockstream Satellite API a message containing the
Terminating Hash, and chosen Block Height of future block. The blockhash of this will be used as a client seed.
You can set your own custom Proof of Existence strategy.
Usage
import {
Algorithm,
AmericanRoulette,
Config,
Crash,
createSystem,
Dice,
distribute,
EuropeanRoulette,
randomInteger,
randomSequence,
System
} from "..";
const config: Config = {
algorithm: "sha256",
proofOfCommitment() {
log("Custom proof of commitment..");
},
proofOfExistence() {
log("Custom proof of existence...");
},
seedingEvent() {
log("Custom seeding event...");
},
strategies: [AmericanRoulette, Crash, Dice, EuropeanRoulette],
strategy: Dice
};
const system = createSystem(config);
const [serverSeed, clientSeed] = await system.createSeedPair();
system.setStrategy(Dice);
const dice = system.calculate(serverSeed, clientSeed);
console.log(dice);
system.setStrategy(EuropeanRoulette);
const roulette = system.calculate(serverSeed, clientSeed);
console.log(roulette);
import { StrategyInterface, randomInteger } from "provably-fair-system";
class CustomRoulette implements StrategyInterface {
calculate(algorithm: Algorithm, inputs: [string, string]) {
return randomInteger(algorithm, inputs, 0, 15);
}
}
system.setStrategy(new CustomRouletteStrategy());
const roulette = system.calculate(serverSeed, clientSeed);
console.log(roulette);
system.seedingEvent();
system.setSeedingEvent(new CustomSeedingEvent());
system.seedingEvent();
system.proofOfExistence();
system.setProofOfExistence(new CustomProofOfExistance());
system.proofOfExistence();
system.proofOfCommitment();
system.setProofOfCommitment(new CustomProofOfCommitment());
system.proofOfCommitment();