import { assert, ByteString, hash256, method, prop, SmartContract, FixedArray, fill, toByteString } from 'scrypt-ts'
export const N = 2
export type Candidates = FixedArray<Candidate, typeof N>
export class Voting extends SmartContract {
@prop(true)
candidates: Candidates
constructor(names: FixedArray<Name, typeof N>) {
super(...arguments)
this.candidates = fill({
name: toByteString(''),
votesReceived: 0n,
}, N)
for (let i = 0; i < N; i++) {
this.candidates[i] = {
name: names[i],
votesReceived: 0n,
}
}