update conf
This commit is contained in:
parent
cff6427e33
commit
8649a5d258
@ -7,7 +7,7 @@ WORKDIR /usr/app
|
|||||||
COPY yarn.lock .
|
COPY yarn.lock .
|
||||||
COPY package.json .
|
COPY package.json .
|
||||||
RUN apk update && apk add --no-cache g++ make python3 git openssh && rm -rf /var/cache/apk/*
|
RUN apk update && apk add --no-cache g++ make python3 git openssh && rm -rf /var/cache/apk/*
|
||||||
RUN yarn install && yarn cache clean -f
|
RUN yarn install
|
||||||
COPY . ./
|
COPY . ./
|
||||||
|
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { FastifyInstance } from 'fastify';
|
import { FastifyInstance } from 'fastify';
|
||||||
import { jobsSchema, statusSchema, withdrawBodySchema, withdrawSchema } from './schema';
|
import { jobsSchema, statusSchema, withdrawBodySchema, withdrawSchema } from './schema';
|
||||||
import { FromSchema } from 'json-schema-to-ts';
|
import { FromSchema } from 'json-schema-to-ts';
|
||||||
import { rewardAccount, tornadoServiceFee } from '../config';
|
import { relayerVersion, rewardAccount, tornadoServiceFee } from '../config';
|
||||||
import { configService, getHealthService, getJobService, getPriceService } from '../services';
|
import { configService, getHealthService, getJobService, getPriceService } from '../services';
|
||||||
import { RelayerJobType } from '../types';
|
import { RelayerJobType } from '../types';
|
||||||
|
|
||||||
@ -23,6 +23,7 @@ export function mainHandler(server: FastifyInstance, options, next) {
|
|||||||
const ethPrices = await priceService.getPrices();
|
const ethPrices = await priceService.getPrices();
|
||||||
const currentQueue = await jobService.getQueueCount();
|
const currentQueue = await jobService.getQueueCount();
|
||||||
const health = await healthService.getStatus();
|
const health = await healthService.getStatus();
|
||||||
|
const version = relayerVersion;
|
||||||
res.send({
|
res.send({
|
||||||
rewardAccount,
|
rewardAccount,
|
||||||
instances: configService.instances,
|
instances: configService.instances,
|
||||||
@ -30,7 +31,7 @@ export function mainHandler(server: FastifyInstance, options, next) {
|
|||||||
ethPrices,
|
ethPrices,
|
||||||
tornadoServiceFee,
|
tornadoServiceFee,
|
||||||
miningServiceFee: 0,
|
miningServiceFee: 0,
|
||||||
version: '4.5.0',
|
version,
|
||||||
health,
|
health,
|
||||||
currentQueue,
|
currentQueue,
|
||||||
});
|
});
|
||||||
|
@ -9,6 +9,7 @@ import { mainHandler, relayerHandler } from './routes';
|
|||||||
function createServer() {
|
function createServer() {
|
||||||
const server = fastify({
|
const server = fastify({
|
||||||
logger: true,
|
logger: true,
|
||||||
|
trustProxy: true,
|
||||||
pluginTimeout: 5000,
|
pluginTimeout: 5000,
|
||||||
bodyLimit: 1048576, // 1 mb
|
bodyLimit: 1048576, // 1 mb
|
||||||
});
|
});
|
||||||
|
@ -7,6 +7,7 @@ export const relayerVersion = require(`${isProduction ? '.' : '..'}/package.json
|
|||||||
export const netId = <availableIds>Number(process.env.NET_ID || 1);
|
export const netId = <availableIds>Number(process.env.NET_ID || 1);
|
||||||
export const redisUrl = process.env.REDIS_URL || 'redis://127.0.0.1:6379';
|
export const redisUrl = process.env.REDIS_URL || 'redis://127.0.0.1:6379';
|
||||||
export const rpcUrl = process.env.HTTP_RPC_URL;
|
export const rpcUrl = process.env.HTTP_RPC_URL;
|
||||||
|
export const CONFIRMATIONS = Number(process.env.CONFIRMATIONS) || 4;
|
||||||
export const mainnetRpcUrl = process.env.ORACLE_RPC_URL || 'https://mainnet.infura.io/';
|
export const mainnetRpcUrl = process.env.ORACLE_RPC_URL || 'https://mainnet.infura.io/';
|
||||||
export const offchainOracleAddress = '0x07D91f5fb9Bf7798734C3f606dB065549F6893bb';
|
export const offchainOracleAddress = '0x07D91f5fb9Bf7798734C3f606dB065549F6893bb';
|
||||||
export const multiCallAddress = '0xda3c19c6fe954576707fa24695efb830d9cca1ca';
|
export const multiCallAddress = '0xda3c19c6fe954576707fa24695efb830d9cca1ca';
|
||||||
|
@ -35,7 +35,8 @@ export class HealthService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private async _getStatus() {
|
private async _getStatus() {
|
||||||
return this.store.client.hgetall('health:status');
|
const status = await this.store.client.hgetall('health:status');
|
||||||
|
return status || { health: 'false', error: 'Service is not running' };
|
||||||
}
|
}
|
||||||
|
|
||||||
private static _parseSet(log, to = 'array', keys = ['message', 'score']) {
|
private static _parseSet(log, to = 'array', keys = ['message', 'score']) {
|
||||||
|
@ -4,7 +4,7 @@ import { Provider } from '@ethersproject/providers';
|
|||||||
import { formatEther, parseUnits } from 'ethers/lib/utils';
|
import { formatEther, parseUnits } from 'ethers/lib/utils';
|
||||||
import { BigNumber, BigNumberish, BytesLike } from 'ethers';
|
import { BigNumber, BigNumberish, BytesLike } from 'ethers';
|
||||||
import { ProxyLightABI, TornadoProxyABI } from '../contracts';
|
import { ProxyLightABI, TornadoProxyABI } from '../contracts';
|
||||||
import { gasLimits, tornadoServiceFee } from '../config';
|
import { CONFIRMATIONS, gasLimits, tornadoServiceFee } from '../config';
|
||||||
import { JobStatus, RelayerJobType } from '../types';
|
import { JobStatus, RelayerJobType } from '../types';
|
||||||
import { PriceService } from './price.service';
|
import { PriceService } from './price.service';
|
||||||
import { Job } from 'bullmq';
|
import { Job } from 'bullmq';
|
||||||
@ -47,7 +47,7 @@ export class TxService {
|
|||||||
this.txManager = new TxManager({
|
this.txManager = new TxManager({
|
||||||
privateKey,
|
privateKey,
|
||||||
rpcUrl,
|
rpcUrl,
|
||||||
config: { THROW_ON_REVERT: true },
|
config: { THROW_ON_REVERT: true, CONFIRMATIONS },
|
||||||
provider: this.provider,
|
provider: this.provider,
|
||||||
});
|
});
|
||||||
this.oracle = new GasPriceOracle({
|
this.oracle = new GasPriceOracle({
|
||||||
|
409
yarn.lock
409
yarn.lock
@ -39,21 +39,6 @@
|
|||||||
"@ethersproject/properties" ">=5.0.0-beta.131"
|
"@ethersproject/properties" ">=5.0.0-beta.131"
|
||||||
"@ethersproject/strings" ">=5.0.0-beta.130"
|
"@ethersproject/strings" ">=5.0.0-beta.130"
|
||||||
|
|
||||||
"@ethersproject/abi@5.4.1", "@ethersproject/abi@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b"
|
|
||||||
integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/hash" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/abi@5.6.4", "@ethersproject/abi@^5.6.3":
|
"@ethersproject/abi@5.6.4", "@ethersproject/abi@^5.6.3":
|
||||||
version "5.6.4"
|
version "5.6.4"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.6.4.tgz#f6e01b6ed391a505932698ecc0d9e7a99ee60362"
|
resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.6.4.tgz#f6e01b6ed391a505932698ecc0d9e7a99ee60362"
|
||||||
@ -69,19 +54,6 @@
|
|||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
"@ethersproject/strings" "^5.6.1"
|
"@ethersproject/strings" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/abstract-provider@5.4.1", "@ethersproject/abstract-provider@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e"
|
|
||||||
integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/networks" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
"@ethersproject/web" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/abstract-provider@5.6.1", "@ethersproject/abstract-provider@^5.6.1":
|
"@ethersproject/abstract-provider@5.6.1", "@ethersproject/abstract-provider@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.6.1.tgz#02ddce150785caf0c77fe036a0ebfcee61878c59"
|
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.6.1.tgz#02ddce150785caf0c77fe036a0ebfcee61878c59"
|
||||||
@ -95,17 +67,6 @@
|
|||||||
"@ethersproject/transactions" "^5.6.2"
|
"@ethersproject/transactions" "^5.6.2"
|
||||||
"@ethersproject/web" "^5.6.1"
|
"@ethersproject/web" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/abstract-signer@5.4.1", "@ethersproject/abstract-signer@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81"
|
|
||||||
integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-provider" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/abstract-signer@5.6.2", "@ethersproject/abstract-signer@^5.6.2":
|
"@ethersproject/abstract-signer@5.6.2", "@ethersproject/abstract-signer@^5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.6.2.tgz#491f07fc2cbd5da258f46ec539664713950b0b33"
|
resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.6.2.tgz#491f07fc2cbd5da258f46ec539664713950b0b33"
|
||||||
@ -117,17 +78,6 @@
|
|||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/address@5.4.0", "@ethersproject/address@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3"
|
|
||||||
integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/rlp" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/address@5.6.1", "@ethersproject/address@>=5.0.0-beta.128", "@ethersproject/address@^5.6.1":
|
"@ethersproject/address@5.6.1", "@ethersproject/address@>=5.0.0-beta.128", "@ethersproject/address@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.6.1.tgz#ab57818d9aefee919c5721d28cd31fd95eff413d"
|
resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.6.1.tgz#ab57818d9aefee919c5721d28cd31fd95eff413d"
|
||||||
@ -139,13 +89,6 @@
|
|||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
"@ethersproject/rlp" "^5.6.1"
|
"@ethersproject/rlp" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/base64@5.4.0", "@ethersproject/base64@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a"
|
|
||||||
integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/base64@5.6.1", "@ethersproject/base64@^5.6.1":
|
"@ethersproject/base64@5.6.1", "@ethersproject/base64@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.6.1.tgz#2c40d8a0310c9d1606c2c37ae3092634b41d87cb"
|
resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.6.1.tgz#2c40d8a0310c9d1606c2c37ae3092634b41d87cb"
|
||||||
@ -153,14 +96,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/basex@5.4.0", "@ethersproject/basex@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6"
|
|
||||||
integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/basex@5.6.1", "@ethersproject/basex@^5.6.1":
|
"@ethersproject/basex@5.6.1", "@ethersproject/basex@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.6.1.tgz#badbb2f1d4a6f52ce41c9064f01eab19cc4c5305"
|
resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.6.1.tgz#badbb2f1d4a6f52ce41c9064f01eab19cc4c5305"
|
||||||
@ -169,15 +104,6 @@
|
|||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/bignumber@5.4.1", "@ethersproject/bignumber@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d"
|
|
||||||
integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
bn.js "^4.11.9"
|
|
||||||
|
|
||||||
"@ethersproject/bignumber@5.6.2", "@ethersproject/bignumber@>=5.0.0-beta.130", "@ethersproject/bignumber@^5.6.2":
|
"@ethersproject/bignumber@5.6.2", "@ethersproject/bignumber@>=5.0.0-beta.130", "@ethersproject/bignumber@^5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.6.2.tgz#72a0717d6163fab44c47bcc82e0c550ac0315d66"
|
resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.6.2.tgz#72a0717d6163fab44c47bcc82e0c550ac0315d66"
|
||||||
@ -187,13 +113,6 @@
|
|||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
bn.js "^5.2.1"
|
bn.js "^5.2.1"
|
||||||
|
|
||||||
"@ethersproject/bytes@5.4.0", "@ethersproject/bytes@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e"
|
|
||||||
integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/bytes@5.6.1", "@ethersproject/bytes@>=5.0.0-beta.129", "@ethersproject/bytes@^5.6.1":
|
"@ethersproject/bytes@5.6.1", "@ethersproject/bytes@>=5.0.0-beta.129", "@ethersproject/bytes@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.6.1.tgz#24f916e411f82a8a60412344bf4a813b917eefe7"
|
resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.6.1.tgz#24f916e411f82a8a60412344bf4a813b917eefe7"
|
||||||
@ -201,13 +120,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/constants@5.4.0", "@ethersproject/constants@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a"
|
|
||||||
integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/constants@5.6.1", "@ethersproject/constants@>=5.0.0-beta.128", "@ethersproject/constants@^5.6.1":
|
"@ethersproject/constants@5.6.1", "@ethersproject/constants@>=5.0.0-beta.128", "@ethersproject/constants@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.6.1.tgz#e2e974cac160dd101cf79fdf879d7d18e8cb1370"
|
resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.6.1.tgz#e2e974cac160dd101cf79fdf879d7d18e8cb1370"
|
||||||
@ -215,22 +127,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@ethersproject/bignumber" "^5.6.2"
|
"@ethersproject/bignumber" "^5.6.2"
|
||||||
|
|
||||||
"@ethersproject/contracts@5.4.1":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.4.1.tgz#3eb4f35b7fe60a962a75804ada2746494df3e470"
|
|
||||||
integrity sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abi" "^5.4.0"
|
|
||||||
"@ethersproject/abstract-provider" "^5.4.0"
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/contracts@5.6.2":
|
"@ethersproject/contracts@5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.6.2.tgz#20b52e69ebc1b74274ff8e3d4e508de971c287bc"
|
resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.6.2.tgz#20b52e69ebc1b74274ff8e3d4e508de971c287bc"
|
||||||
@ -247,20 +143,6 @@
|
|||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
"@ethersproject/transactions" "^5.6.2"
|
"@ethersproject/transactions" "^5.6.2"
|
||||||
|
|
||||||
"@ethersproject/hash@5.4.0", "@ethersproject/hash@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0"
|
|
||||||
integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/hash@5.6.1", "@ethersproject/hash@>=5.0.0-beta.128", "@ethersproject/hash@^5.6.1":
|
"@ethersproject/hash@5.6.1", "@ethersproject/hash@>=5.0.0-beta.128", "@ethersproject/hash@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.6.1.tgz#224572ea4de257f05b4abf8ae58b03a67e99b0f4"
|
resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.6.1.tgz#224572ea4de257f05b4abf8ae58b03a67e99b0f4"
|
||||||
@ -275,24 +157,6 @@
|
|||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
"@ethersproject/strings" "^5.6.1"
|
"@ethersproject/strings" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/hdnode@5.4.0", "@ethersproject/hdnode@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.4.0.tgz#4bc9999b9a12eb5ce80c5faa83114a57e4107cac"
|
|
||||||
integrity sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/basex" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/pbkdf2" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/sha2" "^5.4.0"
|
|
||||||
"@ethersproject/signing-key" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
"@ethersproject/wordlists" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/hdnode@5.6.2", "@ethersproject/hdnode@^5.6.2":
|
"@ethersproject/hdnode@5.6.2", "@ethersproject/hdnode@^5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.6.2.tgz#26f3c83a3e8f1b7985c15d1db50dc2903418b2d2"
|
resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.6.2.tgz#26f3c83a3e8f1b7985c15d1db50dc2903418b2d2"
|
||||||
@ -311,25 +175,6 @@
|
|||||||
"@ethersproject/transactions" "^5.6.2"
|
"@ethersproject/transactions" "^5.6.2"
|
||||||
"@ethersproject/wordlists" "^5.6.1"
|
"@ethersproject/wordlists" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/json-wallets@5.4.0", "@ethersproject/json-wallets@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz#2583341cfe313fc9856642e8ace3080154145e95"
|
|
||||||
integrity sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/hdnode" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/pbkdf2" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/random" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
aes-js "3.0.0"
|
|
||||||
scrypt-js "3.0.1"
|
|
||||||
|
|
||||||
"@ethersproject/json-wallets@5.6.1", "@ethersproject/json-wallets@^5.6.1":
|
"@ethersproject/json-wallets@5.6.1", "@ethersproject/json-wallets@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.6.1.tgz#3f06ba555c9c0d7da46756a12ac53483fe18dd91"
|
resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.6.1.tgz#3f06ba555c9c0d7da46756a12ac53483fe18dd91"
|
||||||
@ -349,14 +194,6 @@
|
|||||||
aes-js "3.0.0"
|
aes-js "3.0.0"
|
||||||
scrypt-js "3.0.1"
|
scrypt-js "3.0.1"
|
||||||
|
|
||||||
"@ethersproject/keccak256@5.4.0", "@ethersproject/keccak256@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318"
|
|
||||||
integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
js-sha3 "0.5.7"
|
|
||||||
|
|
||||||
"@ethersproject/keccak256@5.6.1", "@ethersproject/keccak256@>=5.0.0-beta.127", "@ethersproject/keccak256@^5.6.1":
|
"@ethersproject/keccak256@5.6.1", "@ethersproject/keccak256@>=5.0.0-beta.127", "@ethersproject/keccak256@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.6.1.tgz#b867167c9b50ba1b1a92bccdd4f2d6bd168a91cc"
|
resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.6.1.tgz#b867167c9b50ba1b1a92bccdd4f2d6bd168a91cc"
|
||||||
@ -365,23 +202,11 @@
|
|||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
js-sha3 "0.8.0"
|
js-sha3 "0.8.0"
|
||||||
|
|
||||||
"@ethersproject/logger@5.4.1", "@ethersproject/logger@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054"
|
|
||||||
integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A==
|
|
||||||
|
|
||||||
"@ethersproject/logger@5.6.0", "@ethersproject/logger@>=5.0.0-beta.129", "@ethersproject/logger@^5.6.0":
|
"@ethersproject/logger@5.6.0", "@ethersproject/logger@>=5.0.0-beta.129", "@ethersproject/logger@^5.6.0":
|
||||||
version "5.6.0"
|
version "5.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.6.0.tgz#d7db1bfcc22fd2e4ab574cba0bb6ad779a9a3e7a"
|
resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.6.0.tgz#d7db1bfcc22fd2e4ab574cba0bb6ad779a9a3e7a"
|
||||||
integrity sha512-BiBWllUROH9w+P21RzoxJKzqoqpkyM1pRnEKG69bulE9TSQD8SAIvTQqIMZmmCO8pUNkgLP1wndX1gKghSpBmg==
|
integrity sha512-BiBWllUROH9w+P21RzoxJKzqoqpkyM1pRnEKG69bulE9TSQD8SAIvTQqIMZmmCO8pUNkgLP1wndX1gKghSpBmg==
|
||||||
|
|
||||||
"@ethersproject/networks@5.4.2", "@ethersproject/networks@^5.4.0":
|
|
||||||
version "5.4.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35"
|
|
||||||
integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/networks@5.6.4", "@ethersproject/networks@^5.6.3":
|
"@ethersproject/networks@5.6.4", "@ethersproject/networks@^5.6.3":
|
||||||
version "5.6.4"
|
version "5.6.4"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.6.4.tgz#51296d8fec59e9627554f5a8a9c7791248c8dc07"
|
resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.6.4.tgz#51296d8fec59e9627554f5a8a9c7791248c8dc07"
|
||||||
@ -389,14 +214,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/pbkdf2@5.4.0", "@ethersproject/pbkdf2@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz#ed88782a67fda1594c22d60d0ca911a9d669641c"
|
|
||||||
integrity sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/sha2" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/pbkdf2@5.6.1", "@ethersproject/pbkdf2@^5.6.1":
|
"@ethersproject/pbkdf2@5.6.1", "@ethersproject/pbkdf2@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.6.1.tgz#f462fe320b22c0d6b1d72a9920a3963b09eb82d1"
|
resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.6.1.tgz#f462fe320b22c0d6b1d72a9920a3963b09eb82d1"
|
||||||
@ -405,13 +222,6 @@
|
|||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
"@ethersproject/sha2" "^5.6.1"
|
"@ethersproject/sha2" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/properties@5.4.1", "@ethersproject/properties@^5.4.0":
|
|
||||||
version "5.4.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36"
|
|
||||||
integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/properties@5.6.0", "@ethersproject/properties@>=5.0.0-beta.131", "@ethersproject/properties@^5.6.0":
|
"@ethersproject/properties@5.6.0", "@ethersproject/properties@>=5.0.0-beta.131", "@ethersproject/properties@^5.6.0":
|
||||||
version "5.6.0"
|
version "5.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.6.0.tgz#38904651713bc6bdd5bdd1b0a4287ecda920fa04"
|
resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.6.0.tgz#38904651713bc6bdd5bdd1b0a4287ecda920fa04"
|
||||||
@ -419,31 +229,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/providers@5.4.5":
|
|
||||||
version "5.4.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.4.5.tgz#eb2ea2a743a8115f79604a8157233a3a2c832928"
|
|
||||||
integrity sha512-1GkrvkiAw3Fj28cwi1Sqm8ED1RtERtpdXmRfwIBGmqBSN5MoeRUHuwHPppMtbPayPgpFcvD7/Gdc9doO5fGYgw==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-provider" "^5.4.0"
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/basex" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/hash" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/networks" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/random" "^5.4.0"
|
|
||||||
"@ethersproject/rlp" "^5.4.0"
|
|
||||||
"@ethersproject/sha2" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
"@ethersproject/web" "^5.4.0"
|
|
||||||
bech32 "1.1.4"
|
|
||||||
ws "7.4.6"
|
|
||||||
|
|
||||||
"@ethersproject/providers@5.6.8":
|
"@ethersproject/providers@5.6.8":
|
||||||
version "5.6.8"
|
version "5.6.8"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.6.8.tgz#22e6c57be215ba5545d3a46cf759d265bb4e879d"
|
resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.6.8.tgz#22e6c57be215ba5545d3a46cf759d265bb4e879d"
|
||||||
@ -470,14 +255,6 @@
|
|||||||
bech32 "1.1.4"
|
bech32 "1.1.4"
|
||||||
ws "7.4.6"
|
ws "7.4.6"
|
||||||
|
|
||||||
"@ethersproject/random@5.4.0", "@ethersproject/random@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16"
|
|
||||||
integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/random@5.6.1", "@ethersproject/random@^5.6.1":
|
"@ethersproject/random@5.6.1", "@ethersproject/random@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.6.1.tgz#66915943981bcd3e11bbd43733f5c3ba5a790255"
|
resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.6.1.tgz#66915943981bcd3e11bbd43733f5c3ba5a790255"
|
||||||
@ -486,14 +263,6 @@
|
|||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/rlp@5.4.0", "@ethersproject/rlp@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931"
|
|
||||||
integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/rlp@5.6.1", "@ethersproject/rlp@^5.6.1":
|
"@ethersproject/rlp@5.6.1", "@ethersproject/rlp@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.6.1.tgz#df8311e6f9f24dcb03d59a2bac457a28a4fe2bd8"
|
resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.6.1.tgz#df8311e6f9f24dcb03d59a2bac457a28a4fe2bd8"
|
||||||
@ -502,15 +271,6 @@
|
|||||||
"@ethersproject/bytes" "^5.6.1"
|
"@ethersproject/bytes" "^5.6.1"
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/sha2@5.4.0", "@ethersproject/sha2@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371"
|
|
||||||
integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
hash.js "1.1.7"
|
|
||||||
|
|
||||||
"@ethersproject/sha2@5.6.1", "@ethersproject/sha2@^5.6.1":
|
"@ethersproject/sha2@5.6.1", "@ethersproject/sha2@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.6.1.tgz#211f14d3f5da5301c8972a8827770b6fd3e51656"
|
resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.6.1.tgz#211f14d3f5da5301c8972a8827770b6fd3e51656"
|
||||||
@ -520,18 +280,6 @@
|
|||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
hash.js "1.1.7"
|
hash.js "1.1.7"
|
||||||
|
|
||||||
"@ethersproject/signing-key@5.4.0", "@ethersproject/signing-key@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec"
|
|
||||||
integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
bn.js "^4.11.9"
|
|
||||||
elliptic "6.5.4"
|
|
||||||
hash.js "1.1.7"
|
|
||||||
|
|
||||||
"@ethersproject/signing-key@5.6.2", "@ethersproject/signing-key@^5.6.2":
|
"@ethersproject/signing-key@5.6.2", "@ethersproject/signing-key@^5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.6.2.tgz#8a51b111e4d62e5a62aee1da1e088d12de0614a3"
|
resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.6.2.tgz#8a51b111e4d62e5a62aee1da1e088d12de0614a3"
|
||||||
@ -544,17 +292,6 @@
|
|||||||
elliptic "6.5.4"
|
elliptic "6.5.4"
|
||||||
hash.js "1.1.7"
|
hash.js "1.1.7"
|
||||||
|
|
||||||
"@ethersproject/solidity@5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.4.0.tgz#1305e058ea02dc4891df18b33232b11a14ece9ec"
|
|
||||||
integrity sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/sha2" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/solidity@5.6.1":
|
"@ethersproject/solidity@5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.6.1.tgz#5845e71182c66d32e6ec5eefd041fca091a473e2"
|
resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.6.1.tgz#5845e71182c66d32e6ec5eefd041fca091a473e2"
|
||||||
@ -567,15 +304,6 @@
|
|||||||
"@ethersproject/sha2" "^5.6.1"
|
"@ethersproject/sha2" "^5.6.1"
|
||||||
"@ethersproject/strings" "^5.6.1"
|
"@ethersproject/strings" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/strings@5.4.0", "@ethersproject/strings@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a"
|
|
||||||
integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/strings@5.6.1", "@ethersproject/strings@>=5.0.0-beta.130", "@ethersproject/strings@^5.6.1":
|
"@ethersproject/strings@5.6.1", "@ethersproject/strings@>=5.0.0-beta.130", "@ethersproject/strings@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.6.1.tgz#dbc1b7f901db822b5cafd4ebf01ca93c373f8952"
|
resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.6.1.tgz#dbc1b7f901db822b5cafd4ebf01ca93c373f8952"
|
||||||
@ -585,21 +313,6 @@
|
|||||||
"@ethersproject/constants" "^5.6.1"
|
"@ethersproject/constants" "^5.6.1"
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/transactions@5.4.0", "@ethersproject/transactions@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0"
|
|
||||||
integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/rlp" "^5.4.0"
|
|
||||||
"@ethersproject/signing-key" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/transactions@5.6.2", "@ethersproject/transactions@^5.0.0-beta.135", "@ethersproject/transactions@^5.6.2":
|
"@ethersproject/transactions@5.6.2", "@ethersproject/transactions@^5.0.0-beta.135", "@ethersproject/transactions@^5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.6.2.tgz#793a774c01ced9fe7073985bb95a4b4e57a6370b"
|
resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.6.2.tgz#793a774c01ced9fe7073985bb95a4b4e57a6370b"
|
||||||
@ -615,15 +328,6 @@
|
|||||||
"@ethersproject/rlp" "^5.6.1"
|
"@ethersproject/rlp" "^5.6.1"
|
||||||
"@ethersproject/signing-key" "^5.6.2"
|
"@ethersproject/signing-key" "^5.6.2"
|
||||||
|
|
||||||
"@ethersproject/units@5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.4.0.tgz#d57477a4498b14b88b10396062c8cbbaf20c79fe"
|
|
||||||
integrity sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/constants" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/units@5.6.1":
|
"@ethersproject/units@5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.6.1.tgz#ecc590d16d37c8f9ef4e89e2005bda7ddc6a4e6f"
|
resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.6.1.tgz#ecc590d16d37c8f9ef4e89e2005bda7ddc6a4e6f"
|
||||||
@ -633,27 +337,6 @@
|
|||||||
"@ethersproject/constants" "^5.6.1"
|
"@ethersproject/constants" "^5.6.1"
|
||||||
"@ethersproject/logger" "^5.6.0"
|
"@ethersproject/logger" "^5.6.0"
|
||||||
|
|
||||||
"@ethersproject/wallet@5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.4.0.tgz#fa5b59830b42e9be56eadd45a16a2e0933ad9353"
|
|
||||||
integrity sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abstract-provider" "^5.4.0"
|
|
||||||
"@ethersproject/abstract-signer" "^5.4.0"
|
|
||||||
"@ethersproject/address" "^5.4.0"
|
|
||||||
"@ethersproject/bignumber" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/hash" "^5.4.0"
|
|
||||||
"@ethersproject/hdnode" "^5.4.0"
|
|
||||||
"@ethersproject/json-wallets" "^5.4.0"
|
|
||||||
"@ethersproject/keccak256" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/random" "^5.4.0"
|
|
||||||
"@ethersproject/signing-key" "^5.4.0"
|
|
||||||
"@ethersproject/transactions" "^5.4.0"
|
|
||||||
"@ethersproject/wordlists" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/wallet@5.6.2":
|
"@ethersproject/wallet@5.6.2":
|
||||||
version "5.6.2"
|
version "5.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.6.2.tgz#cd61429d1e934681e413f4bc847a5f2f87e3a03c"
|
resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.6.2.tgz#cd61429d1e934681e413f4bc847a5f2f87e3a03c"
|
||||||
@ -675,17 +358,6 @@
|
|||||||
"@ethersproject/transactions" "^5.6.2"
|
"@ethersproject/transactions" "^5.6.2"
|
||||||
"@ethersproject/wordlists" "^5.6.1"
|
"@ethersproject/wordlists" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/web@5.4.0", "@ethersproject/web@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f"
|
|
||||||
integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/base64" "^5.4.0"
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/web@5.6.1", "@ethersproject/web@^5.6.1":
|
"@ethersproject/web@5.6.1", "@ethersproject/web@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.6.1.tgz#6e2bd3ebadd033e6fe57d072db2b69ad2c9bdf5d"
|
resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.6.1.tgz#6e2bd3ebadd033e6fe57d072db2b69ad2c9bdf5d"
|
||||||
@ -697,17 +369,6 @@
|
|||||||
"@ethersproject/properties" "^5.6.0"
|
"@ethersproject/properties" "^5.6.0"
|
||||||
"@ethersproject/strings" "^5.6.1"
|
"@ethersproject/strings" "^5.6.1"
|
||||||
|
|
||||||
"@ethersproject/wordlists@5.4.0", "@ethersproject/wordlists@^5.4.0":
|
|
||||||
version "5.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.4.0.tgz#f34205ec3bbc9e2c49cadaee774cf0b07e7573d7"
|
|
||||||
integrity sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/bytes" "^5.4.0"
|
|
||||||
"@ethersproject/hash" "^5.4.0"
|
|
||||||
"@ethersproject/logger" "^5.4.0"
|
|
||||||
"@ethersproject/properties" "^5.4.0"
|
|
||||||
"@ethersproject/strings" "^5.4.0"
|
|
||||||
|
|
||||||
"@ethersproject/wordlists@5.6.1", "@ethersproject/wordlists@^5.6.1":
|
"@ethersproject/wordlists@5.6.1", "@ethersproject/wordlists@^5.6.1":
|
||||||
version "5.6.1"
|
version "5.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.6.1.tgz#1e78e2740a8a21e9e99947e47979d72e130aeda1"
|
resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.6.1.tgz#1e78e2740a8a21e9e99947e47979d72e130aeda1"
|
||||||
@ -1220,9 +881,9 @@ async-limiter@~1.0.0:
|
|||||||
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
||||||
|
|
||||||
async-mutex@^0.2.4:
|
async-mutex@^0.2.4:
|
||||||
version "0.2.4"
|
version "0.2.6"
|
||||||
resolved "https://registry.yarnpkg.com/async-mutex/-/async-mutex-0.2.4.tgz#f6ea5f9cc73147f395f86fa573a2af039fe63082"
|
resolved "https://registry.yarnpkg.com/async-mutex/-/async-mutex-0.2.6.tgz#0d7a3deb978bc2b984d5908a2038e1ae2e54ff40"
|
||||||
integrity sha512-fcQKOXUKMQc57JlmjBCHtkKNrfGpHyR7vu18RfuLfeTAf4hK9PgOadPR5cDrBQ682zasrLUhJFe7EKAHJOduDg==
|
integrity sha512-Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw==
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib "^2.0.0"
|
tslib "^2.0.0"
|
||||||
|
|
||||||
@ -2428,43 +2089,7 @@ ethereumjs-util@^7.1.0:
|
|||||||
ethereum-cryptography "^0.1.3"
|
ethereum-cryptography "^0.1.3"
|
||||||
rlp "^2.2.4"
|
rlp "^2.2.4"
|
||||||
|
|
||||||
ethers@^5.4.6:
|
ethers@^5.4.6, ethers@^5.6.4:
|
||||||
version "5.4.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6"
|
|
||||||
integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ==
|
|
||||||
dependencies:
|
|
||||||
"@ethersproject/abi" "5.4.1"
|
|
||||||
"@ethersproject/abstract-provider" "5.4.1"
|
|
||||||
"@ethersproject/abstract-signer" "5.4.1"
|
|
||||||
"@ethersproject/address" "5.4.0"
|
|
||||||
"@ethersproject/base64" "5.4.0"
|
|
||||||
"@ethersproject/basex" "5.4.0"
|
|
||||||
"@ethersproject/bignumber" "5.4.1"
|
|
||||||
"@ethersproject/bytes" "5.4.0"
|
|
||||||
"@ethersproject/constants" "5.4.0"
|
|
||||||
"@ethersproject/contracts" "5.4.1"
|
|
||||||
"@ethersproject/hash" "5.4.0"
|
|
||||||
"@ethersproject/hdnode" "5.4.0"
|
|
||||||
"@ethersproject/json-wallets" "5.4.0"
|
|
||||||
"@ethersproject/keccak256" "5.4.0"
|
|
||||||
"@ethersproject/logger" "5.4.1"
|
|
||||||
"@ethersproject/networks" "5.4.2"
|
|
||||||
"@ethersproject/pbkdf2" "5.4.0"
|
|
||||||
"@ethersproject/properties" "5.4.1"
|
|
||||||
"@ethersproject/providers" "5.4.5"
|
|
||||||
"@ethersproject/random" "5.4.0"
|
|
||||||
"@ethersproject/rlp" "5.4.0"
|
|
||||||
"@ethersproject/sha2" "5.4.0"
|
|
||||||
"@ethersproject/signing-key" "5.4.0"
|
|
||||||
"@ethersproject/solidity" "5.4.0"
|
|
||||||
"@ethersproject/strings" "5.4.0"
|
|
||||||
"@ethersproject/transactions" "5.4.0"
|
|
||||||
"@ethersproject/units" "5.4.0"
|
|
||||||
"@ethersproject/wallet" "5.4.0"
|
|
||||||
"@ethersproject/web" "5.4.0"
|
|
||||||
"@ethersproject/wordlists" "5.4.0"
|
|
||||||
|
|
||||||
ethers@^5.6.4:
|
|
||||||
version "5.6.9"
|
version "5.6.9"
|
||||||
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.6.9.tgz#4e12f8dfcb67b88ae7a78a9519b384c23c576a4d"
|
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.6.9.tgz#4e12f8dfcb67b88ae7a78a9519b384c23c576a4d"
|
||||||
integrity sha512-lMGC2zv9HC5EC+8r429WaWu3uWJUCgUCt8xxKCFqkrFuBDZXDYIdzDUECxzjf2BMF8IVBByY1EBoGSL3RTm8RA==
|
integrity sha512-lMGC2zv9HC5EC+8r429WaWu3uWJUCgUCt8xxKCFqkrFuBDZXDYIdzDUECxzjf2BMF8IVBByY1EBoGSL3RTm8RA==
|
||||||
@ -3366,16 +2991,16 @@ isurl@^1.0.0-alpha5:
|
|||||||
has-to-string-tag-x "^1.2.0"
|
has-to-string-tag-x "^1.2.0"
|
||||||
is-object "^1.0.1"
|
is-object "^1.0.1"
|
||||||
|
|
||||||
js-sha3@0.5.7, js-sha3@^0.5.7:
|
|
||||||
version "0.5.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7"
|
|
||||||
integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==
|
|
||||||
|
|
||||||
js-sha3@0.8.0, js-sha3@^0.8.0:
|
js-sha3@0.8.0, js-sha3@^0.8.0:
|
||||||
version "0.8.0"
|
version "0.8.0"
|
||||||
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
|
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840"
|
||||||
integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==
|
integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==
|
||||||
|
|
||||||
|
js-sha3@^0.5.7:
|
||||||
|
version "0.5.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7"
|
||||||
|
integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==
|
||||||
|
|
||||||
js-yaml@4.0.0:
|
js-yaml@4.0.0:
|
||||||
version "4.0.0"
|
version "4.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
|
||||||
@ -4935,9 +4560,9 @@ tslib@^1.14.1, tslib@^1.8.1, tslib@^1.9.3:
|
|||||||
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
||||||
|
|
||||||
tslib@^2.0.0:
|
tslib@^2.0.0:
|
||||||
version "2.0.1"
|
version "2.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e"
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
|
||||||
integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ==
|
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
|
||||||
|
|
||||||
tsutils@^3.21.0:
|
tsutils@^3.21.0:
|
||||||
version "3.21.0"
|
version "3.21.0"
|
||||||
@ -4975,9 +4600,9 @@ tweetnacl@^1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596"
|
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-1.0.3.tgz#ac0af71680458d8a6378d0d0d050ab1407d35596"
|
||||||
integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==
|
integrity sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==
|
||||||
|
|
||||||
"tx-manager@git+https://github.com/tornadocash/tx-manager.git#3a168c3c54a7d1ad77316476418927c21da22bb7":
|
"tx-manager@git+https://github.com/tornadocash/tx-manager.git#e223c22791b5887012f24c4b15917001fc649dfe":
|
||||||
version "0.4.8"
|
version "0.4.8"
|
||||||
resolved "git+https://github.com/tornadocash/tx-manager.git#3a168c3c54a7d1ad77316476418927c21da22bb7"
|
resolved "git+https://github.com/tornadocash/tx-manager.git#e223c22791b5887012f24c4b15917001fc649dfe"
|
||||||
dependencies:
|
dependencies:
|
||||||
async-mutex "^0.2.4"
|
async-mutex "^0.2.4"
|
||||||
ethers "^5.4.6"
|
ethers "^5.4.6"
|
||||||
@ -5250,9 +4875,9 @@ web3-core-promievent@1.3.0:
|
|||||||
eventemitter3 "4.0.4"
|
eventemitter3 "4.0.4"
|
||||||
|
|
||||||
web3-core-promievent@^1.3.0:
|
web3-core-promievent@^1.3.0:
|
||||||
version "1.7.3"
|
version "1.7.4"
|
||||||
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.7.3.tgz#2d0eeef694569b61355054c721578f67df925b80"
|
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.7.4.tgz#80a75633fdfe21fbaae2f1e38950edb2f134868c"
|
||||||
integrity sha512-+mcfNJLP8h2JqcL/UdMGdRVfTdm+bsoLzAFtLpazE4u9kU7yJUgMMAqnK59fKD3Zpke3DjaUJKwz1TyiGM5wig==
|
integrity sha512-o4uxwXKDldN7ER7VUvDfWsqTx9nQSP1aDssi1XYXeYC2xJbVo0n+z6ryKtmcoWoRdRj7uSpVzal3nEmlr480mA==
|
||||||
dependencies:
|
dependencies:
|
||||||
eventemitter3 "4.0.4"
|
eventemitter3 "4.0.4"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user