mockTransactionWip
This commit is contained in:
parent
1024362325
commit
83877aecd2
|
@ -44,7 +44,7 @@
|
||||||
"@gnosis.pm/safe-contracts": "1.1.1-dev.1",
|
"@gnosis.pm/safe-contracts": "1.1.1-dev.1",
|
||||||
"@gnosis.pm/safe-react-components": "https://github.com/gnosis/safe-react-components.git#71e6fed",
|
"@gnosis.pm/safe-react-components": "https://github.com/gnosis/safe-react-components.git#71e6fed",
|
||||||
"@gnosis.pm/util-contracts": "2.0.6",
|
"@gnosis.pm/util-contracts": "2.0.6",
|
||||||
"@material-ui/core": "4.9.11",
|
"@material-ui/core": "4.9.12",
|
||||||
"@material-ui/icons": "4.9.1",
|
"@material-ui/icons": "4.9.1",
|
||||||
"@material-ui/lab": "4.0.0-alpha.39",
|
"@material-ui/lab": "4.0.0-alpha.39",
|
||||||
"@openzeppelin/contracts": "3.0.0",
|
"@openzeppelin/contracts": "3.0.0",
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
"reselect": "^4.0.0",
|
"reselect": "^4.0.0",
|
||||||
"semver": "7.3.2",
|
"semver": "7.3.2",
|
||||||
"styled-components": "^5.0.1",
|
"styled-components": "^5.0.1",
|
||||||
"web3": "1.2.6"
|
"web3": "1.2.7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "7.8.4",
|
"@babel/cli": "7.8.4",
|
||||||
|
@ -155,8 +155,8 @@
|
||||||
"postcss-simple-vars": "^5.0.2",
|
"postcss-simple-vars": "^5.0.2",
|
||||||
"prettier": "2.0.5",
|
"prettier": "2.0.5",
|
||||||
"run-with-testrpc": "0.3.1",
|
"run-with-testrpc": "0.3.1",
|
||||||
"style-loader": "1.1.4",
|
"style-loader": "1.2.0",
|
||||||
"terser-webpack-plugin": "2.3.5",
|
"terser-webpack-plugin": "2.3.6",
|
||||||
"truffle": "5.1.23",
|
"truffle": "5.1.23",
|
||||||
"truffle-contract": "4.0.31",
|
"truffle-contract": "4.0.31",
|
||||||
"truffle-solidity-loader": "0.1.32",
|
"truffle-solidity-loader": "0.1.32",
|
||||||
|
|
|
@ -60,7 +60,7 @@ export const buildTxServiceUrl = (safeAddress: string) => {
|
||||||
const host = getTxServiceHost()
|
const host = getTxServiceHost()
|
||||||
const address = getWeb3().utils.toChecksumAddress(safeAddress)
|
const address = getWeb3().utils.toChecksumAddress(safeAddress)
|
||||||
const base = getTxServiceUriFrom(address)
|
const base = getTxServiceUriFrom(address)
|
||||||
return `${host}${base}`
|
return `${host}${base}?has_confirmations=True`
|
||||||
}
|
}
|
||||||
|
|
||||||
const SUCCESS_STATUS = 201 // CREATED status
|
const SUCCESS_STATUS = 201 // CREATED status
|
||||||
|
|
|
@ -105,9 +105,6 @@ const createTransaction = ({
|
||||||
try {
|
try {
|
||||||
// Here we're checking that safe contract version is greater or equal 1.1.1, but
|
// Here we're checking that safe contract version is greater or equal 1.1.1, but
|
||||||
// theoretically EIP712 should also work for 1.0.0 contracts
|
// theoretically EIP712 should also work for 1.0.0 contracts
|
||||||
// Also, offchain signatures are not working for ledger/trezor wallet because of a bug in their library:
|
|
||||||
// https://github.com/LedgerHQ/ledgerjs/issues/378
|
|
||||||
// Couldn't find an issue for trezor but the error is almost the same
|
|
||||||
const canTryOffchainSigning =
|
const canTryOffchainSigning =
|
||||||
!isExecution && !smartContractWallet && semverSatisfies(safeVersion, SAFE_VERSION_FOR_OFFCHAIN_SIGNATURES)
|
!isExecution && !smartContractWallet && semverSatisfies(safeVersion, SAFE_VERSION_FOR_OFFCHAIN_SIGNATURES)
|
||||||
if (false) {
|
if (false) {
|
||||||
|
|
|
@ -83,9 +83,6 @@ const processTransaction = ({
|
||||||
try {
|
try {
|
||||||
// Here we're checking that safe contract version is greater or equal 1.1.1, but
|
// Here we're checking that safe contract version is greater or equal 1.1.1, but
|
||||||
// theoretically EIP712 should also work for 1.0.0 contracts
|
// theoretically EIP712 should also work for 1.0.0 contracts
|
||||||
// Also, offchain signatures are not working for ledger/trezor wallet because of a bug in their library:
|
|
||||||
// https://github.com/LedgerHQ/ledgerjs/issues/378
|
|
||||||
// Couldn't find an issue for trezor but the error is almost the same
|
|
||||||
const canTryOffchainSigning =
|
const canTryOffchainSigning =
|
||||||
!isExecution && !smartContractWallet && semverSatisfies(safeVersion, SAFE_VERSION_FOR_OFFCHAIN_SIGNATURES)
|
!isExecution && !smartContractWallet && semverSatisfies(safeVersion, SAFE_VERSION_FOR_OFFCHAIN_SIGNATURES)
|
||||||
if (canTryOffchainSigning) {
|
if (canTryOffchainSigning) {
|
||||||
|
|
|
@ -1,2 +1,59 @@
|
||||||
// @flow
|
// @flow
|
||||||
const getMockedTransaction = (safeTxHash, isExecution) => {}
|
// type TxServiceModel = {
|
||||||
|
// blockNumber: ?number,
|
||||||
|
// safeTxHash: string,
|
||||||
|
// executor: string,
|
||||||
|
// executionDate: ?string,
|
||||||
|
// confirmations: ConfirmationServiceModel[],
|
||||||
|
// isExecuted: boolean,
|
||||||
|
// isSuccessful: boolean,
|
||||||
|
// transactionHash: ?string,
|
||||||
|
// creationTx?: boolean,
|
||||||
|
// }
|
||||||
|
|
||||||
|
// safeInstance,
|
||||||
|
// to,
|
||||||
|
// valueInWei,
|
||||||
|
// data: txData,
|
||||||
|
// operation,
|
||||||
|
// nonce,
|
||||||
|
// safeTxGas,
|
||||||
|
// baseGas: 0,
|
||||||
|
// gasPrice: 0,
|
||||||
|
// gasToken: ZERO_ADDRESS,
|
||||||
|
// refundReceiver: ZERO_ADDRESS,
|
||||||
|
// sender: from,
|
||||||
|
// sigs,
|
||||||
|
|
||||||
|
export const mockTransactionCreation = (txArgs) => {
|
||||||
|
const {
|
||||||
|
baseGas,
|
||||||
|
data,
|
||||||
|
gasPrice,
|
||||||
|
gasToken,
|
||||||
|
nonce,
|
||||||
|
operation,
|
||||||
|
refundReceiver,
|
||||||
|
safeTxGas,
|
||||||
|
safeTxHash,
|
||||||
|
submissionDate,
|
||||||
|
to,
|
||||||
|
valueInWei: value,
|
||||||
|
} = txArgs
|
||||||
|
|
||||||
|
return {
|
||||||
|
data,
|
||||||
|
to,
|
||||||
|
value,
|
||||||
|
nonce,
|
||||||
|
operation,
|
||||||
|
safeTxGas,
|
||||||
|
baseGas,
|
||||||
|
gasPrice,
|
||||||
|
gasToken,
|
||||||
|
refundReceiver,
|
||||||
|
safeTxHash,
|
||||||
|
submissionDate,
|
||||||
|
creationTx: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
363
yarn.lock
363
yarn.lock
|
@ -1459,17 +1459,17 @@
|
||||||
resolved "https://registry.yarnpkg.com/@ledgerhq/logs/-/logs-5.13.0.tgz#42e848f7c6f662387dfc5f3e86e3e5b4e07a5fae"
|
resolved "https://registry.yarnpkg.com/@ledgerhq/logs/-/logs-5.13.0.tgz#42e848f7c6f662387dfc5f3e86e3e5b4e07a5fae"
|
||||||
integrity sha512-yMvzQiMjWDMRma3HPxQQibhvEqMaEdXXkNBk1+eaW+N47Y3neYSSyCJlyihzzMBeeoin4ChlP/5uKQaABwBeTg==
|
integrity sha512-yMvzQiMjWDMRma3HPxQQibhvEqMaEdXXkNBk1+eaW+N47Y3neYSSyCJlyihzzMBeeoin4ChlP/5uKQaABwBeTg==
|
||||||
|
|
||||||
"@material-ui/core@4.9.11":
|
"@material-ui/core@4.9.12":
|
||||||
version "4.9.11"
|
version "4.9.12"
|
||||||
resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.11.tgz#02f45f4dbea6db191fdc0d993323d64cfae613fd"
|
resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.12.tgz#0156d87c8b5db5a8aad992d6883a081a32684e2e"
|
||||||
integrity sha512-S2Ha9GpTxzl29XMeMc8dQX2pj97yApNzuhe/23If53fMdg5Fmd3SgbE1bMbyXeKhxwtXZjOFxd0vU+W/sez8Ew==
|
integrity sha512-JtRm1iNw3PRg+bzULS1uRKhdIJ2jhKO3/5ptO6kTADARsv5KmhzMbM+PYmVS09qm9Yu3ilwka4dYrtjqea53Lw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime" "^7.4.4"
|
"@babel/runtime" "^7.4.4"
|
||||||
"@material-ui/react-transition-group" "^4.2.0"
|
"@material-ui/react-transition-group" "^4.3.0"
|
||||||
"@material-ui/styles" "^4.9.10"
|
"@material-ui/styles" "^4.9.10"
|
||||||
"@material-ui/system" "^4.9.10"
|
"@material-ui/system" "^4.9.10"
|
||||||
"@material-ui/types" "^5.0.1"
|
"@material-ui/types" "^5.0.1"
|
||||||
"@material-ui/utils" "^4.9.6"
|
"@material-ui/utils" "^4.9.12"
|
||||||
"@types/react-transition-group" "^4.2.0"
|
"@types/react-transition-group" "^4.2.0"
|
||||||
clsx "^1.0.4"
|
clsx "^1.0.4"
|
||||||
hoist-non-react-statics "^3.3.2"
|
hoist-non-react-statics "^3.3.2"
|
||||||
|
@ -1496,7 +1496,7 @@
|
||||||
prop-types "^15.7.2"
|
prop-types "^15.7.2"
|
||||||
react-is "^16.8.0"
|
react-is "^16.8.0"
|
||||||
|
|
||||||
"@material-ui/react-transition-group@^4.2.0":
|
"@material-ui/react-transition-group@^4.3.0":
|
||||||
version "4.3.0"
|
version "4.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/@material-ui/react-transition-group/-/react-transition-group-4.3.0.tgz#92529142addb5cc179dbf42d246c7e3fe4d6104b"
|
resolved "https://registry.yarnpkg.com/@material-ui/react-transition-group/-/react-transition-group-4.3.0.tgz#92529142addb5cc179dbf42d246c7e3fe4d6104b"
|
||||||
integrity sha512-CwQ0aXrlUynUTY6sh3UvKuvye1o92en20VGAs6TORnSxUYeRmkX8YeTUN3lAkGiBX1z222FxLFO36WWh6q73rQ==
|
integrity sha512-CwQ0aXrlUynUTY6sh3UvKuvye1o92en20VGAs6TORnSxUYeRmkX8YeTUN3lAkGiBX1z222FxLFO36WWh6q73rQ==
|
||||||
|
@ -1551,6 +1551,15 @@
|
||||||
prop-types "^15.7.2"
|
prop-types "^15.7.2"
|
||||||
react-is "^16.8.0"
|
react-is "^16.8.0"
|
||||||
|
|
||||||
|
"@material-ui/utils@^4.9.12":
|
||||||
|
version "4.9.12"
|
||||||
|
resolved "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.9.12.tgz#0d639f1c1ed83fffb2ae10c21d15a938795d9e65"
|
||||||
|
integrity sha512-/0rgZPEOcZq5CFA4+4n6Q6zk7fi8skHhH2Bcra8R3epoJEYy5PL55LuMazPtPH1oKeRausDV/Omz4BbgFsn1HQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.4.4"
|
||||||
|
prop-types "^15.7.2"
|
||||||
|
react-is "^16.8.0"
|
||||||
|
|
||||||
"@mrmlnc/readdir-enhanced@^2.2.1":
|
"@mrmlnc/readdir-enhanced@^2.2.1":
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
|
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
|
||||||
|
@ -7956,7 +7965,7 @@ find-cache-dir@^2.1.0:
|
||||||
make-dir "^2.0.0"
|
make-dir "^2.0.0"
|
||||||
pkg-dir "^3.0.0"
|
pkg-dir "^3.0.0"
|
||||||
|
|
||||||
find-cache-dir@^3.2.0:
|
find-cache-dir@^3.3.1:
|
||||||
version "3.3.1"
|
version "3.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
|
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
|
||||||
integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
|
integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
|
||||||
|
@ -10485,14 +10494,6 @@ jest-watcher@^25.4.0:
|
||||||
jest-util "^25.4.0"
|
jest-util "^25.4.0"
|
||||||
string-length "^3.1.0"
|
string-length "^3.1.0"
|
||||||
|
|
||||||
jest-worker@^25.1.0:
|
|
||||||
version "25.2.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.2.6.tgz#d1292625326794ce187c38f51109faced3846c58"
|
|
||||||
integrity sha512-FJn9XDUSxcOR4cwDzRfL1z56rUofNTFs539FGASpd50RHdb6EVkhxQqktodW2mI49l+W3H+tFJDotCHUQF6dmA==
|
|
||||||
dependencies:
|
|
||||||
merge-stream "^2.0.0"
|
|
||||||
supports-color "^7.0.0"
|
|
||||||
|
|
||||||
jest-worker@^25.4.0:
|
jest-worker@^25.4.0:
|
||||||
version "25.4.0"
|
version "25.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.4.0.tgz#ee0e2ceee5a36ecddf5172d6d7e0ab00df157384"
|
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.4.0.tgz#ee0e2ceee5a36ecddf5172d6d7e0ab00df157384"
|
||||||
|
@ -12896,7 +12897,7 @@ p-limit@^1.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
p-try "^1.0.0"
|
p-try "^1.0.0"
|
||||||
|
|
||||||
p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.2:
|
p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0:
|
||||||
version "2.3.0"
|
version "2.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
|
||||||
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
|
||||||
|
@ -15216,7 +15217,7 @@ schema-utils@^1.0.0:
|
||||||
ajv-errors "^1.0.0"
|
ajv-errors "^1.0.0"
|
||||||
ajv-keywords "^3.1.0"
|
ajv-keywords "^3.1.0"
|
||||||
|
|
||||||
schema-utils@^2.6.4, schema-utils@^2.6.5:
|
schema-utils@^2.6.5:
|
||||||
version "2.6.5"
|
version "2.6.5"
|
||||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a"
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a"
|
||||||
integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ==
|
integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ==
|
||||||
|
@ -15411,6 +15412,11 @@ serialize-javascript@^2.1.2:
|
||||||
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
|
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
|
||||||
integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
|
integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
|
||||||
|
|
||||||
|
serialize-javascript@^3.0.0:
|
||||||
|
version "3.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.0.0.tgz#492e489a2d77b7b804ad391a5f5d97870952548e"
|
||||||
|
integrity sha512-skZcHYw2vEX4bw90nAr2iTTsz6x2SrHEnfxgKYmZlvJYBEZrvbKtobJWlQ20zczKb3bsHHXXTYt48zBA7ni9cw==
|
||||||
|
|
||||||
serve-index@^1.9.1:
|
serve-index@^1.9.1:
|
||||||
version "1.9.1"
|
version "1.9.1"
|
||||||
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
|
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
|
||||||
|
@ -16253,13 +16259,13 @@ sturdy-websocket@^0.1.12:
|
||||||
dependencies:
|
dependencies:
|
||||||
lodash.defaults "^4.2.0"
|
lodash.defaults "^4.2.0"
|
||||||
|
|
||||||
style-loader@1.1.4:
|
style-loader@1.2.0:
|
||||||
version "1.1.4"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.4.tgz#1ad81283cefe51096756fd62697258edad933230"
|
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.0.tgz#f78e4d49caf5018f7c03ae1886e1270124feeb0a"
|
||||||
integrity sha512-SbBHRD8fwK3pX+4UDF4ETxUF0+rCvk29LWTTI7Rt0cgsDjAj3SWM76ByTe6u2+4IlJ/WwluB7wuslWETCoPQdg==
|
integrity sha512-HC8WcGnjwNrKji7HSBqFOhGNUSt7UDU/jHxT6bA83Gk+JWJBmgitWlGihc0V1w6ZvwlzcX5LJOsofZzSP7b1tQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
loader-utils "^2.0.0"
|
loader-utils "^2.0.0"
|
||||||
schema-utils "^2.6.5"
|
schema-utils "^2.6.6"
|
||||||
|
|
||||||
styled-components@^5.0.1:
|
styled-components@^5.0.1:
|
||||||
version "5.1.0"
|
version "5.1.0"
|
||||||
|
@ -16379,6 +16385,23 @@ swarm-js@0.1.39:
|
||||||
tar "^4.0.2"
|
tar "^4.0.2"
|
||||||
xhr-request-promise "^0.1.2"
|
xhr-request-promise "^0.1.2"
|
||||||
|
|
||||||
|
swarm-js@^0.1.40:
|
||||||
|
version "0.1.40"
|
||||||
|
resolved "https://registry.yarnpkg.com/swarm-js/-/swarm-js-0.1.40.tgz#b1bc7b6dcc76061f6c772203e004c11997e06b99"
|
||||||
|
integrity sha512-yqiOCEoA4/IShXkY3WKwP5PvZhmoOOD8clsKA7EEcRILMkTEYHCQ21HDCAcVpmIxZq4LyZvWeRJ6quIyHk1caA==
|
||||||
|
dependencies:
|
||||||
|
bluebird "^3.5.0"
|
||||||
|
buffer "^5.0.5"
|
||||||
|
eth-lib "^0.1.26"
|
||||||
|
fs-extra "^4.0.2"
|
||||||
|
got "^7.1.0"
|
||||||
|
mime-types "^2.1.16"
|
||||||
|
mkdirp-promise "^5.0.1"
|
||||||
|
mock-fs "^4.1.0"
|
||||||
|
setimmediate "^1.0.5"
|
||||||
|
tar "^4.0.2"
|
||||||
|
xhr-request "^1.0.1"
|
||||||
|
|
||||||
symbol-observable@^1.0.2, symbol-observable@^1.0.3, symbol-observable@^1.0.4, symbol-observable@^1.1.0, symbol-observable@^1.2.0:
|
symbol-observable@^1.0.2, symbol-observable@^1.0.3, symbol-observable@^1.0.4, symbol-observable@^1.1.0, symbol-observable@^1.2.0:
|
||||||
version "1.2.0"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
|
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
|
||||||
|
@ -16476,19 +16499,19 @@ terminal-link@^2.0.0:
|
||||||
ansi-escapes "^4.2.1"
|
ansi-escapes "^4.2.1"
|
||||||
supports-hyperlinks "^2.0.0"
|
supports-hyperlinks "^2.0.0"
|
||||||
|
|
||||||
terser-webpack-plugin@2.3.5:
|
terser-webpack-plugin@2.3.6:
|
||||||
version "2.3.5"
|
version "2.3.6"
|
||||||
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81"
|
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.6.tgz#a4014b311a61f87c6a1b217ef4f5a75bd0665a69"
|
||||||
integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==
|
integrity sha512-I8IDsQwZrqjdmOicNeE8L/MhwatAap3mUrtcAKJuilsemUNcX+Hier/eAzwStVqhlCxq0aG3ni9bK/0BESXkTg==
|
||||||
dependencies:
|
dependencies:
|
||||||
cacache "^13.0.1"
|
cacache "^13.0.1"
|
||||||
find-cache-dir "^3.2.0"
|
find-cache-dir "^3.3.1"
|
||||||
jest-worker "^25.1.0"
|
jest-worker "^25.4.0"
|
||||||
p-limit "^2.2.2"
|
p-limit "^2.3.0"
|
||||||
schema-utils "^2.6.4"
|
schema-utils "^2.6.6"
|
||||||
serialize-javascript "^2.1.2"
|
serialize-javascript "^3.0.0"
|
||||||
source-map "^0.6.1"
|
source-map "^0.6.1"
|
||||||
terser "^4.4.3"
|
terser "^4.6.12"
|
||||||
webpack-sources "^1.4.3"
|
webpack-sources "^1.4.3"
|
||||||
|
|
||||||
terser-webpack-plugin@^1.4.3:
|
terser-webpack-plugin@^1.4.3:
|
||||||
|
@ -16506,7 +16529,7 @@ terser-webpack-plugin@^1.4.3:
|
||||||
webpack-sources "^1.4.0"
|
webpack-sources "^1.4.0"
|
||||||
worker-farm "^1.7.0"
|
worker-farm "^1.7.0"
|
||||||
|
|
||||||
terser@^4.1.2, terser@^4.4.3, terser@^4.6.3:
|
terser@^4.1.2, terser@^4.6.3:
|
||||||
version "4.6.11"
|
version "4.6.11"
|
||||||
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.11.tgz#12ff99fdd62a26de2a82f508515407eb6ccd8a9f"
|
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.11.tgz#12ff99fdd62a26de2a82f508515407eb6ccd8a9f"
|
||||||
integrity sha512-76Ynm7OXUG5xhOpblhytE7X58oeNSmC8xnNhjWVo8CksHit0U0kO4hfNbPrrYwowLWFgM2n9L176VNx2QaHmtA==
|
integrity sha512-76Ynm7OXUG5xhOpblhytE7X58oeNSmC8xnNhjWVo8CksHit0U0kO4hfNbPrrYwowLWFgM2n9L176VNx2QaHmtA==
|
||||||
|
@ -16515,6 +16538,15 @@ terser@^4.1.2, terser@^4.4.3, terser@^4.6.3:
|
||||||
source-map "~0.6.1"
|
source-map "~0.6.1"
|
||||||
source-map-support "~0.5.12"
|
source-map-support "~0.5.12"
|
||||||
|
|
||||||
|
terser@^4.6.12:
|
||||||
|
version "4.6.12"
|
||||||
|
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.12.tgz#44b98aef8703fdb09a3491bf79b43faffc5b4fee"
|
||||||
|
integrity sha512-fnIwuaKjFPANG6MAixC/k1TDtnl1YlPLUlLVIxxGZUn1gfUx2+l3/zGNB72wya+lgsb50QBi2tUV75RiODwnww==
|
||||||
|
dependencies:
|
||||||
|
commander "^2.20.0"
|
||||||
|
source-map "~0.6.1"
|
||||||
|
source-map-support "~0.5.12"
|
||||||
|
|
||||||
test-exclude@^6.0.0:
|
test-exclude@^6.0.0:
|
||||||
version "6.0.0"
|
version "6.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
|
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
|
||||||
|
@ -17819,6 +17851,16 @@ web3-bzz@1.2.6:
|
||||||
swarm-js "0.1.39"
|
swarm-js "0.1.39"
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
|
|
||||||
|
web3-bzz@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.2.7.tgz#aa0f3d162f0777a5f35367dc5b70012dd1e129d0"
|
||||||
|
integrity sha512-iTIWBR+Z+Bn09WprtKm46LmyNOasg2lUn++AjXkBTB8UNxlUybxtza84yl2ETTZUs0zuFzdSSAEgbjhygG+9oA==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "^10.12.18"
|
||||||
|
got "9.6.0"
|
||||||
|
swarm-js "^0.1.40"
|
||||||
|
underscore "1.9.1"
|
||||||
|
|
||||||
web3-core-helpers@1.2.1:
|
web3-core-helpers@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.2.1.tgz#f5f32d71c60a4a3bd14786118e633ce7ca6d5d0d"
|
resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.2.1.tgz#f5f32d71c60a4a3bd14786118e633ce7ca6d5d0d"
|
||||||
|
@ -17837,6 +17879,15 @@ web3-core-helpers@1.2.6:
|
||||||
web3-eth-iban "1.2.6"
|
web3-eth-iban "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-core-helpers@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.2.7.tgz#522f859775ea0d15e7e40359c46d4efc5da92aee"
|
||||||
|
integrity sha512-bdU++9QATGeCetVrMp8pV97aQtVkN5oLBf/TWu/qumC6jK/YqrvLlBJLdwbz0QveU8zOSap6GCvJbqKvmmbV2A==
|
||||||
|
dependencies:
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-eth-iban "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-core-method@1.2.1:
|
web3-core-method@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.2.1.tgz#9df1bafa2cd8be9d9937e01c6a47fc768d15d90a"
|
resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.2.1.tgz#9df1bafa2cd8be9d9937e01c6a47fc768d15d90a"
|
||||||
|
@ -17859,6 +17910,17 @@ web3-core-method@1.2.6:
|
||||||
web3-core-subscriptions "1.2.6"
|
web3-core-subscriptions "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-core-method@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.2.7.tgz#73fd80d2bf0765ff6efc454db49ac83d1769a45e"
|
||||||
|
integrity sha512-e1TI0QUnByDMbQ8QHwnjxfjKw0LIgVRY4TYrlPijET9ebqUJU1HCayn/BHIMpV6LKyR1fQj9EldWyT64wZQXkg==
|
||||||
|
dependencies:
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-promievent "1.2.7"
|
||||||
|
web3-core-subscriptions "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-core-promievent@1.2.1:
|
web3-core-promievent@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.2.1.tgz#003e8a3eb82fb27b6164a6d5b9cad04acf733838"
|
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.2.1.tgz#003e8a3eb82fb27b6164a6d5b9cad04acf733838"
|
||||||
|
@ -17875,6 +17937,13 @@ web3-core-promievent@1.2.6:
|
||||||
any-promise "1.3.0"
|
any-promise "1.3.0"
|
||||||
eventemitter3 "3.1.2"
|
eventemitter3 "3.1.2"
|
||||||
|
|
||||||
|
web3-core-promievent@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.2.7.tgz#fc7fa489f4cf76a040800f3dfd4b45c51bd3a39f"
|
||||||
|
integrity sha512-jNmsM/czCeMGQqKKwM9/HZVTJVIF96hdMVNN/V9TGvp+EEE7vDhB4pUocDnc/QF9Z/5QFBCVmvNWttlRgZmU0A==
|
||||||
|
dependencies:
|
||||||
|
eventemitter3 "3.1.2"
|
||||||
|
|
||||||
web3-core-requestmanager@1.2.1:
|
web3-core-requestmanager@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.2.1.tgz#fa2e2206c3d738db38db7c8fe9c107006f5c6e3d"
|
resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.2.1.tgz#fa2e2206c3d738db38db7c8fe9c107006f5c6e3d"
|
||||||
|
@ -17897,6 +17966,17 @@ web3-core-requestmanager@1.2.6:
|
||||||
web3-providers-ipc "1.2.6"
|
web3-providers-ipc "1.2.6"
|
||||||
web3-providers-ws "1.2.6"
|
web3-providers-ws "1.2.6"
|
||||||
|
|
||||||
|
web3-core-requestmanager@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.2.7.tgz#9da0efce898ead7004d4ac50f748f5131cfe4d79"
|
||||||
|
integrity sha512-HJb/txjHixu1dxIebiZQKBoJCaNu4gsh7mq/uj6Z/w6tIHbybL90s/7ADyMED353yyJ2tDWtYJqeMVAR+KtdaA==
|
||||||
|
dependencies:
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-providers-http "1.2.7"
|
||||||
|
web3-providers-ipc "1.2.7"
|
||||||
|
web3-providers-ws "1.2.7"
|
||||||
|
|
||||||
web3-core-subscriptions@1.2.1:
|
web3-core-subscriptions@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.2.1.tgz#8c2368a839d4eec1c01a4b5650bbeb82d0e4a099"
|
resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.2.1.tgz#8c2368a839d4eec1c01a4b5650bbeb82d0e4a099"
|
||||||
|
@ -17915,6 +17995,15 @@ web3-core-subscriptions@1.2.6:
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
web3-core-helpers "1.2.6"
|
web3-core-helpers "1.2.6"
|
||||||
|
|
||||||
|
web3-core-subscriptions@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.2.7.tgz#30c64aede03182832883b17c77e21cbb0933c86e"
|
||||||
|
integrity sha512-W/CzQYOUawdMDvkgA/fmLsnG5aMpbjrs78LZMbc0MFXLpH3ofqAgO2by4QZrrTShUUTeWS0ZuEkFFL/iFrSObw==
|
||||||
|
dependencies:
|
||||||
|
eventemitter3 "3.1.2"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
|
||||||
web3-core@1.2.1:
|
web3-core@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.2.1.tgz#7278b58fb6495065e73a77efbbce781a7fddf1a9"
|
resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.2.1.tgz#7278b58fb6495065e73a77efbbce781a7fddf1a9"
|
||||||
|
@ -17937,6 +18026,19 @@ web3-core@1.2.6:
|
||||||
web3-core-requestmanager "1.2.6"
|
web3-core-requestmanager "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-core@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.2.7.tgz#9248b04331e458c76263d758c51b0cc612953900"
|
||||||
|
integrity sha512-QA0MTae0gXcr3KHe3cQ4x56+Wh43ZKWfMwg1gfCc3NNxPRM1jJ8qudzyptCAUcxUGXWpDG8syLIn1APDz5J8BQ==
|
||||||
|
dependencies:
|
||||||
|
"@types/bn.js" "^4.11.4"
|
||||||
|
"@types/node" "^12.6.1"
|
||||||
|
bignumber.js "^9.0.0"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-core-requestmanager "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-abi@1.0.0-beta.52:
|
web3-eth-abi@1.0.0-beta.52:
|
||||||
version "1.0.0-beta.52"
|
version "1.0.0-beta.52"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.0.0-beta.52.tgz#88dc2d36e2f99dfe255f8f64b6f613bad82779d8"
|
resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.0.0-beta.52.tgz#88dc2d36e2f99dfe255f8f64b6f613bad82779d8"
|
||||||
|
@ -17965,6 +18067,15 @@ web3-eth-abi@1.2.6:
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-abi@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.2.7.tgz#6f3471b578649fddd844a14d397a3dd430fc44a5"
|
||||||
|
integrity sha512-4FnlT1q+D0XBkxSMXlIb/eG337uQeMaUdtVQ4PZ3XzxqpcoDuMgXm4o+3NRxnWmr4AMm6QKjM+hcC7c0mBKcyg==
|
||||||
|
dependencies:
|
||||||
|
ethers "4.0.0-beta.3"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-accounts@1.2.1:
|
web3-eth-accounts@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.2.1.tgz#2741a8ef337a7219d57959ac8bd118b9d68d63cf"
|
resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.2.1.tgz#2741a8ef337a7219d57959ac8bd118b9d68d63cf"
|
||||||
|
@ -18000,6 +18111,23 @@ web3-eth-accounts@1.2.6:
|
||||||
web3-core-method "1.2.6"
|
web3-core-method "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-accounts@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.2.7.tgz#087f55d04a01b815b93151aac2fc1677436b9c59"
|
||||||
|
integrity sha512-AE7QWi/iIQIjXwlAPtlMabm/OPFF0a1PhxT1EiTckpYNP8fYs6jW7lYxEtJPPJIKqfMjoi1xkEqTVR1YZQ88lg==
|
||||||
|
dependencies:
|
||||||
|
"@web3-js/scrypt-shim" "^0.1.0"
|
||||||
|
crypto-browserify "3.12.0"
|
||||||
|
eth-lib "^0.2.8"
|
||||||
|
ethereumjs-common "^1.3.2"
|
||||||
|
ethereumjs-tx "^2.1.1"
|
||||||
|
underscore "1.9.1"
|
||||||
|
uuid "3.3.2"
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-contract@1.2.1:
|
web3-eth-contract@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.2.1.tgz#3542424f3d341386fd9ff65e78060b85ac0ea8c4"
|
resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.2.1.tgz#3542424f3d341386fd9ff65e78060b85ac0ea8c4"
|
||||||
|
@ -18029,6 +18157,21 @@ web3-eth-contract@1.2.6, web3-eth-contract@^1.2.6:
|
||||||
web3-eth-abi "1.2.6"
|
web3-eth-abi "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-contract@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.2.7.tgz#13d7f6003d6221f9a5fd61c2d3b5d039477c9674"
|
||||||
|
integrity sha512-uW23Y0iL7XroRNbf9fWZ1N6OYhEYTJX8gTuYASuRnpYrISN5QGiQML6pq/NCzqypR1bl5E0fuINZQSK/xefIVw==
|
||||||
|
dependencies:
|
||||||
|
"@types/bn.js" "^4.11.4"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-core-promievent "1.2.7"
|
||||||
|
web3-core-subscriptions "1.2.7"
|
||||||
|
web3-eth-abi "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-ens@1.2.1:
|
web3-eth-ens@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.2.1.tgz#a0e52eee68c42a8b9865ceb04e5fb022c2d971d5"
|
resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.2.1.tgz#a0e52eee68c42a8b9865ceb04e5fb022c2d971d5"
|
||||||
|
@ -18057,6 +18200,20 @@ web3-eth-ens@1.2.6:
|
||||||
web3-eth-contract "1.2.6"
|
web3-eth-contract "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-ens@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.2.7.tgz#0bfa7d4b6c7753abbb31a2eb01a364b538f4c860"
|
||||||
|
integrity sha512-SPRnvUNWQ0CnnTDBteGIJkvFWEizJcAHlVsrFLICwcwFZu+appjX1UOaoGu2h3GXWtc/XZlu7B451Gi+Os2cTg==
|
||||||
|
dependencies:
|
||||||
|
eth-ens-namehash "2.0.8"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-promievent "1.2.7"
|
||||||
|
web3-eth-abi "1.2.7"
|
||||||
|
web3-eth-contract "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-iban@1.2.1:
|
web3-eth-iban@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.2.1.tgz#2c3801718946bea24e9296993a975c80b5acf880"
|
resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.2.1.tgz#2c3801718946bea24e9296993a975c80b5acf880"
|
||||||
|
@ -18073,6 +18230,14 @@ web3-eth-iban@1.2.6:
|
||||||
bn.js "4.11.8"
|
bn.js "4.11.8"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-iban@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.2.7.tgz#832809c28586be3c667a713b77a2bcba11b7970f"
|
||||||
|
integrity sha512-2NrClz1PoQ3nSJBd+91ylCOVga9qbTxjRofq/oSCoHVAEvz3WZyttx9k5DC+0rWqwJF1h69ufFvdHAAlmN/4lg==
|
||||||
|
dependencies:
|
||||||
|
bn.js "4.11.8"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth-personal@1.2.1:
|
web3-eth-personal@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.2.1.tgz#244e9911b7b482dc17c02f23a061a627c6e47faf"
|
resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.2.1.tgz#244e9911b7b482dc17c02f23a061a627c6e47faf"
|
||||||
|
@ -18096,6 +18261,18 @@ web3-eth-personal@1.2.6:
|
||||||
web3-net "1.2.6"
|
web3-net "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth-personal@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.2.7.tgz#322cc2b14c37737b21772a53e4185686a04bf9be"
|
||||||
|
integrity sha512-2OAa1Spz0uB29dwCM8+1y0So7E47A4gKznjBEwXIYEcUIsvwT5X7ofFhC2XxyRpqlIWZSQAxRSSJFyupRRXzyw==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "^12.6.1"
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-net "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-eth@1.2.1:
|
web3-eth@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.2.1.tgz#b9989e2557c73a9e8ffdc107c6dafbe72c79c1b0"
|
resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.2.1.tgz#b9989e2557c73a9e8ffdc107c6dafbe72c79c1b0"
|
||||||
|
@ -18134,6 +18311,25 @@ web3-eth@1.2.6:
|
||||||
web3-net "1.2.6"
|
web3-net "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-eth@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.2.7.tgz#9427daefd3641200679c2946f77fc184dbfb5b4c"
|
||||||
|
integrity sha512-ljLd0oB4IjWkzFGVan4HkYhJXhSXgn9iaSaxdJixKGntZPgWMJfxeA+uLwTrlxrWzhvy4f+39WnT7wCh5e9TGg==
|
||||||
|
dependencies:
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-core-subscriptions "1.2.7"
|
||||||
|
web3-eth-abi "1.2.7"
|
||||||
|
web3-eth-accounts "1.2.7"
|
||||||
|
web3-eth-contract "1.2.7"
|
||||||
|
web3-eth-ens "1.2.7"
|
||||||
|
web3-eth-iban "1.2.7"
|
||||||
|
web3-eth-personal "1.2.7"
|
||||||
|
web3-net "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-net@1.2.1:
|
web3-net@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.2.1.tgz#edd249503315dd5ab4fa00220f6509d95bb7ab10"
|
resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.2.1.tgz#edd249503315dd5ab4fa00220f6509d95bb7ab10"
|
||||||
|
@ -18152,6 +18348,15 @@ web3-net@1.2.6:
|
||||||
web3-core-method "1.2.6"
|
web3-core-method "1.2.6"
|
||||||
web3-utils "1.2.6"
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
|
web3-net@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.2.7.tgz#c355621a8769c9c1a967c801e7db90c92a0e3808"
|
||||||
|
integrity sha512-j9qeZrS1FNyCeA0BfdLojkxOZQz3FKa1DJI+Dw9fEVhZS68vLOFANu2RB96gR9BoPHo5+k5D3NsKOoxt1gw3Gg==
|
||||||
|
dependencies:
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-utils "1.2.7"
|
||||||
|
|
||||||
web3-provider-engine@14.2.0:
|
web3-provider-engine@14.2.0:
|
||||||
version "14.2.0"
|
version "14.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/web3-provider-engine/-/web3-provider-engine-14.2.0.tgz#2efec157b2c429c5c674c079aea96b0a06de8b3d"
|
resolved "https://registry.yarnpkg.com/web3-provider-engine/-/web3-provider-engine-14.2.0.tgz#2efec157b2c429c5c674c079aea96b0a06de8b3d"
|
||||||
|
@ -18301,6 +18506,14 @@ web3-providers-http@1.2.6:
|
||||||
web3-core-helpers "1.2.6"
|
web3-core-helpers "1.2.6"
|
||||||
xhr2-cookies "1.1.0"
|
xhr2-cookies "1.1.0"
|
||||||
|
|
||||||
|
web3-providers-http@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.2.7.tgz#31eb15390c103169b3d7d31bdb1ccae9e3f1629d"
|
||||||
|
integrity sha512-vazGx5onuH/zogrwkUaLFJwFcJ6CckP65VFSHoiV+GTQdkOqgoDIha7StKkslvDz4XJ2FuY/zOZHbtuOYeltXQ==
|
||||||
|
dependencies:
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
xhr2-cookies "1.1.0"
|
||||||
|
|
||||||
web3-providers-ipc@1.2.1:
|
web3-providers-ipc@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.2.1.tgz#017bfc687a8fc5398df2241eb98f135e3edd672c"
|
resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.2.1.tgz#017bfc687a8fc5398df2241eb98f135e3edd672c"
|
||||||
|
@ -18319,6 +18532,15 @@ web3-providers-ipc@1.2.6:
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
web3-core-helpers "1.2.6"
|
web3-core-helpers "1.2.6"
|
||||||
|
|
||||||
|
web3-providers-ipc@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.2.7.tgz#4e6716e8723d431df3d6bfa1acd2f7c04e7071ad"
|
||||||
|
integrity sha512-/zc0y724H2zbkV4UbGGMhsEiLfafjagIzfrsWZnyTZUlSB0OGRmmFm2EkLJAgtXrLiodaHHyXKM0vB8S24bxdA==
|
||||||
|
dependencies:
|
||||||
|
oboe "2.1.4"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
|
||||||
web3-providers-ws@1.2.1:
|
web3-providers-ws@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.2.1.tgz#2d941eaf3d5a8caa3214eff8dc16d96252b842cb"
|
resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.2.1.tgz#2d941eaf3d5a8caa3214eff8dc16d96252b842cb"
|
||||||
|
@ -18337,6 +18559,16 @@ web3-providers-ws@1.2.6:
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
web3-core-helpers "1.2.6"
|
web3-core-helpers "1.2.6"
|
||||||
|
|
||||||
|
web3-providers-ws@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.2.7.tgz#95b1cc5dc25e9b9d6630d6754f9354313b62f532"
|
||||||
|
integrity sha512-b5XzqDpRkNVe6MFs5K6iqOEyjQikHtg3KuU2/ClCDV37hm0WN4xCRVMC0LwegulbDXZej3zT9+1CYzGaGFREzA==
|
||||||
|
dependencies:
|
||||||
|
"@web3-js/websocket" "^1.0.29"
|
||||||
|
eventemitter3 "^4.0.0"
|
||||||
|
underscore "1.9.1"
|
||||||
|
web3-core-helpers "1.2.7"
|
||||||
|
|
||||||
web3-shh@1.2.1:
|
web3-shh@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.2.1.tgz#4460e3c1e07faf73ddec24ccd00da46f89152b0c"
|
resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.2.1.tgz#4460e3c1e07faf73ddec24ccd00da46f89152b0c"
|
||||||
|
@ -18357,6 +18589,16 @@ web3-shh@1.2.6:
|
||||||
web3-core-subscriptions "1.2.6"
|
web3-core-subscriptions "1.2.6"
|
||||||
web3-net "1.2.6"
|
web3-net "1.2.6"
|
||||||
|
|
||||||
|
web3-shh@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.2.7.tgz#5382c7bc2f39539eb2841c4576d23ade25720461"
|
||||||
|
integrity sha512-f6PAgcpG0ZAo98KqCmeHoDEx5qzm3d5plet18DkT4U6WIeYowKdec8vZaLPRR7c2XreXFJ2gQf45CB7oqR7U/w==
|
||||||
|
dependencies:
|
||||||
|
web3-core "1.2.7"
|
||||||
|
web3-core-method "1.2.7"
|
||||||
|
web3-core-subscriptions "1.2.7"
|
||||||
|
web3-net "1.2.7"
|
||||||
|
|
||||||
web3-utils@1.0.0-beta.52:
|
web3-utils@1.0.0-beta.52:
|
||||||
version "1.0.0-beta.52"
|
version "1.0.0-beta.52"
|
||||||
resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.0.0-beta.52.tgz#27f9beeac3e1ea981eba9824d79e2971f156eebc"
|
resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.0.0-beta.52.tgz#27f9beeac3e1ea981eba9824d79e2971f156eebc"
|
||||||
|
@ -18400,6 +18642,20 @@ web3-utils@1.2.6, web3-utils@^1.2.1, web3-utils@^1.2.6:
|
||||||
underscore "1.9.1"
|
underscore "1.9.1"
|
||||||
utf8 "3.0.0"
|
utf8 "3.0.0"
|
||||||
|
|
||||||
|
web3-utils@1.2.7:
|
||||||
|
version "1.2.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.2.7.tgz#b68e232917e4376f81cf38ef79878e5903d18e93"
|
||||||
|
integrity sha512-FBh/CPJND+eiPeUF9KVbTyTZtXNWxPWtByBaWS6e2x4ACazPX711EeNaZaChIOGSLGe6se2n7kg6wnawe/MjuQ==
|
||||||
|
dependencies:
|
||||||
|
bn.js "4.11.8"
|
||||||
|
eth-lib "0.2.7"
|
||||||
|
ethereum-bloom-filters "^1.0.6"
|
||||||
|
ethjs-unit "0.1.6"
|
||||||
|
number-to-bn "1.7.0"
|
||||||
|
randombytes "^2.1.0"
|
||||||
|
underscore "1.9.1"
|
||||||
|
utf8 "3.0.0"
|
||||||
|
|
||||||
web3@1.2.1:
|
web3@1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/web3/-/web3-1.2.1.tgz#5d8158bcca47838ab8c2b784a2dee4c3ceb4179b"
|
resolved "https://registry.yarnpkg.com/web3/-/web3-1.2.1.tgz#5d8158bcca47838ab8c2b784a2dee4c3ceb4179b"
|
||||||
|
@ -18413,19 +18669,18 @@ web3@1.2.1:
|
||||||
web3-shh "1.2.1"
|
web3-shh "1.2.1"
|
||||||
web3-utils "1.2.1"
|
web3-utils "1.2.1"
|
||||||
|
|
||||||
web3@1.2.6, web3@^1.0.0-beta.34:
|
web3@1.2.7:
|
||||||
version "1.2.6"
|
version "1.2.7"
|
||||||
resolved "https://registry.yarnpkg.com/web3/-/web3-1.2.6.tgz#c497dcb14cdd8d6d9fb6b445b3b68ff83f8ccf68"
|
resolved "https://registry.yarnpkg.com/web3/-/web3-1.2.7.tgz#fcb83571036c1c6f475bc984785982a444e8d78e"
|
||||||
integrity sha512-tpu9fLIComgxGrFsD8LUtA4s4aCZk7px8UfcdEy6kS2uDi/ZfR07KJqpXZMij7Jvlq+cQrTAhsPSiBVvoMaivA==
|
integrity sha512-jAAJHMfUlTps+jH2li1ckDFEpPrEEriU/ubegSTGRl3KRdNhEqT93+3kd7FHJTn3NgjcyURo2+f7Da1YcZL8Mw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "^12.6.1"
|
web3-bzz "1.2.7"
|
||||||
web3-bzz "1.2.6"
|
web3-core "1.2.7"
|
||||||
web3-core "1.2.6"
|
web3-eth "1.2.7"
|
||||||
web3-eth "1.2.6"
|
web3-eth-personal "1.2.7"
|
||||||
web3-eth-personal "1.2.6"
|
web3-net "1.2.7"
|
||||||
web3-net "1.2.6"
|
web3-shh "1.2.7"
|
||||||
web3-shh "1.2.6"
|
web3-utils "1.2.7"
|
||||||
web3-utils "1.2.6"
|
|
||||||
|
|
||||||
web3@^0.18.2, web3@^0.18.4:
|
web3@^0.18.2, web3@^0.18.4:
|
||||||
version "0.18.4"
|
version "0.18.4"
|
||||||
|
@ -18449,6 +18704,20 @@ web3@^0.20.7:
|
||||||
xhr2-cookies "^1.1.0"
|
xhr2-cookies "^1.1.0"
|
||||||
xmlhttprequest "*"
|
xmlhttprequest "*"
|
||||||
|
|
||||||
|
web3@^1.0.0-beta.34:
|
||||||
|
version "1.2.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/web3/-/web3-1.2.6.tgz#c497dcb14cdd8d6d9fb6b445b3b68ff83f8ccf68"
|
||||||
|
integrity sha512-tpu9fLIComgxGrFsD8LUtA4s4aCZk7px8UfcdEy6kS2uDi/ZfR07KJqpXZMij7Jvlq+cQrTAhsPSiBVvoMaivA==
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "^12.6.1"
|
||||||
|
web3-bzz "1.2.6"
|
||||||
|
web3-core "1.2.6"
|
||||||
|
web3-eth "1.2.6"
|
||||||
|
web3-eth-personal "1.2.6"
|
||||||
|
web3-net "1.2.6"
|
||||||
|
web3-shh "1.2.6"
|
||||||
|
web3-utils "1.2.6"
|
||||||
|
|
||||||
webidl-conversions@^2.0.0:
|
webidl-conversions@^2.0.0:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506"
|
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-2.0.1.tgz#3bf8258f7d318c7443c36f2e169402a1a6703506"
|
||||||
|
@ -18844,7 +19113,7 @@ xhr-request-promise@^0.1.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
xhr-request "^1.1.0"
|
xhr-request "^1.1.0"
|
||||||
|
|
||||||
xhr-request@^1.1.0:
|
xhr-request@^1.0.1, xhr-request@^1.1.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/xhr-request/-/xhr-request-1.1.0.tgz#f4a7c1868b9f198723444d82dcae317643f2e2ed"
|
resolved "https://registry.yarnpkg.com/xhr-request/-/xhr-request-1.1.0.tgz#f4a7c1868b9f198723444d82dcae317643f2e2ed"
|
||||||
integrity sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==
|
integrity sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==
|
||||||
|
|
Loading…
Reference in New Issue