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

Update SDK according to PoC Periphery Supported Workflows #292

Merged
merged 24 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1f55307
Remove collectRoyaltyTokens methods and Update getRoyaltyVaultAddress…
bonnie57 Sep 30, 2024
fe98761
Update createNFTCollection params
bonnie57 Sep 30, 2024
07edc67
Update contract addresses
bonnie57 Sep 30, 2024
59baaf4
Update unit and integration tests
bonnie57 Sep 30, 2024
a67f058
Add mintAndRegisterIp method in ipAsset
bonnie57 Oct 8, 2024
969c328
Refactor validate license terms
bonnie57 Oct 8, 2024
1a1e05f
Add registerPilTermsAndAttach method in ipAsset
bonnie57 Oct 8, 2024
57f9559
Adjust related methods referencing address
bonnie57 Oct 10, 2024
b811e91
Add todo hint
bonnie57 Oct 11, 2024
02189ac
Add registerIpAndMakeDerivativeWithLicenseTokens method in IpAsset mo…
bonnie57 Oct 11, 2024
a437d4f
Add transferToVaultAndSnapshotAndClaimByTokenBatch method
bonnie57 Oct 11, 2024
78e49da
Add royalty related workflow methods
bonnie57 Oct 12, 2024
207b055
Solve ERC721 error
bonnie57 Oct 12, 2024
b0b5379
Add group workflow relate methods
bonnie57 Oct 12, 2024
454298f
Update new contract address
bonnie57 Oct 14, 2024
3f4dfe2
Add debugger log
bonnie57 Oct 14, 2024
2d805c2
Add registerGroupAndAttachLicenseAndAddIps unit tests
bonnie57 Oct 15, 2024
2b02d23
Solve invalid signature and royalty error
bonnie57 Oct 17, 2024
bbe6732
Add the related methods unit tests
bonnie57 Oct 17, 2024
24f797b
Add tests and enhance code
bonnie57 Oct 18, 2024
27a8ce4
Remove license terms register check
bonnie57 Oct 18, 2024
003c113
Add integration tests in command
bonnie57 Oct 18, 2024
613df16
Update group pool description
bonnie57 Oct 18, 2024
7aa4400
Skip integration tests
bonnie57 Oct 18, 2024
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
2 changes: 1 addition & 1 deletion packages/core-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"scripts": {
"build": "pnpm run fix && preconstruct build",
"test": "pnpm run test:unit && pnpm run test:integration",
"test": "pnpm run test:unit",
"test:unit": "TS_NODE_PROJECT='./tsconfig.test.json' c8 --all --src ./src mocha -r ts-node/register './test/unit/**/*.test.ts'",
"test:integration": "TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register './test/integration/**/*.test.ts' --timeout 240000",
"fix": "pnpm run format:fix && pnpm run lint:fix",
Expand Down
Loading