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 to v26 (dual chain v6-v7 support) #103

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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/fast-forward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
# never post a comment. (In all cases the information is
# still available in the step's summary.)
comment: on-error
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} ## This allows to trigger push action from within this workflow. Read more - https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
GITHUB_TOKEN: ${{ secrets.ASSOCIATION_RELEASE_TOKEN }} ## This allows to trigger push action from within this workflow. Read more - https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
2 changes: 2 additions & 0 deletions apps/cdd-backend/src/info/info.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const meshResponse = new PolymeshNetworkResponse(
{
name: 'test',
version: new BigNumber(1),
genesisHash: '0x01',
}
);
const meshHealthy = new HealthCheckResponse<PolymeshNetworkResponse>(
Expand Down Expand Up @@ -102,6 +103,7 @@ describe('InfoService', () => {
mockPolymesh.network.getNetworkProperties.mockResolvedValue({
name: 'test',
version: new BigNumber(1),
genesisHash: '0x01',
});
const response = await service.polymeshInfo();

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"@polymeshassociation/browser-extension-signing-manager": "^2.2.0",
"@polymeshassociation/hashicorp-vault-signing-manager": "^3.3.0",
"@polymeshassociation/local-signing-manager": "^3.2.0",
"@polymeshassociation/polymesh-sdk": "^24.6.0",
"@polymeshassociation/polymesh-sdk": "^26.1.0",
"@slack/bolt": "^3.21.1",
"await-to-js": "^3.0.0",
"axios": "^1.3.4",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4604,10 +4604,10 @@
dependencies:
"@polymeshassociation/signing-manager-types" "^3.2.0"

"@polymeshassociation/polymesh-sdk@^24.6.0":
version "24.6.0"
resolved "https://registry.yarnpkg.com/@polymeshassociation/polymesh-sdk/-/polymesh-sdk-24.6.0.tgz#2944933007f54cf51cbee613dacde3025d222ed7"
integrity sha512-b9+Ya2yDoNWCINUwR8DXhO9RHNM9IzwXzTXiNtynfzOWX/VOwuFhv9Hx3WMiMv3oL1IKWRxeQ/wWgKjUHRFP/A==
"@polymeshassociation/polymesh-sdk@^26.1.0":
version "26.1.0"
resolved "https://registry.yarnpkg.com/@polymeshassociation/polymesh-sdk/-/polymesh-sdk-26.1.0.tgz#88584cf89af98fd7eb722ec8d6ce3c2b5d557240"
integrity sha512-0I6/CwAFxE67Rb8JenEiHnzZObTou4dKpnR4esQZpiRh+DLnzrplk1OMihfccsTFISVYGGf2OdYiNGasGuaMSw==
dependencies:
"@apollo/client" "^3.8.1"
"@polkadot/api" "11.2.1"
Expand Down
Loading