use number

This commit is contained in:
trizin 2024-07-21 22:21:51 +03:00 committed by GitHub
parent 5f0d92bddb
commit 306bf05a25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -132,14 +132,14 @@ export function getErc20TemplateId(address: Address): BigInt {
type HardCodedContractData = {
token: string;
secondsPerEpoch: i32;
secondsPerSubscription: i32;
truevalSubmitTimeout: i32;
secondsPerEpoch: number;
secondsPerSubscription: number;
truevalSubmitTimeout: number;
stakeToken: string;
txId: string;
timestamp: i32;
block: i32;
eventIndex: i32;
timestamp: number;
block: number;
eventIndex: number;
};
type HardCodedContractDataType = { [key: string]: HardCodedContractData };