@pezkuwi/api-derive 16.5.5 → 16.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +2 -2
- package/accounts/accountId.js +29 -0
- package/{build/accounts → accounts}/flags.d.ts +2 -2
- package/accounts/flags.js +55 -0
- package/accounts/idAndIndex.js +34 -0
- package/accounts/idToIndex.js +17 -0
- package/{build/accounts → accounts}/identity.d.ts +3 -3
- package/accounts/identity.js +153 -0
- package/{src/accounts/index.ts → accounts/index.js} +0 -3
- package/accounts/indexToId.js +18 -0
- package/accounts/indexes.js +34 -0
- package/accounts/info.js +33 -0
- package/{src/alliance/index.ts → alliance/index.js} +0 -5
- package/augment.js +1 -0
- package/bagsList/get.js +42 -0
- package/bagsList/getExpanded.js +19 -0
- package/bagsList/index.js +3 -0
- package/bagsList/listNodes.d.ts +9 -0
- package/bagsList/listNodes.js +26 -0
- package/{build/bagsList → bagsList}/types.d.ts +3 -3
- package/bagsList/types.js +1 -0
- package/bagsList/util.js +8 -0
- package/balances/account.js +149 -0
- package/balances/all.js +167 -0
- package/{src/balances/index.ts → balances/index.js} +0 -6
- package/{build/balances → balances}/types.d.ts +7 -7
- package/balances/types.js +1 -0
- package/balances/votingBalances.js +18 -0
- package/bounties/bounties.js +50 -0
- package/bounties/helpers/filterBountyProposals.js +5 -0
- package/bounties/index.js +1 -0
- package/bundle.js +107 -0
- package/{src/chain/bestNumber.ts → chain/bestNumber.js} +1 -10
- package/{src/chain/bestNumberFinalized.ts → chain/bestNumberFinalized.js} +1 -10
- package/chain/bestNumberLag.js +19 -0
- package/chain/getBlock.js +25 -0
- package/chain/getBlockByNumber.js +16 -0
- package/chain/getHeader.js +19 -0
- package/{src/chain/index.ts → chain/index.js} +0 -3
- package/chain/subscribeFinalizedBlocks.js +15 -0
- package/chain/subscribeFinalizedHeads.js +37 -0
- package/chain/subscribeNewBlocks.js +15 -0
- package/chain/subscribeNewHeads.js +21 -0
- package/chain/util.js +57 -0
- package/cjs/accounts/accountId.d.ts +17 -0
- package/cjs/accounts/accountId.js +32 -0
- package/cjs/accounts/flags.d.ts +29 -0
- package/cjs/accounts/flags.js +59 -0
- package/cjs/accounts/idAndIndex.d.ts +15 -0
- package/cjs/accounts/idAndIndex.js +37 -0
- package/cjs/accounts/idToIndex.d.ts +16 -0
- package/cjs/accounts/idToIndex.js +20 -0
- package/cjs/accounts/identity.d.ts +48 -0
- package/cjs/accounts/identity.js +159 -0
- package/cjs/accounts/index.d.ts +8 -0
- package/cjs/accounts/index.js +11 -0
- package/cjs/accounts/indexToId.d.ts +15 -0
- package/cjs/accounts/indexToId.js +21 -0
- package/cjs/accounts/indexes.d.ts +16 -0
- package/cjs/accounts/indexes.js +37 -0
- package/cjs/accounts/info.d.ts +18 -0
- package/cjs/accounts/info.js +36 -0
- package/cjs/accounts/types.d.ts +39 -0
- package/cjs/accounts/types.js +2 -0
- package/cjs/alliance/index.d.ts +70 -0
- package/cjs/alliance/index.js +74 -0
- package/cjs/augment.d.ts +1 -0
- package/cjs/augment.js +3 -0
- package/cjs/bagsList/get.d.ts +12 -0
- package/cjs/bagsList/get.js +47 -0
- package/cjs/bagsList/getExpanded.d.ts +16 -0
- package/cjs/bagsList/getExpanded.js +23 -0
- package/cjs/bagsList/index.d.ts +3 -0
- package/cjs/bagsList/index.js +6 -0
- package/cjs/bagsList/listNodes.d.ts +9 -0
- package/cjs/bagsList/listNodes.js +29 -0
- package/cjs/bagsList/types.d.ts +13 -0
- package/cjs/bagsList/types.js +2 -0
- package/cjs/bagsList/util.d.ts +2 -0
- package/cjs/bagsList/util.js +11 -0
- package/cjs/balances/account.d.ts +17 -0
- package/cjs/balances/account.js +152 -0
- package/cjs/balances/all.d.ts +20 -0
- package/cjs/balances/all.js +170 -0
- package/cjs/balances/index.d.ts +20 -0
- package/cjs/balances/index.js +25 -0
- package/cjs/balances/types.d.ts +69 -0
- package/cjs/balances/types.js +2 -0
- package/cjs/balances/votingBalances.d.ts +15 -0
- package/cjs/balances/votingBalances.js +21 -0
- package/cjs/bounties/bounties.d.ts +12 -0
- package/cjs/bounties/bounties.js +53 -0
- package/cjs/bounties/helpers/filterBountyProposals.d.ts +2 -0
- package/cjs/bounties/helpers/filterBountyProposals.js +8 -0
- package/cjs/bounties/index.d.ts +1 -0
- package/cjs/bounties/index.js +4 -0
- package/cjs/bundle.d.ts +9 -0
- package/cjs/bundle.js +112 -0
- package/cjs/chain/bestNumber.d.ts +11 -0
- package/cjs/chain/bestNumber.js +15 -0
- package/cjs/chain/bestNumberFinalized.d.ts +12 -0
- package/cjs/chain/bestNumberFinalized.js +16 -0
- package/cjs/chain/bestNumberLag.d.ts +15 -0
- package/cjs/chain/bestNumberLag.js +22 -0
- package/cjs/chain/getBlock.d.ts +15 -0
- package/cjs/chain/getBlock.js +28 -0
- package/{src/chain/getBlockByNumber.ts → cjs/chain/getBlockByNumber.d.ts} +1 -15
- package/cjs/chain/getBlockByNumber.js +19 -0
- package/cjs/chain/getHeader.d.ts +16 -0
- package/cjs/chain/getHeader.js +22 -0
- package/cjs/chain/index.d.ts +10 -0
- package/cjs/chain/index.js +13 -0
- package/cjs/chain/subscribeFinalizedBlocks.d.ts +14 -0
- package/cjs/chain/subscribeFinalizedBlocks.js +18 -0
- package/cjs/chain/subscribeFinalizedHeads.d.ts +22 -0
- package/cjs/chain/subscribeFinalizedHeads.js +41 -0
- package/cjs/chain/subscribeNewBlocks.d.ts +14 -0
- package/cjs/chain/subscribeNewBlocks.js +18 -0
- package/cjs/chain/subscribeNewHeads.d.ts +15 -0
- package/cjs/chain/subscribeNewHeads.js +24 -0
- package/cjs/chain/util.d.ts +9 -0
- package/cjs/chain/util.js +61 -0
- package/cjs/collective/helpers.js +23 -0
- package/cjs/collective/index.js +6 -0
- package/cjs/collective/members.js +5 -0
- package/cjs/collective/prime.js +11 -0
- package/cjs/collective/proposals.js +44 -0
- package/cjs/collective/types.js +2 -0
- package/{build → cjs}/contracts/fees.d.ts +1 -1
- package/cjs/contracts/fees.js +48 -0
- package/cjs/contracts/index.js +4 -0
- package/cjs/council/index.js +77 -0
- package/cjs/council/types.js +2 -0
- package/cjs/council/votes.js +59 -0
- package/cjs/council/votesOf.js +21 -0
- package/{build → cjs}/crowdloan/childKey.d.ts +2 -2
- package/cjs/crowdloan/childKey.js +26 -0
- package/{build → cjs}/crowdloan/contributions.d.ts +2 -2
- package/cjs/crowdloan/contributions.js +83 -0
- package/cjs/crowdloan/index.js +6 -0
- package/{build → cjs}/crowdloan/ownContributions.d.ts +2 -2
- package/cjs/crowdloan/ownContributions.js +48 -0
- package/cjs/crowdloan/types.js +2 -0
- package/{build → cjs}/crowdloan/util.d.ts +2 -2
- package/cjs/crowdloan/util.js +20 -0
- package/cjs/democracy/dispatchQueue.js +90 -0
- package/cjs/democracy/index.js +14 -0
- package/cjs/democracy/locks.js +65 -0
- package/cjs/democracy/nextExternal.js +31 -0
- package/{build → cjs}/democracy/preimages.d.ts +5 -5
- package/cjs/democracy/preimages.js +117 -0
- package/cjs/democracy/proposals.js +46 -0
- package/cjs/democracy/referendumIds.js +24 -0
- package/cjs/democracy/referendums.js +22 -0
- package/cjs/democracy/referendumsActive.js +19 -0
- package/{build → cjs}/democracy/referendumsFinished.d.ts +2 -2
- package/cjs/democracy/referendumsFinished.js +20 -0
- package/{build → cjs}/democracy/referendumsInfo.d.ts +2 -2
- package/cjs/democracy/referendumsInfo.js +114 -0
- package/cjs/democracy/sqrtElectorate.js +18 -0
- package/{build → cjs}/democracy/types.d.ts +3 -3
- package/cjs/democracy/types.js +2 -0
- package/{build → cjs}/democracy/util.d.ts +5 -5
- package/cjs/democracy/util.js +137 -0
- package/{build → cjs}/derive.d.ts +2 -2
- package/cjs/derive.js +25 -0
- package/cjs/elections/index.js +4 -0
- package/cjs/elections/info.js +93 -0
- package/cjs/elections/types.js +2 -0
- package/cjs/imOnline/index.js +4 -0
- package/cjs/imOnline/receivedHeartbeats.js +42 -0
- package/cjs/index.js +5 -0
- package/cjs/membership/index.js +74 -0
- package/cjs/package.json +3 -0
- package/cjs/packageDetect.d.ts +1 -0
- package/cjs/packageDetect.js +5 -0
- package/cjs/packageInfo.js +4 -0
- package/cjs/session/index.js +6 -0
- package/cjs/session/indexes.js +68 -0
- package/cjs/session/info.js +28 -0
- package/cjs/session/progress.js +93 -0
- package/cjs/session/types.js +2 -0
- package/cjs/society/candidates.js +42 -0
- package/cjs/society/index.js +7 -0
- package/cjs/society/info.js +36 -0
- package/cjs/society/member.js +18 -0
- package/cjs/society/members.js +70 -0
- package/{build → cjs}/society/types.d.ts +5 -5
- package/cjs/society/types.js +2 -0
- package/{build → cjs}/staking/account.d.ts +1 -1
- package/cjs/staking/account.js +80 -0
- package/cjs/staking/cache.js +39 -0
- package/{build → cjs}/staking/currentPoints.d.ts +2 -2
- package/cjs/staking/currentPoints.js +17 -0
- package/cjs/staking/electedInfo.js +37 -0
- package/cjs/staking/erasExposure.js +76 -0
- package/cjs/staking/erasHistoric.js +31 -0
- package/cjs/staking/erasPoints.js +51 -0
- package/cjs/staking/erasPrefs.js +47 -0
- package/cjs/staking/erasRewards.js +38 -0
- package/cjs/staking/erasSlashes.js +53 -0
- package/cjs/staking/index.js +25 -0
- package/{build → cjs}/staking/keys.d.ts +1 -1
- package/cjs/staking/keys.js +61 -0
- package/cjs/staking/overview.js +31 -0
- package/{build → cjs}/staking/ownExposure.d.ts +1 -1
- package/cjs/staking/ownExposure.js +64 -0
- package/{build → cjs}/staking/ownSlashes.d.ts +1 -1
- package/cjs/staking/ownSlashes.js +51 -0
- package/{build → cjs}/staking/query.d.ts +1 -1
- package/cjs/staking/query.js +176 -0
- package/{build → cjs}/staking/stakerExposure.d.ts +1 -1
- package/cjs/staking/stakerExposure.js +56 -0
- package/cjs/staking/stakerPoints.js +35 -0
- package/cjs/staking/stakerPrefs.js +33 -0
- package/{build → cjs}/staking/stakerRewards.d.ts +1 -1
- package/cjs/staking/stakerRewards.js +222 -0
- package/cjs/staking/stakerSlashes.js +34 -0
- package/cjs/staking/stashes.js +38 -0
- package/{build → cjs}/staking/types.d.ts +15 -15
- package/cjs/staking/types.js +2 -0
- package/cjs/staking/util.js +53 -0
- package/cjs/staking/validators.js +71 -0
- package/cjs/staking/waitingInfo.js +32 -0
- package/cjs/technicalCommittee/index.js +74 -0
- package/cjs/teyrchains/index.js +5 -0
- package/{build/parachains → cjs/teyrchains}/info.d.ts +7 -7
- package/cjs/teyrchains/info.js +75 -0
- package/cjs/teyrchains/overview.d.ts +15 -0
- package/cjs/teyrchains/overview.js +39 -0
- package/{build/parachains → cjs/teyrchains}/types.d.ts +6 -6
- package/cjs/teyrchains/types.js +2 -0
- package/cjs/teyrchains/util.js +8 -0
- package/cjs/treasury/index.js +4 -0
- package/cjs/treasury/proposals.js +71 -0
- package/cjs/tx/constants.js +8 -0
- package/cjs/tx/events.js +24 -0
- package/cjs/tx/extrinsicInfo.js +87 -0
- package/cjs/tx/index.js +6 -0
- package/cjs/tx/signingInfo.js +81 -0
- package/cjs/type/HeaderExtended.js +23 -0
- package/cjs/type/SignedBlockExtended.js +60 -0
- package/cjs/type/index.js +7 -0
- package/cjs/type/types.js +2 -0
- package/cjs/type/util.js +36 -0
- package/{build → cjs}/types.d.ts +4 -4
- package/cjs/types.js +15 -0
- package/cjs/util/approvalFlagsToBools.js +19 -0
- package/cjs/util/blockNumber.js +9 -0
- package/cjs/util/cache.js +45 -0
- package/cjs/util/cacheImpl.js +26 -0
- package/cjs/util/first.js +12 -0
- package/cjs/util/index.js +13 -0
- package/cjs/util/lazy.js +7 -0
- package/cjs/util/types.js +2 -0
- package/collective/helpers.d.ts +6 -0
- package/collective/helpers.js +18 -0
- package/collective/index.d.ts +3 -0
- package/collective/index.js +3 -0
- package/collective/members.d.ts +2 -0
- package/collective/members.js +2 -0
- package/collective/prime.d.ts +2 -0
- package/collective/prime.js +8 -0
- package/collective/proposals.d.ts +6 -0
- package/collective/proposals.js +38 -0
- package/{src/collective/types.ts → collective/types.d.ts} +0 -11
- package/collective/types.js +1 -0
- package/contracts/fees.d.ts +14 -0
- package/contracts/fees.js +45 -0
- package/contracts/index.d.ts +1 -0
- package/contracts/index.js +1 -0
- package/council/index.d.ts +72 -0
- package/{src/council/index.ts → council/index.js} +0 -6
- package/{src/council/types.ts → council/types.d.ts} +2 -7
- package/council/types.js +1 -0
- package/council/votes.d.ts +11 -0
- package/council/votes.js +56 -0
- package/council/votesOf.d.ts +16 -0
- package/council/votesOf.js +18 -0
- package/crowdloan/childKey.d.ts +15 -0
- package/crowdloan/childKey.js +23 -0
- package/crowdloan/contributions.d.ts +14 -0
- package/crowdloan/contributions.js +80 -0
- package/crowdloan/index.d.ts +3 -0
- package/crowdloan/index.js +3 -0
- package/crowdloan/ownContributions.d.ts +15 -0
- package/crowdloan/ownContributions.js +45 -0
- package/{src/crowdloan/types.ts → crowdloan/types.d.ts} +2 -7
- package/crowdloan/types.js +1 -0
- package/crowdloan/util.d.ts +10 -0
- package/crowdloan/util.js +17 -0
- package/democracy/dispatchQueue.d.ts +12 -0
- package/democracy/dispatchQueue.js +87 -0
- package/{src/democracy/index.ts → democracy/index.d.ts} +0 -3
- package/democracy/index.js +11 -0
- package/democracy/locks.d.ts +14 -0
- package/democracy/locks.js +62 -0
- package/democracy/nextExternal.d.ts +12 -0
- package/democracy/nextExternal.js +28 -0
- package/democracy/preimages.d.ts +24 -0
- package/democracy/preimages.js +113 -0
- package/democracy/proposals.d.ts +12 -0
- package/democracy/proposals.js +43 -0
- package/democracy/referendumIds.d.ts +12 -0
- package/democracy/referendumIds.js +21 -0
- package/democracy/referendums.d.ts +11 -0
- package/democracy/referendums.js +19 -0
- package/democracy/referendumsActive.d.ts +12 -0
- package/democracy/referendumsActive.js +16 -0
- package/democracy/referendumsFinished.d.ts +15 -0
- package/democracy/referendumsFinished.js +17 -0
- package/democracy/referendumsInfo.d.ts +23 -0
- package/democracy/referendumsInfo.js +108 -0
- package/democracy/sqrtElectorate.d.ts +13 -0
- package/democracy/sqrtElectorate.js +15 -0
- package/democracy/types.d.ts +70 -0
- package/democracy/types.js +1 -0
- package/democracy/util.d.ts +18 -0
- package/democracy/util.js +129 -0
- package/derive.d.ts +52 -0
- package/{src/derive.ts → derive.js} +2 -22
- package/elections/index.d.ts +1 -0
- package/elections/index.js +1 -0
- package/elections/info.d.ts +14 -0
- package/elections/info.js +90 -0
- package/elections/types.d.ts +18 -0
- package/elections/types.js +1 -0
- package/imOnline/index.d.ts +1 -0
- package/imOnline/index.js +1 -0
- package/imOnline/receivedHeartbeats.d.ts +13 -0
- package/imOnline/receivedHeartbeats.js +39 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/membership/index.d.ts +70 -0
- package/{src/membership/index.ts → membership/index.js} +0 -5
- package/package.json +2066 -19
- package/packageDetect.d.ts +1 -0
- package/packageDetect.js +3 -0
- package/packageInfo.d.ts +6 -0
- package/packageInfo.js +1 -0
- package/session/index.d.ts +3 -0
- package/session/index.js +3 -0
- package/session/indexes.d.ts +15 -0
- package/session/indexes.js +65 -0
- package/session/info.d.ts +13 -0
- package/{src/session/info.ts → session/info.js} +7 -21
- package/session/progress.d.ts +47 -0
- package/session/progress.js +89 -0
- package/session/types.d.ts +19 -0
- package/session/types.js +1 -0
- package/society/candidates.d.ts +12 -0
- package/society/candidates.js +39 -0
- package/{src/society/index.ts → society/index.d.ts} +0 -3
- package/society/index.js +4 -0
- package/society/info.d.ts +12 -0
- package/society/info.js +33 -0
- package/society/member.d.ts +14 -0
- package/society/member.js +15 -0
- package/society/members.d.ts +14 -0
- package/society/members.js +66 -0
- package/society/types.d.ts +27 -0
- package/society/types.js +1 -0
- package/staking/account.d.ts +31 -0
- package/staking/account.js +76 -0
- package/staking/cache.d.ts +12 -0
- package/staking/cache.js +32 -0
- package/staking/currentPoints.d.ts +13 -0
- package/staking/currentPoints.js +14 -0
- package/staking/electedInfo.d.ts +23 -0
- package/staking/electedInfo.js +34 -0
- package/staking/erasExposure.d.ts +30 -0
- package/staking/erasExposure.js +72 -0
- package/staking/erasHistoric.d.ts +8 -0
- package/staking/erasHistoric.js +28 -0
- package/staking/erasPoints.d.ts +18 -0
- package/staking/erasPoints.js +47 -0
- package/staking/erasPrefs.d.ts +27 -0
- package/staking/erasPrefs.js +43 -0
- package/staking/erasRewards.d.ts +14 -0
- package/staking/erasRewards.js +34 -0
- package/staking/erasSlashes.d.ts +26 -0
- package/staking/erasSlashes.js +49 -0
- package/{src/staking/index.ts → staking/index.d.ts} +0 -3
- package/staking/index.js +22 -0
- package/staking/keys.d.ts +35 -0
- package/staking/keys.js +57 -0
- package/staking/overview.d.ts +19 -0
- package/staking/overview.js +28 -0
- package/staking/ownExposure.d.ts +37 -0
- package/staking/ownExposure.js +60 -0
- package/staking/ownSlashes.d.ts +35 -0
- package/staking/ownSlashes.js +47 -0
- package/staking/query.d.ts +31 -0
- package/staking/query.js +172 -0
- package/staking/stakerExposure.d.ts +33 -0
- package/staking/stakerExposure.js +51 -0
- package/staking/stakerPoints.d.ts +22 -0
- package/staking/stakerPoints.js +31 -0
- package/staking/stakerPrefs.d.ts +24 -0
- package/staking/stakerPrefs.js +29 -0
- package/staking/stakerRewards.d.ts +49 -0
- package/staking/stakerRewards.js +215 -0
- package/staking/stakerSlashes.d.ts +22 -0
- package/staking/stakerSlashes.js +30 -0
- package/staking/stashes.d.ts +16 -0
- package/staking/stashes.js +35 -0
- package/staking/types.d.ts +139 -0
- package/staking/types.js +1 -0
- package/staking/util.d.ts +14 -0
- package/staking/util.js +46 -0
- package/staking/validators.d.ts +33 -0
- package/{src/staking/validators.ts → staking/validators.js} +25 -40
- package/staking/waitingInfo.d.ts +16 -0
- package/{src/staking/waitingInfo.ts → staking/waitingInfo.js} +8 -24
- package/technicalCommittee/index.d.ts +70 -0
- package/{src/technicalCommittee/index.ts → technicalCommittee/index.js} +0 -5
- package/teyrchains/index.d.ts +2 -0
- package/teyrchains/index.js +2 -0
- package/teyrchains/info.d.ts +19 -0
- package/teyrchains/info.js +72 -0
- package/teyrchains/overview.d.ts +15 -0
- package/teyrchains/overview.js +36 -0
- package/teyrchains/types.d.ts +38 -0
- package/teyrchains/types.js +1 -0
- package/teyrchains/util.d.ts +3 -0
- package/teyrchains/util.js +5 -0
- package/treasury/index.d.ts +1 -0
- package/treasury/index.js +1 -0
- package/treasury/proposals.d.ts +12 -0
- package/treasury/proposals.js +68 -0
- package/tx/constants.d.ts +5 -0
- package/{src/tx/constants.ts → tx/constants.js} +0 -8
- package/tx/events.d.ts +22 -0
- package/tx/events.js +21 -0
- package/tx/extrinsicInfo.d.ts +61 -0
- package/tx/extrinsicInfo.js +83 -0
- package/tx/index.d.ts +3 -0
- package/tx/index.js +3 -0
- package/tx/signingInfo.d.ts +25 -0
- package/tx/signingInfo.js +78 -0
- package/type/HeaderExtended.d.ts +4 -0
- package/type/HeaderExtended.js +20 -0
- package/type/SignedBlockExtended.d.ts +4 -0
- package/type/SignedBlockExtended.js +57 -0
- package/{src/type/index.ts → type/index.d.ts} +0 -3
- package/type/index.js +2 -0
- package/type/types.d.ts +15 -0
- package/type/types.js +1 -0
- package/type/util.d.ts +2 -0
- package/type/util.js +33 -0
- package/{src/types.ts → types.d.ts} +39 -57
- package/types.js +12 -0
- package/util/approvalFlagsToBools.d.ts +4 -0
- package/util/approvalFlagsToBools.js +16 -0
- package/util/blockNumber.d.ts +7 -0
- package/util/blockNumber.js +6 -0
- package/util/cache.d.ts +4 -0
- package/util/cache.js +42 -0
- package/util/cacheImpl.d.ts +3 -0
- package/util/cacheImpl.js +23 -0
- package/util/first.d.ts +4 -0
- package/util/first.js +8 -0
- package/{src/util/index.ts → util/index.d.ts} +0 -6
- package/util/index.js +7 -0
- package/util/lazy.d.ts +4 -0
- package/util/lazy.js +4 -0
- package/util/types.d.ts +6 -0
- package/util/types.js +1 -0
- package/build/bagsList/listNodes.d.ts +0 -9
- package/build/parachains/overview.d.ts +0 -15
- package/src/accounts/accountId.ts +0 -44
- package/src/accounts/flags.ts +0 -90
- package/src/accounts/idAndIndex.ts +0 -51
- package/src/accounts/idToIndex.ts +0 -31
- package/src/accounts/identity.ts +0 -235
- package/src/accounts/indexToId.ts +0 -33
- package/src/accounts/indexes.ts +0 -56
- package/src/accounts/info.ts +0 -58
- package/src/accounts/types.ts +0 -48
- package/src/augment.ts +0 -4
- package/src/bagsList/get.ts +0 -79
- package/src/bagsList/getExpanded.ts +0 -41
- package/src/bagsList/index.ts +0 -6
- package/src/bagsList/listNodes.ts +0 -50
- package/src/bagsList/types.ts +0 -18
- package/src/bagsList/util.ts +0 -14
- package/src/balances/account.ts +0 -210
- package/src/balances/all.ts +0 -246
- package/src/balances/types.ts +0 -79
- package/src/balances/votingBalances.ts +0 -33
- package/src/bounties/bounties.spec.ts +0 -162
- package/src/bounties/bounties.ts +0 -76
- package/src/bounties/helpers/filterBountyProposals.ts +0 -13
- package/src/bounties/index.ts +0 -4
- package/src/bundle.ts +0 -140
- package/src/chain/bestNumberLag.ts +0 -33
- package/src/chain/getBlock.ts +0 -43
- package/src/chain/getHeader.ts +0 -37
- package/src/chain/subscribeFinalizedBlocks.ts +0 -30
- package/src/chain/subscribeFinalizedHeads.ts +0 -62
- package/src/chain/subscribeNewBlocks.ts +0 -30
- package/src/chain/subscribeNewHeads.ts +0 -38
- package/src/chain/util.ts +0 -112
- package/src/checkTypes.manual.ts +0 -8
- package/src/collective/helpers.ts +0 -36
- package/src/collective/index.ts +0 -6
- package/src/collective/members.ts +0 -8
- package/src/collective/prime.ts +0 -25
- package/src/collective/proposals.ts +0 -73
- package/src/contracts/fees.ts +0 -61
- package/src/contracts/index.ts +0 -4
- package/src/council/votes.ts +0 -97
- package/src/council/votesOf.ts +0 -35
- package/src/crowdloan/childKey.ts +0 -57
- package/src/crowdloan/contributions.ts +0 -142
- package/src/crowdloan/index.ts +0 -6
- package/src/crowdloan/ownContributions.ts +0 -81
- package/src/crowdloan/util.ts +0 -33
- package/src/democracy/dispatchQueue.ts +0 -158
- package/src/democracy/locks.ts +0 -114
- package/src/democracy/nextExternal.ts +0 -49
- package/src/democracy/preimages.ts +0 -171
- package/src/democracy/proposals.ts +0 -81
- package/src/democracy/referendumIds.ts +0 -37
- package/src/democracy/referendums.ts +0 -39
- package/src/democracy/referendumsActive.ts +0 -30
- package/src/democracy/referendumsFinished.ts +0 -37
- package/src/democracy/referendumsInfo.ts +0 -181
- package/src/democracy/sqrtElectorate.ts +0 -29
- package/src/democracy/types.ts +0 -84
- package/src/democracy/util.ts +0 -166
- package/src/elections/index.ts +0 -4
- package/src/elections/info.ts +0 -126
- package/src/elections/types.ts +0 -22
- package/src/imOnline/index.ts +0 -4
- package/src/imOnline/receivedHeartbeats.ts +0 -65
- package/src/index.spec.ts +0 -103
- package/src/index.ts +0 -6
- package/src/mod.ts +0 -4
- package/src/packageDetect.ts +0 -11
- package/src/packageInfo.ts +0 -6
- package/src/parachains/index.ts +0 -5
- package/src/parachains/info.ts +0 -111
- package/src/parachains/overview.ts +0 -63
- package/src/parachains/types.ts +0 -46
- package/src/parachains/util.ts +0 -11
- package/src/session/index.ts +0 -6
- package/src/session/indexes.ts +0 -90
- package/src/session/progress.ts +0 -130
- package/src/session/types.ts +0 -25
- package/src/society/candidates.ts +0 -71
- package/src/society/info.ts +0 -50
- package/src/society/member.ts +0 -28
- package/src/society/members.ts +0 -107
- package/src/society/types.ts +0 -33
- package/src/staking/account.ts +0 -112
- package/src/staking/cache.ts +0 -48
- package/src/staking/currentPoints.ts +0 -28
- package/src/staking/electedInfo.ts +0 -54
- package/src/staking/erasExposure.ts +0 -105
- package/src/staking/erasHistoric.ts +0 -47
- package/src/staking/erasPoints.ts +0 -67
- package/src/staking/erasPrefs.ts +0 -63
- package/src/staking/erasRewards.ts +0 -52
- package/src/staking/erasSlashes.ts +0 -69
- package/src/staking/keys.ts +0 -86
- package/src/staking/overview.ts +0 -42
- package/src/staking/ownExposure.ts +0 -83
- package/src/staking/ownSlashes.ts +0 -68
- package/src/staking/query.ts +0 -230
- package/src/staking/stakerExposure.ts +0 -78
- package/src/staking/stakerPoints.ts +0 -46
- package/src/staking/stakerPrefs.ts +0 -45
- package/src/staking/stakerRewards.ts +0 -298
- package/src/staking/stakerSlashes.ts +0 -45
- package/src/staking/stashes.ts +0 -55
- package/src/staking/types.ts +0 -174
- package/src/staking/util.ts +0 -94
- package/src/test/bountyFactory.ts +0 -39
- package/src/test/bytesFactory.ts +0 -15
- package/src/test/helpers.ts +0 -23
- package/src/test/proposalFactory.ts +0 -25
- package/src/treasury/index.ts +0 -4
- package/src/treasury/proposals.ts +0 -109
- package/src/tx/events.ts +0 -43
- package/src/tx/extrinsicInfo.ts +0 -123
- package/src/tx/index.ts +0 -6
- package/src/tx/signingInfo.ts +0 -129
- package/src/type/HeaderExtended.ts +0 -33
- package/src/type/SignedBlockExtended.ts +0 -75
- package/src/type/types.ts +0 -21
- package/src/type/util.ts +0 -45
- package/src/util/approvalFlagToBools.spec.ts +0 -37
- package/src/util/approvalFlagsToBools.ts +0 -26
- package/src/util/blockNumber.ts +0 -15
- package/src/util/cache.ts +0 -65
- package/src/util/cacheImpl.ts +0 -30
- package/src/util/first.ts +0 -20
- package/src/util/lazy.ts +0 -16
- package/src/util/types.ts +0 -9
- package/tsconfig.build.json +0 -21
- package/tsconfig.build.tsbuildinfo +0 -1
- package/tsconfig.spec.json +0 -27
- /package/{build/accounts → accounts}/accountId.d.ts +0 -0
- /package/{build/accounts → accounts}/idAndIndex.d.ts +0 -0
- /package/{build/accounts → accounts}/idToIndex.d.ts +0 -0
- /package/{build/accounts → accounts}/index.d.ts +0 -0
- /package/{build/accounts → accounts}/indexToId.d.ts +0 -0
- /package/{build/accounts → accounts}/indexes.d.ts +0 -0
- /package/{build/accounts → accounts}/info.d.ts +0 -0
- /package/{build/accounts → accounts}/types.d.ts +0 -0
- /package/{build/packageDetect.d.ts → accounts/types.js} +0 -0
- /package/{build/alliance → alliance}/index.d.ts +0 -0
- /package/{build/augment.d.ts → augment.d.ts} +0 -0
- /package/{build/bagsList → bagsList}/get.d.ts +0 -0
- /package/{build/bagsList → bagsList}/getExpanded.d.ts +0 -0
- /package/{build/bagsList → bagsList}/index.d.ts +0 -0
- /package/{build/bagsList → bagsList}/util.d.ts +0 -0
- /package/{build/balances → balances}/account.d.ts +0 -0
- /package/{build/balances → balances}/all.d.ts +0 -0
- /package/{build/balances → balances}/index.d.ts +0 -0
- /package/{build/balances → balances}/votingBalances.d.ts +0 -0
- /package/{build/bounties → bounties}/bounties.d.ts +0 -0
- /package/{build/bounties → bounties}/helpers/filterBountyProposals.d.ts +0 -0
- /package/{build/bounties → bounties}/index.d.ts +0 -0
- /package/{build/bundle.d.ts → bundle.d.ts} +0 -0
- /package/{build/chain → chain}/bestNumber.d.ts +0 -0
- /package/{build/chain → chain}/bestNumberFinalized.d.ts +0 -0
- /package/{build/chain → chain}/bestNumberLag.d.ts +0 -0
- /package/{build/chain → chain}/getBlock.d.ts +0 -0
- /package/{build/chain → chain}/getBlockByNumber.d.ts +0 -0
- /package/{build/chain → chain}/getHeader.d.ts +0 -0
- /package/{build/chain → chain}/index.d.ts +0 -0
- /package/{build/chain → chain}/subscribeFinalizedBlocks.d.ts +0 -0
- /package/{build/chain → chain}/subscribeFinalizedHeads.d.ts +0 -0
- /package/{build/chain → chain}/subscribeNewBlocks.d.ts +0 -0
- /package/{build/chain → chain}/subscribeNewHeads.d.ts +0 -0
- /package/{build/chain → chain}/util.d.ts +0 -0
- /package/{build → cjs}/collective/helpers.d.ts +0 -0
- /package/{build → cjs}/collective/index.d.ts +0 -0
- /package/{build → cjs}/collective/members.d.ts +0 -0
- /package/{build → cjs}/collective/prime.d.ts +0 -0
- /package/{build → cjs}/collective/proposals.d.ts +0 -0
- /package/{build → cjs}/collective/types.d.ts +0 -0
- /package/{build → cjs}/contracts/index.d.ts +0 -0
- /package/{build → cjs}/council/index.d.ts +0 -0
- /package/{build → cjs}/council/types.d.ts +0 -0
- /package/{build → cjs}/council/votes.d.ts +0 -0
- /package/{build → cjs}/council/votesOf.d.ts +0 -0
- /package/{build → cjs}/crowdloan/index.d.ts +0 -0
- /package/{build → cjs}/crowdloan/types.d.ts +0 -0
- /package/{build → cjs}/democracy/dispatchQueue.d.ts +0 -0
- /package/{build → cjs}/democracy/index.d.ts +0 -0
- /package/{build → cjs}/democracy/locks.d.ts +0 -0
- /package/{build → cjs}/democracy/nextExternal.d.ts +0 -0
- /package/{build → cjs}/democracy/proposals.d.ts +0 -0
- /package/{build → cjs}/democracy/referendumIds.d.ts +0 -0
- /package/{build → cjs}/democracy/referendums.d.ts +0 -0
- /package/{build → cjs}/democracy/referendumsActive.d.ts +0 -0
- /package/{build → cjs}/democracy/sqrtElectorate.d.ts +0 -0
- /package/{build → cjs}/elections/index.d.ts +0 -0
- /package/{build → cjs}/elections/info.d.ts +0 -0
- /package/{build → cjs}/elections/types.d.ts +0 -0
- /package/{build → cjs}/imOnline/index.d.ts +0 -0
- /package/{build → cjs}/imOnline/receivedHeartbeats.d.ts +0 -0
- /package/{build → cjs}/index.d.ts +0 -0
- /package/{build → cjs}/membership/index.d.ts +0 -0
- /package/{build → cjs}/packageInfo.d.ts +0 -0
- /package/{build → cjs}/session/index.d.ts +0 -0
- /package/{build → cjs}/session/indexes.d.ts +0 -0
- /package/{build → cjs}/session/info.d.ts +0 -0
- /package/{build → cjs}/session/progress.d.ts +0 -0
- /package/{build → cjs}/session/types.d.ts +0 -0
- /package/{build → cjs}/society/candidates.d.ts +0 -0
- /package/{build → cjs}/society/index.d.ts +0 -0
- /package/{build → cjs}/society/info.d.ts +0 -0
- /package/{build → cjs}/society/member.d.ts +0 -0
- /package/{build → cjs}/society/members.d.ts +0 -0
- /package/{build → cjs}/staking/cache.d.ts +0 -0
- /package/{build → cjs}/staking/electedInfo.d.ts +0 -0
- /package/{build → cjs}/staking/erasExposure.d.ts +0 -0
- /package/{build → cjs}/staking/erasHistoric.d.ts +0 -0
- /package/{build → cjs}/staking/erasPoints.d.ts +0 -0
- /package/{build → cjs}/staking/erasPrefs.d.ts +0 -0
- /package/{build → cjs}/staking/erasRewards.d.ts +0 -0
- /package/{build → cjs}/staking/erasSlashes.d.ts +0 -0
- /package/{build → cjs}/staking/index.d.ts +0 -0
- /package/{build → cjs}/staking/overview.d.ts +0 -0
- /package/{build → cjs}/staking/stakerPoints.d.ts +0 -0
- /package/{build → cjs}/staking/stakerPrefs.d.ts +0 -0
- /package/{build → cjs}/staking/stakerSlashes.d.ts +0 -0
- /package/{build → cjs}/staking/stashes.d.ts +0 -0
- /package/{build → cjs}/staking/util.d.ts +0 -0
- /package/{build → cjs}/staking/validators.d.ts +0 -0
- /package/{build → cjs}/staking/waitingInfo.d.ts +0 -0
- /package/{build → cjs}/technicalCommittee/index.d.ts +0 -0
- /package/{build/parachains → cjs/teyrchains}/index.d.ts +0 -0
- /package/{build/parachains → cjs/teyrchains}/util.d.ts +0 -0
- /package/{build → cjs}/treasury/index.d.ts +0 -0
- /package/{build → cjs}/treasury/proposals.d.ts +0 -0
- /package/{build → cjs}/tx/constants.d.ts +0 -0
- /package/{build → cjs}/tx/events.d.ts +0 -0
- /package/{build → cjs}/tx/extrinsicInfo.d.ts +0 -0
- /package/{build → cjs}/tx/index.d.ts +0 -0
- /package/{build → cjs}/tx/signingInfo.d.ts +0 -0
- /package/{build → cjs}/type/HeaderExtended.d.ts +0 -0
- /package/{build → cjs}/type/SignedBlockExtended.d.ts +0 -0
- /package/{build → cjs}/type/index.d.ts +0 -0
- /package/{build → cjs}/type/types.d.ts +0 -0
- /package/{build → cjs}/type/util.d.ts +0 -0
- /package/{build → cjs}/util/approvalFlagsToBools.d.ts +0 -0
- /package/{build → cjs}/util/blockNumber.d.ts +0 -0
- /package/{build → cjs}/util/cache.d.ts +0 -0
- /package/{build → cjs}/util/cacheImpl.d.ts +0 -0
- /package/{build → cjs}/util/first.d.ts +0 -0
- /package/{build → cjs}/util/index.d.ts +0 -0
- /package/{build → cjs}/util/lazy.d.ts +0 -0
- /package/{build → cjs}/util/types.d.ts +0 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.erasPrefs = exports._erasPrefs = exports.eraPrefs = void 0;
|
|
4
|
+
exports._eraPrefs = _eraPrefs;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
const cache_js_1 = require("./cache.js");
|
|
8
|
+
const util_js_1 = require("./util.js");
|
|
9
|
+
const CACHE_KEY = 'eraPrefs';
|
|
10
|
+
function mapPrefs(era, all) {
|
|
11
|
+
const validators = {};
|
|
12
|
+
all.forEach(([key, prefs]) => {
|
|
13
|
+
validators[key.args[1].toString()] = prefs;
|
|
14
|
+
});
|
|
15
|
+
return { era, validators };
|
|
16
|
+
}
|
|
17
|
+
function _eraPrefs(instanceId, api) {
|
|
18
|
+
return (0, index_js_1.memo)(instanceId, (era, withActive) => {
|
|
19
|
+
const [cacheKey, cached] = (0, cache_js_1.getEraCache)(CACHE_KEY, era, withActive);
|
|
20
|
+
return cached
|
|
21
|
+
? (0, rxjs_1.of)(cached)
|
|
22
|
+
: api.query.staking.erasValidatorPrefs.entries(era).pipe((0, rxjs_1.map)((r) => (0, cache_js_1.setEraCache)(cacheKey, withActive, mapPrefs(era, r))));
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* @name eraPrefs
|
|
27
|
+
* @description Retrieves the validators commission preferences for a given staking era.
|
|
28
|
+
* @param {EraIndex} era The staking era to query.
|
|
29
|
+
* @example
|
|
30
|
+
* ```javascript
|
|
31
|
+
* const era = api.createType("EraIndex", 1000);
|
|
32
|
+
* const prefs = await api.derive.staking.eraPrefs(era);
|
|
33
|
+
* console.log(JSON.stringify(prefs));
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
exports.eraPrefs = (0, util_js_1.singleEra)('_eraPrefs');
|
|
37
|
+
exports._erasPrefs = (0, util_js_1.combineEras)('_eraPrefs');
|
|
38
|
+
/**
|
|
39
|
+
* @name erasPrefs
|
|
40
|
+
* @description Retrieves validators commission preferences for multiple past staking eras
|
|
41
|
+
* @param {boolean} withActive? (Optional) Whether to include the active era in the result.
|
|
42
|
+
* @example
|
|
43
|
+
* ```javascript
|
|
44
|
+
* const prefs = await api.derive.staking.erasPrefs(true);
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
exports.erasPrefs = (0, util_js_1.erasHistoricApply)('_erasPrefs');
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.erasRewards = void 0;
|
|
4
|
+
exports._erasRewards = _erasRewards;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
const cache_js_1 = require("./cache.js");
|
|
8
|
+
const util_js_1 = require("./util.js");
|
|
9
|
+
const CACHE_KEY = 'eraRewards';
|
|
10
|
+
function mapRewards(eras, optRewards) {
|
|
11
|
+
return eras.map((era, index) => ({
|
|
12
|
+
era,
|
|
13
|
+
eraReward: optRewards[index].unwrapOrDefault()
|
|
14
|
+
}));
|
|
15
|
+
}
|
|
16
|
+
function _erasRewards(instanceId, api) {
|
|
17
|
+
return (0, index_js_1.memo)(instanceId, (eras, withActive) => {
|
|
18
|
+
if (!eras.length) {
|
|
19
|
+
return (0, rxjs_1.of)([]);
|
|
20
|
+
}
|
|
21
|
+
const cached = (0, cache_js_1.getEraMultiCache)(CACHE_KEY, eras, withActive);
|
|
22
|
+
const remaining = (0, util_js_1.filterEras)(eras, cached);
|
|
23
|
+
if (!remaining.length) {
|
|
24
|
+
return (0, rxjs_1.of)(cached);
|
|
25
|
+
}
|
|
26
|
+
return api.query.staking.erasValidatorReward.multi(remaining).pipe((0, rxjs_1.map)((r) => (0, cache_js_1.filterCachedEras)(eras, cached, (0, cache_js_1.setEraMultiCache)(CACHE_KEY, withActive, mapRewards(remaining, r)))));
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @name erasRewards
|
|
31
|
+
* @description Retrieves rewards for historical eras.
|
|
32
|
+
* @param {boolean} withActive? (Optional) Whether to include the active era in the result.
|
|
33
|
+
* @example
|
|
34
|
+
* ```javascript
|
|
35
|
+
* const rewards = await api.derive.staking.erasRewards(true);
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
exports.erasRewards = (0, util_js_1.erasHistoricApply)('_erasRewards');
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.erasSlashes = exports._erasSlashes = exports.eraSlashes = void 0;
|
|
4
|
+
exports._eraSlashes = _eraSlashes;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
const cache_js_1 = require("./cache.js");
|
|
8
|
+
const util_js_1 = require("./util.js");
|
|
9
|
+
const CACHE_KEY = 'eraSlashes';
|
|
10
|
+
function mapSlashes(era, noms, vals) {
|
|
11
|
+
const nominators = {};
|
|
12
|
+
const validators = {};
|
|
13
|
+
noms.forEach(([key, optBalance]) => {
|
|
14
|
+
nominators[key.args[1].toString()] = optBalance.unwrap();
|
|
15
|
+
});
|
|
16
|
+
vals.forEach(([key, optRes]) => {
|
|
17
|
+
validators[key.args[1].toString()] = optRes.unwrapOrDefault()[1];
|
|
18
|
+
});
|
|
19
|
+
return { era, nominators, validators };
|
|
20
|
+
}
|
|
21
|
+
function _eraSlashes(instanceId, api) {
|
|
22
|
+
return (0, index_js_1.memo)(instanceId, (era, withActive) => {
|
|
23
|
+
const [cacheKey, cached] = (0, cache_js_1.getEraCache)(CACHE_KEY, era, withActive);
|
|
24
|
+
return cached
|
|
25
|
+
? (0, rxjs_1.of)(cached)
|
|
26
|
+
: (0, rxjs_1.combineLatest)([
|
|
27
|
+
api.query.staking.nominatorSlashInEra.entries(era),
|
|
28
|
+
api.query.staking.validatorSlashInEra.entries(era)
|
|
29
|
+
]).pipe((0, rxjs_1.map)(([n, v]) => (0, cache_js_1.setEraCache)(cacheKey, withActive, mapSlashes(era, n, v))));
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @name eraSlashes
|
|
34
|
+
* @description Retrieves the slashes for a specific staking era.
|
|
35
|
+
* @param {EraIndex} eras The staking era to query.
|
|
36
|
+
* @example
|
|
37
|
+
* ```javascript
|
|
38
|
+
* const era = api.createType("EraIndex", 1000);
|
|
39
|
+
* const slashes = await api.derive.staking.eraSlashes(era);
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
exports.eraSlashes = (0, util_js_1.singleEra)('_eraSlashes');
|
|
43
|
+
exports._erasSlashes = (0, util_js_1.combineEras)('_eraSlashes');
|
|
44
|
+
/**
|
|
45
|
+
* @name erasSlashes
|
|
46
|
+
* @description Retrieves slashes for historical eras.
|
|
47
|
+
* @param {boolean} withActive? (Optional) Whether to include the active era in the result.
|
|
48
|
+
* @example
|
|
49
|
+
* ```javascript
|
|
50
|
+
* const slashes = await api.derive.staking.erasSlashes(true);
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
exports.erasSlashes = (0, util_js_1.erasHistoricApply)('_erasSlashes');
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./account.js"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./currentPoints.js"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./electedInfo.js"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./erasExposure.js"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./erasHistoric.js"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./erasPoints.js"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./erasPrefs.js"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./erasRewards.js"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./erasSlashes.js"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./keys.js"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./overview.js"), exports);
|
|
15
|
+
tslib_1.__exportStar(require("./ownExposure.js"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./ownSlashes.js"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./query.js"), exports);
|
|
18
|
+
tslib_1.__exportStar(require("./stakerExposure.js"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./stakerPoints.js"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./stakerPrefs.js"), exports);
|
|
21
|
+
tslib_1.__exportStar(require("./stakerRewards.js"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./stakerSlashes.js"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./stashes.js"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./validators.js"), exports);
|
|
25
|
+
tslib_1.__exportStar(require("./waitingInfo.js"), exports);
|
|
@@ -16,7 +16,7 @@ import type { DeriveStakingKeys } from './types.js';
|
|
|
16
16
|
* );
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
export declare const keys: (instanceId: string, api: DeriveApi) => (stashId: string | Uint8Array
|
|
19
|
+
export declare const keys: (instanceId: string, api: DeriveApi) => (stashId: string | Uint8Array) => Observable<DeriveStakingKeys>;
|
|
20
20
|
/**
|
|
21
21
|
* @name keysMulti
|
|
22
22
|
* @description Retrieves session keys for multiple stash accounts.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.keys = void 0;
|
|
4
|
+
exports.keysMulti = keysMulti;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
function extractsIds(stashId, queuedKeys, nextKeys) {
|
|
8
|
+
const sessionIds = (queuedKeys.find(([currentId]) => currentId.eq(stashId)) || [undefined, []])[1];
|
|
9
|
+
const nextSessionIds = nextKeys.unwrapOr([]);
|
|
10
|
+
return {
|
|
11
|
+
nextSessionIds: Array.isArray(nextSessionIds)
|
|
12
|
+
? nextSessionIds
|
|
13
|
+
: [...nextSessionIds.values()],
|
|
14
|
+
sessionIds: Array.isArray(sessionIds)
|
|
15
|
+
? sessionIds
|
|
16
|
+
: [...sessionIds.values()]
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* @name keys
|
|
21
|
+
* @param { Uint8Array | string } stashId The stash account ID whose session keys are to be retrieved.
|
|
22
|
+
* @description Retrieves the session keys associated with a given stash account.
|
|
23
|
+
* @example
|
|
24
|
+
* ```javascript
|
|
25
|
+
* const keys = await api.derive.staking.keys(
|
|
26
|
+
* ALICE
|
|
27
|
+
* );
|
|
28
|
+
* console.log(
|
|
29
|
+
* "Session keys:",
|
|
30
|
+
* keys.sessionIds.map((key) => `Key: ${key}`)
|
|
31
|
+
* );
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
exports.keys = (0, index_js_1.firstMemo)((api, stashId) => api.derive.staking.keysMulti([stashId]));
|
|
35
|
+
/**
|
|
36
|
+
* @name keysMulti
|
|
37
|
+
* @description Retrieves session keys for multiple stash accounts.
|
|
38
|
+
* @param { (Uint8Array | string)[] } stashIds Array of stash account IDs.
|
|
39
|
+
* @example
|
|
40
|
+
* ```javascript
|
|
41
|
+
* const keysMulti = await api.derive.staking.keysMulti([ ALICE, BOB ]);
|
|
42
|
+
* keysMulti.forEach((keys) => {
|
|
43
|
+
* console.log(
|
|
44
|
+
* "Session keys:",
|
|
45
|
+
* keys.sessionIds.map((key) => `Key: ${key}`)
|
|
46
|
+
* );
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
function keysMulti(instanceId, api) {
|
|
51
|
+
return (0, index_js_1.memo)(instanceId, (stashIds) => stashIds.length
|
|
52
|
+
? api.query.session.queuedKeys().pipe((0, rxjs_1.switchMap)((queuedKeys) => (0, rxjs_1.combineLatest)([
|
|
53
|
+
(0, rxjs_1.of)(queuedKeys),
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/dot-notation
|
|
55
|
+
api.consts['session']?.['dedupKeyPrefix']
|
|
56
|
+
// eslint-disable-next-line @typescript-eslint/dot-notation
|
|
57
|
+
? api.query.session.nextKeys.multi(stashIds.map((s) => [api.consts['session']['dedupKeyPrefix'], s]))
|
|
58
|
+
: (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.session.nextKeys(s)))
|
|
59
|
+
])), (0, rxjs_1.map)(([queuedKeys, nextKeys]) => stashIds.map((stashId, index) => extractsIds(stashId, queuedKeys, nextKeys[index]))))
|
|
60
|
+
: (0, rxjs_1.of)([]));
|
|
61
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.overview = overview;
|
|
4
|
+
const rxjs_1 = require("rxjs");
|
|
5
|
+
const util_1 = require("@pezkuwi/util");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
/**
|
|
8
|
+
* @name overview
|
|
9
|
+
* @description Retrieve the staking overview, including elected validators and points earned.
|
|
10
|
+
* @example
|
|
11
|
+
* ```javascript
|
|
12
|
+
* const {
|
|
13
|
+
* activeEra,
|
|
14
|
+
* activeEraStart,
|
|
15
|
+
* currentEra,
|
|
16
|
+
* currentIndex,
|
|
17
|
+
* nextElected,
|
|
18
|
+
* validatorCount,
|
|
19
|
+
* validators,
|
|
20
|
+
* } = await api.derive.staking.overview();
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function overview(instanceId, api) {
|
|
24
|
+
return (0, index_js_1.memo)(instanceId, () => (0, rxjs_1.combineLatest)([
|
|
25
|
+
api.derive.session.indexes(),
|
|
26
|
+
api.derive.staking.validators()
|
|
27
|
+
]).pipe((0, rxjs_1.map)(([indexes, { nextElected, validators }]) => (0, util_1.objectSpread)({}, indexes, {
|
|
28
|
+
nextElected,
|
|
29
|
+
validators
|
|
30
|
+
}))));
|
|
31
|
+
}
|
|
@@ -20,7 +20,7 @@ export declare function _ownExposures(instanceId: string, api: DeriveApi): (acco
|
|
|
20
20
|
* console.log(JSON.stringify(exposure));
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
23
|
-
export declare const ownExposure: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array
|
|
23
|
+
export declare const ownExposure: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array, era: EraIndex, page?: u32 | AnyNumber | undefined) => Observable<DeriveOwnExposure>;
|
|
24
24
|
/**
|
|
25
25
|
* @name ownExposures
|
|
26
26
|
* @description Retrieves staking exposures for a validator across multiple historical eras.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ownExposures = exports.ownExposure = void 0;
|
|
4
|
+
exports._ownExposures = _ownExposures;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
const util_js_1 = require("./util.js");
|
|
8
|
+
function _ownExposures(instanceId, api) {
|
|
9
|
+
return (0, index_js_1.memo)(instanceId, (accountId, eras, _withActive, page) => {
|
|
10
|
+
const emptyStakingExposure = api.registry.createType('Exposure');
|
|
11
|
+
// The reason we don't explicitly make the actual types is for compatibility. If the chain doesn't have the noted type it will fail
|
|
12
|
+
// on construction. Therefore we just make an empty option.
|
|
13
|
+
const emptyOptionPage = api.registry.createType('Option<Null>');
|
|
14
|
+
const emptyOptionMeta = api.registry.createType('Option<Null>');
|
|
15
|
+
return eras.length
|
|
16
|
+
? (0, rxjs_1.combineLatest)([
|
|
17
|
+
// Backwards and forward compat for historical integrity when using `erasHistoricApplyAccount`
|
|
18
|
+
api.query.staking.erasStakersClipped
|
|
19
|
+
? (0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.erasStakersClipped(e, accountId)))
|
|
20
|
+
: (0, rxjs_1.of)(eras.map((_) => emptyStakingExposure)),
|
|
21
|
+
api.query.staking.erasStakers
|
|
22
|
+
? (0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.erasStakers(e, accountId)))
|
|
23
|
+
: (0, rxjs_1.of)(eras.map((_) => emptyStakingExposure)),
|
|
24
|
+
api.query.staking.erasStakersPaged
|
|
25
|
+
? (0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.erasStakersPaged(e, accountId, page)))
|
|
26
|
+
: (0, rxjs_1.of)(eras.map((_) => emptyOptionPage)),
|
|
27
|
+
api.query.staking.erasStakersOverview
|
|
28
|
+
? (0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.erasStakersOverview(e, accountId)))
|
|
29
|
+
: (0, rxjs_1.of)(eras.map((_) => emptyOptionMeta))
|
|
30
|
+
]).pipe((0, rxjs_1.map)(([clp, exp, paged, expMeta]) => eras.map((era, index) => ({ clipped: clp[index], era, exposure: exp[index], exposureMeta: expMeta[index], exposurePaged: paged[index] }))))
|
|
31
|
+
: (0, rxjs_1.of)([]);
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @name ownExposure
|
|
36
|
+
* @description Retrieves the staking exposure of a validator for a specific era, including their own stake.
|
|
37
|
+
* @param { Uint8Array | string } accountId The validator stash account.
|
|
38
|
+
* @param {EraIndex} era The staking era to query.
|
|
39
|
+
* @param { u32 | AnyNumber } page? (Optional) The pagination index.
|
|
40
|
+
* @example
|
|
41
|
+
* ```javascript
|
|
42
|
+
* const era = api.createType("EraIndex", 1000);
|
|
43
|
+
* const exposure = await api.derive.staking.ownExposure(
|
|
44
|
+
* "11VR4pF6c7kfBhfmuwwjWY3FodeYBKWx7ix2rsRCU2q6hqJ",
|
|
45
|
+
* era
|
|
46
|
+
* );
|
|
47
|
+
* console.log(JSON.stringify(exposure));
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
exports.ownExposure = (0, index_js_1.firstMemo)((api, accountId, era, page) => api.derive.staking._ownExposures(accountId, [era], true, page || 0));
|
|
51
|
+
/**
|
|
52
|
+
* @name ownExposures
|
|
53
|
+
* @description Retrieves staking exposures for a validator across multiple historical eras.
|
|
54
|
+
* @param { Uint8Array | string } accountId The validator stash account.
|
|
55
|
+
* @param { boolean } withActive Whether to include the active era.
|
|
56
|
+
* @example
|
|
57
|
+
* ```javascript
|
|
58
|
+
* const exposures = await api.derive.staking.ownExposures(
|
|
59
|
+
* ALICE,
|
|
60
|
+
* true
|
|
61
|
+
* );
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
exports.ownExposures = (0, util_js_1.erasHistoricApplyAccount)('_ownExposures');
|
|
@@ -17,7 +17,7 @@ export declare function _ownSlashes(instanceId: string, api: DeriveApi): (accoun
|
|
|
17
17
|
* console.log(`Era: ${slashedAmount.era}, total ${slashedAmount.total}`);
|
|
18
18
|
* ```
|
|
19
19
|
*/
|
|
20
|
-
export declare const ownSlash: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array
|
|
20
|
+
export declare const ownSlash: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array, era: EraIndex) => Observable<DeriveStakerSlashes>;
|
|
21
21
|
/**
|
|
22
22
|
* @name ownSlashes
|
|
23
23
|
* @description Retrieves the slashes for a specific account across all historic eras.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ownSlashes = exports.ownSlash = void 0;
|
|
4
|
+
exports._ownSlashes = _ownSlashes;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
const util_js_1 = require("./util.js");
|
|
8
|
+
function _ownSlashes(instanceId, api) {
|
|
9
|
+
return (0, index_js_1.memo)(instanceId, (accountId, eras, _withActive) => eras.length
|
|
10
|
+
? (0, rxjs_1.combineLatest)([
|
|
11
|
+
(0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.validatorSlashInEra(e, accountId))),
|
|
12
|
+
(0, rxjs_1.combineLatest)(eras.map((e) => api.query.staking.nominatorSlashInEra(e, accountId)))
|
|
13
|
+
]).pipe((0, rxjs_1.map)(([vals, noms]) => eras.map((era, index) => ({
|
|
14
|
+
era,
|
|
15
|
+
total: vals[index].isSome
|
|
16
|
+
? vals[index].unwrap()[1]
|
|
17
|
+
: noms[index].unwrapOrDefault()
|
|
18
|
+
}))))
|
|
19
|
+
: (0, rxjs_1.of)([]));
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @name ownSlash
|
|
23
|
+
* @description Retrieves the slashes applied to a specific account in a given era.
|
|
24
|
+
* @param { Uint8Array | string } accountId The validator stash account.
|
|
25
|
+
* @param {EraIndex} era The staking era to query.
|
|
26
|
+
* @example
|
|
27
|
+
* ```javascript
|
|
28
|
+
* const era = api.createType("EraIndex", 1000);
|
|
29
|
+
* const slashedAmount = await api.derive.staking.ownSlash(
|
|
30
|
+
* ALICE,
|
|
31
|
+
* era
|
|
32
|
+
* );
|
|
33
|
+
* console.log(`Era: ${slashedAmount.era}, total ${slashedAmount.total}`);
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
exports.ownSlash = (0, index_js_1.firstMemo)((api, accountId, era) => api.derive.staking._ownSlashes(accountId, [era], true));
|
|
37
|
+
/**
|
|
38
|
+
* @name ownSlashes
|
|
39
|
+
* @description Retrieves the slashes for a specific account across all historic eras.
|
|
40
|
+
* @param { Uint8Array | string } accountId The validator stash account.
|
|
41
|
+
* @param { boolean } withActive Whether to include the active era.
|
|
42
|
+
* @example
|
|
43
|
+
* ```javascript
|
|
44
|
+
* const slashes = await api.derive.staking.ownSlashes(
|
|
45
|
+
* ALICE,
|
|
46
|
+
* true
|
|
47
|
+
* );
|
|
48
|
+
* console.log(slashes);
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
exports.ownSlashes = (0, util_js_1.erasHistoricApplyAccount)('_ownSlashes');
|
|
@@ -16,7 +16,7 @@ import type { DeriveApi, DeriveStakingQuery, StakingQueryFlags } from '../types.
|
|
|
16
16
|
* );
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
|
-
export declare const query: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array
|
|
19
|
+
export declare const query: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array, flags: StakingQueryFlags, page?: u32 | undefined) => Observable<DeriveStakingQuery>;
|
|
20
20
|
/**
|
|
21
21
|
* @name queryMulti
|
|
22
22
|
* @param { (Uint8Array | string)[] } accountIds List of stash accounts to query.
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.query = void 0;
|
|
4
|
+
exports.queryMulti = queryMulti;
|
|
5
|
+
const rxjs_1 = require("rxjs");
|
|
6
|
+
const index_js_1 = require("../util/index.js");
|
|
7
|
+
function rewardDestinationCompat(rewardDestination) {
|
|
8
|
+
// We ensure the type is an Option by checking if isSome is a boolean. When isSome doesn't exist it will always return undefined.
|
|
9
|
+
return typeof rewardDestination.isSome === 'boolean'
|
|
10
|
+
? rewardDestination.unwrapOr(null)
|
|
11
|
+
: rewardDestination;
|
|
12
|
+
}
|
|
13
|
+
function filterClaimedRewards(api, cl) {
|
|
14
|
+
return api.registry.createType('Vec<u32>', cl.filter((c) => c !== -1));
|
|
15
|
+
}
|
|
16
|
+
function filterRewards(stashIds, eras, claimedRewards, stakersOverview) {
|
|
17
|
+
const claimedData = {};
|
|
18
|
+
const overviewData = {};
|
|
19
|
+
const ids = stashIds.map((i) => i.toString());
|
|
20
|
+
claimedRewards.forEach(([keys, rewards]) => {
|
|
21
|
+
const id = keys.args[1].toString();
|
|
22
|
+
const era = keys.args[0].toNumber();
|
|
23
|
+
if (ids.includes(id)) {
|
|
24
|
+
if (claimedData[id]) {
|
|
25
|
+
claimedData[id].set(era, rewards.toArray());
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
claimedData[id] = new Map();
|
|
29
|
+
claimedData[id].set(era, rewards.toArray());
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
stakersOverview.forEach(([keys, overview]) => {
|
|
34
|
+
const id = keys.args[1].toString();
|
|
35
|
+
const era = keys.args[0].toNumber();
|
|
36
|
+
if (ids.includes(id) && overview.isSome) {
|
|
37
|
+
if (overviewData[id]) {
|
|
38
|
+
overviewData[id].set(era, overview.unwrap().pageCount);
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
overviewData[id] = new Map();
|
|
42
|
+
overviewData[id].set(era, overview.unwrap().pageCount);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
return stashIds.map((id) => {
|
|
47
|
+
const rewardsPerEra = claimedData[id.toString()];
|
|
48
|
+
const overviewPerEra = overviewData[id.toString()];
|
|
49
|
+
return eras.map((era) => {
|
|
50
|
+
if (rewardsPerEra && rewardsPerEra.has(era) && overviewPerEra && overviewPerEra.has(era)) {
|
|
51
|
+
const rewards = rewardsPerEra.get(era);
|
|
52
|
+
const pageCount = overviewPerEra.get(era);
|
|
53
|
+
return rewards.length === pageCount.toNumber()
|
|
54
|
+
? era
|
|
55
|
+
: -1;
|
|
56
|
+
}
|
|
57
|
+
return -1;
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
function parseDetails(api, stashId, controllerIdOpt, nominatorsOpt, rewardDestinationOpts, validatorPrefs, exposure, stakingLedgerOpt, exposureMeta, claimedRewards, exposureEraStakers) {
|
|
62
|
+
return {
|
|
63
|
+
accountId: stashId,
|
|
64
|
+
claimedRewardsEras: filterClaimedRewards(api, claimedRewards),
|
|
65
|
+
controllerId: controllerIdOpt?.unwrapOr(null) || null,
|
|
66
|
+
exposureEraStakers,
|
|
67
|
+
exposureMeta,
|
|
68
|
+
exposurePaged: exposure,
|
|
69
|
+
nominators: nominatorsOpt.isSome
|
|
70
|
+
? nominatorsOpt.unwrap().targets
|
|
71
|
+
: [],
|
|
72
|
+
rewardDestination: rewardDestinationCompat(rewardDestinationOpts),
|
|
73
|
+
stakingLedger: stakingLedgerOpt.unwrapOrDefault(),
|
|
74
|
+
stashId,
|
|
75
|
+
validatorPrefs
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
function getLedgers(api, optIds, { withLedger = false }) {
|
|
79
|
+
const ids = optIds
|
|
80
|
+
.filter((o) => withLedger && !!o && o.isSome)
|
|
81
|
+
.map((o) => o.unwrap());
|
|
82
|
+
const emptyLed = api.registry.createType('Option<StakingLedger>');
|
|
83
|
+
return (ids.length
|
|
84
|
+
? (0, rxjs_1.combineLatest)(ids.map((s) => api.query.staking.ledger(s)))
|
|
85
|
+
: (0, rxjs_1.of)([])).pipe((0, rxjs_1.map)((optLedgers) => {
|
|
86
|
+
let offset = -1;
|
|
87
|
+
return optIds.map((o) => o && o.isSome
|
|
88
|
+
? optLedgers[++offset] || emptyLed
|
|
89
|
+
: emptyLed);
|
|
90
|
+
}));
|
|
91
|
+
}
|
|
92
|
+
function getStashInfo(api, stashIds, activeEra, { withClaimedRewardsEras, withController, withDestination, withExposure, withExposureErasStakersLegacy, withExposureMeta, withLedger, withNominations, withPrefs }, page) {
|
|
93
|
+
const emptyNoms = api.registry.createType('Option<Nominations>');
|
|
94
|
+
const emptyRewa = api.registry.createType('RewardDestination');
|
|
95
|
+
const emptyExpoEraStakers = api.registry.createType('Exposure');
|
|
96
|
+
const emptyPrefs = api.registry.createType('ValidatorPrefs');
|
|
97
|
+
// The reason we don't explicitly make the actual types is for compatibility. If the chain doesn't have the noted type it will fail
|
|
98
|
+
// on construction. Therefore we just make an empty option.
|
|
99
|
+
const emptyExpo = api.registry.createType('Option<Null>');
|
|
100
|
+
const emptyExpoMeta = api.registry.createType('Option<Null>');
|
|
101
|
+
const emptyClaimedRewards = [-1];
|
|
102
|
+
const depth = Number(api.consts.staking.historyDepth.toNumber());
|
|
103
|
+
const eras = new Array(depth).fill(0).map((_, idx) => {
|
|
104
|
+
if (idx === 0) {
|
|
105
|
+
return activeEra.toNumber() - 1;
|
|
106
|
+
}
|
|
107
|
+
return activeEra.toNumber() - idx - 1;
|
|
108
|
+
});
|
|
109
|
+
return (0, rxjs_1.combineLatest)([
|
|
110
|
+
withController || withLedger
|
|
111
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.bonded(s)))
|
|
112
|
+
: (0, rxjs_1.of)(stashIds.map(() => null)),
|
|
113
|
+
withNominations
|
|
114
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.nominators(s)))
|
|
115
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyNoms)),
|
|
116
|
+
withDestination
|
|
117
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.payee(s)))
|
|
118
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyRewa)),
|
|
119
|
+
withPrefs
|
|
120
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.validators(s)))
|
|
121
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyPrefs)),
|
|
122
|
+
withExposure && api.query.staking.erasStakersPaged
|
|
123
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.erasStakersPaged(activeEra, s, page)))
|
|
124
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyExpo)),
|
|
125
|
+
withExposureMeta && api.query.staking.erasStakersOverview
|
|
126
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.erasStakersOverview(activeEra, s)))
|
|
127
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyExpoMeta)),
|
|
128
|
+
withClaimedRewardsEras && api.query.staking.claimedRewards
|
|
129
|
+
? (0, rxjs_1.combineLatest)([
|
|
130
|
+
api.query.staking.claimedRewards.entries(),
|
|
131
|
+
api.query.staking.erasStakersOverview.entries()
|
|
132
|
+
]).pipe((0, rxjs_1.map)(([rewardsStorageVec, overviewStorageVec]) => filterRewards(stashIds, eras, rewardsStorageVec, overviewStorageVec)))
|
|
133
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyClaimedRewards)),
|
|
134
|
+
withExposureErasStakersLegacy && api.query.staking.erasStakers
|
|
135
|
+
? (0, rxjs_1.combineLatest)(stashIds.map((s) => api.query.staking.erasStakers(activeEra, s)))
|
|
136
|
+
: (0, rxjs_1.of)(stashIds.map(() => emptyExpoEraStakers))
|
|
137
|
+
]);
|
|
138
|
+
}
|
|
139
|
+
function getBatch(api, activeEra, stashIds, flags, page) {
|
|
140
|
+
return getStashInfo(api, stashIds, activeEra, flags, page).pipe((0, rxjs_1.switchMap)(([controllerIdOpt, nominatorsOpt, rewardDestination, validatorPrefs, exposure, exposureMeta, claimedRewardsEras, exposureEraStakers]) => getLedgers(api, controllerIdOpt, flags).pipe((0, rxjs_1.map)((stakingLedgerOpts) => stashIds.map((stashId, index) => parseDetails(api, stashId, controllerIdOpt[index], nominatorsOpt[index], rewardDestination[index], validatorPrefs[index], exposure[index], stakingLedgerOpts[index], exposureMeta[index], claimedRewardsEras[index], exposureEraStakers[index]))))));
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* @name query
|
|
144
|
+
* @param { Uint8Array | string } accountId The stash account to query.
|
|
145
|
+
* @param { StakingQueryFlags } flags Flags to customize the query.
|
|
146
|
+
* @param { u32 } page (Optional) pagination parameter.
|
|
147
|
+
* @description Retrieves staking details for a given stash account.
|
|
148
|
+
* @example
|
|
149
|
+
* ```javascript
|
|
150
|
+
* const stakingInfo = await api.derive.staking.query(
|
|
151
|
+
* ALICE,
|
|
152
|
+
* {}
|
|
153
|
+
* );
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
exports.query = (0, index_js_1.firstMemo)((api, accountId, flags, page) => api.derive.staking.queryMulti([accountId], flags, page));
|
|
157
|
+
/**
|
|
158
|
+
* @name queryMulti
|
|
159
|
+
* @param { (Uint8Array | string)[] } accountIds List of stash accounts to query.
|
|
160
|
+
* @param { StakingQueryFlags } flags Flags to customize the query.
|
|
161
|
+
* @param { u32 } page (Optional) pagination parameter.
|
|
162
|
+
* @description Retrieves staking details for multiple stash accounts.
|
|
163
|
+
* @example
|
|
164
|
+
* ```javascript
|
|
165
|
+
* const stakingInfos = await api.derive.staking.queryMulti([stashId1, stashId2], {});
|
|
166
|
+
* ```
|
|
167
|
+
*/
|
|
168
|
+
function queryMulti(instanceId, api) {
|
|
169
|
+
return (0, index_js_1.memo)(instanceId, (accountIds, flags, page) => api.derive.session.indexes().pipe((0, rxjs_1.switchMap)(({ activeEra }) => {
|
|
170
|
+
const stashIds = accountIds.map((a) => api.registry.createType('AccountId', a));
|
|
171
|
+
const p = page || 0;
|
|
172
|
+
return stashIds.length
|
|
173
|
+
? getBatch(api, activeEra, stashIds, flags, p)
|
|
174
|
+
: (0, rxjs_1.of)([]);
|
|
175
|
+
})));
|
|
176
|
+
}
|
|
@@ -30,4 +30,4 @@ export declare function stakerExposures(instanceId: string, api: DeriveApi): (ac
|
|
|
30
30
|
* );
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
|
-
export declare const stakerExposure: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array
|
|
33
|
+
export declare const stakerExposure: (instanceId: string, api: DeriveApi) => (accountId: string | Uint8Array, withActive?: boolean | undefined) => Observable<DeriveStakerExposure[]>;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.stakerExposure = void 0;
|
|
4
|
+
exports._stakerExposures = _stakerExposures;
|
|
5
|
+
exports.stakerExposures = stakerExposures;
|
|
6
|
+
const rxjs_1 = require("rxjs");
|
|
7
|
+
const index_js_1 = require("../util/index.js");
|
|
8
|
+
function _stakerExposures(instanceId, api) {
|
|
9
|
+
return (0, index_js_1.memo)(instanceId, (accountIds, eras, withActive = false) => {
|
|
10
|
+
const stakerIds = accountIds.map((a) => api.registry.createType('AccountId', a).toString());
|
|
11
|
+
return api.derive.staking._erasExposure(eras, withActive).pipe((0, rxjs_1.map)((exposures) => stakerIds.map((stakerId) => exposures.map(({ era, nominators: allNominators, validators: allValidators }) => {
|
|
12
|
+
const isValidator = !!allValidators[stakerId];
|
|
13
|
+
const validators = {};
|
|
14
|
+
const nominating = allNominators[stakerId] || [];
|
|
15
|
+
if (isValidator) {
|
|
16
|
+
validators[stakerId] = allValidators[stakerId];
|
|
17
|
+
}
|
|
18
|
+
else if (nominating) {
|
|
19
|
+
nominating.forEach(({ validatorId }) => {
|
|
20
|
+
validators[validatorId] = allValidators[validatorId];
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
return { era, isEmpty: !Object.keys(validators).length, isValidator, nominating, validators };
|
|
24
|
+
}))));
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @name stakerExposures
|
|
29
|
+
* @param { (Uint8Array | string)[] } accountIds List of validator stash accounts.
|
|
30
|
+
* @param { boolean } withActive Whether to include the active era.
|
|
31
|
+
* @description Retrieves staking exposure for multiple accounts across historical eras.
|
|
32
|
+
* @example
|
|
33
|
+
* ```javascript
|
|
34
|
+
* const exposure = await api.derive.staking.stakerExposures(
|
|
35
|
+
* [ALICE, BOB],
|
|
36
|
+
* true
|
|
37
|
+
* );
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
function stakerExposures(instanceId, api) {
|
|
41
|
+
return (0, index_js_1.memo)(instanceId, (accountIds, withActive = false) => api.derive.staking.erasHistoric(withActive).pipe((0, rxjs_1.switchMap)((eras) => api.derive.staking._stakerExposures(accountIds, eras, withActive))));
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @name stakerExposure
|
|
45
|
+
* @param { Uint8Array | string } accountId The validator stash account.
|
|
46
|
+
* @param { boolean } withActive Whether to include the active era.
|
|
47
|
+
* @description Retrieves staking exposure for a single account across historical eras. Exposure refers to the total stake associated with a validator.
|
|
48
|
+
* @example
|
|
49
|
+
* ```javascript
|
|
50
|
+
* const exposure = await api.derive.staking.stakerExposure(
|
|
51
|
+
* ALICE,
|
|
52
|
+
* true
|
|
53
|
+
* );
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
exports.stakerExposure = (0, index_js_1.firstMemo)((api, accountId, withActive) => api.derive.staking.stakerExposures([accountId], withActive));
|