Fix data type

This commit is contained in:
trizin 2024-07-21 22:10:55 +03:00 committed by GitHub
parent ff8d3d61d9
commit baea52cc43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -130,21 +130,21 @@ export function getErc20TemplateId(address: Address): BigInt {
return BigInt.zero()
}
declare const hardCodedContractData: {
[key: string]: {
token: string;
secondsPerEpoch: i32;
secondsPerSubscription: i32;
truevalSubmitTimeout: i32;
stakeToken: string;
txId: string;
timestamp: i32;
block: i32;
eventIndex: i32;
};
type ContractData = {
token: string;
secondsPerEpoch: i32;
secondsPerSubscription: i32;
truevalSubmitTimeout: i32;
stakeToken: string;
txId: string;
timestamp: i32;
block: i32;
eventIndex: i32;
};
const hardCodedContractData = {
type HardCodedContractDataType = { [key: string]: ContractData };
const hardCodedContractData: HardCodedContractDataType = {
"0x18f54cc21b7a2fdd011bea06bba7801b280e3151": {
"token": "0x18f54cc21b7a2fdd011bea06bba7801b280e3151",
"secondsPerEpoch": 300,