/ packages / DApp / src / models / waku.ts
waku.ts
 1  import { BigNumber } from 'ethers'
 2  
 3  export type WakuVoteData = {
 4    sntAmount: BigNumber
 5    address: string
 6    vote: string
 7    sign: string
 8    timestamp: number
 9    roomID: number
10  }
11  
12  export type WakuFeatureData = {
13    timestamp: number
14    sntAmount: BigNumber
15    voter: string
16    community: string
17    sign: string
18  }