Skip to content

Commit

Permalink
minimize diff
Browse files Browse the repository at this point in the history
  • Loading branch information
oveddan committed Jan 11, 2024
1 parent 7a4531e commit 16d2c30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ type Upgrade @entity {
# End – default data block

impl: Bytes
version: String
version: String!
type: String
}

Expand Down
2 changes: 1 addition & 1 deletion src/ERC1155Mappings/factoryMappings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export function handle1155FactoryUpgraded(event: Upgraded): void {
upgrade.block = event.block.number;
upgrade.timestamp = event.block.timestamp;
upgrade.impl = event.params.implementation;
upgrade.version = creator.contractVersion()
upgrade.version = creator.contractVersion();
upgrade.address = event.address;
upgrade.type = "1155Factory";

Expand Down

0 comments on commit 16d2c30

Please sign in to comment.