Skip to content

Commit

Permalink
use number
Browse files Browse the repository at this point in the history
  • Loading branch information
trizin authored Jul 21, 2024
1 parent 5f0d92b commit 306bf05
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/mappings/utils/tokenUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ export function getErc20TemplateId(address: Address): BigInt {

type HardCodedContractData = {
token: string;

Check failure on line 134 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 134 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
secondsPerEpoch: i32;
secondsPerSubscription: i32;
truevalSubmitTimeout: i32;
secondsPerEpoch: number;

Check failure on line 135 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 135 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
secondsPerSubscription: number;

Check failure on line 136 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 136 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
truevalSubmitTimeout: number;

Check failure on line 137 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 137 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
stakeToken: string;

Check failure on line 138 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 138 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
txId: string;

Check failure on line 139 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 139 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
timestamp: i32;
block: i32;
eventIndex: i32;
timestamp: number;

Check failure on line 140 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 140 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
block: number;

Check failure on line 141 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 141 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
eventIndex: number;

Check failure on line 142 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 142 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`
};

Check failure on line 143 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

Check failure on line 143 in src/mappings/utils/tokenUtils.ts

View workflow job for this annotation

GitHub Actions / test

Delete `;`

type HardCodedContractDataType = { [key: string]: HardCodedContractData };
Expand Down

0 comments on commit 306bf05

Please sign in to comment.