Skip to content

Commit acf00d3

Browse files
author
Travis CI
committed
[CI Skip] 0.91.0-beta.20
1 parent a3b0dde commit acf00d3

File tree

12 files changed

+26
-26
lines changed

12 files changed

+26
-26
lines changed

docs/METHODS_EVENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ ___
214214

215215
### system
216216

217-
**ExtrinsicFailed**()
217+
**ExtrinsicFailed**(`DispatchError`)
218218
- **summary**: An extrinsic failed.
219219

220220
**ExtrinsicSuccess**()

docs/METHODS_EXTRINSICS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ ___
233233
### staking
234234

235235
**bond**(controller: `Address`, value: `Compact<BalanceOf>`, payee: `RewardDestination`)
236-
- **summary**: Take the origin account as a stash and lock up `value` of its balance. `controller` will be the account that controls it. `value` must be more than the `existential_deposit` defined in the Balances module. The dispatch origin for this call must be _Signed_ by the stash account. # <weight> - Independent of the arguments. Moderate complexity. - O(1). - Three extra DB entries. NOTE: Two of the storage writes (`Self::bonded`, `Self::payee`) are _never_ cleaned unless the `origin` falls below _existential deposit_ and gets removed as dust. # </weight>
236+
- **summary**: Take the origin account as a stash and lock up `value` of its balance. `controller` will be the account that controls it. `value` must be more than the `minimum_balance` specified by `T::Currency`. The dispatch origin for this call must be _Signed_ by the stash account. # <weight> - Independent of the arguments. Moderate complexity. - O(1). - Three extra DB entries. NOTE: Two of the storage writes (`Self::bonded`, `Self::payee`) are _never_ cleaned unless the `origin` falls below _existential deposit_ and gets removed as dust. # </weight>
237237

238238
**bondExtra**(max_additional: `Compact<BalanceOf>`)
239239
- **summary**: Add some extra amount that have appeared in the stash `free_balance` into the balance up for staking. Use this if there are additional funds in your stash account that you wish to bond. Unlike [`bond`] or [`unbond`] this function does not impose any limitation on the amount that can be added. The dispatch origin for this call must be _Signed_ by the stash, not the controller. # <weight> - Independent of the arguments. Insignificant complexity. - O(1). - One DB entry. # </weight>
@@ -263,7 +263,7 @@ ___
263263
- **summary**: The ideal number of validators.
264264

265265
**unbond**(value: `Compact<BalanceOf>`)
266-
- **summary**: Schedule a portion of the stash to be unlocked ready for transfer out after the bond period ends. If this leaves an amount actively bonded less than T::Currency::existential_deposit(), then it is increased to the full amount. Once the unlock period is done, you can call `withdraw_unbonded` to actually move the funds out of management ready for transfer. No more than a limited number of unlocking chunks (see `MAX_UNLOCKING_CHUNKS`) can co-exists at the same time. In that case, [`Call::withdraw_unbonded`] need to be called first to remove some of the chunks (if possible). The dispatch origin for this call must be _Signed_ by the controller, not the stash. See also [`Call::withdraw_unbonded`]. # <weight> - Independent of the arguments. Limited but potentially exploitable complexity. - Contains a limited number of reads. - Each call (requires the remainder of the bonded balance to be above `minimum_balance`) will cause a new entry to be inserted into a vector (`Ledger.unlocking`) kept in storage. The only way to clean the aforementioned storage item is also user-controlled via `withdraw_unbonded`. - One DB entry. </weight>
266+
- **summary**: Schedule a portion of the stash to be unlocked ready for transfer out after the bond period ends. If this leaves an amount actively bonded less than T::Currency::minimum_balance(), then it is increased to the full amount. Once the unlock period is done, you can call `withdraw_unbonded` to actually move the funds out of management ready for transfer. No more than a limited number of unlocking chunks (see `MAX_UNLOCKING_CHUNKS`) can co-exists at the same time. In that case, [`Call::withdraw_unbonded`] need to be called first to remove some of the chunks (if possible). The dispatch origin for this call must be _Signed_ by the controller, not the stash. See also [`Call::withdraw_unbonded`]. # <weight> - Independent of the arguments. Limited but potentially exploitable complexity. - Contains a limited number of reads. - Each call (requires the remainder of the bonded balance to be above `minimum_balance`) will cause a new entry to be inserted into a vector (`Ledger.unlocking`) kept in storage. The only way to clean the aforementioned storage item is also user-controlled via `withdraw_unbonded`. - One DB entry. </weight>
267267

