From dbf6839f1ef26f87ddc3e56f8bdd91f023e61de1 Mon Sep 17 00:00:00 2001 From: vic-en Date: Sun, 26 Nov 2023 06:56:01 -0600 Subject: [PATCH 01/11] Add pancake v3 --- package.json | 4 + .../binance-smart-chain.ts | 4 + src/connectors/connectors.routes.ts | 9 +- .../pancakeswap/pancakeswap.config.ts | 37 +- .../pancakeswap/pancakeswap.lp.helper.ts | 432 ++++++++++++++ .../pancakeswap/pancakeswap.lp.interfaces.ts | 52 ++ src/connectors/pancakeswap/pancakeswap.lp.ts | 261 +++++++++ src/connectors/uniswap/uniswap.controllers.ts | 9 +- src/connectors/uniswap/uniswap.lp.helper.ts | 5 +- src/connectors/uniswap/uniswap.lp.ts | 5 +- src/services/common-interfaces.ts | 4 +- src/services/connection-manager.ts | 3 + src/services/schema/pancakeswap-schema.json | 43 ++ src/templates/pancakeswap.yml | 26 +- src/templates/root.yml | 2 +- yarn.lock | 552 ++++++++++++------ 16 files changed, 1240 insertions(+), 208 deletions(-) create mode 100644 src/connectors/pancakeswap/pancakeswap.lp.helper.ts create mode 100644 src/connectors/pancakeswap/pancakeswap.lp.interfaces.ts create mode 100644 src/connectors/pancakeswap/pancakeswap.lp.ts create mode 100644 src/services/schema/pancakeswap-schema.json diff --git a/package.json b/package.json index 31254d69eb..e061491b28 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,10 @@ "@harmony-js/utils": "^0.1.56", "@improbable-eng/grpc-web": "^0.13.0", "@pancakeswap/sdk": "^2.4.5", + "@pancakeswap/swap-sdk-core": "^1.0.0", + "@pancakeswap/v3-core": "^1.0.2", + "@pancakeswap/v3-periphery": "^1.0.2", + "@pancakeswap/v3-sdk": "^3.7.0", "@pangolindex/sdk": "^1.1.0", "@perp/sdk-curie": "^1.16.0", "@sushiswap/sdk": "^5.0.0-canary.116", diff --git a/src/chains/binance-smart-chain/binance-smart-chain.ts b/src/chains/binance-smart-chain/binance-smart-chain.ts index e04dbbe313..2cbe94c2c1 100644 --- a/src/chains/binance-smart-chain/binance-smart-chain.ts +++ b/src/chains/binance-smart-chain/binance-smart-chain.ts @@ -99,6 +99,10 @@ export class BinanceSmartChain extends EthereumBase implements Ethereumish { let spender: string; if (reqSpender === 'pancakeswap') { spender = PancakeSwapConfig.config.routerAddress(this._chain); + } else if (reqSpender === 'pancakeswapLP') { + spender = PancakeSwapConfig.config.pancakeswapV3NftManagerAddress( + this._chain + ); } else if (reqSpender === 'sushiswap') { spender = SushiswapConfig.config.sushiswapRouterAddress( 'binance-smart-chain', diff --git a/src/connectors/connectors.routes.ts b/src/connectors/connectors.routes.ts index ad4d13c9de..5ef4988111 100644 --- a/src/connectors/connectors.routes.ts +++ b/src/connectors/connectors.routes.ts @@ -100,10 +100,17 @@ export namespace ConnectorsRoutes { }, { name: 'pancakeswap', - trading_type: PancakeSwapConfig.config.tradingTypes, + trading_type: PancakeSwapConfig.config.tradingTypes('swap'), chain_type: PancakeSwapConfig.config.chainType, available_networks: PancakeSwapConfig.config.availableNetworks, }, + { + name: 'pancakeswapLP', + trading_type: PancakeSwapConfig.config.tradingTypes('LP'), + chain_type: PancakeSwapConfig.config.chainType, + available_networks: PancakeSwapConfig.config.availableNetworks, + additional_spenders: ['pancakeswap'], + }, { name: 'xswap', trading_type: XsswapConfig.config.tradingTypes, diff --git a/src/connectors/pancakeswap/pancakeswap.config.ts b/src/connectors/pancakeswap/pancakeswap.config.ts index baa01e62b1..68102901d7 100644 --- a/src/connectors/pancakeswap/pancakeswap.config.ts +++ b/src/connectors/pancakeswap/pancakeswap.config.ts @@ -1,10 +1,43 @@ -import { buildConfig, NetworkConfig } from '../../network/network.utils'; +import { + buildConfig, + NetworkConfig as V2NetworkConfig, +} from '../../network/network.utils'; +import { ConfigManagerV2 } from '../../services/config-manager-v2'; export namespace PancakeSwapConfig { - export const config: NetworkConfig = buildConfig( + export interface NetworkConfig extends Omit { + maximumHops: number; + pancakeswapV3SmartOrderRouterAddress: (network: string) => string; + pancakeswapV3NftManagerAddress: (network: string) => string; + tradingTypes: (type: string) => Array; + useRouter?: boolean; + feeTier?: string; + } + + export const v2Config: V2NetworkConfig = buildConfig( 'pancakeswap', ['AMM'], [{ chain: 'binance-smart-chain', networks: ['mainnet', 'testnet'] }], 'EVM' ); + + export const config: NetworkConfig = { + ...v2Config, + ...{ + maximumHops: ConfigManagerV2.getInstance().get(`pancakeswap.maximumHops`), + pancakeswapV3SmartOrderRouterAddress: (network: string) => + ConfigManagerV2.getInstance().get( + `pancakeswap.contractAddresses.${network}.pancakeswapV3SmartOrderRouterAddress` + ), + pancakeswapV3NftManagerAddress: (network: string) => + ConfigManagerV2.getInstance().get( + `pancakeswap.contractAddresses.${network}.pancakeswapV3NftManagerAddress` + ), + tradingTypes: (type: string) => { + return type === 'swap' ? ['AMM'] : ['AMM_LP']; + }, + useRouter: ConfigManagerV2.getInstance().get(`pancakeswap.useRouter`), + feeTier: ConfigManagerV2.getInstance().get(`pancakeswap.feeTier`), + }, + }; } diff --git a/src/connectors/pancakeswap/pancakeswap.lp.helper.ts b/src/connectors/pancakeswap/pancakeswap.lp.helper.ts new file mode 100644 index 0000000000..76953de53a --- /dev/null +++ b/src/connectors/pancakeswap/pancakeswap.lp.helper.ts @@ -0,0 +1,432 @@ +import { + InitializationError, + SERVICE_UNITIALIZED_ERROR_CODE, + SERVICE_UNITIALIZED_ERROR_MESSAGE, +} from '../../services/error-handler'; +import { PancakeSwapConfig } from './pancakeswap.config'; +import { Contract, ContractInterface } from '@ethersproject/contracts'; +import { + Token, + Price, + CurrencyAmount, + Percent, +} from '@pancakeswap/swap-sdk-core'; +import * as v3 from '@pancakeswap/v3-sdk'; +import { AlphaRouter } from '@uniswap/smart-order-router'; +import { providers, Wallet, Signer, utils } from 'ethers'; +import { percentRegexp } from '../../services/config-manager-v2'; +import { + PoolState, + RawPosition, + AddPosReturn, +} from './pancakeswap.lp.interfaces'; +import * as math from 'mathjs'; +import { getAddress } from 'ethers/lib/utils'; +import { RemoveLiquidityOptions } from '@pancakeswap/v3-sdk'; +import { BinanceSmartChain } from '../../chains/binance-smart-chain/binance-smart-chain'; + +export class PancakeswapLPHelper { + protected chain: BinanceSmartChain; + protected chainId; + private _router: string; + private _nftManager: string; + private _ttl: number; + private _routerAbi: ContractInterface; + private _nftAbi: ContractInterface; + private _poolAbi: ContractInterface; + private _alphaRouter: AlphaRouter | undefined; + private tokenList: Record = {}; + private _chainName: string; + private _ready: boolean = false; + public abiDecoder: any; + + constructor(chain: string, network: string) { + this.chain = BinanceSmartChain.getInstance(network); + this._chainName = chain; + this.chainId = this.chain.chainId; + // this._alphaRouter = new AlphaRouter({ + // chainId: this.chainId, + // provider: this.chain.provider, + // }); + this._alphaRouter = undefined; + this._router = + PancakeSwapConfig.config.pancakeswapV3SmartOrderRouterAddress(network); + this._nftManager = + PancakeSwapConfig.config.pancakeswapV3NftManagerAddress(network); + this._ttl = PancakeSwapConfig.config.ttl; + this._routerAbi = + require('@pancakeswap/v3-periphery/artifacts/contracts/SwapRouter.sol/SwapRouter.json').abi; + this._nftAbi = + require('@pancakeswap/v3-periphery/artifacts/contracts/NonfungiblePositionManager.sol/NonfungiblePositionManager.json').abi; + this._poolAbi = + require('@pancakeswap/v3-core/artifacts/contracts/interfaces/IPancakeV3Pool.sol/IPancakeV3Pool.json').abi; + this.abiDecoder = require('abi-decoder'); + this.abiDecoder.addABI(this._nftAbi); + this.abiDecoder.addABI(this._routerAbi); + } + + public ready(): boolean { + return this._ready; + } + + public get alphaRouter(): AlphaRouter | undefined { + return this._alphaRouter; + } + + public get router(): string { + return this._router; + } + + public get nftManager(): string { + return this._nftManager; + } + + public get ttl(): number { + return parseInt(String(Date.now() / 1000)) + this._ttl; + } + + public get routerAbi(): ContractInterface { + return this._routerAbi; + } + + public get nftAbi(): ContractInterface { + return this._nftAbi; + } + + public get poolAbi(): ContractInterface { + return this._poolAbi; + } + + /** + * Given a token's address, return the connector's native representation of + * the token. + * + * @param address Token address + */ + public getTokenByAddress(address: string): Token { + return this.tokenList[getAddress(address)]; + } + + public async init() { + if (this._chainName == 'binance-smart-chain' && !this.chain.ready()) + throw new InitializationError( + SERVICE_UNITIALIZED_ERROR_MESSAGE('ETH'), + SERVICE_UNITIALIZED_ERROR_CODE + ); + for (const token of this.chain.storedTokenList) { + this.tokenList[token.address] = new Token( + this.chainId, + token.address, + token.decimals, + token.symbol, + token.name + ); + } + this._ready = true; + } + + getPercentage(rawPercent: number | string): Percent { + const slippage = math.fraction(rawPercent) as math.Fraction; + return new Percent(slippage.n, slippage.d * 100); + } + + getSlippagePercentage(): Percent { + const allowedSlippage = PancakeSwapConfig.config.allowedSlippage; + const nd = allowedSlippage.match(percentRegexp); + if (nd) return new Percent(nd[1], nd[2]); + throw new Error( + 'Encountered a malformed percent string in the config for ALLOWED_SLIPPAGE.' + ); + } + + getContract( + contract: string, + signer: providers.StaticJsonRpcProvider | Signer + ): Contract { + if (contract === 'router') { + return new Contract(this.router, this.routerAbi, signer); + } else { + return new Contract(this.nftManager, this.nftAbi, signer); + } + } + + getPoolContract( + pool: string, + wallet: providers.StaticJsonRpcProvider | Signer + ): Contract { + return new Contract(pool, this.poolAbi, wallet); + } + + async getPoolState( + poolAddress: string, + fee: v3.FeeAmount + ): Promise { + const poolContract = this.getPoolContract(poolAddress, this.chain.provider); + const minTick = v3.nearestUsableTick( + v3.TickMath.MIN_TICK, + v3.TICK_SPACINGS[fee] + ); + const maxTick = v3.nearestUsableTick( + v3.TickMath.MAX_TICK, + v3.TICK_SPACINGS[fee] + ); + const poolDataReq = await Promise.allSettled([ + poolContract.liquidity(), + poolContract.slot0(), + poolContract.ticks(minTick), + poolContract.ticks(maxTick), + ]); + + const rejected = poolDataReq.filter( + (r) => r.status === 'rejected' + ) as PromiseRejectedResult[]; + + if (rejected.length > 0) throw new Error('Unable to fetch pool state'); + + const poolData = ( + poolDataReq.filter( + (r) => r.status === 'fulfilled' + ) as PromiseFulfilledResult[] + ).map((r) => r.value); + + return { + liquidity: poolData[0], + sqrtPriceX96: poolData[1][0], + tick: poolData[1][1], + observationIndex: poolData[1][2], + observationCardinality: poolData[1][3], + observationCardinalityNext: poolData[1][4], + feeProtocol: poolData[1][5], + unlocked: poolData[1][6], + fee: fee, + tickProvider: [ + { + index: minTick, + liquidityNet: poolData[2][1], + liquidityGross: poolData[2][0], + }, + { + index: maxTick, + liquidityNet: poolData[3][1], + liquidityGross: poolData[3][0], + }, + ], + }; + } + + async poolPrice( + token0: Token, + token1: Token, + tier: string, + period: number = 1, + interval: number = 1 + ): Promise { + const fetchPriceTime = []; + const prices = []; + const fee = v3.FeeAmount[tier as keyof typeof v3.FeeAmount]; + const poolContract = new Contract( + v3.Pool.getAddress(token0, token1, fee), + this.poolAbi, + this.chain.provider + ); + for ( + let x = Math.ceil(period / interval) * interval; + x >= 0; + x -= interval + ) { + fetchPriceTime.push(x); + } + try { + const response = await poolContract.observe(fetchPriceTime); + for (let twap = 0; twap < response.tickCumulatives.length - 1; twap++) { + prices.push( + v3 + .tickToPrice( + token0, + token1, + Math.ceil( + response.tickCumulatives[twap + 1].sub( + response.tickCumulatives[twap].toNumber() + ) / interval + ) + ) + .toFixed(8) + ); + } + } catch (e) { + return ['0']; + } + return prices; + } + + async getRawPosition(wallet: Wallet, tokenId: number): Promise { + const contract = this.getContract('nft', wallet); + const requests = [contract.positions(tokenId)]; + const positionInfoReq = await Promise.allSettled(requests); + const rejected = positionInfoReq.filter( + (r) => r.status === 'rejected' + ) as PromiseRejectedResult[]; + if (rejected.length > 0) throw new Error('Unable to fetch position'); + const positionInfo = ( + positionInfoReq.filter( + (r) => r.status === 'fulfilled' + ) as PromiseFulfilledResult[] + ).map((r) => r.value); + return positionInfo[0]; + } + + getReduceLiquidityData( + percent: number, + tokenId: number, + token0: Token, + token1: Token, + wallet: Wallet + ): RemoveLiquidityOptions { + // }; // recipient: string; // expectedCurrencyOwed1: CurrencyAmount; // expectedCurrencyOwed0: CurrencyAmount; // collectOptions: { // burnToken: boolean; // deadline: number; // slippageTolerance: Percent; // liquidityPercentage: Percent; // tokenId: number; // { + return { + tokenId: tokenId, + liquidityPercentage: this.getPercentage(percent), + slippageTolerance: this.getSlippagePercentage(), + deadline: this.ttl, + burnToken: false, + collectOptions: { + expectedCurrencyOwed0: CurrencyAmount.fromRawAmount(token0, '0'), + expectedCurrencyOwed1: CurrencyAmount.fromRawAmount(token1, '0'), + recipient: <`0x${string}`>wallet.address, + }, + }; + } + + async addPositionHelper( + wallet: Wallet, + token0: Token, + token1: Token, + amount0: string, + amount1: string, + fee: v3.FeeAmount, + lowerPrice: number, + upperPrice: number, + tokenId: number = 0 + ): Promise { + if (token1.sortsBefore(token0)) { + [token0, token1] = [token1, token0]; + [amount0, amount1] = [amount1, amount0]; + [lowerPrice, upperPrice] = [1 / upperPrice, 1 / lowerPrice]; + } + const lowerPriceInFraction = math.fraction(lowerPrice) as math.Fraction; + const upperPriceInFraction = math.fraction(upperPrice) as math.Fraction; + const poolData = await this.getPoolState( + v3.Pool.getAddress(token0, token1, fee), + fee + ); + const pool = new v3.Pool( + token0, + token1, + poolData.fee, + poolData.sqrtPriceX96.toString(), + poolData.liquidity.toString(), + poolData.tick + ); + + const addLiquidityOptions = { + recipient: wallet.address, + tokenId: tokenId ? tokenId : 0, + }; + + const swapOptions = { + recipient: wallet.address, + slippageTolerance: this.getSlippagePercentage(), + deadline: this.ttl, + }; + + const tickLower = v3.nearestUsableTick( + v3.priceToClosestTick( + new Price( + token0, + token1, + utils + .parseUnits(lowerPriceInFraction.d.toString(), token0.decimals) + .toString(), + utils + .parseUnits(lowerPriceInFraction.n.toString(), token1.decimals) + .toString() + ) + ), + v3.TICK_SPACINGS[fee] + ); + + const tickUpper = v3.nearestUsableTick( + v3.priceToClosestTick( + new Price( + token0, + token1, + utils + .parseUnits(upperPriceInFraction.d.toString(), token0.decimals) + .toString(), + utils + .parseUnits(upperPriceInFraction.n.toString(), token1.decimals) + .toString() + ) + ), + v3.TICK_SPACINGS[fee] + ); + + const position = v3.Position.fromAmounts({ + pool: pool, + tickLower: + tickLower === tickUpper ? tickLower - v3.TICK_SPACINGS[fee] : tickLower, + tickUpper: tickUpper, + amount0: utils.parseUnits(amount0, token0.decimals).toString(), + amount1: utils.parseUnits(amount1, token1.decimals).toString(), + useFullPrecision: true, + }); + + const methodParameters = v3.NonfungiblePositionManager.addCallParameters( + position, + { ...swapOptions, ...addLiquidityOptions } + ); + return { ...methodParameters, swapRequired: false }; + } + + async reducePositionHelper( + wallet: Wallet, + tokenId: number, + decreasePercent: number + ): Promise { + // Reduce position and burn + const positionData = await this.getRawPosition(wallet, tokenId); + const token0 = this.getTokenByAddress(positionData.token0); + const token1 = this.getTokenByAddress(positionData.token1); + const fee = positionData.fee; + if (!token0 || !token1) { + throw new Error( + `One of the tokens in this position isn't recognized. $token0: ${token0}, $token1: ${token1}` + ); + } + const poolAddress = v3.Pool.getAddress(token0, token1, fee); + const poolData = await this.getPoolState(poolAddress, fee); + const position = new v3.Position({ + pool: new v3.Pool( + token0, + token1, + poolData.fee, + poolData.sqrtPriceX96.toString(), + poolData.liquidity.toString(), + poolData.tick + ), + tickLower: positionData.tickLower, + tickUpper: positionData.tickUpper, + liquidity: positionData.liquidity, + }); + return v3.NonfungiblePositionManager.removeCallParameters( + position, + this.getReduceLiquidityData( + decreasePercent, + tokenId, + token0, + token1, + wallet + ) + ); + } +} diff --git a/src/connectors/pancakeswap/pancakeswap.lp.interfaces.ts b/src/connectors/pancakeswap/pancakeswap.lp.interfaces.ts new file mode 100644 index 0000000000..76e384c6d7 --- /dev/null +++ b/src/connectors/pancakeswap/pancakeswap.lp.interfaces.ts @@ -0,0 +1,52 @@ +import { CurrencyAmount, Percent, Token } from '@uniswap/sdk-core'; +import * as v3 from '@pancakeswap/v3-sdk'; +import { BigNumber } from 'ethers'; + +export interface PoolState { + liquidity: BigNumber; + sqrtPriceX96: BigNumber; + tick: number; + observationIndex: BigNumber; + observationCardinality: BigNumber; + observationCardinalityNext: BigNumber; + feeProtocol: BigNumber; + unlocked: boolean; + fee: v3.FeeAmount; + tickProvider: { + index: number; + liquidityNet: BigNumber; + liquidityGross: BigNumber; + }[]; +} + +export interface RawPosition { + nonce: number; + operator: string; + token0: string; + token1: string; + fee: number; + tickLower: number; + tickUpper: number; + liquidity: number; + feeGrowthInside0LastX128: BigNumber; + feeGrowthInside1LastX128: BigNumber; + tokensOwed0: BigNumber; + tokensOwed1: BigNumber; +} + +export interface AddPosReturn extends v3.MethodParameters { + swapRequired: boolean; +} + +export interface ReduceLiquidityData { + tokenId: number; + liquidityPercentage: Percent; + slippageTolerance: Percent; + deadline: number; + burnToken: boolean; + collectOptions: { + expectedCurrencyOwed0: CurrencyAmount; + expectedCurrencyOwed1: CurrencyAmount; + recipient: string; + }; +} diff --git a/src/connectors/pancakeswap/pancakeswap.lp.ts b/src/connectors/pancakeswap/pancakeswap.lp.ts new file mode 100644 index 0000000000..606c1938a5 --- /dev/null +++ b/src/connectors/pancakeswap/pancakeswap.lp.ts @@ -0,0 +1,261 @@ +import { logger } from '../../services/logger'; +import { PositionInfo, UniswapLPish } from '../../services/common-interfaces'; +import { PancakeSwapConfig } from './pancakeswap.config'; +import { Token } from '@pancakeswap/swap-sdk-core'; +import * as v3 from '@pancakeswap/v3-sdk'; +import { + BigNumber, + Transaction, + Wallet, + utils, + constants, + providers, +} from 'ethers'; +import { PancakeswapLPHelper } from './pancakeswap.lp.helper'; +import { AddPosReturn } from './pancakeswap.lp.interfaces'; + +const MaxUint128 = BigNumber.from(2).pow(128).sub(1); + +export type Overrides = { + gasLimit: BigNumber; + gasPrice?: BigNumber; + value?: BigNumber; + nonce?: BigNumber; + maxFeePerGas?: BigNumber; + maxPriorityFeePerGas?: BigNumber; +}; + +export class PancakeswapLP extends PancakeswapLPHelper implements UniswapLPish { + private static _instances: { [name: string]: PancakeswapLP }; + private _gasLimitEstimate: number; + + private constructor(chain: string, network: string) { + super(chain, network); + this._gasLimitEstimate = PancakeSwapConfig.config.gasLimitEstimate; + } + + public static getInstance(chain: string, network: string): PancakeswapLP { + if (PancakeswapLP._instances === undefined) { + PancakeswapLP._instances = {}; + } + if (!(chain + network in PancakeswapLP._instances)) { + PancakeswapLP._instances[chain + network] = new PancakeswapLP( + chain, + network + ); + } + + return PancakeswapLP._instances[chain + network]; + } + + /** + * Default gas limit for swap transactions. + */ + public get gasLimitEstimate(): number { + return this._gasLimitEstimate; + } + + async getPosition(tokenId: number): Promise { + const contract = this.getContract('nft', this.chain.provider); + const requests = [ + contract.positions(tokenId), + this.collectFees(this.chain.provider, tokenId), // static call to calculate earned fees + ]; + const positionInfoReq = await Promise.allSettled(requests); + const rejected = positionInfoReq.filter( + (r) => r.status === 'rejected' + ) as PromiseRejectedResult[]; + if (rejected.length > 0) + throw new Error(`Unable to fetch position with id ${tokenId}`); + const positionInfo = ( + positionInfoReq.filter( + (r) => r.status === 'fulfilled' + ) as PromiseFulfilledResult[] + ).map((r) => r.value); + const position = positionInfo[0]; + const feeInfo = positionInfo[1]; + const token0 = this.getTokenByAddress(position.token0); + const token1 = this.getTokenByAddress(position.token1); + if (!token0 || !token1) { + throw new Error(`One of the tokens in this position isn't recognized.`); + } + const fee = position.fee; + const poolAddress = v3.Pool.getAddress(token0, token1, fee); + const poolData = await this.getPoolState(poolAddress, fee); + const positionInst = new v3.Position({ + pool: new v3.Pool( + token0, + token1, + poolData.fee, + poolData.sqrtPriceX96.toString(), + poolData.liquidity.toString(), + poolData.tick + ), + tickLower: position.tickLower, + tickUpper: position.tickUpper, + liquidity: position.liquidity, + }); + return { + token0: token0.symbol, + token1: token1.symbol, + fee: v3.FeeAmount[position.fee], + lowerPrice: positionInst.token0PriceLower.toFixed(8), + upperPrice: positionInst.token0PriceUpper.toFixed(8), + amount0: positionInst.amount0.toFixed(), + amount1: positionInst.amount1.toFixed(), + unclaimedToken0: utils.formatUnits( + feeInfo.amount0.toString(), + token0.decimals + ), + unclaimedToken1: utils.formatUnits( + feeInfo.amount1.toString(), + token1.decimals + ), + }; + } + + async addPosition( + wallet: Wallet, + token0: Token, + token1: Token, + amount0: string, + amount1: string, + fee: string, + lowerPrice: number, + upperPrice: number, + tokenId: number = 0, + gasLimit: number, + gasPrice: number, + nonce?: number, + maxFeePerGas?: BigNumber, + maxPriorityFeePerGas?: BigNumber + ): Promise { + const convertedFee = v3.FeeAmount[fee as keyof typeof v3.FeeAmount]; + const addLiquidityResponse: AddPosReturn = await this.addPositionHelper( + wallet, + token0, + token1, + amount0, + amount1, + convertedFee, + lowerPrice, + upperPrice, + tokenId + ); + + if (nonce === undefined) { + nonce = await this.chain.nonceManager.getNextNonce(wallet.address); + } + + const tx = await wallet.sendTransaction({ + data: addLiquidityResponse.calldata, + to: addLiquidityResponse.swapRequired ? this.router : this.nftManager, + ...this.generateOverrides( + gasLimit, + gasPrice, + nonce, + maxFeePerGas, + maxPriorityFeePerGas, + addLiquidityResponse.value + ), + }); + logger.info(`Pancakeswap V3 Add position Tx Hash: ${tx.hash}`); + return tx; + } + + async reducePosition( + wallet: Wallet, + tokenId: number, + decreasePercent: number = 100, + gasLimit: number, + gasPrice: number, + nonce?: number, + maxFeePerGas?: BigNumber, + maxPriorityFeePerGas?: BigNumber + ): Promise { + // Reduce position and burn + const contract = this.getContract('nft', wallet); + const { calldata, value } = await this.reducePositionHelper( + wallet, + tokenId, + decreasePercent + ); + + if (nonce === undefined) { + nonce = await this.chain.nonceManager.getNextNonce(wallet.address); + } + + const tx = await contract.multicall( + [calldata], + this.generateOverrides( + gasLimit, + gasPrice, + nonce, + maxFeePerGas, + maxPriorityFeePerGas, + value + ) + ); + logger.info(`Pancakeswap V3 Remove position Tx Hash: ${tx.hash}`); + return tx; + } + + async collectFees( + wallet: Wallet | providers.StaticJsonRpcProvider, + tokenId: number, + gasLimit: number = this.gasLimitEstimate, + gasPrice: number = 0, + nonce?: number, + maxFeePerGas?: BigNumber, + maxPriorityFeePerGas?: BigNumber + ): Promise { + const contract = this.getContract('nft', wallet); + const collectData = { + tokenId: tokenId, + recipient: constants.AddressZero, + amount0Max: MaxUint128, + amount1Max: MaxUint128, + }; + + if (wallet instanceof providers.StaticJsonRpcProvider) { + return await contract.callStatic.collect(collectData); + } else { + collectData.recipient = wallet.address; + if (nonce === undefined) { + nonce = await this.chain.nonceManager.getNextNonce(wallet.address); + } + return await contract.collect( + collectData, + this.generateOverrides( + gasLimit, + gasPrice, + nonce, + maxFeePerGas, + maxPriorityFeePerGas + ) + ); + } + } + + generateOverrides( + gasLimit: number, + gasPrice: number, + nonce?: number, + maxFeePerGas?: BigNumber, + maxPriorityFeePerGas?: BigNumber, + value?: string + ): Overrides { + const overrides: Overrides = { + gasLimit: BigNumber.from(String(gasLimit.toFixed(0))), + }; + if (maxFeePerGas && maxPriorityFeePerGas) { + overrides.maxFeePerGas = maxFeePerGas; + overrides.maxPriorityFeePerGas = maxPriorityFeePerGas; + } else { + overrides.gasPrice = BigNumber.from(String((gasPrice * 1e9).toFixed(0))); + } + if (nonce) overrides.nonce = BigNumber.from(String(nonce)); + if (value) overrides.value = BigNumber.from(value); + return overrides; + } +} diff --git a/src/connectors/uniswap/uniswap.controllers.ts b/src/connectors/uniswap/uniswap.controllers.ts index 865dd2e828..6dfc303591 100644 --- a/src/connectors/uniswap/uniswap.controllers.ts +++ b/src/connectors/uniswap/uniswap.controllers.ts @@ -1,7 +1,6 @@ import Decimal from 'decimal.js-light'; import { BigNumber, Transaction, Wallet } from 'ethers'; import { Token } from '@uniswap/sdk-core'; -import { FeeAmount } from '@uniswap/v3-sdk'; import { HttpException, LOAD_WALLET_ERROR_CODE, @@ -378,8 +377,6 @@ export async function addLiquidity( req.maxPriorityFeePerGas ); - const fee = FeeAmount[req.fee.toUpperCase() as keyof typeof FeeAmount]; - const token0: Token = getFullTokenFromSymbol( ethereumish, uniswapish, @@ -402,7 +399,7 @@ export async function addLiquidity( token1, req.amount0, req.amount1, - fee, + req.fee.toUpperCase(), Number(req.lowerPrice), Number(req.upperPrice), req.tokenId ? req.tokenId : 0, @@ -569,12 +566,10 @@ export async function poolPrice( req.token1 ) as Token; - const fee = FeeAmount[req.fee.toUpperCase() as keyof typeof FeeAmount]; - const prices = await uniswapish.poolPrice( token0, token1, - fee, + req.fee.toUpperCase(), req.period, req.interval ); diff --git a/src/connectors/uniswap/uniswap.lp.helper.ts b/src/connectors/uniswap/uniswap.lp.helper.ts index 00fe102995..b59dd78b0f 100644 --- a/src/connectors/uniswap/uniswap.lp.helper.ts +++ b/src/connectors/uniswap/uniswap.lp.helper.ts @@ -213,14 +213,15 @@ export class UniswapLPHelper { async poolPrice( token0: Token, token1: Token, - tier: uniV3.FeeAmount, + tier: string, period: number = 1, interval: number = 1 ): Promise { const fetchPriceTime = []; const prices = []; + const fee = uniV3.FeeAmount[tier as keyof typeof uniV3.FeeAmount]; const poolContract = new Contract( - uniV3.Pool.getAddress(token0, token1, tier), + uniV3.Pool.getAddress(token0, token1, fee), this.poolAbi, this.ethereum.provider ); diff --git a/src/connectors/uniswap/uniswap.lp.ts b/src/connectors/uniswap/uniswap.lp.ts index e6205c0174..274591e6bd 100644 --- a/src/connectors/uniswap/uniswap.lp.ts +++ b/src/connectors/uniswap/uniswap.lp.ts @@ -117,7 +117,7 @@ export class UniswapLP extends UniswapLPHelper implements UniswapLPish { token1: Token, amount0: string, amount1: string, - fee: uniV3.FeeAmount, + fee: string, lowerPrice: number, upperPrice: number, tokenId: number = 0, @@ -127,13 +127,14 @@ export class UniswapLP extends UniswapLPHelper implements UniswapLPish { maxFeePerGas?: BigNumber, maxPriorityFeePerGas?: BigNumber ): Promise { + const convertedFee = uniV3.FeeAmount[fee as keyof typeof uniV3.FeeAmount]; const addLiquidityResponse: AddPosReturn = await this.addPositionHelper( wallet, token0, token1, amount0, amount1, - fee, + convertedFee, lowerPrice, upperPrice, tokenId diff --git a/src/services/common-interfaces.ts b/src/services/common-interfaces.ts index 96e469bc10..b42d0fc16d 100644 --- a/src/services/common-interfaces.ts +++ b/src/services/common-interfaces.ts @@ -481,7 +481,7 @@ export interface UniswapLPish { token1: UniswapCoreToken, amount0: string, amount1: string, - fee: number, + fee: string, lowerPrice: number, upperPrice: number, tokenId: number, @@ -547,7 +547,7 @@ export interface UniswapLPish { poolPrice( token0: UniswapCoreToken, token1: UniswapCoreToken, - fee: number, + fee: string, period: number, interval: number ): Promise; diff --git a/src/services/connection-manager.ts b/src/services/connection-manager.ts index 18f6d87c31..e5a748c999 100644 --- a/src/services/connection-manager.ts +++ b/src/services/connection-manager.ts @@ -39,6 +39,7 @@ import { Plenty } from '../connectors/plenty/plenty'; import { Curve } from '../connectors/curve/curve'; import { Kujira } from '../chains/kujira/kujira'; import { KujiraCLOB } from '../connectors/kujira/kujira'; +import { PancakeswapLP } from '../connectors/pancakeswap/pancakeswap.lp'; export type ChainUnion = | Algorand @@ -196,6 +197,8 @@ export async function getConnector( connectorInstance = Ref.getInstance(chain, network); } else if (chain === 'binance-smart-chain' && connector === 'pancakeswap') { connectorInstance = PancakeSwap.getInstance(chain, network); + } else if (chain === 'binance-smart-chain' && connector === 'pancakeswapLP') { + connectorInstance = PancakeswapLP.getInstance(chain, network); } else if (connector === 'sushiswap') { connectorInstance = Sushiswap.getInstance(chain, network); } else if (chain === 'xdc' && connector === 'xsswap') { diff --git a/src/services/schema/pancakeswap-schema.json b/src/services/schema/pancakeswap-schema.json new file mode 100644 index 0000000000..221fc58649 --- /dev/null +++ b/src/services/schema/pancakeswap-schema.json @@ -0,0 +1,43 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "allowedSlippage": { "type": "string" }, + "gasLimitEstimate": { "type": "integer" }, + "ttl": { "type": "integer" }, + "maximumHops": { "type": "integer" }, + "useRouter": { "type": "boolean" }, + "feeTier": { + "enum": ["LOWEST", "LOW", "MEDIUM", "HIGH"] + }, + "contractAddresses": { + "type": "object", + "patternProperties": { + "^\\w+$": { + "type": "object", + "properties": { + "routerAddress": { "type": "string" }, + "pancakeswapV3SmartOrderRouterAddress": { "type": "string" }, + "pancakeswapV3NftManagerAddress": { "type": "string" }, + "pancakeswapV3QuoterV2ContractAddress": { "type": "string" } + }, + "required": [ + "routerAddress", + "pancakeswapV3SmartOrderRouterAddress", + "pancakeswapV3NftManagerAddress" + ], + "additionalProperties": false + } + }, + "additionalProperties": false + } + }, + "additionalProperties": false, + "required": [ + "allowedSlippage", + "gasLimitEstimate", + "ttl", + "maximumHops", + "contractAddresses" + ] +} diff --git a/src/templates/pancakeswap.yml b/src/templates/pancakeswap.yml index 0f57ea04f1..580cb6e1b5 100644 --- a/src/templates/pancakeswap.yml +++ b/src/templates/pancakeswap.yml @@ -2,15 +2,35 @@ # execution price. It uses a rational number for precision. allowedSlippage: '1/100' -# the maximum gas used to estimate gasCost for a uniswap trade. +# the maximum gas used to estimate gasCost for a pancakeswap trade. gasLimitEstimate: 150688 # how long a trade is valid in seconds. After time passes pancakeswap will not # perform the trade, but the gas will still be spent. ttl: 300 +# For each swap, the maximum number of hops to consider. +# Note: More hops will increase latency of the algorithm. +maximumHops: 4 + +# Use pancakeswap Router or Quoter to quote prices. +# true - use Smart Order Router +# false - use QuoterV2 Contract +useRouter: false + +# Fee tier to use for the pancakeswap Quoter. +# Required if `useRouter` is false. +# Available options: 'LOWEST', 'LOW', 'MEDIUM', 'HIGH'. +feeTier: 'MEDIUM' + contractAddresses: mainnet: - routerAddress: '0x10ED43C718714eb63d5aA57B78B54704E256024E' + routerAddress: '0x10ED43C718714eb63d5aA57B78B54704E256024E' + pancakeswapV3SmartOrderRouterAddress: '0x1b81D678ffb9C0263b24A97847620C99d213eB14' + pancakeswapV3NftManagerAddress: '0x46A15B0b27311cedF172AB29E4f4766fbE7F4364' + pancakeswapV3QuoterV2ContractAddress: '0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997' testnet: - routerAddress: '0xdc4904b5f716Ff30d8495e35dC99c109bb5eCf81' + routerAddress: '0xdc4904b5f716Ff30d8495e35dC99c109bb5eCf81' + pancakeswappV3SmartOrderRouterAddress: '0x1b81D678ffb9C0263b24A97847620C99d213eB14' + pancakeswappV3NftManagerAddress: '0x427bF5b37357632377eCbEC9de3626C71A5396c1' + pancakeswappV3QuoterV2ContractAddress: '0xbC203d7f83677c7ed3F7acEc959963E7F4ECC5C2' diff --git a/src/templates/root.yml b/src/templates/root.yml index 2dc4d913c5..becf3726da 100644 --- a/src/templates/root.yml +++ b/src/templates/root.yml @@ -90,7 +90,7 @@ configurations: $namespace pancakeswap: configurationPath: pancakeswap.yml - schemaPath: pangolin-schema.json + schemaPath: pancakeswap-schema.json $namespace xdc: configurationPath: xdc.yml diff --git a/yarn.lock b/yarn.lock index 3af0387dd1..b3869a8bb6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,11 +2,21 @@ # yarn lockfile v1 +"@adraffy/ens-normalize@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" + integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== + "@adraffy/ens-normalize@1.9.0": version "1.9.0" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz#223572538f6bea336750039bb43a4016dcc8182d" integrity sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ== +"@adraffy/ens-normalize@1.9.4": + version "1.9.4" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz#aae21cb858bbb0411949d5b7b3051f4209043f62" + integrity sha512-UK0bHA7hh9cR39V+4gl2/NnBBjoXIxkuWAPCaY4X7fbH4L/azIi7ilWOCjMUYfpJgraLUAqkRi2BqrjME8Rynw== + "@ampproject/remapping@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" @@ -968,137 +978,137 @@ "@ethersproject-xdc/abi@file:vendor/@ethersproject-xdc/abi": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-b01626c6-2d8e-4680-b8f6-733e96fa406b-1699808116703/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/abstract-provider@file:vendor/@ethersproject-xdc/abstract-provider": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-9b01c829-8b75-4cd7-b23a-ac360818143b-1699808116700/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/web" "@ethersproject-xdc/abstract-signer@file:vendor/@ethersproject-xdc/abstract-signer": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-ab9181c5-5c1b-4151-a92b-faabf2ebd46f-1699808116706/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-ab9181c5-5c1b-4151-a92b-faabf2ebd46f-1699808116706/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-ab9181c5-5c1b-4151-a92b-faabf2ebd46f-1699808116706/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-ab9181c5-5c1b-4151-a92b-faabf2ebd46f-1699808116706/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-ab9181c5-5c1b-4151-a92b-faabf2ebd46f-1699808116706/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/address@file:vendor/@ethersproject-xdc/address": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-6fe54cd0-b02d-4691-97f1-6b74e1513f3c-1699808116702/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-6fe54cd0-b02d-4691-97f1-6b74e1513f3c-1699808116702/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-6fe54cd0-b02d-4691-97f1-6b74e1513f3c-1699808116702/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-6fe54cd0-b02d-4691-97f1-6b74e1513f3c-1699808116702/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/rlp" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-6fe54cd0-b02d-4691-97f1-6b74e1513f3c-1699808116702/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/rlp" "@ethersproject-xdc/base64@file:vendor/@ethersproject-xdc/base64": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-f0eef86e-4120-4e67-b776-44b982b01005-1699808116707/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-b0ec75fa-b648-4a38-a2b4-a62184ca01cd-1700995884617/node_modules/@ethersproject-xdc/bytes" "@ethersproject-xdc/basex@file:vendor/@ethersproject-xdc/basex": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-d886fd5d-a177-4278-9701-1f45025567b9-1699808116709/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-d886fd5d-a177-4278-9701-1f45025567b9-1699808116709/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-3072d664-8a99-404c-8004-0ab60ab863f9-1700995884618/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-3072d664-8a99-404c-8004-0ab60ab863f9-1700995884618/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/bignumber@file:vendor/@ethersproject-xdc/bignumber": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-256f7156-89f7-4852-9675-79910897219e-1699808116712/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-256f7156-89f7-4852-9675-79910897219e-1699808116712/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-c9961710-5e59-4b3a-b5e9-d166bc275d84-1700995884616/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-c9961710-5e59-4b3a-b5e9-d166bc275d84-1700995884616/node_modules/@ethersproject-xdc/logger" bn.js "^5.2.1" "@ethersproject-xdc/bytes@file:vendor/@ethersproject-xdc/bytes": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-231e37da-fa65-413e-bc5f-96686282064b-1699808116710/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-4f13d1c5-2834-4fc0-b6ac-6182c4efbdcd-1700995884617/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/constants@file:vendor/@ethersproject-xdc/constants": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-ee4a7187-79ff-4387-ac08-67ee437adb01-1699808116713/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-aaf138c0-5d78-4eb7-babd-6d47c1493412-1700995884619/node_modules/@ethersproject-xdc/bignumber" "@ethersproject-xdc/contracts@file:vendor/@ethersproject-xdc/contracts": version "5.6.0" dependencies: - "@ethersproject-xdc/abi" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-b1ebeaf1-ce5b-4e96-b48e-76229d9ffbc7-1699808116714/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/transactions" "@ethersproject-xdc/hash@file:vendor/@ethersproject-xdc/hash": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-4da5a58a-1491-4957-a153-d0b2eb05d2c6-1699808116718/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/hdnode@file:vendor/@ethersproject-xdc/hdnode": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/basex" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/sha2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-b6e31c1c-1af6-42a6-9ff3-e10f1fa9634a-1699808116716/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/json-wallets@file:vendor/@ethersproject-xdc/json-wallets": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hdnode" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-bcf76d38-27d1-40ba-a840-1bcd3a0909ab-1699808116720/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/transactions" aes-js "3.0.0" scrypt-js "3.0.1" "@ethersproject-xdc/keccak256@file:vendor/@ethersproject-xdc/keccak256": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-188ea95f-ad6e-47e0-8adb-1e52a54937b0-1699808116725/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-42b619de-6046-424c-a94d-4da01b891d34-1700995884642/node_modules/@ethersproject-xdc/bytes" js-sha3 "0.8.0" "@ethersproject-xdc/logger@file:vendor/@ethersproject-xdc/logger": @@ -1107,67 +1117,67 @@ "@ethersproject-xdc/networks@file:vendor/@ethersproject-xdc/networks": version "5.7.1" dependencies: - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-5b29b692-7b30-4ad2-8962-a8da5af476ba-1699808116720/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-6107ffe4-4050-49cd-8439-5e08ececf838-1700995884650/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/pbkdf2@file:vendor/@ethersproject-xdc/pbkdf2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-e249b2da-bae3-4999-b8d4-0fad9d777df9-1699808116722/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/sha2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-e249b2da-bae3-4999-b8d4-0fad9d777df9-1699808116722/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-9e82231b-2a19-43a3-ad18-eb8eef9207ec-1700995884654/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-9e82231b-2a19-43a3-ad18-eb8eef9207ec-1700995884654/node_modules/@ethersproject-xdc/sha2" "@ethersproject-xdc/properties@file:vendor/@ethersproject-xdc/properties": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-93345a08-2f52-4593-b47b-5f2fdc2c66e0-1699808116724/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-464e6056-42c7-419c-b5da-cd5ee6ee007d-1700995884656/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/providers@file:vendor/@ethersproject-xdc/providers": version "5.6.2" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/basex" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-7a6fe707-5690-4537-b122-6020f76dc985-1699808116722/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/web" bech32 "1.1.4" ws "7.4.6" "@ethersproject-xdc/random@file:vendor/@ethersproject-xdc/random": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-c9bc0c85-ff36-47e3-87b4-1c63792ee255-1699808116739/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-c9bc0c85-ff36-47e3-87b4-1c63792ee255-1699808116739/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-dfde42aa-975e-4b4a-82cc-d750d9b0790a-1700995884657/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-dfde42aa-975e-4b4a-82cc-d750d9b0790a-1700995884657/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/rlp@file:vendor/@ethersproject-xdc/rlp": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-0a00c316-60b3-4f17-b453-48568996e3c6-1699808116726/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-0a00c316-60b3-4f17-b453-48568996e3c6-1699808116726/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-4ae41513-e7ae-4b38-9be5-adf5d39500a9-1700995884655/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-4ae41513-e7ae-4b38-9be5-adf5d39500a9-1700995884655/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/sha2@file:vendor/@ethersproject-xdc/sha2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-fd94e7ec-6ae8-4fbd-b25a-08ef7cd4fb0f-1699808116726/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-fd94e7ec-6ae8-4fbd-b25a-08ef7cd4fb0f-1699808116726/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-0058c340-594a-4716-94fe-8bf714788cdb-1700995884660/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-0058c340-594a-4716-94fe-8bf714788cdb-1700995884660/node_modules/@ethersproject-xdc/logger" hash.js "1.1.7" "@ethersproject-xdc/signing-key@file:vendor/@ethersproject-xdc/signing-key": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-e878416c-bd88-4527-b37e-323091adf84e-1699808116742/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-e878416c-bd88-4527-b37e-323091adf84e-1699808116742/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-e878416c-bd88-4527-b37e-323091adf84e-1699808116742/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/properties" bn.js "^5.2.1" elliptic "6.5.4" hash.js "1.1.7" @@ -1175,76 +1185,76 @@ "@ethersproject-xdc/solidity@file:vendor/@ethersproject-xdc/solidity": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/sha2" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-7975dd6e-236e-4e63-9c78-00b8beabf970-1699808116744/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/strings@file:vendor/@ethersproject-xdc/strings": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-cc8a7302-879f-4bb1-a132-579591add571-1699808116745/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-cc8a7302-879f-4bb1-a132-579591add571-1699808116745/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-cc8a7302-879f-4bb1-a132-579591add571-1699808116745/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/transactions@file:vendor/@ethersproject-xdc/transactions": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/rlp" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/signing-key" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-7fa402e5-d37c-4dbd-8656-7b9c900715ed-1699808116739/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/signing-key" "@ethersproject-xdc/units@file:vendor/@ethersproject-xdc/units": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-94fb7855-9cd2-4843-8e11-d4f2bcf2c385-1699808116748/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-94fb7855-9cd2-4843-8e11-d4f2bcf2c385-1699808116748/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-94fb7855-9cd2-4843-8e11-d4f2bcf2c385-1699808116748/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/wallet@file:vendor/@ethersproject-xdc/wallet": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/signing-key" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-65fa0c8a-2697-4190-ba12-cba8e3d42150-1699808116747/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/web@file:vendor/@ethersproject-xdc/web": version "5.7.1" dependencies: - "@ethersproject-xdc/base64" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-3e3b8730-76d0-4f4e-bf55-f8d99a3438c7-1699808116749/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-3e3b8730-76d0-4f4e-bf55-f8d99a3438c7-1699808116749/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-3e3b8730-76d0-4f4e-bf55-f8d99a3438c7-1699808116749/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-3e3b8730-76d0-4f4e-bf55-f8d99a3438c7-1699808116749/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-3e3b8730-76d0-4f4e-bf55-f8d99a3438c7-1699808116749/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/wordlists@file:vendor/@ethersproject-xdc/wordlists": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-767c58b4-795c-401f-bfa6-5899bba01a61-1699808116750/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-767c58b4-795c-401f-bfa6-5899bba01a61-1699808116750/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-767c58b4-795c-401f-bfa6-5899bba01a61-1699808116750/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-767c58b4-795c-401f-bfa6-5899bba01a61-1699808116750/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-767c58b4-795c-401f-bfa6-5899bba01a61-1699808116750/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/strings" "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.4.0", "@ethersproject/abi@^5.5.0", "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0": version "5.7.0" @@ -2351,6 +2361,13 @@ dependencies: "@noble/hashes" "1.3.0" +"@noble/curves@1.2.0", "@noble/curves@~1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" + integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== + dependencies: + "@noble/hashes" "1.3.2" + "@noble/ed25519@^1.7.0": version "1.7.3" resolved "https://registry.yarnpkg.com/@noble/ed25519/-/ed25519-1.7.3.tgz#57e1677bf6885354b466c38e2b620c62f45a7123" @@ -2366,6 +2383,11 @@ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1" integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg== +"@noble/hashes@1.3.2", "@noble/hashes@~1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" + integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== + "@noble/secp256k1@1.7.1", "@noble/secp256k1@^1.6.3", "@noble/secp256k1@~1.7.0": version "1.7.1" resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c" @@ -2595,6 +2617,11 @@ "@nomicfoundation/solidity-analyzer-win32-ia32-msvc" "0.1.1" "@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.1" +"@openzeppelin/contracts-upgradeable@3.4.2-solc-0.7": + version "3.4.2-solc-0.7" + resolved "https://registry.yarnpkg.com/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-3.4.2-solc-0.7.tgz#9a5cdaf9f65bcd9a3b7e865f44a6f672afe7785e" + integrity sha512-I5iKKS8U9L1XdSxsNAIBQekN0U9hTgdleoyntIdR7Jy3U/z/NZ/1oUM0v5HnUMrmn/bXLvYL94rBvaLF++Ndnw== + "@openzeppelin/contracts@3.4.1-solc-0.7-2": version "3.4.1-solc-0.7-2" resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz#371c67ebffe50f551c3146a9eec5fe6ffe862e92" @@ -2614,6 +2641,25 @@ truffle-flattener "^1.4.4" truffle-hdwallet-provider "^1.0.17" +"@pancakeswap/chains@0.3.0", "@pancakeswap/chains@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@pancakeswap/chains/-/chains-0.3.0.tgz#e509dfd9c8387f76b893e3a0a5b835331752b32c" + integrity sha512-a4U8pzfxQsnS0nUpvi8qL2X6l2C/IUTFJcmt3UNAQv2L2CPUSryt1rLarG91O1Bb/UMfv90UCPrXJcHWpaYSMg== + +"@pancakeswap/sdk@5.7.2": + version "5.7.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-5.7.2.tgz#d3923142227e04514927098ebd69733621d36891" + integrity sha512-hn1ZWA8uKFqs2GjW5AMv1smnnlJcKugbwyZRPWTftogch/wQYatvXwmolnTFFUrrvAEKHSsEsxNP4dxrbYq6Vw== + dependencies: + "@pancakeswap/chains" "^0.3.0" + "@pancakeswap/swap-sdk-core" "1.0.0" + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.1.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + viem "^1.15.1" + "@pancakeswap/sdk@^2.4.5": version "2.4.5" resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-2.4.5.tgz#783c02efc7ca89d2297b0b07040639d90c3e610d" @@ -2626,6 +2672,68 @@ tiny-warning "^1.0.3" toformat "^2.0.0" +"@pancakeswap/swap-sdk-core@1.0.0", "@pancakeswap/swap-sdk-core@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@pancakeswap/swap-sdk-core/-/swap-sdk-core-1.0.0.tgz#30ab333943ecca5484cd10cbc493841fb553728d" + integrity sha512-MZBF8FHpCX/ffY8/gd2zz6TpiftwqRouVPr1kB88wm7desYh+E2y4kWPcZX1roWR38UkjBv4/DoXVSDeSTBgRg== + dependencies: + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.1.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + +"@pancakeswap/token-lists@0.0.9": + version "0.0.9" + resolved "https://registry.yarnpkg.com/@pancakeswap/token-lists/-/token-lists-0.0.9.tgz#ffa2e7eb4e8d0ef1b8984b22d8b2fb529787693f" + integrity sha512-V11cFNucyiTeEPsS7fyLldr1XsQqPNzdXQDmeGB54M4dESA/bBi9xaWYCVUihyW3lImNoqr2X1fds7SltfFHOQ== + dependencies: + "@pancakeswap/swap-sdk-core" "1.0.0" + ajv "^6.12.3" + lodash "^4.17.21" + +"@pancakeswap/tokens@0.5.4": + version "0.5.4" + resolved "https://registry.yarnpkg.com/@pancakeswap/tokens/-/tokens-0.5.4.tgz#1508b2b71a259a534ddf18ec120d79b8e6e44945" + integrity sha512-NRc8OIiwL1fNbGRQgcTdpaxbjZfTz6sAnkGZlmaLUt9yCGmGF0hK8uqc4B1YGYSVUkgamd3UJS9z7j673PVbxQ== + dependencies: + "@pancakeswap/chains" "0.3.0" + "@pancakeswap/sdk" "5.7.2" + "@pancakeswap/token-lists" "0.0.9" + +"@pancakeswap/v3-core@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-core/-/v3-core-1.0.2.tgz#f5abf6a98535f33edebbfc11ab40b4fdcee51420" + integrity sha512-9aZU8I1J6SbZOSW7NcNxuyaAC17tGkOaZJM9aJgvl6MMUOExpq0i0EC/jc3HxWbpC8sbZL+8eG544NEJs8CS+w== + +"@pancakeswap/v3-periphery@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-periphery/-/v3-periphery-1.0.2.tgz#f5b899c60bae0fadcfff1cc2b72c802b9d5a5596" + integrity sha512-kWQhJsAG5Ij1cubKlX0JuJ3GEPFiPBR+NQt77SxHNjk62eallLyfbWJYk2NMnTO0crbjBFO5GKKQAXfp2n76vg== + dependencies: + "@openzeppelin/contracts" "3.4.2-solc-0.7" + "@openzeppelin/contracts-upgradeable" "3.4.2-solc-0.7" + "@uniswap/lib" "^4.0.1-alpha" + "@uniswap/v2-core" "1.0.1" + base64-sol "1.0.1" + +"@pancakeswap/v3-sdk@^3.7.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-sdk/-/v3-sdk-3.7.0.tgz#1a246e6b9946e2a20e9cb742f42bdaca1b1ff570" + integrity sha512-Qkq28f6TYVsfNuT34SDXy150X1+iIYVO/rnGp9IllOLcQIlDYeM9QY8wz1Gs+IRP6QE51tUntRFCN7UTojpKFg== + dependencies: + "@pancakeswap/chains" "0.3.0" + "@pancakeswap/sdk" "5.7.2" + "@pancakeswap/swap-sdk-core" "1.0.0" + "@pancakeswap/tokens" "0.5.4" + "@uniswap/v3-staker" "1.0.0" + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.3.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + viem "1.15.1" + "@pangolindex/exchange-contracts@^1.0.1": version "1.0.2" resolved "https://registry.yarnpkg.com/@pangolindex/exchange-contracts/-/exchange-contracts-1.0.2.tgz#2d5be49d9e63a311cb3c2de53b21815923b3a996" @@ -2796,6 +2904,11 @@ resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938" integrity sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA== +"@scure/base@~1.1.2": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.3.tgz#8584115565228290a6c6c4961973e0903bb3df2f" + integrity sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q== + "@scure/bip32@1.1.5": version "1.1.5" resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.1.5.tgz#d2ccae16dcc2e75bc1d75f5ef3c66a338d1ba300" @@ -2814,6 +2927,15 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" +"@scure/bip32@1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8" + integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA== + dependencies: + "@noble/curves" "~1.2.0" + "@noble/hashes" "~1.3.2" + "@scure/base" "~1.1.2" + "@scure/bip39@1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.1.1.tgz#b54557b2e86214319405db819c4b6a370cf340c5" @@ -2830,6 +2952,14 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" +"@scure/bip39@1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" + integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg== + dependencies: + "@noble/hashes" "~1.3.0" + "@scure/base" "~1.1.0" + "@sentry/core@5.30.0": version "5.30.0" resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3" @@ -3982,6 +4112,13 @@ dependencies: "@types/node" "*" +"@types/ws@^8.5.5": + version "8.5.10" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787" + integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== + dependencies: + "@types/node" "*" + "@types/yargs-parser@*": version "21.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" @@ -4315,6 +4452,11 @@ abitype@0.8.7: resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.8.7.tgz#e4b3f051febd08111f486c0cc6a98fa72d033622" integrity sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w== +abitype@0.9.8: + version "0.9.8" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.8.tgz#1f120b6b717459deafd213dfbf3a3dd1bf10ae8c" + integrity sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ== + abort-controller@3.0.0, abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -7198,36 +7340,36 @@ ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: "ethers-xdc@file:./vendor/ethers-xdc": version "5.7.2" dependencies: - "@ethersproject-xdc/abi" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/basex" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/contracts" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/contracts" - "@ethersproject-xdc/hash" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/pbkdf2" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/providers" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/providers" - "@ethersproject-xdc/random" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/solidity" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/solidity" - "@ethersproject-xdc/strings" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/units" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/units" - "@ethersproject-xdc/wallet" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/wallet" - "@ethersproject-xdc/web" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/web" - "@ethersproject-xdc/wordlists" "file:../../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-e3f4ed19-553f-4268-9c76-ca6a68714870-1699808116656/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/contracts" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/providers" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/solidity" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/units" + "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/wallet" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/wordlists" ethers@4.0.0-beta.3: version "4.0.0-beta.3" @@ -9143,6 +9285,11 @@ isomorphic-ws@^4.0.1: resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== +isows@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.3.tgz#93c1cf0575daf56e7120bab5c8c448b0809d0d74" + integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg== + isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" @@ -13619,7 +13766,7 @@ tiny-emitter@^2.1.0: resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== -tiny-invariant@^1.1.0: +tiny-invariant@^1.1.0, tiny-invariant@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== @@ -14279,6 +14426,21 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +viem@1.15.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/viem/-/viem-1.15.1.tgz#030fb900d8099e6a1bd16164fa4e1e5b8e24607a" + integrity sha512-lxk8wwUK7ZivYAUZ6pH+9Y6jjrfXXjafCOoASa4lw3ULUCT2BajU4SELarlxJQimpsFd7OZD4m4iEXYLF/bt6w== + dependencies: + "@adraffy/ens-normalize" "1.9.4" + "@noble/curves" "1.2.0" + "@noble/hashes" "1.3.2" + "@scure/bip32" "1.3.2" + "@scure/bip39" "1.2.1" + "@types/ws" "^8.5.5" + abitype "0.9.8" + isomorphic-ws "5.0.0" + ws "8.13.0" + viem@^0.3.x: version "0.3.50" resolved "https://registry.yarnpkg.com/viem/-/viem-0.3.50.tgz#999a7682eda7eabc48c923f4b9923c3f098fc1ab" @@ -14294,6 +14456,20 @@ viem@^0.3.x: isomorphic-ws "5.0.0" ws "8.12.0" +viem@^1.15.1: + version "1.19.9" + resolved "https://registry.yarnpkg.com/viem/-/viem-1.19.9.tgz#a11f3ad4a3323994ebd2010dbc659d1a2b12e583" + integrity sha512-Sf9U2x4jU0S/FALqYypcspWOGene0NZyD470oUripNhE0Ta6uOE/OgE4toTDVfRxov8qw0JFinr/wPGxYE3+HQ== + dependencies: + "@adraffy/ens-normalize" "1.10.0" + "@noble/curves" "1.2.0" + "@noble/hashes" "1.3.2" + "@scure/bip32" "1.3.2" + "@scure/bip39" "1.2.1" + abitype "0.9.8" + isows "1.0.3" + ws "8.13.0" + vlq@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/vlq/-/vlq-2.0.4.tgz#6057b85729245b9829e3cc7755f95b228d4fe041" @@ -14992,6 +15168,11 @@ ws@8.12.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8" integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig== +ws@8.13.0, ws@^8.5.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + ws@^3.0.0: version "3.3.3" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" @@ -15006,11 +15187,6 @@ ws@^7, ws@^7.2.0, ws@^7.4.5, ws@^7.4.6: resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== -ws@^8.5.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - xhr-request-promise@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c" From 8a585774c26c714b8be9c70568be9c947a5c06dd Mon Sep 17 00:00:00 2001 From: vic-en Date: Wed, 29 Nov 2023 21:30:19 -0600 Subject: [PATCH 02/11] Update PancakeSwap contract addresses --- src/templates/pancakeswap.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/templates/pancakeswap.yml b/src/templates/pancakeswap.yml index 580cb6e1b5..1f901ae189 100644 --- a/src/templates/pancakeswap.yml +++ b/src/templates/pancakeswap.yml @@ -31,6 +31,6 @@ contractAddresses: pancakeswapV3QuoterV2ContractAddress: '0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997' testnet: routerAddress: '0xdc4904b5f716Ff30d8495e35dC99c109bb5eCf81' - pancakeswappV3SmartOrderRouterAddress: '0x1b81D678ffb9C0263b24A97847620C99d213eB14' - pancakeswappV3NftManagerAddress: '0x427bF5b37357632377eCbEC9de3626C71A5396c1' - pancakeswappV3QuoterV2ContractAddress: '0xbC203d7f83677c7ed3F7acEc959963E7F4ECC5C2' + pancakeswapV3SmartOrderRouterAddress: '0x1b81D678ffb9C0263b24A97847620C99d213eB14' + pancakeswapV3NftManagerAddress: '0x427bF5b37357632377eCbEC9de3626C71A5396c1' + pancakeswapV3QuoterV2ContractAddress: '0xbC203d7f83677c7ed3F7acEc959963E7F4ECC5C2' From 6ded8754ec63c10088dbacbb111da85663aa9b94 Mon Sep 17 00:00:00 2001 From: vic-en Date: Wed, 29 Nov 2023 21:31:11 -0600 Subject: [PATCH 03/11] Update typescript version to 5.3.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e061491b28..27a8e065c0 100644 --- a/package.json +++ b/package.json @@ -151,7 +151,7 @@ "supertest": "^6.1.6", "ts-jest": "^27.0.5", "ts-node": "^10.0.0", - "typescript": "^4.3.2", + "typescript": "^5.3.2", "viem": "^0.3.x" }, "resolutions": { From 23607e04ae8a2476de94a9379250af1ce14cece3 Mon Sep 17 00:00:00 2001 From: vic-en Date: Wed, 29 Nov 2023 21:31:19 -0600 Subject: [PATCH 04/11] Update UniswapLP Nft function parameter --- test/connectors/uniswap/uniswap.lp.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/connectors/uniswap/uniswap.lp.test.ts b/test/connectors/uniswap/uniswap.lp.test.ts index 3fed8b8aa8..64238d4679 100644 --- a/test/connectors/uniswap/uniswap.lp.test.ts +++ b/test/connectors/uniswap/uniswap.lp.test.ts @@ -262,7 +262,7 @@ describe('verify UniswapLP Nft functions', () => { WETH, '10', '10', - 500, + 'LOWEST', 1, 10, 0, From 2a16f0452a68166b927113b91dd2e1cb7572d24a Mon Sep 17 00:00:00 2001 From: vic-en Date: Wed, 29 Nov 2023 21:35:20 -0600 Subject: [PATCH 05/11] update Jest type declaration --- tsconfig.json | 2 +- yarn.lock | 372 +++++++++++++++++++++++++------------------------- 2 files changed, 187 insertions(+), 187 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 90aed87e2a..cd1ce35597 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "strict": true, - "types": ["@types/jest", "jest", "node"], + "types": ["jest", "node"], "target": "es6", "module": "commonjs", "allowJs": true, diff --git a/yarn.lock b/yarn.lock index b3869a8bb6..6fba2894db 100644 --- a/yarn.lock +++ b/yarn.lock @@ -978,137 +978,137 @@ "@ethersproject-xdc/abi@file:vendor/@ethersproject-xdc/abi": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-0bab9cf7-16a0-43c1-9f07-60cd6d0efc49-1700995884611/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/abstract-provider@file:vendor/@ethersproject-xdc/abstract-provider": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-c208ecf2-6c8b-42bd-a69f-64f9757d629a-1700995884613/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/web" "@ethersproject-xdc/abstract-signer@file:vendor/@ethersproject-xdc/abstract-signer": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-38cef541-fb52-4de7-a4da-aca953f8fb33-1700995884614/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/address@file:vendor/@ethersproject-xdc/address": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-112b63ca-96c2-4c38-90f1-ea6a4731a3fe-1700995884615/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/rlp" "@ethersproject-xdc/base64@file:vendor/@ethersproject-xdc/base64": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-b0ec75fa-b648-4a38-a2b4-a62184ca01cd-1700995884617/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-e7d4afe5-7170-4558-815e-13913655fa1c-1701315088389/node_modules/@ethersproject-xdc/bytes" "@ethersproject-xdc/basex@file:vendor/@ethersproject-xdc/basex": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-3072d664-8a99-404c-8004-0ab60ab863f9-1700995884618/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-3072d664-8a99-404c-8004-0ab60ab863f9-1700995884618/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-340312ca-9bc5-484d-bd97-449779d75717-1701315088391/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-340312ca-9bc5-484d-bd97-449779d75717-1701315088391/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/bignumber@file:vendor/@ethersproject-xdc/bignumber": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-c9961710-5e59-4b3a-b5e9-d166bc275d84-1700995884616/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-c9961710-5e59-4b3a-b5e9-d166bc275d84-1700995884616/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-847f1576-9bc2-4c4f-9c79-778de5d1dd5c-1701315088392/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-847f1576-9bc2-4c4f-9c79-778de5d1dd5c-1701315088392/node_modules/@ethersproject-xdc/logger" bn.js "^5.2.1" "@ethersproject-xdc/bytes@file:vendor/@ethersproject-xdc/bytes": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-4f13d1c5-2834-4fc0-b6ac-6182c4efbdcd-1700995884617/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-75cb8462-50cf-42a3-a69d-f0ff5699cfce-1701315088406/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/constants@file:vendor/@ethersproject-xdc/constants": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-aaf138c0-5d78-4eb7-babd-6d47c1493412-1700995884619/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-6de51dc1-6ce8-4819-8365-e260d0f15238-1701315088406/node_modules/@ethersproject-xdc/bignumber" "@ethersproject-xdc/contracts@file:vendor/@ethersproject-xdc/contracts": version "5.6.0" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-285bc5fe-48ae-4543-91f5-f9c546d0e95a-1700995884619/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/transactions" "@ethersproject-xdc/hash@file:vendor/@ethersproject-xdc/hash": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-d1864387-ab83-4c57-962a-3116758cbe3c-1700995884621/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/hdnode@file:vendor/@ethersproject-xdc/hdnode": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-7cb80f0f-2629-49fc-a9c8-7b607a17ad03-1700995884652/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/json-wallets@file:vendor/@ethersproject-xdc/json-wallets": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-c3d32daf-c13b-460a-8d4c-ba04f0265a2e-1700995884639/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/transactions" aes-js "3.0.0" scrypt-js "3.0.1" "@ethersproject-xdc/keccak256@file:vendor/@ethersproject-xdc/keccak256": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-42b619de-6046-424c-a94d-4da01b891d34-1700995884642/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-d1c9a2eb-77d3-46d1-abc8-0cd3a8a4f06a-1701315088409/node_modules/@ethersproject-xdc/bytes" js-sha3 "0.8.0" "@ethersproject-xdc/logger@file:vendor/@ethersproject-xdc/logger": @@ -1117,67 +1117,67 @@ "@ethersproject-xdc/networks@file:vendor/@ethersproject-xdc/networks": version "5.7.1" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-6107ffe4-4050-49cd-8439-5e08ececf838-1700995884650/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-ee7b64c7-f006-480c-8ec4-6b592e57c3fe-1701315088409/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/pbkdf2@file:vendor/@ethersproject-xdc/pbkdf2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-9e82231b-2a19-43a3-ad18-eb8eef9207ec-1700995884654/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-9e82231b-2a19-43a3-ad18-eb8eef9207ec-1700995884654/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-95554abb-48d5-4b88-82ac-b8422741a990-1701315088409/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-95554abb-48d5-4b88-82ac-b8422741a990-1701315088409/node_modules/@ethersproject-xdc/sha2" "@ethersproject-xdc/properties@file:vendor/@ethersproject-xdc/properties": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-464e6056-42c7-419c-b5da-cd5ee6ee007d-1700995884656/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-4d24b841-016b-44fc-a3c3-cb1cf8146c50-1701315088412/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/providers@file:vendor/@ethersproject-xdc/providers": version "5.6.2" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-c7bf33df-7cc1-4620-8007-680c45154c0e-1700995884657/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/web" bech32 "1.1.4" ws "7.4.6" "@ethersproject-xdc/random@file:vendor/@ethersproject-xdc/random": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-dfde42aa-975e-4b4a-82cc-d750d9b0790a-1700995884657/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-dfde42aa-975e-4b4a-82cc-d750d9b0790a-1700995884657/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-2e2e4eb3-c128-4de5-9820-a8d87fa173a0-1701315088414/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-2e2e4eb3-c128-4de5-9820-a8d87fa173a0-1701315088414/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/rlp@file:vendor/@ethersproject-xdc/rlp": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-4ae41513-e7ae-4b38-9be5-adf5d39500a9-1700995884655/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-4ae41513-e7ae-4b38-9be5-adf5d39500a9-1700995884655/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cd4cad76-381c-4faa-8666-8ddd6eb93810-1701315088412/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cd4cad76-381c-4faa-8666-8ddd6eb93810-1701315088412/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/sha2@file:vendor/@ethersproject-xdc/sha2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-0058c340-594a-4716-94fe-8bf714788cdb-1700995884660/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-0058c340-594a-4716-94fe-8bf714788cdb-1700995884660/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-9b420930-c6ff-41f8-834d-1fe8f9f7cd81-1701315088414/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-9b420930-c6ff-41f8-834d-1fe8f9f7cd81-1701315088414/node_modules/@ethersproject-xdc/logger" hash.js "1.1.7" "@ethersproject-xdc/signing-key@file:vendor/@ethersproject-xdc/signing-key": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-772f7245-c24e-4d30-804e-dd3c4103ade1-1700995884662/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/properties" bn.js "^5.2.1" elliptic "6.5.4" hash.js "1.1.7" @@ -1185,76 +1185,76 @@ "@ethersproject-xdc/solidity@file:vendor/@ethersproject-xdc/solidity": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-2046e61c-72b0-446c-a843-2ed6f5b457bb-1700995884661/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/strings@file:vendor/@ethersproject-xdc/strings": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-1d81b568-4711-401d-afb1-00dcb5722057-1700995884663/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/transactions@file:vendor/@ethersproject-xdc/transactions": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-c38088d6-b007-4711-a297-9fbadefbd747-1700995884664/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/signing-key" "@ethersproject-xdc/units@file:vendor/@ethersproject-xdc/units": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-575014ed-8616-4381-87a7-2ae8b2e84c91-1700995884674/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/wallet@file:vendor/@ethersproject-xdc/wallet": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-92cd76ed-9ec0-4527-9d0d-fb75c6ef535a-1700995884665/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/web@file:vendor/@ethersproject-xdc/web": version "5.7.1" dependencies: - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1acd968d-4aa7-4c6d-afc7-8169a002883b-1700995884667/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/wordlists@file:vendor/@ethersproject-xdc/wordlists": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-3da52bca-a192-436b-a9de-344a2761c86c-1700995884670/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/strings" "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.4.0", "@ethersproject/abi@^5.5.0", "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0": version "5.7.0" @@ -7340,36 +7340,36 @@ ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: "ethers-xdc@file:./vendor/ethers-xdc": version "5.7.2" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/contracts" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/providers" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/solidity" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/units" - "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/wallet" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/web" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c258df1a-267a-47c4-89c6-2a3b373c9e00-1700995884563/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/contracts" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/providers" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/solidity" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/units" + "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/wallet" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/wordlists" ethers@4.0.0-beta.3: version "4.0.0-beta.3" @@ -14141,10 +14141,10 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -typescript@^4.3.2: - version "4.9.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +typescript@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.2.tgz#00d1c7c1c46928c5845c1ee8d0cc2791031d4c43" + integrity sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ== u3@^0.1.1: version "0.1.1" From e9da133445ed58212a408f7d60f98b573be3d14f Mon Sep 17 00:00:00 2001 From: vic-en Date: Sat, 2 Dec 2023 01:14:24 -0600 Subject: [PATCH 06/11] Add 'pancakeswapLP' as a valid spender --- src/chains/ethereum/ethereum.validators.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chains/ethereum/ethereum.validators.ts b/src/chains/ethereum/ethereum.validators.ts index f89c1e353d..d9256a7486 100644 --- a/src/chains/ethereum/ethereum.validators.ts +++ b/src/chains/ethereum/ethereum.validators.ts @@ -60,6 +60,7 @@ export const validateSpender: Validator = mkValidator( val === 'mad_meerkat' || val === 'vvs' || val === 'pancakeswap' || + val === 'pancakeswapLP' || val === 'xsswap' || val === 'curve' || isAddress(val)) From 15dea28903a0b2ed32989fe392e01d4bc76546f5 Mon Sep 17 00:00:00 2001 From: vic-en Date: Sat, 2 Dec 2023 01:15:18 -0600 Subject: [PATCH 07/11] Update ttl value in pancakeswap.yml --- src/templates/pancakeswap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/pancakeswap.yml b/src/templates/pancakeswap.yml index 1f901ae189..d0f730c2d1 100644 --- a/src/templates/pancakeswap.yml +++ b/src/templates/pancakeswap.yml @@ -7,7 +7,7 @@ gasLimitEstimate: 150688 # how long a trade is valid in seconds. After time passes pancakeswap will not # perform the trade, but the gas will still be spent. -ttl: 300 +ttl: 86400 # For each swap, the maximum number of hops to consider. # Note: More hops will increase latency of the algorithm. From d9e13ac219bbe3a38015c8091edda0db93bf1499 Mon Sep 17 00:00:00 2001 From: vic-en Date: Sat, 2 Dec 2023 21:03:58 -0600 Subject: [PATCH 08/11] add unit tests --- .../pancakeswap/pancakeswap.lp.helper.ts | 2 +- .../pancakeswap/pancakeswap.lp.routes.test.ts | 442 ++++++++++++++++++ .../pancakeswap/pancakeswap.lp.test.ts | 278 +++++++++++ 3 files changed, 721 insertions(+), 1 deletion(-) create mode 100644 test/connectors/pancakeswap/pancakeswap.lp.routes.test.ts create mode 100644 test/connectors/pancakeswap/pancakeswap.lp.test.ts diff --git a/src/connectors/pancakeswap/pancakeswap.lp.helper.ts b/src/connectors/pancakeswap/pancakeswap.lp.helper.ts index 76953de53a..a542d3e89e 100644 --- a/src/connectors/pancakeswap/pancakeswap.lp.helper.ts +++ b/src/connectors/pancakeswap/pancakeswap.lp.helper.ts @@ -110,7 +110,7 @@ export class PancakeswapLPHelper { public async init() { if (this._chainName == 'binance-smart-chain' && !this.chain.ready()) throw new InitializationError( - SERVICE_UNITIALIZED_ERROR_MESSAGE('ETH'), + SERVICE_UNITIALIZED_ERROR_MESSAGE('BinanceSmartChain'), SERVICE_UNITIALIZED_ERROR_CODE ); for (const token of this.chain.storedTokenList) { diff --git a/test/connectors/pancakeswap/pancakeswap.lp.routes.test.ts b/test/connectors/pancakeswap/pancakeswap.lp.routes.test.ts new file mode 100644 index 0000000000..007e502dd6 --- /dev/null +++ b/test/connectors/pancakeswap/pancakeswap.lp.routes.test.ts @@ -0,0 +1,442 @@ +import express from 'express'; +import { Express } from 'express-serve-static-core'; +import request from 'supertest'; +import { BinanceSmartChain } from '../../../src/chains/binance-smart-chain/binance-smart-chain'; +import { PancakeswapLP } from '../../../src/connectors/pancakeswap/pancakeswap.lp'; +import { AmmLiquidityRoutes } from '../../../src/amm/amm.routes'; +import { patch, unpatch } from '../../services/patch'; +import { patchEVMNonceManager } from '../../evm.nonce.mock'; + +let app: Express; +let bsc: BinanceSmartChain; +let pancakeswap: PancakeswapLP; + +beforeAll(async () => { + app = express(); + app.use(express.json()); + bsc = BinanceSmartChain.getInstance('testnet'); + patchEVMNonceManager(bsc.nonceManager); + await bsc.init(); + + pancakeswap = PancakeswapLP.getInstance('binance-smart-chain', 'testnet'); + await pancakeswap.init(); + app.use('/amm/liquidity', AmmLiquidityRoutes.router); +}); + +beforeEach(() => { + patchEVMNonceManager(bsc.nonceManager); +}); + +afterEach(() => { + unpatch(); +}); + +afterAll(async () => { + await bsc.close(); +}); + +const address: string = '0xFaA12FD102FE8623C9299c72B03E45107F2772B5'; + +const patchGetWallet = () => { + patch(bsc, 'getWallet', () => { + return { + address: '0xFaA12FD102FE8623C9299c72B03E45107F2772B5', + }; + }); +}; + +const patchInit = () => { + patch(pancakeswap, 'init', async () => { + return; + }); +}; + +const patchStoredTokenList = () => { + patch(bsc, 'tokenList', () => { + return [ + { + chainId: 97, + name: 'WETH', + symbol: 'WETH', + address: '0xd0A1E359811322d97991E03f863a0C30C2cF029C', + decimals: 18, + }, + { + chainId: 97, + name: 'DAI', + symbol: 'DAI', + address: '0x4f96fe3b7a6cf9725f59d353f723c1bdb64ca6aa', + decimals: 18, + }, + ]; + }); +}; + +const patchGetTokenBySymbol = () => { + patch(bsc, 'getTokenBySymbol', (symbol: string) => { + if (symbol === 'WETH') { + return { + chainId: 97, + name: 'WETH', + symbol: 'WETH', + address: '0xd0A1E359811322d97991E03f863a0C30C2cF029C', + decimals: 18, + }; + } else { + return { + chainId: 97, + name: 'DAI', + symbol: 'DAI', + address: '0x4f96fe3b7a6cf9725f59d353f723c1bdb64ca6aa', + decimals: 18, + }; + } + }); +}; + +const patchGetTokenByAddress = () => { + patch(pancakeswap, 'getTokenByAddress', () => { + return { + chainId: 97, + name: 'WETH', + symbol: 'WETH', + address: '0xd0A1E359811322d97991E03f863a0C30C2cF029C', + decimals: 18, + }; + }); +}; + +const patchGasPrice = () => { + patch(bsc, 'gasPrice', () => 100); +}; + +const patchGetNonce = () => { + patch(bsc.nonceManager, 'getNonce', () => 21); +}; + +const patchAddPosition = () => { + patch(pancakeswap, 'addPosition', () => { + return { nonce: 21, hash: '000000000000000' }; + }); +}; + +const patchRemovePosition = () => { + patch(pancakeswap, 'reducePosition', () => { + return { nonce: 21, hash: '000000000000000' }; + }); +}; + +const patchCollectFees = () => { + patch(pancakeswap, 'collectFees', () => { + return { nonce: 21, hash: '000000000000000' }; + }); +}; + +const patchPosition = () => { + patch(pancakeswap, 'getPosition', () => { + return { + token0: 'DAI', + token1: 'WETH', + fee: 300, + lowerPrice: '1', + upperPrice: '5', + amount0: '1', + amount1: '1', + unclaimedToken0: '1', + unclaimedToken1: '1', + }; + }); +}; + +describe('POST /liquidity/add', () => { + it('should return 200 when all parameter are OK', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + patchGasPrice(); + patchAddPosition(); + patchGetNonce(); + + await request(app) + .post(`/amm/liquidity/add`) + .send({ + address: address, + token0: 'DAI', + token1: 'WETH', + amount0: '1', + amount1: '1', + fee: 'LOW', + lowerPrice: '1', + upperPrice: '5', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(200); + }); + + it('should return 500 for unrecognized token0 symbol', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + + await request(app) + .post(`/amm/liquidity/add`) + .send({ + address: address, + token0: 'DOGE', + token1: 'WETH', + amount0: '1', + amount1: '1', + fee: 'LOW', + lowerPrice: '1', + upperPrice: '5', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(500); + }); + + it('should return 404 for invalid fee tier', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + + await request(app) + .post(`/amm/liquidity/add`) + .send({ + address: address, + token0: 'DAI', + token1: 'WETH', + amount0: '1', + amount1: '1', + fee: 300, + lowerPrice: '1', + upperPrice: '5', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(404); + }); + + it('should return 500 when the helper operation fails', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + patch(pancakeswap, 'addPositionHelper', () => { + return 'error'; + }); + + await request(app) + .post(`/amm/liquidity/add`) + .send({ + address: address, + token0: 'DAI', + token1: 'WETH', + amount0: '1', + amount1: '1', + fee: 'LOW', + lowerPrice: '1', + upperPrice: '5', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(500); + }); +}); + +describe('POST /liquidity/remove', () => { + const patchForBuy = () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + patchGasPrice(); + patchRemovePosition(); + patchGetNonce(); + }; + it('should return 200 when all parameter are OK', async () => { + patchForBuy(); + await request(app) + .post(`/amm/liquidity/remove`) + .send({ + address: address, + tokenId: 2732, + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(200); + }); + + it('should return 404 when the tokenId is invalid', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + + await request(app) + .post(`/amm/liquidity/remove`) + .send({ + address: address, + tokenId: 'Invalid', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(404); + }); +}); + +describe('POST /liquidity/collect_fees', () => { + const patchForBuy = () => { + patchGetWallet(); + patchInit(); + patchGasPrice(); + patchCollectFees(); + patchGetNonce(); + }; + it('should return 200 when all parameter are OK', async () => { + patchForBuy(); + await request(app) + .post(`/amm/liquidity/collect_fees`) + .send({ + address: address, + tokenId: 2732, + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(200); + }); + + it('should return 404 when the tokenId is invalid', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + + await request(app) + .post(`/amm/liquidity/collect_fees`) + .send({ + address: address, + tokenId: 'Invalid', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(404); + }); +}); + +describe('POST /liquidity/position', () => { + it('should return 200 when all parameter are OK', async () => { + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + patchPosition(); + + await request(app) + .post(`/amm/liquidity/position`) + .send({ + tokenId: 2732, + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(200); + }); + + it('should return 404 when the tokenId is invalid', async () => { + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + + await request(app) + .post(`/amm/liquidity/position`) + .send({ + tokenId: 'Invalid', + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(404); + }); +}); + +describe('POST /liquidity/price', () => { + const patchForBuy = () => { + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + patch(pancakeswap, 'poolPrice', () => { + return ['100', '105']; + }); + }; + it('should return 200 when all parameter are OK', async () => { + patchForBuy(); + await request(app) + .post(`/amm/liquidity/price`) + .send({ + token0: 'DAI', + token1: 'WETH', + fee: 'LOW', + period: 120, + interval: 60, + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(200); + }); + + it('should return 404 when the fee is invalid', async () => { + patchGetWallet(); + patchInit(); + patchStoredTokenList(); + patchGetTokenBySymbol(); + patchGetTokenByAddress(); + + await request(app) + .post(`/amm/liquidity/price`) + .send({ + token0: 'DAI', + token1: 'WETH', + fee: 11, + period: 120, + interval: 60, + chain: 'binance-smart-chain', + network: 'testnet', + connector: 'pancakeswapLP', + }) + .set('Accept', 'application/json') + .expect(404); + }); +}); diff --git a/test/connectors/pancakeswap/pancakeswap.lp.test.ts b/test/connectors/pancakeswap/pancakeswap.lp.test.ts new file mode 100644 index 0000000000..2cfd545e26 --- /dev/null +++ b/test/connectors/pancakeswap/pancakeswap.lp.test.ts @@ -0,0 +1,278 @@ +jest.useFakeTimers(); +import { Token } from '@pancakeswap/swap-sdk-core'; +import * as v3 from '@pancakeswap/v3-sdk'; +import { BigNumber, Transaction, Wallet } from 'ethers'; +import { BinanceSmartChain } from '../../../src/chains/binance-smart-chain/binance-smart-chain'; +import { PancakeswapLP } from '../../../src/connectors/pancakeswap/pancakeswap.lp'; +import { patch, unpatch } from '../../services/patch'; +import { patchEVMNonceManager } from '../../evm.nonce.mock'; +let bsc: BinanceSmartChain; +let pancakeswapLP: PancakeswapLP; +let wallet: Wallet; + +const WETH = new Token( + 97, + '0x8babbb98678facc7342735486c851abd7a0d17ca', + 18, + 'WETH' +); + +const DAI = new Token( + 97, + '0x8a9424745056Eb399FD19a0EC26A14316684e274', + 18, + 'DAI' +); + +const USDC = new Token( + 97, + '0x7ef95a0fee0dd31b22626fa2e10ee6a223f8a684', + 6, + 'USDC' +); + +const TX = { + type: 2, + chainId: 97, + nonce: 115, + maxPriorityFeePerGas: { toString: () => '106000000000' }, + maxFeePerGas: { toString: () => '106000000000' }, + gasPrice: { toString: () => null }, + gasLimit: { toString: () => '100000' }, + to: '0xdc31Ee1784292379Fbb2964b3B9C4124D8F89C60', + value: { toString: () => '0' }, + data: '0x095ea7b30000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', // noqa: mock + accessList: [], + hash: '0x75f98675a8f64dcf14927ccde9a1d59b67fa09b72cc2642ad055dae4074853d9', // noqa: mock + v: 0, + r: '0xbeb9aa40028d79b9fdab108fcef5de635457a05f3a254410414c095b02c64643', // noqa: mock + s: '0x5a1506fa4b7f8b4f3826d8648f27ebaa9c0ee4bd67f569414b8cd8884c073100', // noqa: mock + from: '0xFaA12FD102FE8623C9299c72B03E45107F2772B5', + confirmations: 0, +}; + +const POOL_SQRT_RATIO_START = v3.encodeSqrtRatioX96(100e6, 100e18); + +const POOL_TICK_CURRENT = v3.TickMath.getTickAtSqrtRatio( + POOL_SQRT_RATIO_START +); + +const DAI_USDC_POOL = new v3.Pool( + DAI, + USDC, + 500, + POOL_SQRT_RATIO_START, + 0, + POOL_TICK_CURRENT, + [] +); + +beforeAll(async () => { + bsc = BinanceSmartChain.getInstance('testnet'); + + patchEVMNonceManager(bsc.nonceManager); + await bsc.init(); + + wallet = new Wallet( + '0000000000000000000000000000000000000000000000000000000000000002', // noqa: mock + bsc.provider + ); + pancakeswapLP = PancakeswapLP.getInstance('binance-smart-chain', 'testnet'); + await pancakeswapLP.init(); +}); + +beforeEach(() => { + patchEVMNonceManager(bsc.nonceManager); +}); + +afterEach(() => { + unpatch(); +}); + +afterAll(async () => { + await bsc.close(); +}); + +const patchPoolState = () => { + patch(pancakeswapLP, 'getPoolContract', () => { + return { + liquidity() { + return DAI_USDC_POOL.liquidity; + }, + slot0() { + return [ + DAI_USDC_POOL.sqrtRatioX96, + DAI_USDC_POOL.tickCurrent, + 0, + 1, + 1, + 0, + true, + ]; + }, + ticks() { + return ['-118445039955967015140', '118445039955967015140']; + }, + }; + }); +}; + +const patchContract = () => { + patch(pancakeswapLP, 'getContract', () => { + return { + estimateGas: { + multicall() { + return BigNumber.from(5); + }, + }, + positions() { + return { + token0: WETH.address, + token1: USDC.address, + fee: 500, + tickLower: 0, + tickUpper: 23030, + liquidity: '6025055903594410671025', + }; + }, + multicall() { + return TX; + }, + collect() { + return TX; + }, + }; + }); +}; + +const patchWallet = () => { + patch(wallet, 'sendTransaction', () => { + return TX; + }); +}; + +describe('verify PancakeswapLP Nft functions', () => { + it('Should return correct contract addresses', async () => { + expect(pancakeswapLP.router).toEqual( + '0x1b81D678ffb9C0263b24A97847620C99d213eB14' + ); + expect(pancakeswapLP.nftManager).toEqual( + '0x427bF5b37357632377eCbEC9de3626C71A5396c1' + ); + }); + + it('Should return correct contract abi', async () => { + expect(Array.isArray(pancakeswapLP.routerAbi)).toEqual(true); + expect(Array.isArray(pancakeswapLP.nftAbi)).toEqual(true); + expect(Array.isArray(pancakeswapLP.poolAbi)).toEqual(true); + }); + + it('addPositionHelper returns calldata and value', async () => { + patchPoolState(); + + const callData = await pancakeswapLP.addPositionHelper( + wallet, + DAI, + WETH, + '10', + '10', + 500, + 1, + 10 + ); + expect(callData).toHaveProperty('calldata'); + expect(callData).toHaveProperty('value'); + }); + + it('reducePositionHelper returns calldata and value', async () => { + patchPoolState(); + patchContract(); + + const callData = await pancakeswapLP.reducePositionHelper(wallet, 1, 100); + expect(callData).toHaveProperty('calldata'); + expect(callData).toHaveProperty('value'); + }); + + it('basic functions should work', async () => { + patchContract(); + patchPoolState(); + + expect(pancakeswapLP.ready()).toEqual(true); + expect(pancakeswapLP.gasLimitEstimate).toBeGreaterThan(0); + expect(typeof pancakeswapLP.getContract('nft', bsc.provider)).toEqual( + 'object' + ); + expect( + typeof pancakeswapLP.getPoolContract( + '0x4F96Fe3b7A6Cf9725f59d353F723c1bDb64CA6Aa', + wallet + ) + ).toEqual('object'); + }); + + it('generateOverrides returns overrides correctly', async () => { + const overrides = pancakeswapLP.generateOverrides( + 1, + 2, + 3, + BigNumber.from(4), + BigNumber.from(5), + '6' + ); + expect(overrides.gasLimit).toEqual(BigNumber.from('1')); + expect(overrides.gasPrice).toBeUndefined(); + expect(overrides.nonce).toEqual(BigNumber.from(3)); + expect(overrides.maxFeePerGas as BigNumber).toEqual(BigNumber.from(4)); + expect(overrides.maxPriorityFeePerGas as BigNumber).toEqual( + BigNumber.from(5) + ); + expect(overrides.value).toEqual(BigNumber.from('6')); + }); + + it('reducePosition should work', async () => { + patchPoolState(); + patchContract(); + + const reduceTx = (await pancakeswapLP.reducePosition( + wallet, + 1, + 100, + 50000, + 10 + )) as Transaction; + expect(reduceTx.hash).toEqual( + '0x75f98675a8f64dcf14927ccde9a1d59b67fa09b72cc2642ad055dae4074853d9' // noqa: mock + ); + }); + + it('addPosition should work', async () => { + patchPoolState(); + patchWallet(); + + const addTx = await pancakeswapLP.addPosition( + wallet, + DAI, + WETH, + '10', + '10', + 'LOWEST', + 1, + 10, + 0, + 1, + 1 + ); + expect(addTx.hash).toEqual( + '0x75f98675a8f64dcf14927ccde9a1d59b67fa09b72cc2642ad055dae4074853d9' // noqa: mock + ); + }); + + it('collectFees should work', async () => { + patchContract(); + + const collectTx = (await pancakeswapLP.collectFees(wallet, 1)) as Transaction; + expect(collectTx.hash).toEqual( + '0x75f98675a8f64dcf14927ccde9a1d59b67fa09b72cc2642ad055dae4074853d9' // noqa: mock + ); + }); +}); From cf2b05b5a82c40eff0e2bb5156054cd436cbdae6 Mon Sep 17 00:00:00 2001 From: vic-en Date: Sat, 2 Dec 2023 21:22:43 -0600 Subject: [PATCH 09/11] update yarn lock --- yarn.lock | 369 +++++++++++++++++++++++++++--------------------------- 1 file changed, 187 insertions(+), 182 deletions(-) diff --git a/yarn.lock b/yarn.lock index 884fa9722b..9d3b281360 100644 --- a/yarn.lock +++ b/yarn.lock @@ -978,137 +978,137 @@ "@ethersproject-xdc/abi@file:vendor/@ethersproject-xdc/abi": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-86bd0d2c-e6a7-4d94-aedf-f4343a928502-1701315088385/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/abstract-provider@file:vendor/@ethersproject-xdc/abstract-provider": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-0e950230-d9b7-4d4c-9ef6-653ccb83557e-1701315088389/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/web" "@ethersproject-xdc/abstract-signer@file:vendor/@ethersproject-xdc/abstract-signer": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-69611057-63e1-4840-8dc0-4acd70e70598-1701315088388/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/address@file:vendor/@ethersproject-xdc/address": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-daa1149f-5de9-4959-b36e-e3869d62bd5e-1701315088387/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/rlp" "@ethersproject-xdc/base64@file:vendor/@ethersproject-xdc/base64": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-e7d4afe5-7170-4558-815e-13913655fa1c-1701315088389/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-72ae2ca5-18b2-48a0-a79d-ad337ea85f2d-1701573291703/node_modules/@ethersproject-xdc/bytes" "@ethersproject-xdc/basex@file:vendor/@ethersproject-xdc/basex": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-340312ca-9bc5-484d-bd97-449779d75717-1701315088391/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-340312ca-9bc5-484d-bd97-449779d75717-1701315088391/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-1e3d3f03-909f-426b-b389-afb771a3bc29-1701573291710/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-1e3d3f03-909f-426b-b389-afb771a3bc29-1701573291710/node_modules/@ethersproject-xdc/properties" "@ethersproject-xdc/bignumber@file:vendor/@ethersproject-xdc/bignumber": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-847f1576-9bc2-4c4f-9c79-778de5d1dd5c-1701315088392/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-847f1576-9bc2-4c4f-9c79-778de5d1dd5c-1701315088392/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-81939cc2-4fea-438c-87b0-0c0ed2a797ae-1701573291704/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-81939cc2-4fea-438c-87b0-0c0ed2a797ae-1701573291704/node_modules/@ethersproject-xdc/logger" bn.js "^5.2.1" "@ethersproject-xdc/bytes@file:vendor/@ethersproject-xdc/bytes": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-75cb8462-50cf-42a3-a69d-f0ff5699cfce-1701315088406/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-7aea8193-af48-41b8-b5a3-55d06c372fad-1701573291704/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/constants@file:vendor/@ethersproject-xdc/constants": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-6de51dc1-6ce8-4819-8365-e260d0f15238-1701315088406/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-a8e750bd-272d-4216-9776-1ae63f9348b9-1701573291707/node_modules/@ethersproject-xdc/bignumber" "@ethersproject-xdc/contracts@file:vendor/@ethersproject-xdc/contracts": version "5.6.0" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-0c348127-d559-4009-bb39-4f98ffd35be1-1701315088393/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/transactions" "@ethersproject-xdc/hash@file:vendor/@ethersproject-xdc/hash": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-b4ffee98-939d-41cc-b755-cfccd935a3ed-1701315088395/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/hdnode@file:vendor/@ethersproject-xdc/hdnode": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-f31790ca-4e72-4763-a3f5-8de71748a0f2-1701315088407/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/json-wallets@file:vendor/@ethersproject-xdc/json-wallets": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-41a6b3f4-b545-49e7-9972-66a7668d0329-1701315088398/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/transactions" aes-js "3.0.0" scrypt-js "3.0.1" "@ethersproject-xdc/keccak256@file:vendor/@ethersproject-xdc/keccak256": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-d1c9a2eb-77d3-46d1-abc8-0cd3a8a4f06a-1701315088409/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-f5d2a1f6-3f07-42ef-bc1d-ba738a9e9720-1701573291715/node_modules/@ethersproject-xdc/bytes" js-sha3 "0.8.0" "@ethersproject-xdc/logger@file:vendor/@ethersproject-xdc/logger": @@ -1117,67 +1117,67 @@ "@ethersproject-xdc/networks@file:vendor/@ethersproject-xdc/networks": version "5.7.1" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-ee7b64c7-f006-480c-8ec4-6b592e57c3fe-1701315088409/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-769a411b-e36c-4f62-a725-60ba234e399a-1701573291716/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/pbkdf2@file:vendor/@ethersproject-xdc/pbkdf2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-95554abb-48d5-4b88-82ac-b8422741a990-1701315088409/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-95554abb-48d5-4b88-82ac-b8422741a990-1701315088409/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-b6614048-9145-4fda-a86c-a0e488c4b348-1701573291716/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-b6614048-9145-4fda-a86c-a0e488c4b348-1701573291716/node_modules/@ethersproject-xdc/sha2" "@ethersproject-xdc/properties@file:vendor/@ethersproject-xdc/properties": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-4d24b841-016b-44fc-a3c3-cb1cf8146c50-1701315088412/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-d38ada3d-755a-4e17-a343-15698e0d8abd-1701573291716/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/providers@file:vendor/@ethersproject-xdc/providers": version "5.6.2" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-0dc1ed1b-2012-43ee-a8c9-41428aa2d1cd-1701315088410/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/web" bech32 "1.1.4" ws "7.4.6" "@ethersproject-xdc/random@file:vendor/@ethersproject-xdc/random": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-2e2e4eb3-c128-4de5-9820-a8d87fa173a0-1701315088414/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-2e2e4eb3-c128-4de5-9820-a8d87fa173a0-1701315088414/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-ddac0cc7-d8d4-4765-9c07-fca09860bdc9-1701573291720/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-ddac0cc7-d8d4-4765-9c07-fca09860bdc9-1701573291720/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/rlp@file:vendor/@ethersproject-xdc/rlp": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cd4cad76-381c-4faa-8666-8ddd6eb93810-1701315088412/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cd4cad76-381c-4faa-8666-8ddd6eb93810-1701315088412/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cc3f1461-9779-4692-a5ba-c22a2df22e73-1701573291721/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cc3f1461-9779-4692-a5ba-c22a2df22e73-1701573291721/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/sha2@file:vendor/@ethersproject-xdc/sha2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-9b420930-c6ff-41f8-834d-1fe8f9f7cd81-1701315088414/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-9b420930-c6ff-41f8-834d-1fe8f9f7cd81-1701315088414/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-5ebada10-fcbe-43e0-a519-b6d96f4306a9-1701573291726/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-5ebada10-fcbe-43e0-a519-b6d96f4306a9-1701573291726/node_modules/@ethersproject-xdc/logger" hash.js "1.1.7" "@ethersproject-xdc/signing-key@file:vendor/@ethersproject-xdc/signing-key": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-5e9c23bc-7626-4e3b-87fc-3d8bc6111212-1701315088413/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/properties" bn.js "^5.2.1" elliptic "6.5.4" hash.js "1.1.7" @@ -1185,76 +1185,76 @@ "@ethersproject-xdc/solidity@file:vendor/@ethersproject-xdc/solidity": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-70e48fc3-3807-4c8a-9d49-38fb2463b5ef-1701315088414/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/strings@file:vendor/@ethersproject-xdc/strings": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-898f9c06-0ebd-46d7-90ad-2a2456d814f5-1701315088415/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/transactions@file:vendor/@ethersproject-xdc/transactions": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-8b085146-b6a5-4fe4-a9fd-8f5ee654b0b3-1701315088416/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/signing-key" "@ethersproject-xdc/units@file:vendor/@ethersproject-xdc/units": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-ebf9fc11-cfd2-41ef-a384-0fb60edecb99-1701315088423/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/logger" "@ethersproject-xdc/wallet@file:vendor/@ethersproject-xdc/wallet": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-37b8bb5c-509e-458f-a8e0-4d8953f82ca7-1701315088424/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/wordlists" "@ethersproject-xdc/web@file:vendor/@ethersproject-xdc/web": version "5.7.1" dependencies: - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-99476fe7-00f8-4015-b880-c43173df0a87-1701315088426/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/strings" "@ethersproject-xdc/wordlists@file:vendor/@ethersproject-xdc/wordlists": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-ca41491e-7468-44ab-bd93-310c2ca1b6b4-1701315088448/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/strings" "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.4.0", "@ethersproject/abi@^5.5.0", "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0": version "5.7.0" @@ -7388,36 +7388,36 @@ ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: "ethers-xdc@file:./vendor/ethers-xdc": version "5.7.2" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/contracts" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/providers" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/solidity" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/units" - "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/wallet" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/web" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-3e4fbda4-16a4-454e-a57d-ffff0e832b85-1701315088345/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/base64" + "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/constants" + "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/contracts" + "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/networks" + "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/providers" + "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/solidity" + "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/units" + "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/wallet" + "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/wordlists" ethers@4.0.0-beta.3: version "4.0.0-beta.3" @@ -15310,6 +15310,11 @@ ws@^7, ws@^7.2.0, ws@^7.4.5, ws@^7.4.6: resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== +ws@^8.2.2: + version "8.14.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" + integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== + xhr-request-promise@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c" From a1f8adf0bbb3fe0d07a4b75ffaf8088c70aaef6a Mon Sep 17 00:00:00 2001 From: vic-en Date: Mon, 4 Dec 2023 19:09:09 -0600 Subject: [PATCH 10/11] revert changes to yarn lock --- yarn.lock | 560 +++++++++++++++++++----------------------------------- 1 file changed, 192 insertions(+), 368 deletions(-) diff --git a/yarn.lock b/yarn.lock index 9d3b281360..6160bb8485 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,21 +2,11 @@ # yarn lockfile v1 -"@adraffy/ens-normalize@1.10.0": - version "1.10.0" - resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" - integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== - "@adraffy/ens-normalize@1.9.0": version "1.9.0" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz#223572538f6bea336750039bb43a4016dcc8182d" integrity sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ== -"@adraffy/ens-normalize@1.9.4": - version "1.9.4" - resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz#aae21cb858bbb0411949d5b7b3051f4209043f62" - integrity sha512-UK0bHA7hh9cR39V+4gl2/NnBBjoXIxkuWAPCaY4X7fbH4L/azIi7ilWOCjMUYfpJgraLUAqkRi2BqrjME8Rynw== - "@ampproject/remapping@^2.2.0": version "2.2.0" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" @@ -978,137 +968,137 @@ "@ethersproject-xdc/abi@file:vendor/@ethersproject-xdc/abi": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abi-5.7.0-c99fb10e-6e34-4123-a945-38973cd5bd96-1701573291698/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:vendor/@ethersproject-xdc/hash" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" "@ethersproject-xdc/abstract-provider@file:vendor/@ethersproject-xdc/abstract-provider": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-provider-5.7.0-41b0af96-0a7a-4d02-b047-e1ab535a1f51-1701573291701/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:vendor/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:vendor/@ethersproject-xdc/web" "@ethersproject-xdc/abstract-signer@file:vendor/@ethersproject-xdc/abstract-signer": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-abstract-signer-5.7.0-6ef1e6f6-757b-41ca-95c7-7f95be93e0ba-1701573291699/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/abstract-provider" "file:vendor/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" "@ethersproject-xdc/address@file:vendor/@ethersproject-xdc/address": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-address-5.7.0-08dabb2e-e0c7-4dcc-94f2-cc93e2cb354b-1701573291703/node_modules/@ethersproject-xdc/rlp" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/rlp" "file:vendor/@ethersproject-xdc/rlp" "@ethersproject-xdc/base64@file:vendor/@ethersproject-xdc/base64": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-base64-5.7.0-72ae2ca5-18b2-48a0-a79d-ad337ea85f2d-1701573291703/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" "@ethersproject-xdc/basex@file:vendor/@ethersproject-xdc/basex": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-1e3d3f03-909f-426b-b389-afb771a3bc29-1701573291710/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-basex-5.7.0-1e3d3f03-909f-426b-b389-afb771a3bc29-1701573291710/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" "@ethersproject-xdc/bignumber@file:vendor/@ethersproject-xdc/bignumber": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-81939cc2-4fea-438c-87b0-0c0ed2a797ae-1701573291704/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bignumber-5.7.0-81939cc2-4fea-438c-87b0-0c0ed2a797ae-1701573291704/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" bn.js "^5.2.1" "@ethersproject-xdc/bytes@file:vendor/@ethersproject-xdc/bytes": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-bytes-5.7.0-7aea8193-af48-41b8-b5a3-55d06c372fad-1701573291704/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/constants@file:vendor/@ethersproject-xdc/constants": version "5.7.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-constants-5.7.0-a8e750bd-272d-4216-9776-1ae63f9348b9-1701573291707/node_modules/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" "@ethersproject-xdc/contracts@file:vendor/@ethersproject-xdc/contracts": version "5.6.0" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-contracts-5.6.0-14262639-e189-4b04-a275-03c35a52a6ec-1701573291705/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abi" "file:vendor/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:vendor/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" "@ethersproject-xdc/hash@file:vendor/@ethersproject-xdc/hash": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hash-5.7.0-455b4910-0394-4fc0-976d-04d0b37154e9-1701573291709/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:vendor/@ethersproject-xdc/base64" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" "@ethersproject-xdc/hdnode@file:vendor/@ethersproject-xdc/hdnode": version "5.7.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-hdnode-5.7.0-d4f57d96-d937-49d9-9d96-7433911e4fd4-1701573291711/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/basex" "file:vendor/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:vendor/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/sha2" "file:vendor/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:vendor/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:vendor/@ethersproject-xdc/wordlists" "@ethersproject-xdc/json-wallets@file:vendor/@ethersproject-xdc/json-wallets": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-json-wallets-5.6.0-ed7fdacd-93b6-4ab5-bae5-a628a5611df9-1701573291713/node_modules/@ethersproject-xdc/transactions" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hdnode" "file:vendor/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/pbkdf2" "file:vendor/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:vendor/@ethersproject-xdc/random" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" aes-js "3.0.0" scrypt-js "3.0.1" "@ethersproject-xdc/keccak256@file:vendor/@ethersproject-xdc/keccak256": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-keccak256-5.7.0-f5d2a1f6-3f07-42ef-bc1d-ba738a9e9720-1701573291715/node_modules/@ethersproject-xdc/bytes" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" js-sha3 "0.8.0" "@ethersproject-xdc/logger@file:vendor/@ethersproject-xdc/logger": @@ -1117,67 +1107,67 @@ "@ethersproject-xdc/networks@file:vendor/@ethersproject-xdc/networks": version "5.7.1" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-networks-5.7.1-769a411b-e36c-4f62-a725-60ba234e399a-1701573291716/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/pbkdf2@file:vendor/@ethersproject-xdc/pbkdf2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-b6614048-9145-4fda-a86c-a0e488c4b348-1701573291716/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-pbkdf2-5.7.0-b6614048-9145-4fda-a86c-a0e488c4b348-1701573291716/node_modules/@ethersproject-xdc/sha2" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/sha2" "file:vendor/@ethersproject-xdc/sha2" "@ethersproject-xdc/properties@file:vendor/@ethersproject-xdc/properties": version "5.7.0" dependencies: - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-properties-5.7.0-d38ada3d-755a-4e17-a343-15698e0d8abd-1701573291716/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/providers@file:vendor/@ethersproject-xdc/providers": version "5.6.2" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-providers-5.6.2-8b1cc795-e37f-4596-a48c-f460693a4b62-1701573291717/node_modules/@ethersproject-xdc/web" + "@ethersproject-xdc/abstract-provider" "file:vendor/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/basex" "file:vendor/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/hash" "file:vendor/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:vendor/@ethersproject-xdc/networks" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:vendor/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:vendor/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:vendor/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" + "@ethersproject-xdc/web" "file:vendor/@ethersproject-xdc/web" bech32 "1.1.4" ws "7.4.6" "@ethersproject-xdc/random@file:vendor/@ethersproject-xdc/random": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-ddac0cc7-d8d4-4765-9c07-fca09860bdc9-1701573291720/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-random-5.7.0-ddac0cc7-d8d4-4765-9c07-fca09860bdc9-1701573291720/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/rlp@file:vendor/@ethersproject-xdc/rlp": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cc3f1461-9779-4692-a5ba-c22a2df22e73-1701573291721/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-rlp-5.7.0-cc3f1461-9779-4692-a5ba-c22a2df22e73-1701573291721/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/sha2@file:vendor/@ethersproject-xdc/sha2": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-5ebada10-fcbe-43e0-a519-b6d96f4306a9-1701573291726/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-sha2-5.7.0-5ebada10-fcbe-43e0-a519-b6d96f4306a9-1701573291726/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" hash.js "1.1.7" "@ethersproject-xdc/signing-key@file:vendor/@ethersproject-xdc/signing-key": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-signing-key-5.7.0-71ac487d-cfed-49af-98d9-acc555758ddf-1701573291721/node_modules/@ethersproject-xdc/properties" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" bn.js "^5.2.1" elliptic "6.5.4" hash.js "1.1.7" @@ -1185,76 +1175,76 @@ "@ethersproject-xdc/solidity@file:vendor/@ethersproject-xdc/solidity": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-solidity-5.6.0-8f1c7155-e886-4cfd-89d5-def0ceb167e7-1701573291732/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/sha2" "file:vendor/@ethersproject-xdc/sha2" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" "@ethersproject-xdc/strings@file:vendor/@ethersproject-xdc/strings": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-strings-5.7.0-9510da04-ef24-4b19-8af6-e0a82a00890f-1701573291722/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/transactions@file:vendor/@ethersproject-xdc/transactions": version "5.7.0" dependencies: - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-transactions-5.7.0-6e60e75a-ae8c-4ba1-ac83-dc31500da7d0-1701573291722/node_modules/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/rlp" "file:vendor/@ethersproject-xdc/rlp" + "@ethersproject-xdc/signing-key" "file:vendor/@ethersproject-xdc/signing-key" "@ethersproject-xdc/units@file:vendor/@ethersproject-xdc/units": version "5.6.0" dependencies: - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-units-5.6.0-9dda8dcd-d17b-4f5c-8123-a309733c777a-1701573291727/node_modules/@ethersproject-xdc/logger" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" "@ethersproject-xdc/wallet@file:vendor/@ethersproject-xdc/wallet": version "5.6.0" dependencies: - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wallet-5.6.0-e57ed9d3-28c1-4fca-9a88-1d8e92bebe66-1701573291728/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abstract-provider" "file:vendor/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:vendor/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:vendor/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:vendor/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/random" "file:vendor/@ethersproject-xdc/random" + "@ethersproject-xdc/signing-key" "file:vendor/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" + "@ethersproject-xdc/wordlists" "file:vendor/@ethersproject-xdc/wordlists" "@ethersproject-xdc/web@file:vendor/@ethersproject-xdc/web": version "5.7.1" dependencies: - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-web-5.7.1-1f99e7f9-29fa-4183-824b-bac26ea59056-1701573291731/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/base64" "file:vendor/@ethersproject-xdc/base64" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" "@ethersproject-xdc/wordlists@file:vendor/@ethersproject-xdc/wordlists": version "5.7.0" dependencies: - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-@ethersproject-xdc-wordlists-5.7.0-f69f6a0a-197d-48cd-9c19-6bb669a84c08-1701573291731/node_modules/@ethersproject-xdc/strings" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/hash" "file:vendor/@ethersproject-xdc/hash" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.0.12", "@ethersproject/abi@^5.1.2", "@ethersproject/abi@^5.4.0", "@ethersproject/abi@^5.5.0", "@ethersproject/abi@^5.6.3", "@ethersproject/abi@^5.7.0": version "5.7.0" @@ -2361,13 +2351,6 @@ dependencies: "@noble/hashes" "1.3.0" -"@noble/curves@1.2.0", "@noble/curves@~1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" - integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== - dependencies: - "@noble/hashes" "1.3.2" - "@noble/ed25519@^1.7.0": version "1.7.3" resolved "https://registry.yarnpkg.com/@noble/ed25519/-/ed25519-1.7.3.tgz#57e1677bf6885354b466c38e2b620c62f45a7123" @@ -2383,11 +2366,6 @@ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1" integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg== -"@noble/hashes@1.3.2", "@noble/hashes@~1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" - integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== - "@noble/secp256k1@1.7.1", "@noble/secp256k1@^1.6.3", "@noble/secp256k1@~1.7.0": version "1.7.1" resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c" @@ -2617,11 +2595,6 @@ "@nomicfoundation/solidity-analyzer-win32-ia32-msvc" "0.1.1" "@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.1" -"@openzeppelin/contracts-upgradeable@3.4.2-solc-0.7": - version "3.4.2-solc-0.7" - resolved "https://registry.yarnpkg.com/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-3.4.2-solc-0.7.tgz#9a5cdaf9f65bcd9a3b7e865f44a6f672afe7785e" - integrity sha512-I5iKKS8U9L1XdSxsNAIBQekN0U9hTgdleoyntIdR7Jy3U/z/NZ/1oUM0v5HnUMrmn/bXLvYL94rBvaLF++Ndnw== - "@openzeppelin/contracts@3.4.1-solc-0.7-2": version "3.4.1-solc-0.7-2" resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz#371c67ebffe50f551c3146a9eec5fe6ffe862e92" @@ -2641,25 +2614,6 @@ truffle-flattener "^1.4.4" truffle-hdwallet-provider "^1.0.17" -"@pancakeswap/chains@0.3.0", "@pancakeswap/chains@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@pancakeswap/chains/-/chains-0.3.0.tgz#e509dfd9c8387f76b893e3a0a5b835331752b32c" - integrity sha512-a4U8pzfxQsnS0nUpvi8qL2X6l2C/IUTFJcmt3UNAQv2L2CPUSryt1rLarG91O1Bb/UMfv90UCPrXJcHWpaYSMg== - -"@pancakeswap/sdk@5.7.2": - version "5.7.2" - resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-5.7.2.tgz#d3923142227e04514927098ebd69733621d36891" - integrity sha512-hn1ZWA8uKFqs2GjW5AMv1smnnlJcKugbwyZRPWTftogch/wQYatvXwmolnTFFUrrvAEKHSsEsxNP4dxrbYq6Vw== - dependencies: - "@pancakeswap/chains" "^0.3.0" - "@pancakeswap/swap-sdk-core" "1.0.0" - big.js "^5.2.2" - decimal.js-light "^2.5.0" - tiny-invariant "^1.1.0" - tiny-warning "^1.0.3" - toformat "^2.0.0" - viem "^1.15.1" - "@pancakeswap/sdk@^2.4.5": version "2.4.5" resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-2.4.5.tgz#783c02efc7ca89d2297b0b07040639d90c3e610d" @@ -2672,68 +2626,6 @@ tiny-warning "^1.0.3" toformat "^2.0.0" -"@pancakeswap/swap-sdk-core@1.0.0", "@pancakeswap/swap-sdk-core@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@pancakeswap/swap-sdk-core/-/swap-sdk-core-1.0.0.tgz#30ab333943ecca5484cd10cbc493841fb553728d" - integrity sha512-MZBF8FHpCX/ffY8/gd2zz6TpiftwqRouVPr1kB88wm7desYh+E2y4kWPcZX1roWR38UkjBv4/DoXVSDeSTBgRg== - dependencies: - big.js "^5.2.2" - decimal.js-light "^2.5.0" - tiny-invariant "^1.1.0" - tiny-warning "^1.0.3" - toformat "^2.0.0" - -"@pancakeswap/token-lists@0.0.9": - version "0.0.9" - resolved "https://registry.yarnpkg.com/@pancakeswap/token-lists/-/token-lists-0.0.9.tgz#ffa2e7eb4e8d0ef1b8984b22d8b2fb529787693f" - integrity sha512-V11cFNucyiTeEPsS7fyLldr1XsQqPNzdXQDmeGB54M4dESA/bBi9xaWYCVUihyW3lImNoqr2X1fds7SltfFHOQ== - dependencies: - "@pancakeswap/swap-sdk-core" "1.0.0" - ajv "^6.12.3" - lodash "^4.17.21" - -"@pancakeswap/tokens@0.5.4": - version "0.5.4" - resolved "https://registry.yarnpkg.com/@pancakeswap/tokens/-/tokens-0.5.4.tgz#1508b2b71a259a534ddf18ec120d79b8e6e44945" - integrity sha512-NRc8OIiwL1fNbGRQgcTdpaxbjZfTz6sAnkGZlmaLUt9yCGmGF0hK8uqc4B1YGYSVUkgamd3UJS9z7j673PVbxQ== - dependencies: - "@pancakeswap/chains" "0.3.0" - "@pancakeswap/sdk" "5.7.2" - "@pancakeswap/token-lists" "0.0.9" - -"@pancakeswap/v3-core@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@pancakeswap/v3-core/-/v3-core-1.0.2.tgz#f5abf6a98535f33edebbfc11ab40b4fdcee51420" - integrity sha512-9aZU8I1J6SbZOSW7NcNxuyaAC17tGkOaZJM9aJgvl6MMUOExpq0i0EC/jc3HxWbpC8sbZL+8eG544NEJs8CS+w== - -"@pancakeswap/v3-periphery@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@pancakeswap/v3-periphery/-/v3-periphery-1.0.2.tgz#f5b899c60bae0fadcfff1cc2b72c802b9d5a5596" - integrity sha512-kWQhJsAG5Ij1cubKlX0JuJ3GEPFiPBR+NQt77SxHNjk62eallLyfbWJYk2NMnTO0crbjBFO5GKKQAXfp2n76vg== - dependencies: - "@openzeppelin/contracts" "3.4.2-solc-0.7" - "@openzeppelin/contracts-upgradeable" "3.4.2-solc-0.7" - "@uniswap/lib" "^4.0.1-alpha" - "@uniswap/v2-core" "1.0.1" - base64-sol "1.0.1" - -"@pancakeswap/v3-sdk@^3.7.0": - version "3.7.0" - resolved "https://registry.yarnpkg.com/@pancakeswap/v3-sdk/-/v3-sdk-3.7.0.tgz#1a246e6b9946e2a20e9cb742f42bdaca1b1ff570" - integrity sha512-Qkq28f6TYVsfNuT34SDXy150X1+iIYVO/rnGp9IllOLcQIlDYeM9QY8wz1Gs+IRP6QE51tUntRFCN7UTojpKFg== - dependencies: - "@pancakeswap/chains" "0.3.0" - "@pancakeswap/sdk" "5.7.2" - "@pancakeswap/swap-sdk-core" "1.0.0" - "@pancakeswap/tokens" "0.5.4" - "@uniswap/v3-staker" "1.0.0" - big.js "^5.2.2" - decimal.js-light "^2.5.0" - tiny-invariant "^1.3.0" - tiny-warning "^1.0.3" - toformat "^2.0.0" - viem "1.15.1" - "@pangolindex/exchange-contracts@^1.0.1": version "1.0.2" resolved "https://registry.yarnpkg.com/@pangolindex/exchange-contracts/-/exchange-contracts-1.0.2.tgz#2d5be49d9e63a311cb3c2de53b21815923b3a996" @@ -2904,11 +2796,6 @@ resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938" integrity sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA== -"@scure/base@~1.1.2": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.3.tgz#8584115565228290a6c6c4961973e0903bb3df2f" - integrity sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q== - "@scure/bip32@1.1.5": version "1.1.5" resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.1.5.tgz#d2ccae16dcc2e75bc1d75f5ef3c66a338d1ba300" @@ -2927,15 +2814,6 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" -"@scure/bip32@1.3.2": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8" - integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA== - dependencies: - "@noble/curves" "~1.2.0" - "@noble/hashes" "~1.3.2" - "@scure/base" "~1.1.2" - "@scure/bip39@1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.1.1.tgz#b54557b2e86214319405db819c4b6a370cf340c5" @@ -2952,14 +2830,6 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" -"@scure/bip39@1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" - integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg== - dependencies: - "@noble/hashes" "~1.3.0" - "@scure/base" "~1.1.0" - "@sentry/core@5.30.0": version "5.30.0" resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3" @@ -4117,13 +3987,6 @@ dependencies: "@types/node" "*" -"@types/ws@^8.5.5": - version "8.5.10" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.10.tgz#4acfb517970853fa6574a3a6886791d04a396787" - integrity sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A== - dependencies: - "@types/node" "*" - "@types/yargs-parser@*": version "21.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" @@ -4457,11 +4320,6 @@ abitype@0.8.7: resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.8.7.tgz#e4b3f051febd08111f486c0cc6a98fa72d033622" integrity sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w== -abitype@0.9.8: - version "0.9.8" - resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.8.tgz#1f120b6b717459deafd213dfbf3a3dd1bf10ae8c" - integrity sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ== - abort-controller@3.0.0, abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -7388,36 +7246,36 @@ ethereumjs-util@^6.0.0, ethereumjs-util@^6.2.1: "ethers-xdc@file:./vendor/ethers-xdc": version "5.7.2" dependencies: - "@ethersproject-xdc/abi" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abi" - "@ethersproject-xdc/abstract-provider" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abstract-provider" - "@ethersproject-xdc/abstract-signer" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/abstract-signer" - "@ethersproject-xdc/address" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/address" - "@ethersproject-xdc/base64" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/base64" - "@ethersproject-xdc/basex" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/basex" - "@ethersproject-xdc/bignumber" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/bignumber" - "@ethersproject-xdc/bytes" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/bytes" - "@ethersproject-xdc/constants" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/constants" - "@ethersproject-xdc/contracts" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/contracts" - "@ethersproject-xdc/hash" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/hash" - "@ethersproject-xdc/hdnode" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/hdnode" - "@ethersproject-xdc/json-wallets" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/json-wallets" - "@ethersproject-xdc/keccak256" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/keccak256" - "@ethersproject-xdc/logger" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/logger" - "@ethersproject-xdc/networks" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/networks" - "@ethersproject-xdc/pbkdf2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/pbkdf2" - "@ethersproject-xdc/properties" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/properties" - "@ethersproject-xdc/providers" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/providers" - "@ethersproject-xdc/random" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/random" - "@ethersproject-xdc/rlp" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/rlp" - "@ethersproject-xdc/sha2" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/sha2" - "@ethersproject-xdc/signing-key" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/signing-key" - "@ethersproject-xdc/solidity" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/solidity" - "@ethersproject-xdc/strings" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/strings" - "@ethersproject-xdc/transactions" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/transactions" - "@ethersproject-xdc/units" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/units" - "@ethersproject-xdc/wallet" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/wallet" - "@ethersproject-xdc/web" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/web" - "@ethersproject-xdc/wordlists" "file:../../.cache/yarn/v6/npm-ethers-xdc-5.7.2-c9894796-41df-4419-87ee-631f2401c485-1701573291656/node_modules/@ethersproject-xdc/wordlists" + "@ethersproject-xdc/abi" "file:vendor/@ethersproject-xdc/abi" + "@ethersproject-xdc/abstract-provider" "file:vendor/@ethersproject-xdc/abstract-provider" + "@ethersproject-xdc/abstract-signer" "file:vendor/@ethersproject-xdc/abstract-signer" + "@ethersproject-xdc/address" "file:vendor/@ethersproject-xdc/address" + "@ethersproject-xdc/base64" "file:vendor/@ethersproject-xdc/base64" + "@ethersproject-xdc/basex" "file:vendor/@ethersproject-xdc/basex" + "@ethersproject-xdc/bignumber" "file:vendor/@ethersproject-xdc/bignumber" + "@ethersproject-xdc/bytes" "file:vendor/@ethersproject-xdc/bytes" + "@ethersproject-xdc/constants" "file:vendor/@ethersproject-xdc/constants" + "@ethersproject-xdc/contracts" "file:vendor/@ethersproject-xdc/contracts" + "@ethersproject-xdc/hash" "file:vendor/@ethersproject-xdc/hash" + "@ethersproject-xdc/hdnode" "file:vendor/@ethersproject-xdc/hdnode" + "@ethersproject-xdc/json-wallets" "file:vendor/@ethersproject-xdc/json-wallets" + "@ethersproject-xdc/keccak256" "file:vendor/@ethersproject-xdc/keccak256" + "@ethersproject-xdc/logger" "file:vendor/@ethersproject-xdc/logger" + "@ethersproject-xdc/networks" "file:vendor/@ethersproject-xdc/networks" + "@ethersproject-xdc/pbkdf2" "file:vendor/@ethersproject-xdc/pbkdf2" + "@ethersproject-xdc/properties" "file:vendor/@ethersproject-xdc/properties" + "@ethersproject-xdc/providers" "file:vendor/@ethersproject-xdc/providers" + "@ethersproject-xdc/random" "file:vendor/@ethersproject-xdc/random" + "@ethersproject-xdc/rlp" "file:vendor/@ethersproject-xdc/rlp" + "@ethersproject-xdc/sha2" "file:vendor/@ethersproject-xdc/sha2" + "@ethersproject-xdc/signing-key" "file:vendor/@ethersproject-xdc/signing-key" + "@ethersproject-xdc/solidity" "file:vendor/@ethersproject-xdc/solidity" + "@ethersproject-xdc/strings" "file:vendor/@ethersproject-xdc/strings" + "@ethersproject-xdc/transactions" "file:vendor/@ethersproject-xdc/transactions" + "@ethersproject-xdc/units" "file:vendor/@ethersproject-xdc/units" + "@ethersproject-xdc/wallet" "file:vendor/@ethersproject-xdc/wallet" + "@ethersproject-xdc/web" "file:vendor/@ethersproject-xdc/web" + "@ethersproject-xdc/wordlists" "file:vendor/@ethersproject-xdc/wordlists" ethers@4.0.0-beta.3: version "4.0.0-beta.3" @@ -9341,11 +9199,6 @@ isomorphic-ws@^4.0.1: resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== -isows@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.3.tgz#93c1cf0575daf56e7120bab5c8c448b0809d0d74" - integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg== - isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" @@ -13866,7 +13719,7 @@ tiny-emitter@^2.1.0: resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== -tiny-invariant@^1.1.0, tiny-invariant@^1.3.0: +tiny-invariant@^1.1.0: version "1.3.1" resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== @@ -14257,10 +14110,10 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -typescript@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.2.tgz#00d1c7c1c46928c5845c1ee8d0cc2791031d4c43" - integrity sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ== +typescript@^4.3.2: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== u3@^0.1.1: version "0.1.1" @@ -14542,21 +14395,6 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -viem@1.15.1: - version "1.15.1" - resolved "https://registry.yarnpkg.com/viem/-/viem-1.15.1.tgz#030fb900d8099e6a1bd16164fa4e1e5b8e24607a" - integrity sha512-lxk8wwUK7ZivYAUZ6pH+9Y6jjrfXXjafCOoASa4lw3ULUCT2BajU4SELarlxJQimpsFd7OZD4m4iEXYLF/bt6w== - dependencies: - "@adraffy/ens-normalize" "1.9.4" - "@noble/curves" "1.2.0" - "@noble/hashes" "1.3.2" - "@scure/bip32" "1.3.2" - "@scure/bip39" "1.2.1" - "@types/ws" "^8.5.5" - abitype "0.9.8" - isomorphic-ws "5.0.0" - ws "8.13.0" - viem@^0.3.x: version "0.3.50" resolved "https://registry.yarnpkg.com/viem/-/viem-0.3.50.tgz#999a7682eda7eabc48c923f4b9923c3f098fc1ab" @@ -14572,20 +14410,6 @@ viem@^0.3.x: isomorphic-ws "5.0.0" ws "8.12.0" -viem@^1.15.1: - version "1.19.9" - resolved "https://registry.yarnpkg.com/viem/-/viem-1.19.9.tgz#a11f3ad4a3323994ebd2010dbc659d1a2b12e583" - integrity sha512-Sf9U2x4jU0S/FALqYypcspWOGene0NZyD470oUripNhE0Ta6uOE/OgE4toTDVfRxov8qw0JFinr/wPGxYE3+HQ== - dependencies: - "@adraffy/ens-normalize" "1.10.0" - "@noble/curves" "1.2.0" - "@noble/hashes" "1.3.2" - "@scure/bip32" "1.3.2" - "@scure/bip39" "1.2.1" - abitype "0.9.8" - isows "1.0.3" - ws "8.13.0" - vlq@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/vlq/-/vlq-2.0.4.tgz#6057b85729245b9829e3cc7755f95b228d4fe041" @@ -15291,11 +15115,6 @@ ws@8.12.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8" integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig== -ws@8.13.0, ws@^8.5.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - ws@^3.0.0: version "3.3.3" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" @@ -15315,6 +15134,11 @@ ws@^8.2.2: resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== +ws@^8.5.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + xhr-request-promise@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c" From 1bcf36c6fa46044dc20f682df3cd4191e6d8524c Mon Sep 17 00:00:00 2001 From: vic-en Date: Tue, 5 Dec 2023 16:39:54 -0600 Subject: [PATCH 11/11] update yarn lock --- yarn.lock | 169 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 159 insertions(+), 10 deletions(-) diff --git a/yarn.lock b/yarn.lock index 6160bb8485..8126ec3dd1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,11 @@ # yarn lockfile v1 +"@adraffy/ens-normalize@1.10.0": + version "1.10.0" + resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" + integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== + "@adraffy/ens-normalize@1.9.0": version "1.9.0" resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz#223572538f6bea336750039bb43a4016dcc8182d" @@ -2351,6 +2356,13 @@ dependencies: "@noble/hashes" "1.3.0" +"@noble/curves@1.2.0", "@noble/curves@~1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" + integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== + dependencies: + "@noble/hashes" "1.3.2" + "@noble/ed25519@^1.7.0": version "1.7.3" resolved "https://registry.yarnpkg.com/@noble/ed25519/-/ed25519-1.7.3.tgz#57e1677bf6885354b466c38e2b620c62f45a7123" @@ -2366,6 +2378,11 @@ resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1" integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg== +"@noble/hashes@1.3.2", "@noble/hashes@~1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" + integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== + "@noble/secp256k1@1.7.1", "@noble/secp256k1@^1.6.3", "@noble/secp256k1@~1.7.0": version "1.7.1" resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c" @@ -2595,6 +2612,11 @@ "@nomicfoundation/solidity-analyzer-win32-ia32-msvc" "0.1.1" "@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.1" +"@openzeppelin/contracts-upgradeable@3.4.2-solc-0.7": + version "3.4.2-solc-0.7" + resolved "https://registry.yarnpkg.com/@openzeppelin/contracts-upgradeable/-/contracts-upgradeable-3.4.2-solc-0.7.tgz#9a5cdaf9f65bcd9a3b7e865f44a6f672afe7785e" + integrity sha512-I5iKKS8U9L1XdSxsNAIBQekN0U9hTgdleoyntIdR7Jy3U/z/NZ/1oUM0v5HnUMrmn/bXLvYL94rBvaLF++Ndnw== + "@openzeppelin/contracts@3.4.1-solc-0.7-2": version "3.4.1-solc-0.7-2" resolved "https://registry.yarnpkg.com/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz#371c67ebffe50f551c3146a9eec5fe6ffe862e92" @@ -2614,6 +2636,25 @@ truffle-flattener "^1.4.4" truffle-hdwallet-provider "^1.0.17" +"@pancakeswap/chains@0.3.0", "@pancakeswap/chains@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@pancakeswap/chains/-/chains-0.3.0.tgz#e509dfd9c8387f76b893e3a0a5b835331752b32c" + integrity sha512-a4U8pzfxQsnS0nUpvi8qL2X6l2C/IUTFJcmt3UNAQv2L2CPUSryt1rLarG91O1Bb/UMfv90UCPrXJcHWpaYSMg== + +"@pancakeswap/sdk@5.7.3": + version "5.7.3" + resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-5.7.3.tgz#973ac77f0ac9920dea4c711f2bea396a88efdeb5" + integrity sha512-9Qe5mlhXaAiuFiZ4i1BYNduZHS97VoJgNtqyxRTRXsZ6HhyW9P3z3fr4dU/XecAemrfNJL0KJHDLzihM+D7Row== + dependencies: + "@pancakeswap/chains" "^0.3.0" + "@pancakeswap/swap-sdk-core" "1.0.0" + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.3.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + viem "1.19.9" + "@pancakeswap/sdk@^2.4.5": version "2.4.5" resolved "https://registry.yarnpkg.com/@pancakeswap/sdk/-/sdk-2.4.5.tgz#783c02efc7ca89d2297b0b07040639d90c3e610d" @@ -2626,6 +2667,68 @@ tiny-warning "^1.0.3" toformat "^2.0.0" +"@pancakeswap/swap-sdk-core@1.0.0", "@pancakeswap/swap-sdk-core@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@pancakeswap/swap-sdk-core/-/swap-sdk-core-1.0.0.tgz#30ab333943ecca5484cd10cbc493841fb553728d" + integrity sha512-MZBF8FHpCX/ffY8/gd2zz6TpiftwqRouVPr1kB88wm7desYh+E2y4kWPcZX1roWR38UkjBv4/DoXVSDeSTBgRg== + dependencies: + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.1.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + +"@pancakeswap/token-lists@0.0.9": + version "0.0.9" + resolved "https://registry.yarnpkg.com/@pancakeswap/token-lists/-/token-lists-0.0.9.tgz#ffa2e7eb4e8d0ef1b8984b22d8b2fb529787693f" + integrity sha512-V11cFNucyiTeEPsS7fyLldr1XsQqPNzdXQDmeGB54M4dESA/bBi9xaWYCVUihyW3lImNoqr2X1fds7SltfFHOQ== + dependencies: + "@pancakeswap/swap-sdk-core" "1.0.0" + ajv "^6.12.3" + lodash "^4.17.21" + +"@pancakeswap/tokens@0.5.6": + version "0.5.6" + resolved "https://registry.yarnpkg.com/@pancakeswap/tokens/-/tokens-0.5.6.tgz#0111120be9beae66ba4e7deff8c88514bafa7bde" + integrity sha512-MvQTY2AMW5T9MtswswWnJQ7ElDeLSU0Rw3We22TKzi86dO55FelqpWVGAdN9i0i0aT6zn0kxNEXGA6owQVoOOQ== + dependencies: + "@pancakeswap/chains" "0.3.0" + "@pancakeswap/sdk" "5.7.3" + "@pancakeswap/token-lists" "0.0.9" + +"@pancakeswap/v3-core@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-core/-/v3-core-1.0.2.tgz#f5abf6a98535f33edebbfc11ab40b4fdcee51420" + integrity sha512-9aZU8I1J6SbZOSW7NcNxuyaAC17tGkOaZJM9aJgvl6MMUOExpq0i0EC/jc3HxWbpC8sbZL+8eG544NEJs8CS+w== + +"@pancakeswap/v3-periphery@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-periphery/-/v3-periphery-1.0.2.tgz#f5b899c60bae0fadcfff1cc2b72c802b9d5a5596" + integrity sha512-kWQhJsAG5Ij1cubKlX0JuJ3GEPFiPBR+NQt77SxHNjk62eallLyfbWJYk2NMnTO0crbjBFO5GKKQAXfp2n76vg== + dependencies: + "@openzeppelin/contracts" "3.4.2-solc-0.7" + "@openzeppelin/contracts-upgradeable" "3.4.2-solc-0.7" + "@uniswap/lib" "^4.0.1-alpha" + "@uniswap/v2-core" "1.0.1" + base64-sol "1.0.1" + +"@pancakeswap/v3-sdk@^3.7.0": + version "3.7.2" + resolved "https://registry.yarnpkg.com/@pancakeswap/v3-sdk/-/v3-sdk-3.7.2.tgz#ce475303802ada6c9b7d6781529b0c23033f638c" + integrity sha512-8uSMUaDo69zx+PhODH1TiTdPvuaTlLzyyudpODV8Ig6LKWO2owVIRuhXwQHKXE8N3/0j7JN6ejJrM/sbY3kadA== + dependencies: + "@pancakeswap/chains" "0.3.0" + "@pancakeswap/sdk" "5.7.3" + "@pancakeswap/swap-sdk-core" "1.0.0" + "@pancakeswap/tokens" "0.5.6" + "@uniswap/v3-staker" "1.0.0" + big.js "^5.2.2" + decimal.js-light "^2.5.0" + tiny-invariant "^1.3.0" + tiny-warning "^1.0.3" + toformat "^2.0.0" + viem "1.19.9" + "@pangolindex/exchange-contracts@^1.0.1": version "1.0.2" resolved "https://registry.yarnpkg.com/@pangolindex/exchange-contracts/-/exchange-contracts-1.0.2.tgz#2d5be49d9e63a311cb3c2de53b21815923b3a996" @@ -2796,6 +2899,11 @@ resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.1.tgz#ebb651ee52ff84f420097055f4bf46cfba403938" integrity sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA== +"@scure/base@~1.1.2": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.3.tgz#8584115565228290a6c6c4961973e0903bb3df2f" + integrity sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q== + "@scure/bip32@1.1.5": version "1.1.5" resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.1.5.tgz#d2ccae16dcc2e75bc1d75f5ef3c66a338d1ba300" @@ -2814,6 +2922,15 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" +"@scure/bip32@1.3.2": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8" + integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA== + dependencies: + "@noble/curves" "~1.2.0" + "@noble/hashes" "~1.3.2" + "@scure/base" "~1.1.2" + "@scure/bip39@1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.1.1.tgz#b54557b2e86214319405db819c4b6a370cf340c5" @@ -2830,6 +2947,14 @@ "@noble/hashes" "~1.3.0" "@scure/base" "~1.1.0" +"@scure/bip39@1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" + integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg== + dependencies: + "@noble/hashes" "~1.3.0" + "@scure/base" "~1.1.0" + "@sentry/core@5.30.0": version "5.30.0" resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3" @@ -4320,6 +4445,11 @@ abitype@0.8.7: resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.8.7.tgz#e4b3f051febd08111f486c0cc6a98fa72d033622" integrity sha512-wQ7hV8Yg/yKmGyFpqrNZufCxbszDe5es4AZGYPBitocfSqXtjrTG9JMWFcc4N30ukl2ve48aBTwt7NJxVQdU3w== +abitype@0.9.8: + version "0.9.8" + resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.9.8.tgz#1f120b6b717459deafd213dfbf3a3dd1bf10ae8c" + integrity sha512-puLifILdm+8sjyss4S+fsUN09obiT1g2YW6CtcQF+QDzxR0euzgEB29MZujC6zMk2a6SVmtttq1fc6+YFA7WYQ== + abort-controller@3.0.0, abort-controller@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" @@ -9199,6 +9329,11 @@ isomorphic-ws@^4.0.1: resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc" integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w== +isows@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.3.tgz#93c1cf0575daf56e7120bab5c8c448b0809d0d74" + integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg== + isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" @@ -13719,7 +13854,7 @@ tiny-emitter@^2.1.0: resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== -tiny-invariant@^1.1.0: +tiny-invariant@^1.1.0, tiny-invariant@^1.3.0: version "1.3.1" resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== @@ -14110,10 +14245,10 @@ typescript-tuple@^2.2.1: dependencies: typescript-compare "^0.0.2" -typescript@^4.3.2: - version "4.9.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" - integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== +typescript@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.2.tgz#00d1c7c1c46928c5845c1ee8d0cc2791031d4c43" + integrity sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ== u3@^0.1.1: version "0.1.1" @@ -14395,6 +14530,20 @@ verror@1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" +viem@1.19.9: + version "1.19.9" + resolved "https://registry.yarnpkg.com/viem/-/viem-1.19.9.tgz#a11f3ad4a3323994ebd2010dbc659d1a2b12e583" + integrity sha512-Sf9U2x4jU0S/FALqYypcspWOGene0NZyD470oUripNhE0Ta6uOE/OgE4toTDVfRxov8qw0JFinr/wPGxYE3+HQ== + dependencies: + "@adraffy/ens-normalize" "1.10.0" + "@noble/curves" "1.2.0" + "@noble/hashes" "1.3.2" + "@scure/bip32" "1.3.2" + "@scure/bip39" "1.2.1" + abitype "0.9.8" + isows "1.0.3" + ws "8.13.0" + viem@^0.3.x: version "0.3.50" resolved "https://registry.yarnpkg.com/viem/-/viem-0.3.50.tgz#999a7682eda7eabc48c923f4b9923c3f098fc1ab" @@ -15115,6 +15264,11 @@ ws@8.12.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8" integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig== +ws@8.13.0, ws@^8.5.0: + version "8.13.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" + integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== + ws@^3.0.0: version "3.3.3" resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" @@ -15134,11 +15288,6 @@ ws@^8.2.2: resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== -ws@^8.5.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - xhr-request-promise@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz#2d5f4b16d8c6c893be97f1a62b0ed4cf3ca5f96c"