Skip to content

Commit

Permalink
added missing types
Browse files Browse the repository at this point in the history
  • Loading branch information
shunjizhan committed May 10, 2024
1 parent 5980caa commit 9fe50cd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/api-derive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/api-derive",
"version": "6.1.1",
"version": "6.1.2",
"description": "Additional polkadot.js derives for Acala Network",
"author": "Acala Developers <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -23,7 +23,7 @@
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@acala-network/types": "6.1.1"
"@acala-network/types": "6.1.2"
},
"peerDependencies": {
"@polkadot/api": "^10.9.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/api",
"version": "6.1.1",
"version": "6.1.2",
"description": "Acala JS API",
"author": "Acala Developers <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -23,8 +23,8 @@
"publish:manual": "npm publish --tolerate-republish --access public"
},
"dependencies": {
"@acala-network/api-derive": "6.1.1",
"@acala-network/types": "6.1.1"
"@acala-network/api-derive": "6.1.2",
"@acala-network/types": "6.1.2"
},
"peerDependencies": {
"@polkadot/api": "^10.9.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acala-network/types",
"version": "6.1.1",
"version": "6.1.2",
"description": "Acala types for @polkadot/api",
"author": "Acala Developers <[email protected]>",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/types/src/versioned.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ const sharedTypes = {
RawSolution: 'RawSolutionWith16',
Keys: 'SessionKeys1',
Weight: 'WeightV1',
DispatchTime: {
_enum: {
At: 'BlockNumber',
After: 'BlockNumber',
},
},
CallOf: 'Call',
};

const xcmV0 = {
Expand Down

0 comments on commit 9fe50cd

Please sign in to comment.