268268
**validate**(prefs: `ValidatorPrefs`)
269269
- **summary**: Declare the desire to validate for the origin controller. Effects will be felt at the beginning of the next era. The dispatch origin for this call must be _Signed_ by the controller, not the stash. # <weight> - Independent of the arguments. Insignificant complexity. - Contains a limited number of reads. - Writes are limited to the `origin` account key. # </weight>

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"packages": [
1010
"packages/*"
1111
],
12-
"version": "0.91.0-beta.19"
12+
"version": "0.91.0-beta.20"
1313
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.91.0-beta.19",
2+
"version": "0.91.0-beta.20",
33
"private": true,
44
"engines": {
55
"yarn": "^1.10.1"

packages/api-contract/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-contract",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "Interfaces for interacting with contracts and contract ABIs",
55
"main": "index.js",
66
"keywords": [
@@ -27,6 +27,6 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/types": "^0.91.0-beta.19"
30+
"@polkadot/types": "^0.91.0-beta.20"
3131
}
3232
}

packages/api-derive/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-derive",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
55
"main": "index.js",
66
"keywords": [
@@ -28,8 +28,8 @@
2828
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
2929
"dependencies": {
3030
"@babel/runtime": "^7.5.5",
31-
"@polkadot/api": "^0.91.0-beta.19",
32-
"@polkadot/types": "^0.91.0-beta.19"
31+
"@polkadot/api": "^0.91.0-beta.20",
32+
"@polkadot/types": "^0.91.0-beta.20"
3333
},
3434
"devDependencies": {
3535
"@polkadot/keyring": "^1.2.0-beta.6"

packages/api-metadata/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-metadata",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/types": "^0.91.0-beta.19",
30+
"@polkadot/types": "^0.91.0-beta.20",
3131
"@polkadot/util": "^1.2.0-beta.6",
3232
"@polkadot/util-crypto": "^1.2.0-beta.6"
3333
},

packages/api/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -27,11 +27,11 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/api-derive": "^0.91.0-beta.19",
31-
"@polkadot/api-metadata": "^0.91.0-beta.19",
32-
"@polkadot/rpc-core": "^0.91.0-beta.19",
33-
"@polkadot/rpc-provider": "^0.91.0-beta.19",
34-
"@polkadot/types": "^0.91.0-beta.19",
30+
"@polkadot/api-derive": "^0.91.0-beta.20",
31+
"@polkadot/api-metadata": "^0.91.0-beta.20",
32+
"@polkadot/rpc-core": "^0.91.0-beta.20",
33+
"@polkadot/rpc-provider": "^0.91.0-beta.20",
34+
"@polkadot/types": "^0.91.0-beta.20",
3535
"@polkadot/util-crypto": "^1.2.0-beta.6"
3636
},
3737
"devDependencies": {

packages/rpc-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-core",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/jsonrpc": "^0.91.0-beta.19",
31-
"@polkadot/rpc-provider": "^0.91.0-beta.19",
32-
"@polkadot/types": "^0.91.0-beta.19",
30+
"@polkadot/jsonrpc": "^0.91.0-beta.20",
31+
"@polkadot/rpc-provider": "^0.91.0-beta.20",
32+
"@polkadot/types": "^0.91.0-beta.20",
3333
"@polkadot/util": "^1.2.0-beta.6",
3434
"rxjs": "^6.5.2"
3535
}

packages/rpc-provider/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-provider",
3-
"version": "0.91.0-beta.19",
3+
"version": "0.91.0-beta.20",
44
"description": "Transport providers for the API",
55
"main": "index.js",
66
"keywords": [
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.5.5",
30-
"@polkadot/api-metadata": "^0.91.0-beta.19",
30+
"@polkadot/api-metadata": "^0.91.0-beta.20",
3131
"@polkadot/util": "^1.2.0-beta.6",
3232
"@polkadot/util-crypto": "^1.2.0-beta.6",
3333
"@types/nock": "^10.0.3",

0 commit comments

Comments
 (0)