Skip to content

Commit 44821b2

Browse files
authored
[gms-984][chore] renaming contracts and fixing tests (#70)
1 parent 829cae8 commit 44821b2

12 files changed

+7669
-5380
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
uses: actions/setup-node@v3
1818
with:
1919
node-version: lts/*
20-
cache: 'npm'
2120
- name: Install NPM Dependencies
2221
run: npm ci
2322
- name: Run Tests
@@ -32,7 +31,6 @@ jobs:
3231
uses: actions/setup-node@v3
3332
with:
3433
node-version: lts/*
35-
cache: 'npm'
3634
- name: Install NPM Dependencies
3735
run: npm ci
3836
- name: Run eslint

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ git checkout -b <your-branch-name>
6464
npm test
6565
```
6666

67-
7. Add and commit your changes, including a comprehensive commit message summarising your changes, then push changes to your fork. (e.g. Fixed formatting issue with ImmutableERC721Simple.sol)
67+
7. Add and commit your changes, including a comprehensive commit message summarising your changes, then push changes to your fork. (e.g. Fixed formatting issue with ImmutableERC721MintByID.sol)
6868

6969
```
7070
git add *

contracts/token/erc721/preset/ImmutableERC721Simple.sol renamed to contracts/token/erc721/preset/ImmutableERC721MintByID.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "../abstract/ImmutableERC721Base.sol";
55
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
66
import "@openzeppelin/contracts/token/common/ERC2981.sol";
77

8-
contract ImmutableERC721Simple is ImmutableERC721Base {
8+
contract ImmutableERC721MintByID is ImmutableERC721Base {
99
/// ===== Constructor =====
1010

1111
/**

0 commit comments

Comments
 (0)