Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e9322c0
Update permission.test.ts
bpolania Dec 13, 2024
93579ce
New github environment
bpolania Dec 13, 2024
e2d628b
Merge pull request #363 from storyprotocol/origin/dev-polania/integra…
bpolania Dec 22, 2024
2cfc28a
Add v1.3 contract address
bonnie57 Jan 2, 2025
4b1efac
Modify signature and refactor the code
bonnie57 Jan 3, 2025
341f314
Add ipAsset unit tests
bonnie57 Jan 6, 2025
4e63b6e
Modify other modules
bonnie57 Jan 7, 2025
cb1a207
Refactor throw error description and add default value for license te…
bonnie57 Jan 8, 2025
e43c4ce
Refactor derivative data validation
bonnie57 Jan 8, 2025
ac78ad6
Add more validation for getRevenueShare
bonnie57 Jan 9, 2025
4bfaad1
Add todo infor
bonnie57 Jan 14, 2025
e76f3b6
Merge pull request #380 from storyprotocol/bonnie/SDK-39
bonnie57 Jan 16, 2025
b3ca827
Update the related methods (#383)
bonnie57 Jan 22, 2025
38acb7f
Compatible sdk for devnet (#390)
bonnie57 Jan 24, 2025
3388c2e
Bump up version to 1.3.0-rc.0
bonnie57 Jan 24, 2025
c514654
chore: change sdk version to 1.3.0-beta.1
DracoLi Jan 24, 2025
b30b504
Merge pull request #391 from storyprotocol/v1.3
DracoLi Jan 24, 2025
bcc463b
fix: disable react-sdk integration tests
DracoLi Jan 24, 2025
4fb72e6
Merge pull request #392 from storyprotocol/dl/disable-react-tests
DracoLi Jan 24, 2025
aa401ef
Added v1.3 Coverage
bpolania Jan 25, 2025
120a44e
Merge pull request #394 from storyprotocol/origin/bp/sdk-integration-…
bpolania Jan 27, 2025
1cef9e2
Expanded coverage
bpolania Jan 27, 2025
5d37cde
Merge branch 'origin/bp/sdk-integration-tests-1' into origin/bp/sdk-i…
bpolania Jan 27, 2025
e124b03
Expand coverage
bpolania Jan 27, 2025
36f85c5
Improved test case descriptions
bpolania Jan 28, 2025
5f9e6b1
Merge pull request #396 from storyprotocol/origin/bp/sdk-integration-…
bpolania Jan 28, 2025
721b454
Update test cases + Removed coverage check
bpolania Jan 28, 2025
8541f77
Update ipAsset.test.ts
bpolania Jan 28, 2025
d58dd0b
Merge pull request #397 from storyprotocol/origin/bp/sdk-integration-…
bpolania Jan 28, 2025
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 .github/workflows/pr-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@main
with:
sha: ${{ github.event.pull_request.head.sha }}
ENVIRONMENT: "beta-sepolia"
ENVIRONMENT: "odyssey"
secrets:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}
4 changes: 2 additions & 2 deletions .github/workflows/pr-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@main
with:
sha: ${{ github.event.pull_request.head.sha }}
ENVIRONMENT: "beta-sepolia"
ENVIRONMENT: "odyssey"
secrets:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}
Expand All @@ -30,7 +30,7 @@ jobs:
uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-integration-test-workflow.yml@main
with:
sha: ${{ github.sha }}
ENVIRONMENT: "beta-sepolia"
ENVIRONMENT: "odyssey"
secrets:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# and the event triggering the workflow is a push
if: ${{ (needs.fail_if_version_is_same.outputs.is_publish_core_sdk == 'true' || needs.fail_if_version_is_same.outputs.is_publish_react_sdk == 'true') && github.event_name == 'push' }}
runs-on: ubuntu-latest
environment: "beta-sepolia"
environment: "odyssey"
env:
WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }}
TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint": "turbo run lint",
"fix": "turbo run fix",
"test": "turbo run test --no-cache --concurrency=1",
"test:integration": "turbo run test:integration --no-cache",
"test:integration": "turbo run test:integration --no-cache --filter=!@story-protocol/react-sdk",
"prepare": "husky install"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@story-protocol/core-sdk",
"version": "1.2.0-rc.4",
"version": "1.3.0-beta.1",
"description": "Story Protocol Core SDK",
"main": "dist/story-protocol-core-sdk.cjs.js",
"module": "dist/story-protocol-core-sdk.esm.js",
Expand Down
Loading
Loading