Skip to content

Commit 2182128

Browse files
authored
GMS-1009: update dependencies (#84)
* GMS-1009: update dependencies - Add config to dependabot to ignore major versions - Update '@types/node' to match lts version - Update 'typechain', '@typechain/ethers-v5' and '@typechain/hardhat' to match versions used in the sdk * reinstall dependencies
1 parent 69d5fa9 commit 2182128

File tree

5 files changed

+814
-860
lines changed

5 files changed

+814
-860
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ updates:
55
schedule:
66
interval: weekly
77
day: monday
8+
ignore:
9+
- dependency-name: *
10+
update-types: [ "version-update:semver-major" ]

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules
33
coverage
44
coverage.json
55
typechain
6+
typechain-types
67
node.json
78

89
#Hardhat files

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Once the `zkevm-contracts` package is installed, use the contracts from the libr
2828
```solidity
2929
pragma solidity ^0.8.0;
3030
31-
import "@imtbl/zkevm-contracts/contracts/token/erc721/preset/ImmutableERC721PermissionedMintable.sol";
31+
import "@imtbl/zkevm-contracts/contracts/token/erc721/preset/ImmutableERC721.sol";
3232
33-
contract MyERC721 is ImmutableERC721PermissionedMintable {
33+
contract MyERC721 is ImmutableERC721 {
3434
constructor(
3535
address owner,
3636
string memory name,
@@ -40,16 +40,16 @@ contract MyERC721 is ImmutableERC721PermissionedMintable {
4040
address operatorAllowlist,
4141
address receiver,
4242
uint96 feeNumerator
43-
) ImmutableERC721PermissionedMintable(
44-
owner,
45-
name,
46-
symbol,
47-
baseURI,
48-
contractURI,
49-
operatorAllowlist,
50-
receiver,
51-
feeNumerator
52-
)
43+
) ImmutableERC721(
44+
owner,
45+
name,
46+
symbol,
47+
baseURI,
48+
contractURI,
49+
operatorAllowlist,
50+
receiver,
51+
feeNumerator
52+
)
5353
{}
5454
}
5555
```

0 commit comments

Comments
 (0)