Skip to content

Commit

Permalink
Random numbers for decentralized sequencer interactions
Browse files Browse the repository at this point in the history
  • Loading branch information
szynwelski committed Nov 3, 2023
1 parent 889a3f5 commit 5cc2cfd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/legacy/gqlResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export interface GQLNodeInterface {
source?: string;
bundlerTxId?: string;
vrf?: VrfData;
random?: string;
}

export interface VrfData {
Expand Down
23 changes: 23 additions & 0 deletions src/legacy/smartweave-global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,26 @@ export class SmartWeaveGlobal {
throw new Error(`Unable to read wallet balance. ${error.status}. ${error.body?.message}`);
});
}

/**
* Returns a random, but deterministic integer in the range [1, maxValue]
*/
randomNumber(maxValue: number): number {
if (!this._activeTx?.random) {
return this.vrf.randomInt(maxValue);
}
if (!Number.isInteger(maxValue)) {
throw new Error('Integer max value required for random integer generation');
}
if (maxValue < 1 || maxValue > Number.MAX_SAFE_INTEGER) {
throw new Error(`Integer max value must be in the range [1, ${Number.MAX_SAFE_INTEGER}]`);
}
const base64 = this._activeTx.random.replace(/-/g, '+').replace(/_/g, '/');
const array = Uint8Array.from(atob(base64), c => c.charCodeAt(0));
const bigInt = Buffer.from(array).readBigUInt64BE();
const result = (bigInt % BigInt(maxValue)) + BigInt(1)
return Number(result);
}
}

// tslint:disable-next-line: max-classes-per-file
Expand Down Expand Up @@ -260,6 +280,9 @@ export class SWVrf {

// returns a random value in a range from 1 to maxValue
randomInt(maxValue: number): number {
if (this.smartWeaveGlobal._activeTx?.random) {
return this.smartWeaveGlobal.randomNumber(maxValue);
}
if (!Number.isInteger(maxValue)) {
throw new Error('Integer max value required for random integer generation');
}
Expand Down

0 comments on commit 5cc2cfd

Please sign in to comment.