Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
u128 balances operational
  • Loading branch information
jacogr committed May 25, 2018
commit 3a4d046a4a7638a4b353f0e5b95433250bc4f95a
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test": "echo 'no tests executed'"
},
"devDependencies": {
"@polkadot/dev-react": "^0.19.10",
"@polkadot/dev-react": "^0.19.11",
"gh-pages": "^1.1.0"
}
}
8 changes: 4 additions & 4 deletions packages/app-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@polkadot/primitives": "^0.16.5",
"@polkadot/primitives-codec": "^0.16.5",
"@polkadot/primitives-json": "^0.16.5",
"@polkadot/primitives": "^0.16.8",
"@polkadot/primitives-codec": "^0.16.8",
"@polkadot/primitives-json": "^0.16.8",
"@polkadot/ui-app": "^0.6.5",
"@polkadot/util-crypto": "^0.22.1"
"@polkadot/util-crypto": "^0.22.2"
}
}
4 changes: 2 additions & 2 deletions packages/app-extrinsics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@polkadot/extrinsics": "^0.16.5",
"@polkadot/extrinsics-codec": "^0.16.5",
"@polkadot/extrinsics": "^0.16.8",
"@polkadot/extrinsics-codec": "^0.16.8",
"@polkadot/ui-app": "^0.6.5",
"@polkadot/ui-signer": "^0.6.5",
"react-dropzone": "^4.2.9"
Expand Down
14 changes: 7 additions & 7 deletions packages/ui-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@polkadot/extrinsics-substrate": "^0.16.5",
"@polkadot/params": "^0.16.5",
"@polkadot/primitives": "^0.16.5",
"@polkadot/storage-substrate": "^0.16.5",
"@polkadot/extrinsics-substrate": "^0.16.8",
"@polkadot/params": "^0.16.8",
"@polkadot/primitives": "^0.16.8",
"@polkadot/storage-substrate": "^0.16.8",
"@polkadot/ui-keyring": "^0.6.5",
"@polkadot/ui-react": "^0.13.6",
"@polkadot/ui-react-rx": "^0.13.6",
"@polkadot/util": "^0.22.1",
"@polkadot/ui-react": "^0.13.9",
"@polkadot/ui-react-rx": "^0.13.9",
"@polkadot/util": "^0.22.2",
"i18next": "^11.1.1",
"i18next-browser-languagedetector": "^2.2.0",
"i18next-xhr-backend": "^1.5.1",
Expand Down
7 changes: 3 additions & 4 deletions packages/ui-app/src/Params/initValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ export default function getInitValue (type: Param$Types): RawParam$Values {
case 'BlockNumber':
case 'Index':
case 'SessionKey':
case 'u64':
case 'PropIndex':
case 'ReferendumIndex':
case 'u32':
case 'u64':
case 'u128':
case 'VoteIndex':
return new BN(0);

Expand Down Expand Up @@ -53,9 +54,7 @@ export default function getInitValue (type: Param$Types): RawParam$Values {

default:
if (Array.isArray(type)) {
return type.map((subtype) =>
getInitValue(subtype)
);
return type.map(getInitValue);
}

// NOTE for @flow, if it fails here, we know what is missing
Expand Down
6 changes: 3 additions & 3 deletions packages/ui-keyring/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@polkadot/ui-react": "^0.13.6",
"@polkadot/util": "^0.22.1",
"@polkadot/util-keyring": "^0.22.1",
"@polkadot/ui-react": "^0.13.9",
"@polkadot/util": "^0.22.2",
"@polkadot/util-keyring": "^0.22.2",
"store": "^2.0.12"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ui-signer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@polkadot/extrinsics": "^0.16.5",
"@polkadot/extrinsics": "^0.16.8",
"@polkadot/ui-app": "^0.6.5",
"@polkadot/ui-keyring": "^0.6.5",
"@polkadot/util": "^0.22.1"
"@polkadot/util": "^0.22.2"
},
"peerDependencies": {
"react": "^16.3.1",
Expand Down
Loading