Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trizin authored Jul 21, 2024
1 parent baea52c commit 5f0d92b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mappings/utils/tokenUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function getErc20TemplateId(address: Address): BigInt {
return BigInt.zero()
}

type ContractData = {
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;

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: i32;

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 `;`
Expand All @@ -142,7 +142,7 @@ type ContractData = {
eventIndex: i32;

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]: ContractData };
type HardCodedContractDataType = { [key: string]: HardCodedContractData };

const hardCodedContractData: HardCodedContractDataType = {
"0x18f54cc21b7a2fdd011bea06bba7801b280e3151": {
Expand Down

0 comments on commit 5f0d92b

Please sign in to comment.