diff --git a/package.json b/package.json index 7ae040dbd677..2ed096df9ccd 100644 --- a/package.json +++ b/package.json @@ -10,10 +10,10 @@ "packages/*" ], "resolutions": { - "@polkadot/api": "^1.1.0-beta.6", - "@polkadot/api-contract": "^1.1.0-beta.6", + "@polkadot/api": "^1.1.0-beta.8", + "@polkadot/api-contract": "^1.1.0-beta.8", "@polkadot/keyring": "^2.0.1", - "@polkadot/types": "^1.1.0-beta.6", + "@polkadot/types": "^1.1.0-beta.8", "@polkadot/util": "^2.0.1", "@polkadot/util-crypto": "^2.0.1", "babel-core": "^7.0.0-bridge.0", diff --git a/packages/app-contracts/package.json b/packages/app-contracts/package.json index e60fab92038c..ae2787bf4c04 100644 --- a/packages/app-contracts/package.json +++ b/packages/app-contracts/package.json @@ -11,6 +11,6 @@ "license": "Apache-2.0", "dependencies": { "@babel/runtime": "^7.8.3", - "@polkadot/api-contract": "^1.1.0-beta.6" + "@polkadot/api-contract": "^1.1.0-beta.8" } } diff --git a/packages/app-council/src/Overview/VoteValue.tsx b/packages/app-council/src/Overview/VoteValue.tsx index 72a61c77f351..ee825fbf7b89 100644 --- a/packages/app-council/src/Overview/VoteValue.tsx +++ b/packages/app-council/src/Overview/VoteValue.tsx @@ -2,7 +2,7 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedBalances } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll } from '@polkadot/api-derive/types'; import BN from 'bn.js'; import React, { useEffect, useState } from 'react'; @@ -26,7 +26,7 @@ interface ValueState { export default function VoteValue ({ accountId, onChange }: Props): React.ReactElement | null { const { t } = useTranslation(); const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [accountId]); + const allBalances = useCall(api.derive.balances.all as any, [accountId]); const [{ selectedId, value }, setValue] = useState({}); // TODO This may be useful elsewhere, so figure out a way to make this a utility diff --git a/packages/app-extrinsics/src/Balance.tsx b/packages/app-extrinsics/src/Balance.tsx index ab766a2d0c54..ecc1606f3457 100644 --- a/packages/app-extrinsics/src/Balance.tsx +++ b/packages/app-extrinsics/src/Balance.tsx @@ -5,7 +5,7 @@ import { BareProps } from '@polkadot/react-api/types'; import React from 'react'; -import { DerivedBalances } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll } from '@polkadot/api-derive/types'; import { InputBalance } from '@polkadot/react-components'; import { useApi, useCall } from '@polkadot/react-hooks'; @@ -16,7 +16,7 @@ interface Props extends BareProps { export default function BalanceDisplay ({ className, label, params, style }: Props): React.ReactElement { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return ( | null { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [accountId]); + const allBalances = useCall(api.derive.balances.all as any, [accountId]); const [error, setError] = useState(null); useEffect((): void => { diff --git a/packages/app-staking/src/Actions/Account/index.tsx b/packages/app-staking/src/Actions/Account/index.tsx index c8cbaca237f2..659ac8072ff9 100644 --- a/packages/app-staking/src/Actions/Account/index.tsx +++ b/packages/app-staking/src/Actions/Account/index.tsx @@ -2,7 +2,7 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedBalances, DerivedStakingAccount, DerivedStakingOverview, DerivedHeartbeats } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll, DerivedStakingAccount, DerivedStakingOverview, DerivedHeartbeats } from '@polkadot/api-derive/types'; import { AccountId, Exposure, StakingLedger, ValidatorPrefs } from '@polkadot/types/interfaces'; import { Codec, ITuple } from '@polkadot/types/types'; @@ -92,7 +92,7 @@ function Account ({ allStashes, className, isOwnStash, next, onUpdateType, staki const { api } = useApi(); const { allAccounts } = useAccounts(); const validateInfo = useCall(api.query.staking.validators, [stashId]); - const balancesAll = useCall(api.derive.balances.all as any, [stashId]); + const balancesAll = useCall(api.derive.balances.all as any, [stashId]); const stakingAccount = useCall(api.derive.staking.account as any, [stashId]); const [{ controllerId, destination, hexSessionIdQueue, hexSessionIdNext, isLoading, isOwnController, isStashNominating, isStashValidating, nominees, sessionIds, validatorPrefs }, setStakeState] = useState({ controllerId: null, destination: 0, hexSessionIdNext: null, hexSessionIdQueue: null, isLoading: true, isOwnController: false, isStashNominating: false, isStashValidating: false, sessionIds: [] }); const [activeNoms, setActiveNoms] = useState([]); diff --git a/packages/app-staking/src/types.ts b/packages/app-staking/src/types.ts index 193648ed862e..5c40a93d54ab 100644 --- a/packages/app-staking/src/types.ts +++ b/packages/app-staking/src/types.ts @@ -2,14 +2,14 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedFees, DerivedBalances } from '@polkadot/api-derive/types'; +import { DerivedFees, DerivedBalancesAll } from '@polkadot/api-derive/types'; import { AccountId, Balance, BlockNumber, Hash, SessionIndex } from '@polkadot/types/interfaces'; export type Nominators = Record; export interface CalculateBalanceProps { balances_fees?: DerivedFees; - balances_all?: DerivedBalances; + balances_all?: DerivedBalancesAll; } export type AccountFilter = 'all' | 'controller' | 'session' | 'stash' | 'unbonded'; diff --git a/packages/app-treasury/src/Overview/Summary.tsx b/packages/app-treasury/src/Overview/Summary.tsx index 8ce724bd2a88..0d92cedcbc20 100644 --- a/packages/app-treasury/src/Overview/Summary.tsx +++ b/packages/app-treasury/src/Overview/Summary.tsx @@ -2,7 +2,9 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import BN from 'bn.js'; +import { DerivedBalancesAccount } from '@polkadot/api-derive/types'; +import { Balance } from '@polkadot/types/interfaces'; + import React from 'react'; import { SummaryBox, CardSummary } from '@polkadot/react-components'; import { useApi, useCall } from '@polkadot/react-hooks'; @@ -21,12 +23,12 @@ interface Props { export default function Summary ({ approvalCount, proposalCount }: Props): React.ReactElement { const { t } = useTranslation(); const { api } = useApi(); - const bestNumber = useCall(api.derive.chain.bestNumber as any, []); + const bestNumber = useCall(api.derive.chain.bestNumber as any, []); const spendPeriod = api.consts.treasury.spendPeriod; - const treasuryBalance = useCall(api.query.balances.freeBalance, [TREASURY_ACCOUNT]); + const treasuryBalance = useCall(api.derive.balances.account as any, [TREASURY_ACCOUNT]); - const value = treasuryBalance?.gtn(0) - ? treasuryBalance.toString() + const value = treasuryBalance?.freeBalance.gtn(0) + ? treasuryBalance.freeBalance.toString() : null; return ( diff --git a/packages/react-api/package.json b/packages/react-api/package.json index e17aea79e9bd..73370f559204 100644 --- a/packages/react-api/package.json +++ b/packages/react-api/package.json @@ -31,7 +31,7 @@ "homepage": "https://github.com/polkadot-js/ui/tree/master/packages/ui-reactive#readme", "dependencies": { "@babel/runtime": "^7.8.3", - "@polkadot/api": "^1.1.0-beta.6", + "@polkadot/api": "^1.1.0-beta.8", "@polkadot/extension-dapp": "^0.21.0-beta.1", "edgeware-node-types": "^1.1.0", "rxjs-compat": "^6.5.3" diff --git a/packages/react-components/src/AddressInfo.tsx b/packages/react-components/src/AddressInfo.tsx index 6d2a1dc429be..9230599b2ed6 100644 --- a/packages/react-components/src/AddressInfo.tsx +++ b/packages/react-components/src/AddressInfo.tsx @@ -2,7 +2,7 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedBalances, DerivedStakingAccount } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll, DerivedStakingAccount } from '@polkadot/api-derive/types'; import { ValidatorPrefsTo145 } from '@polkadot/types/interfaces'; import { BareProps } from './types'; @@ -46,7 +46,7 @@ const PERBILL = new BN(1000000000); interface Props extends BareProps { address: string; - balancesAll?: DerivedBalances; + balancesAll?: DerivedBalancesAll; children?: React.ReactNode; extraInfo?: [string, string][]; stakingInfo?: DerivedStakingAccount; diff --git a/packages/react-components/src/InputBalanceBonded.tsx b/packages/react-components/src/InputBalanceBonded.tsx index cdccef53781e..09cb56b4a1ec 100644 --- a/packages/react-components/src/InputBalanceBonded.tsx +++ b/packages/react-components/src/InputBalanceBonded.tsx @@ -4,7 +4,7 @@ // of the Apache-2.0 license. See the LICENSE file for details. import { BareProps, BitLength } from './types'; -import { DerivedFees, DerivedBalances } from '@polkadot/api-derive/types'; +import { DerivedFees, DerivedBalancesAll } from '@polkadot/api-derive/types'; import BN from 'bn.js'; import React from 'react'; @@ -20,7 +20,7 @@ import { bnMax } from '@polkadot/util'; interface Props extends BareProps, ApiProps { autoFocus?: boolean; balances_fees?: DerivedFees; - balances_all?: DerivedBalances; + balances_all?: DerivedBalancesAll; controllerId: string; defaultValue?: BN | string; destination?: number; diff --git a/packages/react-query/src/Available.tsx b/packages/react-query/src/Available.tsx index 26a325aa8f09..44cc46b22e95 100644 --- a/packages/react-query/src/Available.tsx +++ b/packages/react-query/src/Available.tsx @@ -3,7 +3,7 @@ // of the Apache-2.0 license. See the LICENSE file for details. import { BareProps } from '@polkadot/react-api/types'; -import { DerivedBalances } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll } from '@polkadot/api-derive/types'; import { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; import React from 'react'; @@ -19,7 +19,7 @@ interface Props extends BareProps { export default function AvailableDisplay ({ children, className, label, params }: Props): React.ReactElement { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return ( { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return ( { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return ( { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return ( { const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [params]); + const allBalances = useCall(api.derive.balances.all as any, [params]); return (
diff --git a/packages/react-signer/src/Checks/Transfer.tsx b/packages/react-signer/src/Checks/Transfer.tsx index cabe98b38c16..354c1c46b896 100644 --- a/packages/react-signer/src/Checks/Transfer.tsx +++ b/packages/react-signer/src/Checks/Transfer.tsx @@ -2,7 +2,7 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedBalances, DerivedFees } from '@polkadot/api-derive/types'; +import { DerivedBalancesAll, DerivedFees } from '@polkadot/api-derive/types'; import { AccountId } from '@polkadot/types/interfaces'; import { ExtraFees } from './types'; @@ -30,7 +30,7 @@ interface State extends ExtraFees { export default function Transfer ({ amount, fees, onChange, recipientId }: Props): React.ReactElement { const { t } = useTranslation(); const { api } = useApi(); - const allBalances = useCall(api.derive.balances.all as any, [recipientId]); + const allBalances = useCall(api.derive.balances.all as any, [recipientId]); const [{ isCreation, isNoEffect }, setState] = useState({ extraFees: new BN(0), extraAmount: new BN(0), diff --git a/packages/react-signer/src/Checks/constants.ts b/packages/react-signer/src/Checks/constants.ts index 2ae988b4914d..07a67c2b35a2 100644 --- a/packages/react-signer/src/Checks/constants.ts +++ b/packages/react-signer/src/Checks/constants.ts @@ -2,17 +2,19 @@ // This software may be modified and distributed under the terms // of the Apache-2.0 license. See the LICENSE file for details. -import { DerivedFees, DerivedBalances, DerivedContractFees } from '@polkadot/api-derive/types'; +import { DerivedFees, DerivedBalancesAll, DerivedContractFees } from '@polkadot/api-derive/types'; import BN from 'bn.js'; import { registry } from '@polkadot/react-api'; import { createType } from '@polkadot/types'; -const ZERO_BALANCE: DerivedBalances = { +const ZERO_BALANCE: DerivedBalancesAll = { accountId: createType(registry, 'AccountId'), accountNonce: createType(registry, 'Index'), availableBalance: createType(registry, 'Balance'), freeBalance: createType(registry, 'Balance'), + frozenFee: createType(registry, 'Balance'), + frozenMisc: createType(registry, 'Balance'), isVesting: false, lockedBalance: createType(registry, 'Balance'), lockedBreakdown: [], diff --git a/packages/react-signer/src/Checks/index.tsx b/packages/react-signer/src/Checks/index.tsx index 197471088ff9..804387e57f38 100644 --- a/packages/react-signer/src/Checks/index.tsx +++ b/packages/react-signer/src/Checks/index.tsx @@ -4,7 +4,7 @@ // of the Apache-2.0 license. See the LICENSE file for details. import { SubmittableExtrinsic } from '@polkadot/api/promise/types'; -import { DerivedFees, DerivedBalances, DerivedContractFees } from '@polkadot/api-derive/types'; +import { DerivedFees, DerivedBalancesAll, DerivedContractFees } from '@polkadot/api-derive/types'; import { AccountId, RuntimeDispatchInfo } from '@polkadot/types/interfaces'; import { IExtrinsic } from '@polkadot/types/types'; import { ExtraFees } from './types'; @@ -37,7 +37,7 @@ interface State { interface Props { balances_fees?: DerivedFees; - balances_all?: DerivedBalances; + balances_all?: DerivedBalancesAll; contract_fees?: DerivedContractFees; accountId?: string | null; className?: string; diff --git a/yarn.lock b/yarn.lock index 113c822f4220..c7b16343ce15 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2210,35 +2210,35 @@ dependencies: "@types/node" ">= 8" -"@polkadot/api-contract@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-1.1.0-beta.6.tgz#f9579849da58757f4dfbbf24fdf0efac61f113f0" - integrity sha512-pBjhzY4a7XSArYuCRe7Zdx2cTfjflJyB6TbyBRt4pBF6Fqk9zUDcdwIhmQ1Rv5Bz8nNXYaDBD5hEnbAb493PHA== +"@polkadot/api-contract@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/api-contract/-/api-contract-1.1.0-beta.8.tgz#8775e1b030d7eaa81f100b3533e6bb83a408eb77" + integrity sha512-2ZEkVMedOEf+L5Rk/XuFmebIuWKjrWHdYVHarlTwF3iYUU9u27W3W3gLnpEFxwYB5Ei2OVTWLo2mVKsAGkTKOw== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/types" "^1.1.0-beta.6" + "@polkadot/types" "^1.1.0-beta.8" -"@polkadot/api-derive@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-1.1.0-beta.6.tgz#ac2ec911ea7451542b1b640aa09f6b1432beb4dc" - integrity sha512-iHq0N5bvPXxiU8bLxQjFihSY7zsLqOoXXTgOuOmDoMPbS4vwLwFQA8gS8Agk1zWlan8vUarESv1bqqfsFv4iBg== +"@polkadot/api-derive@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-1.1.0-beta.8.tgz#1fcd23fb421fa7fc11fc60153d99830d794fea4a" + integrity sha512-PgSULfseVkgd8EXo73+i0eMXu0A8Yi5QUmx7D78QyQPHztp5YMQ3Wa124zAutDBOucqXoDwQADpZN5jGbQctGQ== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/api" "^1.1.0-beta.6" - "@polkadot/types" "^1.1.0-beta.6" + "@polkadot/api" "^1.1.0-beta.8" + "@polkadot/types" "^1.1.0-beta.8" -"@polkadot/api@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-1.1.0-beta.6.tgz#b4b09f6bd9a18cec3ef82be73b3474bbb2dd4d5c" - integrity sha512-wxb5zIHXKV18lJZNnspMzNi1+1N4uJIsTrZNyCqYzR5h6uzA1DDKUO9PVCPTcdpKU/M5fujK3udjhdc1j9ZzxQ== +"@polkadot/api@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-1.1.0-beta.8.tgz#6c28036cf59d510698607ee48ee27ea1c958c4c1" + integrity sha512-H1iC0LMF+pmwZIuY9DdMu/Cx02jCwZdSISBSCyF+KbdDa5DLlxrQse6+npP0XtX+Z/v1kbCLm721RuCCV0gYhQ== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/api-derive" "^1.1.0-beta.6" + "@polkadot/api-derive" "^1.1.0-beta.8" "@polkadot/keyring" "^2.0.1" - "@polkadot/metadata" "^1.1.0-beta.6" - "@polkadot/rpc-core" "^1.1.0-beta.6" - "@polkadot/rpc-provider" "^1.1.0-beta.6" - "@polkadot/types" "^1.1.0-beta.6" + "@polkadot/metadata" "^1.1.0-beta.8" + "@polkadot/rpc-core" "^1.1.0-beta.8" + "@polkadot/rpc-provider" "^1.1.0-beta.8" + "@polkadot/types" "^1.1.0-beta.8" "@polkadot/util-crypto" "^2.0.1" "@polkadot/dev-react@^0.33.3": @@ -2343,10 +2343,10 @@ dependencies: "@babel/runtime" "^7.8.3" -"@polkadot/jsonrpc@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/jsonrpc/-/jsonrpc-1.1.0-beta.6.tgz#14c71ce2101eb10271ca8fdaf9f08e7e11fc8de9" - integrity sha512-ZARt6/jP8SMvggNrlYqH87mgR81c95IiBAd3yqKfOJt3GQ9ovfXMAkI6jEbziUlvT2pep175Gj3IH2iq40eRlA== +"@polkadot/jsonrpc@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/jsonrpc/-/jsonrpc-1.1.0-beta.8.tgz#39e2bc9f37c96deaad7041e29a394a1bfccb4ef1" + integrity sha512-WB+Pd2li4Xck14YK28VYfjnmgGsASHt0ukEbVNSS8e4yxInRfQOTkRzkFRg6EraVS8HBL0Zeb7LUe+3GRu06iA== dependencies: "@babel/runtime" "^7.8.3" @@ -2359,13 +2359,13 @@ "@polkadot/util" "^2.0.1" "@polkadot/util-crypto" "^2.0.1" -"@polkadot/metadata@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/metadata/-/metadata-1.1.0-beta.6.tgz#805a8bebb9540952721155764f66ad0ced73d448" - integrity sha512-SFXDgomYW0B7J2Px80/LpltBZpjAVLc6hO2975IyFjdQovL23GBeS1nOdByH32WeiZHTnFjZ6mjjYdFsunX5bA== +"@polkadot/metadata@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/metadata/-/metadata-1.1.0-beta.8.tgz#bd09ea2731ff54438ecde31d36e25e4616ef1780" + integrity sha512-JtsbzKf109OwakXOt8Ml7C/sNcSwl1XQaTKKQxUt2RxXRwKY9sZibpkX+XDknOO4p+dsBXKjPcKPuy9lO8OSZw== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/types" "^1.1.0-beta.6" + "@polkadot/types" "^1.1.0-beta.8" "@polkadot/util" "^2.0.1" "@polkadot/util-crypto" "^2.0.1" @@ -2393,25 +2393,25 @@ qrcode-generator "^1.4.4" react-qr-reader "^2.2.1" -"@polkadot/rpc-core@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-1.1.0-beta.6.tgz#cb15d89a66b3d56e920de2f268c2a29159db0100" - integrity sha512-CaQyk53OSKbnoUNd51ys6pjr7eF+VwqwwF3kROGMQWtnShMdM+aZPfYEzYuMNEzD2+i3Gf1yifkBmL0+XZ27yw== +"@polkadot/rpc-core@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-1.1.0-beta.8.tgz#bfcec00ee99a754a2238d492f228ea35c3d5e5c7" + integrity sha512-0p+TuzBoHoflUlP+l/VJ/9cAscOGzl1IlJ6TGKd0ikwn0t6AZL4yOzx/ebmvCSnYf0C0kZAMBXxQ7g0OkaJu6g== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/jsonrpc" "^1.1.0-beta.6" - "@polkadot/rpc-provider" "^1.1.0-beta.6" - "@polkadot/types" "^1.1.0-beta.6" + "@polkadot/jsonrpc" "^1.1.0-beta.8" + "@polkadot/rpc-provider" "^1.1.0-beta.8" + "@polkadot/types" "^1.1.0-beta.8" "@polkadot/util" "^2.0.1" rxjs "^6.5.4" -"@polkadot/rpc-provider@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-1.1.0-beta.6.tgz#fd53af5a41a48b5ce6abb4c28f4650ea75e2d110" - integrity sha512-ZkYCQOCgkWljXhE/QvqoQ7jnVB3gBjGrGWRuPH5w28EFALwsiKWQBsJcCE5wrfBy4w5qEHyyboLvE2hZW9lVtw== +"@polkadot/rpc-provider@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-1.1.0-beta.8.tgz#190d93d6762344d4b988f8f599e48c11094459f5" + integrity sha512-EzIB6+Imi0hwHlY+MrExVizRG+cXAHr9BMsrd0RAnEAvIXaArfUaN/1ZU0wzPx0yljzYkr4CXGBUnM7yzkyiCg== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/metadata" "^1.1.0-beta.6" + "@polkadot/metadata" "^1.1.0-beta.8" "@polkadot/util" "^2.0.1" "@polkadot/util-crypto" "^2.0.1" eventemitter3 "^4.0.0" @@ -2425,13 +2425,13 @@ dependencies: "@types/chrome" "^0.0.92" -"@polkadot/types@^1.1.0-beta.6": - version "1.1.0-beta.6" - resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-1.1.0-beta.6.tgz#ac338395a89b35f59e19d694f5fd7d7f201ef81a" - integrity sha512-wUdux/7jUaCMZHYbs4DqCUZu36SoBwlVUsRD9k2Z1X+HL6/NquOB2+VWhG195zBdQT3u7+YC8PK0pxNwFfzXxg== +"@polkadot/types@^1.1.0-beta.8": + version "1.1.0-beta.8" + resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-1.1.0-beta.8.tgz#8b326514e8fd96b4961e2cb59d8fbee30156b779" + integrity sha512-/fPQS2rHCyQ3pko/U/ifm2HWwLNAL2Ok12J+Qu0xy65/P7E+nJal5gNYJODeeCUIrMXVzOth4IZtF1l6z8Tx+A== dependencies: "@babel/runtime" "^7.8.3" - "@polkadot/metadata" "^1.1.0-beta.6" + "@polkadot/metadata" "^1.1.0-beta.8" "@polkadot/util" "^2.0.1" "@polkadot/util-crypto" "^2.0.1" memoizee "^0.4.14"