Skip to content

Commit

Permalink
feat: nft trading module (without market order)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliman93 committed Jan 27, 2023
1 parent 99bf60c commit e2957b6
Show file tree
Hide file tree
Showing 25 changed files with 9,082 additions and 1,111 deletions.
1,657 changes: 837 additions & 820 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@types/uuid": "^9.0.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
Expand All @@ -64,16 +65,17 @@
}
},
"peerDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/wallet": "^5.7.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/strings": "^5.7.0"
"@ethersproject/strings": "^5.7.0",
"@ethersproject/wallet": "^5.7.0"
},
"dependencies": {
"axios": "^1.2.2"
"axios": "^1.2.2",
"uuid": "^8.3.2"
}
}
3 changes: 2 additions & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export default [
"@ethersproject/contracts": "contracts",
"@ethersproject/strings": "strings",
"@ethersproject/abi": "abi",
axios: "axios"
axios: "axios",
uuid: "uuid"
}
},
{ file: pkg.main, format: "cjs", sourcemap: true },
Expand Down
Loading

0 comments on commit e2957b6

Please sign in to comment.