Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NftMinter support, error handling, other fixes #52

Merged
merged 34 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
61bf2cc
fix: custom errors extends error base class
bucurdavid Sep 11, 2023
8550236
refactor: implement error handling classes
bucurdavid Sep 11, 2023
4a61fa4
refactor: implement custom error class for marketplace
bucurdavid Sep 11, 2023
5606d14
refactor: implement custom error class handle for minter
bucurdavid Sep 11, 2023
0255cbe
refactor: implement error handles for common methods
bucurdavid Sep 11, 2023
3a6e3d5
fix: royalties should have two decimals
bucurdavid Sep 13, 2023
570d4f6
chore: update dependecies
bucurdavid Sep 13, 2023
c5639d5
refactor!: implement minter base class
bucurdavid Sep 13, 2023
53938ef
feat: pause and unpause transactions implementation
bucurdavid Sep 13, 2023
793f1e1
feat: nft minter contract admin endpoints implementation
bucurdavid Sep 13, 2023
71b69cf
feat: updateAttributes && initializeContract methods implementation
bucurdavid Sep 13, 2023
01b2a56
refactor: abi file import in subclass and use in subclass constructor
bucurdavid Sep 13, 2023
fe44d01
refactor: abstract minter class
bucurdavid Sep 13, 2023
1094fe8
feat: collection management transaction implementation
bucurdavid Sep 13, 2023
fa45512
refactor: different mint implementation based on subclass
bucurdavid Sep 13, 2023
d868534
refactor: shared methods implemented in base class
bucurdavid Sep 14, 2023
f9a3b5c
view method for contract configuration
bucurdavid Sep 14, 2023
53bc4b1
view methods of the contracts
bucurdavid Sep 14, 2023
09ed5be
docs: constructor documentation for subclasses
bucurdavid Sep 14, 2023
9628528
refactor: gas limits and types
bucurdavid Sep 18, 2023
e229f9c
Merge pull request #51 from Itheum/develop
newbreedofgeek Sep 18, 2023
ca226e2
feat: claims address on initialize method
bucurdavid Sep 20, 2023
895ad33
refactor: update abi
bucurdavid Sep 20, 2023
7e2459b
feat: devnet2 support
bucurdavid Sep 20, 2023
f69f1db
Merge branch 'main' into d-david
bucurdavid Sep 20, 2023
8c5f36e
merged errors
bucurdavid Sep 20, 2023
9523077
refactor: error handling
bucurdavid Sep 20, 2023
0d1eed7
refactor: error handling
bucurdavid Sep 20, 2023
926c41e
tests: update minter class name
bucurdavid Sep 20, 2023
7427c54
refactor: consistent address parameter
bucurdavid Sep 20, 2023
a6339cb
refactor: error handling and File import
bucurdavid Sep 20, 2023
61a5b65
set typedoc v
damienen Sep 20, 2023
df88714
refactor: remove comment code and error handling
bucurdavid Sep 21, 2023
e257cc5
test: increase timeout
bucurdavid Sep 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 35 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.
# dependencies
node_modules
.cache
*.log
.DS_Store
# builds
build
dist
.idea
.idea/workspace.xml
.rpt2_cache
.yalc
.husky
out
docs
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
coverage

# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
node_modules
.cache
*.log
.DS_Store

# builds
build
dist
.idea
.idea/workspace.xml
.rpt2_cache
.yalc
.husky
out

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local


npm-debug.log*
yarn-debug.log*
yarn-error.log*

coverage

docs
Loading