├── .gitignore ├── yarn.lock ├── transfer-stable ├── package.json ├── index.js ├── StableToken.json └── yarn.lock ├── mint-virtual-tal ├── package.json ├── index.js └── yarn.lock ├── verify-signature ├── package.json ├── index.js └── yarn.lock ├── burn-virtual-tal ├── package.json ├── index.js └── yarn.lock ├── ens-domain-owner ├── package.json ├── index.js └── yarn.lock ├── whitelist-talent-mate ├── package.json ├── index.js └── yarn.lock ├── airdrop-user-nfts ├── package.json └── index.js ├── create-passport ├── package.json ├── localRun.js ├── index.js └── yarn.lock ├── airdrop-member-nfts ├── package.json └── index.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules 4 | *.zip 5 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | -------------------------------------------------------------------------------- /transfer-stable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "transfer-stable", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "ethers": "5.4.6" 14 | } 15 | } -------------------------------------------------------------------------------- /mint-virtual-tal/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mint-virtual-tal", 3 | "version": "1.0.0", 4 | "description": "Mints Virtual Tal", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "ethers": "5.4.6" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /verify-signature/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "create-passport", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "type": "module", 7 | "scripts": { 8 | "watch:build": "tsc --watch", 9 | "compile": "tsc" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "dependencies": { 15 | "viem": "^2.13.7" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /burn-virtual-tal/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "burn-virtual-tal", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "axios": "^0.26.1", 14 | "ethers": "5.4.6" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /ens-domain-owner/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ens-domain-owner", 3 | "version": "1.0.0", 4 | "description": "Retuns the owner of a ENS domain", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "ethers": "^5.7.2" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /whitelist-talent-mate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "airdrop-member-nfts", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "axios": "^0.26.1", 14 | "ethers": "5.4.6" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /airdrop-user-nfts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "airdrop-user-nfts", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@celo-tools/celo-ethers-wrapper": "^0.1.0", 14 | "ethers": "5.4.6" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /create-passport/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "create-passport", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "type": "module", 7 | "scripts": { 8 | "watch:build": "tsc --watch", 9 | "compile": "tsc" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "dependencies": { 15 | "permissionless": "^0.1.4", 16 | "viem": "^2.7.15" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /airdrop-member-nfts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "airdrop-member-nfts", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@celo-tools/celo-ethers-wrapper": "^0.1.0", 14 | "axios": "^0.26.1", 15 | "ethers": "5.4.6", 16 | "mime": "^3.0.0", 17 | "nft.storage": "^6.0.2" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /ens-domain-owner/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | 3 | const ETHERSCAN_API_KEY = process.env.ETHERSCAN_API_KEY; 4 | 5 | exports.handler = async (event) => { 6 | try { 7 | const network = event.env == "production" ? "mainnet" : "goerli"; 8 | const provider = new ethers.providers.EtherscanProvider(network, ETHERSCAN_API_KEY); 9 | const ownerAddress = await provider.resolveName(event.domain); 10 | return { 11 | statusCode: 200, 12 | body: { 13 | wallet: ownerAddress 14 | }, 15 | }; 16 | } catch (error) { 17 | return { 18 | statusCode: 500, 19 | body: { error: error } 20 | } 21 | } 22 | }; 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Talent Protocol](https://raw.githubusercontent.com/talentprotocol/mvp/master/app/packs/images/logo.png) 2 | 3 | # Talent Protocol 4 | > Support talent you believe in and be rewarded when they succeed. 5 | 6 | Talent Protocol is a decentralized platform where talent can create a personal token, and where supporters can make angel investments in someone's career to become a part of their journey. 7 | 8 | ## About this repository 9 | 10 | This repository contains a set of helper lambda functions to our webapp. 11 | 12 | ## Links 13 | 14 | - Project homepage: https://talentprotocol.com 15 | - Twitter: https://twitter.com/talentprotocol 16 | - LinkedIn: https://linkedin.com/company/talentprotocol/ 17 | -------------------------------------------------------------------------------- /create-passport/localRun.js: -------------------------------------------------------------------------------- 1 | //import your handler file or main file of Lambda 2 | import { handler } from './index.js'; 3 | 4 | //Call your exports function with required params 5 | //In AWS lambda these are event, content, and callback 6 | //event and content are JSON object and callback is a function 7 | //In my example i'm using empty JSON 8 | 9 | const event = { 10 | "json_rpc_url": "https://api.developer.coinbase.com/rpc/v1/base-sepolia/Ip9cOQPtBOm81rN2I9_1rBiMXOfKBxii", 11 | "paymaster_url": "https://api.developer.coinbase.com/rpc/v1/base-sepolia/Ip9cOQPtBOm81rN2I9_1rBiMXOfKBxii", 12 | "bundler_url": "https://api.developer.coinbase.com/rpc/v1/base-sepolia/Ip9cOQPtBOm81rN2I9_1rBiMXOfKBxii", 13 | "passport_registry_address": "0x0fDD539a38B5ee3f077238e20d65177F3A5688Df", 14 | "source": "farcaster", 15 | "passport_id": 1003 16 | } 17 | handler(event, //event 18 | {}, //content 19 | function(err, payload) { 20 | console.log(err); 21 | console.log(payload); 22 | }); -------------------------------------------------------------------------------- /burn-virtual-tal/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const fs = require("fs"); 3 | 4 | const WALLET_PK = process.env.WALLET_PK; 5 | 6 | exports.handler = async (event) => { 7 | try { 8 | const userAddress = event.wallet_id; 9 | const amount = event.amount; 10 | const virtualTALAddress = event.virtual_tal_address; 11 | const providerUrl = event.provider_url; 12 | 13 | const provider = new ethers.providers.JsonRpcProvider(providerUrl); 14 | const feeData = await provider.getFeeData(); 15 | 16 | const rawdata = fs.readFileSync("./VirtualTAL.json"); 17 | const abi = JSON.parse(rawdata); 18 | 19 | const owner = new ethers.Wallet(WALLET_PK, provider); 20 | const contract = new ethers.Contract( 21 | virtualTALAddress, 22 | abi.abi, 23 | provider 24 | ); 25 | 26 | const tx = await contract.connect(owner).adminBurn(userAddress, ethers.utils.parseUnits(amount), {gasPrice: feeData.gasPrice}); 27 | 28 | return { 29 | statusCode: 200, 30 | body: { tx: tx.hash } 31 | } 32 | } catch (error) { 33 | console.error(error); 34 | return { 35 | statusCode: 500, 36 | body: { error: error} 37 | } 38 | } 39 | }; 40 | -------------------------------------------------------------------------------- /transfer-stable/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const fs = require("fs"); 3 | 4 | const WALLET_PK = process.env.WALLET_PK; 5 | 6 | exports.handler = async (event) => { 7 | try { 8 | const userAddress = event.wallet; 9 | const amount = event.amount; 10 | const stableAddress = event.stable_address; 11 | const providerUrl = event.provider_url; 12 | const decimals = event.decimals; 13 | 14 | const provider = new ethers.providers.JsonRpcProvider(providerUrl); 15 | const feeData = await provider.getFeeData(); 16 | 17 | const rawdata = fs.readFileSync("./StableToken.json"); 18 | const abi = JSON.parse(rawdata); 19 | 20 | const owner = new ethers.Wallet(WALLET_PK, provider); 21 | const stableContract = new ethers.Contract( 22 | stableAddress, 23 | abi.abi, 24 | provider 25 | ); 26 | 27 | const tx = await stableContract.connect(owner).transfer(userAddress, ethers.utils.parseUnits(amount, decimals), {gasPrice: feeData.gasPrice?.mul(120).div(100)}); 28 | 29 | return { 30 | statusCode: 200, 31 | body: { tx: tx.hash } 32 | } 33 | } catch (error) { 34 | console.error(error); 35 | return { 36 | statusCode: 500, 37 | body: { error: error} 38 | } 39 | } 40 | }; 41 | -------------------------------------------------------------------------------- /mint-virtual-tal/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const fs = require("fs"); 3 | 4 | const WALLET_PK = process.env.WALLET_PK; 5 | 6 | exports.handler = async (event) => { 7 | try { 8 | const user_address = event.wallet_id; 9 | const reason = event.reason; 10 | const amount = event.amount; 11 | const virtual_tal_address = event.virtual_tal_address; 12 | const provider_url = event.provider_url; 13 | 14 | const provider = new ethers.providers.JsonRpcProvider(provider_url); 15 | 16 | const rawdata = fs.readFileSync("./VirtualTalABI.json"); 17 | const abi = JSON.parse(rawdata); 18 | 19 | const owner = new ethers.Wallet(WALLET_PK, provider); 20 | const virtualTalContract = new ethers.Contract( 21 | virtual_tal_address, 22 | abi.abi, 23 | provider 24 | ); 25 | 26 | 27 | const feeData = await provider.getFeeData(); 28 | const tx = await virtualTalContract.connect(owner).adminMint(user_address, ethers.utils.parseUnits(amount), reason, {gasPrice: feeData.gasPrice}) 29 | 30 | return { 31 | statusCode: 200, 32 | body: { 33 | tx: tx.hash, 34 | }, 35 | }; 36 | } catch (error) { 37 | console.error(error); 38 | return { 39 | statusCode: 500, 40 | body: { error: error} 41 | } 42 | } 43 | }; 44 | -------------------------------------------------------------------------------- /verify-signature/index.js: -------------------------------------------------------------------------------- 1 | import { createPublicClient, http } from 'viem' 2 | import * as all from 'viem/chains' 3 | const { defineChain: _, ...chains } = all; 4 | 5 | function getChain(chainId) { 6 | for (const chain of Object.values(chains)) { 7 | if (chain.id === chainId) { 8 | return chain; 9 | } 10 | } 11 | 12 | throw new Error(`Chain with id ${chainId} not found`); 13 | } 14 | 15 | export const handler = async (event) => { 16 | try { 17 | const address = event.address; 18 | const message = event.message; 19 | const signature = event.signature; 20 | const chainId = event.chain_id; 21 | 22 | const chain = getChain(chainId); 23 | 24 | const publicClient = createPublicClient({ 25 | chain, 26 | transport: http() 27 | }) 28 | 29 | const valid = await publicClient.verifyMessage({ 30 | address, 31 | message, 32 | signature, 33 | }) 34 | 35 | if(valid) { 36 | return { statusCode: 200, message: "Valid signature" } 37 | } else { 38 | return { statusCode: 400, message: "Invalid signature" } 39 | } 40 | } catch (error) { 41 | console.log("Error"); 42 | console.error(error); 43 | return { 44 | statusCode: 500, 45 | message: error 46 | } 47 | } 48 | }; 49 | 50 | export default handler; -------------------------------------------------------------------------------- /airdrop-user-nfts/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const { CeloProvider, CeloWallet } = require('@celo-tools/celo-ethers-wrapper'); 3 | const fs = require("fs"); 4 | 5 | const WALLET_PK = process.env.WALLET_PK; 6 | const NFT_ADDRESS = process.env.NFT_ADDRESS; 7 | const PROVIDER_URL = process.env.PROVIDER_URL; 8 | 9 | exports.handler = async (event) => { 10 | try{ 11 | const rawdata = fs.readFileSync("./CommunityUser.json"); 12 | const abi = JSON.parse(rawdata); 13 | 14 | const provider = new CeloProvider(PROVIDER_URL); 15 | const owner = new CeloWallet(WALLET_PK, provider); 16 | const contract = new ethers.Contract( 17 | NFT_ADDRESS, 18 | abi.abi, 19 | provider 20 | ); 21 | 22 | if (event.wallet_id.length > 0) { 23 | const balance = await contract.balanceOf(event.wallet_id); 24 | 25 | if (balance > 0) { 26 | const tokenId = contract.tokenOfOwnerByIndex(event.wallet_id, 0); 27 | return { 28 | statusCode: 400, 29 | body: { 30 | errorId: 2, 31 | error: "User already has the NFT", 32 | tokenId: tokenId.toString(), 33 | tokenAddress: NFT_ADDRESS 34 | } 35 | } 36 | } 37 | const tx = await contract.connect(owner).airdrop([event.wallet_id]); 38 | const receipt = await tx.wait(); 39 | 40 | const transferEvent = receipt.events?.find((e) => { 41 | return e.event === "Transfer"; 42 | }); 43 | 44 | const tokenId = transferEvent.args.tokenId.toString(); 45 | 46 | return { 47 | statusCode: 200, 48 | body: { 49 | tokenId: tokenId, 50 | tokenAddress: NFT_ADDRESS, 51 | tx: receipt.transactionHash, 52 | }, 53 | }; 54 | } else { 55 | return { 56 | statusCode: 400, 57 | body: { errorId: 1, error: "No wallet id provided" } 58 | } 59 | } 60 | } catch (error) { 61 | return { 62 | statusCode: 500, 63 | body: { error: error} 64 | } 65 | } 66 | }; 67 | -------------------------------------------------------------------------------- /whitelist-talent-mate/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const fs = require("fs"); 3 | 4 | const WALLET_PK = process.env.WALLET_PK; 5 | const NFT_ADDRESS = process.env.NFT_ADDRESS; 6 | const PROVIDER_URL = process.env.PROVIDER_URL; 7 | 8 | TIERS = { 9 | "verified": 2, // USER 10 | "token_holder": 5, // TOKEN_HOLDER 11 | "talent_token": 6, // TALENT 12 | } 13 | 14 | exports.handler = async (event) => { 15 | try { 16 | const provider = new ethers.providers.JsonRpcProvider(PROVIDER_URL); 17 | 18 | const rawdata = fs.readFileSync("./TalentNFT.json"); 19 | const abi = JSON.parse(rawdata); 20 | 21 | const owner = new ethers.Wallet(WALLET_PK, provider); 22 | const contract = new ethers.Contract( 23 | NFT_ADDRESS, 24 | abi.abi, 25 | provider 26 | ); 27 | 28 | const user_address = event.wallet_id; 29 | const level = event.level; 30 | 31 | if (user_address.length > 0) { 32 | const balance = await contract.balanceOf(user_address); 33 | 34 | if (balance.toNumber() > 0) { 35 | const tokenId = await contract.tokenOfOwnerByIndex(user_address, 0); 36 | return { 37 | statusCode: 400, 38 | body: { 39 | errorId: 2, 40 | error: "User already has the NFT", 41 | tokenId: tokenId.toString(), 42 | tokenAddress: NFT_ADDRESS 43 | } 44 | } 45 | } 46 | 47 | const currentLevel = await contract.checkAccountOrCodeTier(user_address, ""); 48 | 49 | if (currentLevel >= TIERS[level]) { 50 | return { 51 | statusCode: 200, 52 | body: { 53 | message: "User already has a higher level" 54 | }, 55 | }; 56 | } 57 | 58 | const feeData = await provider.getFeeData(); 59 | const tx = await contract.connect(owner) 60 | .whitelistAddress(user_address, TIERS[level], { 61 | gasPrice: feeData.gasPrice 62 | }).then((b) => console.log(b)); 63 | 64 | const receipt = await tx.wait(); 65 | return { 66 | statusCode: 200, 67 | body: { 68 | tx: receipt.transactionHash, 69 | }, 70 | }; 71 | 72 | } else { 73 | return { 74 | statusCode: 400, 75 | body: { errorId: 1, error: "No wallet id provided" } 76 | } 77 | } 78 | } catch (error) { 79 | return { 80 | statusCode: 500, 81 | body: { error: error} 82 | } 83 | } 84 | }; 85 | -------------------------------------------------------------------------------- /verify-signature/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@adraffy/ens-normalize@1.10.0": 6 | version "1.10.0" 7 | resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" 8 | integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== 9 | 10 | "@noble/curves@1.2.0", "@noble/curves@~1.2.0": 11 | version "1.2.0" 12 | resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" 13 | integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== 14 | dependencies: 15 | "@noble/hashes" "1.3.2" 16 | 17 | "@noble/hashes@1.3.2": 18 | version "1.3.2" 19 | resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" 20 | integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== 21 | 22 | "@noble/hashes@~1.3.0", "@noble/hashes@~1.3.2": 23 | version "1.3.3" 24 | resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699" 25 | integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== 26 | 27 | "@scure/base@~1.1.0", "@scure/base@~1.1.2": 28 | version "1.1.5" 29 | resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.5.tgz#1d85d17269fe97694b9c592552dd9e5e33552157" 30 | integrity sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ== 31 | 32 | "@scure/bip32@1.3.2": 33 | version "1.3.2" 34 | resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8" 35 | integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA== 36 | dependencies: 37 | "@noble/curves" "~1.2.0" 38 | "@noble/hashes" "~1.3.2" 39 | "@scure/base" "~1.1.2" 40 | 41 | "@scure/bip39@1.2.1": 42 | version "1.2.1" 43 | resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" 44 | integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg== 45 | dependencies: 46 | "@noble/hashes" "~1.3.0" 47 | "@scure/base" "~1.1.0" 48 | 49 | abitype@1.0.0: 50 | version "1.0.0" 51 | resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.0.tgz#237176dace81d90d018bebf3a45cb42f2a2d9e97" 52 | integrity sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ== 53 | 54 | isows@1.0.4: 55 | version "1.0.4" 56 | resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.4.tgz#810cd0d90cc4995c26395d2aa4cfa4037ebdf061" 57 | integrity sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ== 58 | 59 | viem@^2.13.7: 60 | version "2.13.7" 61 | resolved "https://registry.yarnpkg.com/viem/-/viem-2.13.7.tgz#c1153c02f7ffaf0263d784fc1d4e4ffa3f66c24a" 62 | integrity sha512-SZWn9LPrz40PHl4PM2iwkPTTtjWPDFsnLr32UwpqC/Z5f0AwxitjLyZdDKcImvbWZ3vLQ0oPggR1aLlqvTcUug== 63 | dependencies: 64 | "@adraffy/ens-normalize" "1.10.0" 65 | "@noble/curves" "1.2.0" 66 | "@noble/hashes" "1.3.2" 67 | "@scure/bip32" "1.3.2" 68 | "@scure/bip39" "1.2.1" 69 | abitype "1.0.0" 70 | isows "1.0.4" 71 | ws "8.13.0" 72 | 73 | ws@8.13.0: 74 | version "8.13.0" 75 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" 76 | integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== 77 | -------------------------------------------------------------------------------- /airdrop-member-nfts/index.js: -------------------------------------------------------------------------------- 1 | const { ethers } = require("ethers"); 2 | const { NFTStorage, File } = require("nft.storage"); 3 | const { CeloProvider, CeloWallet } = require('@celo-tools/celo-ethers-wrapper'); 4 | const fs = require("fs"); 5 | const Axios = require('axios'); 6 | const mime = require("mime"); 7 | 8 | const WALLET_PK = process.env.WALLET_PK; 9 | const NFT_ADDRESS = process.env.NFT_ADDRESS; 10 | const PROVIDER_URL = process.env.PROVIDER_URL; 11 | const TOKEN = process.env.NFT_STORAGE_TOKEN; 12 | const SEASON = process.env.SEASON; 13 | 14 | async function downloadImage(url, filepath) { 15 | const response = await Axios({ 16 | url, 17 | method: 'GET', 18 | responseType: 'stream' 19 | }); 20 | return new Promise((resolve, reject) => { 21 | response.data.pipe(fs.createWriteStream(filepath)) 22 | .on('error', reject) 23 | .once('close', () => resolve(filepath)); 24 | }); 25 | } 26 | 27 | async function fileFromPath(filePath) { 28 | const content = await fs.promises.readFile(filePath) 29 | const type = mime.getType(filePath) 30 | return new File([content], filePath.substring(5, filePath.length), { type }) 31 | } 32 | 33 | exports.handler = async (event) => { 34 | try{ 35 | const rawdata = fs.readFileSync("./CommunityMember.json"); 36 | const abi = JSON.parse(rawdata); 37 | 38 | const provider = new CeloProvider(PROVIDER_URL); 39 | const owner = new CeloWallet(WALLET_PK, provider); 40 | const contract = new ethers.Contract( 41 | NFT_ADDRESS, 42 | abi.abi, 43 | provider 44 | ); 45 | 46 | if (event.wallet_id.length > 0) { 47 | const balance = await contract.balanceOf(event.wallet_id); 48 | 49 | if (balance > 0) { 50 | const tokenId = await contract.tokenOfOwnerByIndex(event.wallet_id, 0); 51 | return { 52 | statusCode: 400, 53 | body: { 54 | errorId: 2, 55 | error: "User already has the NFT", 56 | tokenId: tokenId.toString(), 57 | tokenAddress: NFT_ADDRESS 58 | } 59 | } 60 | } 61 | const tx = await contract.connect(owner).airdrop([event.wallet_id]); 62 | const receipt = await tx.wait(); 63 | 64 | const transferEvent = receipt.events?.find((e) => { 65 | return e.event === "Transfer"; 66 | }); 67 | 68 | const tokenId = transferEvent.args.tokenId.toNumber(); 69 | 70 | if (event.image_url) { 71 | const client = new NFTStorage({ token: TOKEN }); 72 | 73 | await downloadImage(event.image_url, `/tmp/${event.image_name}`); 74 | const image = await fileFromPath(`/tmp/${event.image_name}`) 75 | 76 | const metadata = await client.store({ 77 | name: 'Talent Protocol Community Member NFT', 78 | description: 'Talent Protocol Community Member level NFT. Owners of this NFT are considered members of Talent Protocol', 79 | image, 80 | properties: { 81 | type: "image", 82 | season: SEASON, 83 | } 84 | }) 85 | 86 | await contract.connect(owner).setTokenURI(tokenId, metadata.url); 87 | } 88 | 89 | return { 90 | statusCode: 200, 91 | body: { 92 | tokenId: tokenId, 93 | tokenAddress: NFT_ADDRESS, 94 | tx: receipt.transactionHash, 95 | }, 96 | }; 97 | } else { 98 | return { 99 | statusCode: 400, 100 | body: { errorId: 1, error: "No wallet id provided" } 101 | } 102 | } 103 | } catch (error) { 104 | return { 105 | statusCode: 500, 106 | body: { error: error} 107 | } 108 | } 109 | }; 110 | -------------------------------------------------------------------------------- /create-passport/index.js: -------------------------------------------------------------------------------- 1 | import passportContract from "./PassportABI.json" with { type: "json" }; 2 | 3 | import { createPublicClient, http, encodeFunctionData } from "viem"; 4 | import { baseSepolia, base } from "viem/chains"; 5 | import { createSmartAccountClient } from "permissionless"; 6 | import { privateKeyToSimpleSmartAccount } from "permissionless/accounts"; 7 | import { createPimlicoPaymasterClient } from "permissionless/clients/pimlico"; 8 | 9 | const ENTRYPOINT = "0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789"; 10 | 11 | export const handler = async (event) => { 12 | try { 13 | const jsonRpcUrl = event.json_rpc_url; 14 | const paymasterUrl = event.paymaster_url; 15 | const bundlerUrl = event.bundler_url; 16 | const passportRegistryAddress = event.passport_registry_address; 17 | const environment = event.environment; 18 | const passports = event.passports; 19 | let chain = baseSepolia; 20 | let walletPK = process.env.SEPOLIA_WALLET_PK; 21 | 22 | console.log("Uploading: ", passports) 23 | 24 | if(environment == "mainnet") { 25 | console.log("Mainnet") 26 | chain = base; 27 | walletPK = process.env.WALLET_PK 28 | } 29 | 30 | const publicClient = createPublicClient({ 31 | transport: http(jsonRpcUrl), 32 | }); 33 | 34 | console.log("Initialize adminSmartAccount"); 35 | 36 | const adminSmartAccount = await privateKeyToSimpleSmartAccount(publicClient, { 37 | privateKey: walletPK, 38 | entryPoint: ENTRYPOINT, // global entrypoint 39 | factoryAddress: "0x9406Cc6185a346906296840746125a0E44976454", 40 | }); 41 | 42 | console.log("Initialize paymasterClient"); 43 | 44 | const paymasterClient = createPimlicoPaymasterClient({ 45 | transport: http(paymasterUrl), 46 | entryPoint: ENTRYPOINT, 47 | chain, 48 | }); 49 | 50 | console.log("Initialize adminSmartAccountClient"); 51 | 52 | const adminSmartAccountClient = createSmartAccountClient({ 53 | account: adminSmartAccount, 54 | entryPoint: ENTRYPOINT, 55 | chain, 56 | bundlerTransport: http(bundlerUrl), 57 | // IMPORTANT: Set up the Cloud Paymaster to sponsor your transaction 58 | middleware: { 59 | sponsorUserOperation: paymasterClient.sponsorUserOperation, 60 | }, 61 | }); 62 | 63 | console.log("adminSmartAccount Address", adminSmartAccount.address); 64 | 65 | 66 | const sponsoredTransactions = passports.map((passport) => { 67 | return { 68 | to: passportRegistryAddress, 69 | data: encodeFunctionData({abi: passportContract.abi, functionName: "adminCreate", args: [passport.source, passport.wallet, passport.id]}), 70 | value: BigInt(0) 71 | } 72 | }) 73 | 74 | console.log("Send batch transactions"); 75 | 76 | const txHash = await adminSmartAccountClient.sendTransactions({ 77 | transactions: sponsoredTransactions 78 | }) 79 | 80 | console.log( 81 | `UserOperation included: https://sepolia.basescan.org/tx/${txHash}`, 82 | ); 83 | 84 | const transaction = await publicClient.waitForTransactionReceipt({ 85 | hash: txHash, 86 | }); 87 | 88 | console.log("transaction:", transaction); 89 | 90 | const responseBody = { 91 | statusCode: 200, 92 | body: { 93 | tx_hash: transaction.transactionHash 94 | } 95 | }; 96 | 97 | console.log("responseBody", responseBody) 98 | 99 | return responseBody; 100 | } catch (error) { 101 | console.log("Error"); 102 | console.error(error); 103 | return { 104 | statusCode: 500, 105 | body: { error: error} 106 | } 107 | } 108 | }; 109 | 110 | export default handler; -------------------------------------------------------------------------------- /create-passport/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@adraffy/ens-normalize@1.10.0": 6 | version "1.10.0" 7 | resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.10.0.tgz#d2a39395c587e092d77cbbc80acf956a54f38bf7" 8 | integrity sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q== 9 | 10 | "@noble/curves@1.2.0", "@noble/curves@~1.2.0": 11 | version "1.2.0" 12 | resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.2.0.tgz#92d7e12e4e49b23105a2555c6984d41733d65c35" 13 | integrity sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw== 14 | dependencies: 15 | "@noble/hashes" "1.3.2" 16 | 17 | "@noble/hashes@1.3.2": 18 | version "1.3.2" 19 | resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.2.tgz#6f26dbc8fbc7205873ce3cee2f690eba0d421b39" 20 | integrity sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ== 21 | 22 | "@noble/hashes@~1.3.0", "@noble/hashes@~1.3.2": 23 | version "1.3.3" 24 | resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699" 25 | integrity sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA== 26 | 27 | "@scure/base@~1.1.0", "@scure/base@~1.1.2": 28 | version "1.1.5" 29 | resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.5.tgz#1d85d17269fe97694b9c592552dd9e5e33552157" 30 | integrity sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ== 31 | 32 | "@scure/bip32@1.3.2": 33 | version "1.3.2" 34 | resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.3.2.tgz#90e78c027d5e30f0b22c1f8d50ff12f3fb7559f8" 35 | integrity sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA== 36 | dependencies: 37 | "@noble/curves" "~1.2.0" 38 | "@noble/hashes" "~1.3.2" 39 | "@scure/base" "~1.1.2" 40 | 41 | "@scure/bip39@1.2.1": 42 | version "1.2.1" 43 | resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.2.1.tgz#5cee8978656b272a917b7871c981e0541ad6ac2a" 44 | integrity sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg== 45 | dependencies: 46 | "@noble/hashes" "~1.3.0" 47 | "@scure/base" "~1.1.0" 48 | 49 | abitype@1.0.0: 50 | version "1.0.0" 51 | resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.0.tgz#237176dace81d90d018bebf3a45cb42f2a2d9e97" 52 | integrity sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ== 53 | 54 | isows@1.0.3: 55 | version "1.0.3" 56 | resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.3.tgz#93c1cf0575daf56e7120bab5c8c448b0809d0d74" 57 | integrity sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg== 58 | 59 | permissionless@^0.1.4: 60 | version "0.1.4" 61 | resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.1.4.tgz#8052a10b4064e69edb54f510a953a1c1a2f3ccc8" 62 | integrity sha512-lsO5GgbR1iZfrei/gNdsALNT9BfiNMFLpMNmmdZy4SQk+nuMV0dsZWBnLZWtEmXJCYM3aNC85w7U9l3ZMbh9NA== 63 | 64 | viem@^2.7.15: 65 | version "2.7.16" 66 | resolved "https://registry.yarnpkg.com/viem/-/viem-2.7.16.tgz#99e66bbec661b2284bc32061474f20a90381bdcb" 67 | integrity sha512-yOPa9yaoJUm44m0Qe3ugHnkHol3QQlFxN3jT+bq+lQip7X7cWdPfmguyfLWX2viCXcmYZUDiQdeFbkPW9lw11Q== 68 | dependencies: 69 | "@adraffy/ens-normalize" "1.10.0" 70 | "@noble/curves" "1.2.0" 71 | "@noble/hashes" "1.3.2" 72 | "@scure/bip32" "1.3.2" 73 | "@scure/bip39" "1.2.1" 74 | abitype "1.0.0" 75 | isows "1.0.3" 76 | ws "8.13.0" 77 | 78 | ws@8.13.0: 79 | version "8.13.0" 80 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" 81 | integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== 82 | -------------------------------------------------------------------------------- /transfer-stable/StableToken.json: -------------------------------------------------------------------------------- 1 | { 2 | "_format": "hh-sol-artifact-1", 3 | "contractName": "ERC20", 4 | "sourceName": "@openzeppelin/contracts/token/ERC20/ERC20.sol", 5 | "abi": [ 6 | { 7 | "inputs": [ 8 | { 9 | "internalType": "string", 10 | "name": "name_", 11 | "type": "string" 12 | }, 13 | { 14 | "internalType": "string", 15 | "name": "symbol_", 16 | "type": "string" 17 | } 18 | ], 19 | "stateMutability": "nonpayable", 20 | "type": "constructor" 21 | }, 22 | { 23 | "anonymous": false, 24 | "inputs": [ 25 | { 26 | "indexed": true, 27 | "internalType": "address", 28 | "name": "owner", 29 | "type": "address" 30 | }, 31 | { 32 | "indexed": true, 33 | "internalType": "address", 34 | "name": "spender", 35 | "type": "address" 36 | }, 37 | { 38 | "indexed": false, 39 | "internalType": "uint256", 40 | "name": "value", 41 | "type": "uint256" 42 | } 43 | ], 44 | "name": "Approval", 45 | "type": "event" 46 | }, 47 | { 48 | "anonymous": false, 49 | "inputs": [ 50 | { 51 | "indexed": true, 52 | "internalType": "address", 53 | "name": "from", 54 | "type": "address" 55 | }, 56 | { 57 | "indexed": true, 58 | "internalType": "address", 59 | "name": "to", 60 | "type": "address" 61 | }, 62 | { 63 | "indexed": false, 64 | "internalType": "uint256", 65 | "name": "value", 66 | "type": "uint256" 67 | } 68 | ], 69 | "name": "Transfer", 70 | "type": "event" 71 | }, 72 | { 73 | "inputs": [ 74 | { 75 | "internalType": "address", 76 | "name": "owner", 77 | "type": "address" 78 | }, 79 | { 80 | "internalType": "address", 81 | "name": "spender", 82 | "type": "address" 83 | } 84 | ], 85 | "name": "allowance", 86 | "outputs": [ 87 | { 88 | "internalType": "uint256", 89 | "name": "", 90 | "type": "uint256" 91 | } 92 | ], 93 | "stateMutability": "view", 94 | "type": "function" 95 | }, 96 | { 97 | "inputs": [ 98 | { 99 | "internalType": "address", 100 | "name": "spender", 101 | "type": "address" 102 | }, 103 | { 104 | "internalType": "uint256", 105 | "name": "amount", 106 | "type": "uint256" 107 | } 108 | ], 109 | "name": "approve", 110 | "outputs": [ 111 | { 112 | "internalType": "bool", 113 | "name": "", 114 | "type": "bool" 115 | } 116 | ], 117 | "stateMutability": "nonpayable", 118 | "type": "function" 119 | }, 120 | { 121 | "inputs": [ 122 | { 123 | "internalType": "address", 124 | "name": "account", 125 | "type": "address" 126 | } 127 | ], 128 | "name": "balanceOf", 129 | "outputs": [ 130 | { 131 | "internalType": "uint256", 132 | "name": "", 133 | "type": "uint256" 134 | } 135 | ], 136 | "stateMutability": "view", 137 | "type": "function" 138 | }, 139 | { 140 | "inputs": [], 141 | "name": "decimals", 142 | "outputs": [ 143 | { 144 | "internalType": "uint8", 145 | "name": "", 146 | "type": "uint8" 147 | } 148 | ], 149 | "stateMutability": "view", 150 | "type": "function" 151 | }, 152 | { 153 | "inputs": [ 154 | { 155 | "internalType": "address", 156 | "name": "spender", 157 | "type": "address" 158 | }, 159 | { 160 | "internalType": "uint256", 161 | "name": "subtractedValue", 162 | "type": "uint256" 163 | } 164 | ], 165 | "name": "decreaseAllowance", 166 | "outputs": [ 167 | { 168 | "internalType": "bool", 169 | "name": "", 170 | "type": "bool" 171 | } 172 | ], 173 | "stateMutability": "nonpayable", 174 | "type": "function" 175 | }, 176 | { 177 | "inputs": [ 178 | { 179 | "internalType": "address", 180 | "name": "spender", 181 | "type": "address" 182 | }, 183 | { 184 | "internalType": "uint256", 185 | "name": "addedValue", 186 | "type": "uint256" 187 | } 188 | ], 189 | "name": "increaseAllowance", 190 | "outputs": [ 191 | { 192 | "internalType": "bool", 193 | "name": "", 194 | "type": "bool" 195 | } 196 | ], 197 | "stateMutability": "nonpayable", 198 | "type": "function" 199 | }, 200 | { 201 | "inputs": [], 202 | "name": "name", 203 | "outputs": [ 204 | { 205 | "internalType": "string", 206 | "name": "", 207 | "type": "string" 208 | } 209 | ], 210 | "stateMutability": "view", 211 | "type": "function" 212 | }, 213 | { 214 | "inputs": [], 215 | "name": "symbol", 216 | "outputs": [ 217 | { 218 | "internalType": "string", 219 | "name": "", 220 | "type": "string" 221 | } 222 | ], 223 | "stateMutability": "view", 224 | "type": "function" 225 | }, 226 | { 227 | "inputs": [], 228 | "name": "totalSupply", 229 | "outputs": [ 230 | { 231 | "internalType": "uint256", 232 | "name": "", 233 | "type": "uint256" 234 | } 235 | ], 236 | "stateMutability": "view", 237 | "type": "function" 238 | }, 239 | { 240 | "inputs": [ 241 | { 242 | "internalType": "address", 243 | "name": "to", 244 | "type": "address" 245 | }, 246 | { 247 | "internalType": "uint256", 248 | "name": "amount", 249 | "type": "uint256" 250 | } 251 | ], 252 | "name": "transfer", 253 | "outputs": [ 254 | { 255 | "internalType": "bool", 256 | "name": "", 257 | "type": "bool" 258 | } 259 | ], 260 | "stateMutability": "nonpayable", 261 | "type": "function" 262 | }, 263 | { 264 | "inputs": [ 265 | { 266 | "internalType": "address", 267 | "name": "from", 268 | "type": "address" 269 | }, 270 | { 271 | "internalType": "address", 272 | "name": "to", 273 | "type": "address" 274 | }, 275 | { 276 | "internalType": "uint256", 277 | "name": "amount", 278 | "type": "uint256" 279 | } 280 | ], 281 | "name": "transferFrom", 282 | "outputs": [ 283 | { 284 | "internalType": "bool", 285 | "name": "", 286 | "type": "bool" 287 | } 288 | ], 289 | "stateMutability": "nonpayable", 290 | "type": "function" 291 | } 292 | ], 293 | "bytecode": "0x60806040523480156200001157600080fd5b5060405162000c4238038062000c4283398101604081905262000034916200011f565b600362000042838262000218565b50600462000051828262000218565b505050620002e4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200008257600080fd5b81516001600160401b03808211156200009f576200009f6200005a565b604051601f8301601f19908116603f01168101908282118183101715620000ca57620000ca6200005a565b81604052838152602092508683858801011115620000e757600080fd5b600091505b838210156200010b5785820183015181830184015290820190620000ec565b600093810190920192909252949350505050565b600080604083850312156200013357600080fd5b82516001600160401b03808211156200014b57600080fd5b620001598683870162000070565b935060208501519150808211156200017057600080fd5b506200017f8582860162000070565b9150509250929050565b600181811c908216806200019e57607f821691505b602082108103620001bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021357600081815260208120601f850160051c81016020861015620001ee5750805b601f850160051c820191505b818110156200020f57828155600101620001fa565b5050505b505050565b81516001600160401b038111156200023457620002346200005a565b6200024c8162000245845462000189565b84620001c5565b602080601f8311600181146200028457600084156200026b5750858301515b600019600386901b1c1916600185901b1785556200020f565b600085815260208120601f198616915b82811015620002b55788860151825594840194600190910190840162000294565b5085821015620002d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61094e80620002f46000396000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e39190610798565b60405180910390f35b6100ff6100fa366004610802565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461082c565b610292565b604051601281526020016100e3565b6100ff610151366004610802565b6102b6565b610113610164366004610868565b6001600160a01b031660009081526020819052604090205490565b6100d66102f5565b6100ff610195366004610802565b610304565b6100ff6101a8366004610802565b6103b3565b6101136101bb36600461088a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f5906108bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610221906108bd565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b6000336102868185856103c1565b60019150505b92915050565b6000336102a0858285610519565b6102ab8585856105ab565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061028690829086906102f09087906108f7565b6103c1565b6060600480546101f5906108bd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102ab82868684036103c1565b6000336102868185856105ab565b6001600160a01b03831661043c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166104b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105a557818110156105985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161039d565b6105a584848484036103c1565b50505050565b6001600160a01b0383166106275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166106a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105a5565b600060208083528351808285015260005b818110156107c5578581018301518582016040015282016107a9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107fd57600080fd5b919050565b6000806040838503121561081557600080fd5b61081e836107e6565b946020939093013593505050565b60008060006060848603121561084157600080fd5b61084a846107e6565b9250610858602085016107e6565b9150604084013590509250925092565b60006020828403121561087a57600080fd5b610883826107e6565b9392505050565b6000806040838503121561089d57600080fd5b6108a6836107e6565b91506108b4602084016107e6565b90509250929050565b600181811c908216806108d157607f821691505b6020821081036108f157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561028c57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d623edfb006a06efd758e7e0b05400675a68874339aba6edfa677b35a29bb23c64736f6c63430008110033", 294 | "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100c95760003560e01c80633950935111610081578063a457c2d71161005b578063a457c2d714610187578063a9059cbb1461019a578063dd62ed3e146101ad57600080fd5b8063395093511461014357806370a082311461015657806395d89b411461017f57600080fd5b806318160ddd116100b257806318160ddd1461010f57806323b872dd14610121578063313ce5671461013457600080fd5b806306fdde03146100ce578063095ea7b3146100ec575b600080fd5b6100d66101e6565b6040516100e39190610798565b60405180910390f35b6100ff6100fa366004610802565b610278565b60405190151581526020016100e3565b6002545b6040519081526020016100e3565b6100ff61012f36600461082c565b610292565b604051601281526020016100e3565b6100ff610151366004610802565b6102b6565b610113610164366004610868565b6001600160a01b031660009081526020819052604090205490565b6100d66102f5565b6100ff610195366004610802565b610304565b6100ff6101a8366004610802565b6103b3565b6101136101bb36600461088a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101f5906108bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610221906108bd565b801561026e5780601f106102435761010080835404028352916020019161026e565b820191906000526020600020905b81548152906001019060200180831161025157829003601f168201915b5050505050905090565b6000336102868185856103c1565b60019150505b92915050565b6000336102a0858285610519565b6102ab8585856105ab565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061028690829086906102f09087906108f7565b6103c1565b6060600480546101f5906108bd565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156103a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102ab82868684036103c1565b6000336102868185856105ab565b6001600160a01b03831661043c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166104b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105a557818110156105985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161039d565b6105a584848484036103c1565b50505050565b6001600160a01b0383166106275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b0382166106a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b038316600090815260208190526040902054818110156107325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161039d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36105a5565b600060208083528351808285015260005b818110156107c5578581018301518582016040015282016107a9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146107fd57600080fd5b919050565b6000806040838503121561081557600080fd5b61081e836107e6565b946020939093013593505050565b60008060006060848603121561084157600080fd5b61084a846107e6565b9250610858602085016107e6565b9150604084013590509250925092565b60006020828403121561087a57600080fd5b610883826107e6565b9392505050565b6000806040838503121561089d57600080fd5b6108a6836107e6565b91506108b4602084016107e6565b90509250929050565b600181811c908216806108d157607f821691505b6020821081036108f157634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561028c57634e487b7160e01b600052601160045260246000fdfea2646970667358221220d623edfb006a06efd758e7e0b05400675a68874339aba6edfa677b35a29bb23c64736f6c63430008110033", 295 | "linkReferences": {}, 296 | "deployedLinkReferences": {} 297 | } 298 | -------------------------------------------------------------------------------- /ens-domain-owner/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ethersproject/abi@5.7.0", "@ethersproject/abi@^5.7.0": 6 | version "5.7.0" 7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" 8 | integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== 9 | dependencies: 10 | "@ethersproject/address" "^5.7.0" 11 | "@ethersproject/bignumber" "^5.7.0" 12 | "@ethersproject/bytes" "^5.7.0" 13 | "@ethersproject/constants" "^5.7.0" 14 | "@ethersproject/hash" "^5.7.0" 15 | "@ethersproject/keccak256" "^5.7.0" 16 | "@ethersproject/logger" "^5.7.0" 17 | "@ethersproject/properties" "^5.7.0" 18 | "@ethersproject/strings" "^5.7.0" 19 | 20 | "@ethersproject/abstract-provider@5.7.0", "@ethersproject/abstract-provider@^5.7.0": 21 | version "5.7.0" 22 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" 23 | integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== 24 | dependencies: 25 | "@ethersproject/bignumber" "^5.7.0" 26 | "@ethersproject/bytes" "^5.7.0" 27 | "@ethersproject/logger" "^5.7.0" 28 | "@ethersproject/networks" "^5.7.0" 29 | "@ethersproject/properties" "^5.7.0" 30 | "@ethersproject/transactions" "^5.7.0" 31 | "@ethersproject/web" "^5.7.0" 32 | 33 | "@ethersproject/abstract-signer@5.7.0", "@ethersproject/abstract-signer@^5.7.0": 34 | version "5.7.0" 35 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" 36 | integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== 37 | dependencies: 38 | "@ethersproject/abstract-provider" "^5.7.0" 39 | "@ethersproject/bignumber" "^5.7.0" 40 | "@ethersproject/bytes" "^5.7.0" 41 | "@ethersproject/logger" "^5.7.0" 42 | "@ethersproject/properties" "^5.7.0" 43 | 44 | "@ethersproject/address@5.7.0", "@ethersproject/address@^5.7.0": 45 | version "5.7.0" 46 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" 47 | integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== 48 | dependencies: 49 | "@ethersproject/bignumber" "^5.7.0" 50 | "@ethersproject/bytes" "^5.7.0" 51 | "@ethersproject/keccak256" "^5.7.0" 52 | "@ethersproject/logger" "^5.7.0" 53 | "@ethersproject/rlp" "^5.7.0" 54 | 55 | "@ethersproject/base64@5.7.0", "@ethersproject/base64@^5.7.0": 56 | version "5.7.0" 57 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" 58 | integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== 59 | dependencies: 60 | "@ethersproject/bytes" "^5.7.0" 61 | 62 | "@ethersproject/basex@5.7.0", "@ethersproject/basex@^5.7.0": 63 | version "5.7.0" 64 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" 65 | integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== 66 | dependencies: 67 | "@ethersproject/bytes" "^5.7.0" 68 | "@ethersproject/properties" "^5.7.0" 69 | 70 | "@ethersproject/bignumber@5.7.0", "@ethersproject/bignumber@^5.7.0": 71 | version "5.7.0" 72 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" 73 | integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== 74 | dependencies: 75 | "@ethersproject/bytes" "^5.7.0" 76 | "@ethersproject/logger" "^5.7.0" 77 | bn.js "^5.2.1" 78 | 79 | "@ethersproject/bytes@5.7.0", "@ethersproject/bytes@^5.7.0": 80 | version "5.7.0" 81 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" 82 | integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== 83 | dependencies: 84 | "@ethersproject/logger" "^5.7.0" 85 | 86 | "@ethersproject/constants@5.7.0", "@ethersproject/constants@^5.7.0": 87 | version "5.7.0" 88 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" 89 | integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== 90 | dependencies: 91 | "@ethersproject/bignumber" "^5.7.0" 92 | 93 | "@ethersproject/contracts@5.7.0": 94 | version "5.7.0" 95 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.7.0.tgz#c305e775abd07e48aa590e1a877ed5c316f8bd1e" 96 | integrity sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg== 97 | dependencies: 98 | "@ethersproject/abi" "^5.7.0" 99 | "@ethersproject/abstract-provider" "^5.7.0" 100 | "@ethersproject/abstract-signer" "^5.7.0" 101 | "@ethersproject/address" "^5.7.0" 102 | "@ethersproject/bignumber" "^5.7.0" 103 | "@ethersproject/bytes" "^5.7.0" 104 | "@ethersproject/constants" "^5.7.0" 105 | "@ethersproject/logger" "^5.7.0" 106 | "@ethersproject/properties" "^5.7.0" 107 | "@ethersproject/transactions" "^5.7.0" 108 | 109 | "@ethersproject/hash@5.7.0", "@ethersproject/hash@^5.7.0": 110 | version "5.7.0" 111 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" 112 | integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== 113 | dependencies: 114 | "@ethersproject/abstract-signer" "^5.7.0" 115 | "@ethersproject/address" "^5.7.0" 116 | "@ethersproject/base64" "^5.7.0" 117 | "@ethersproject/bignumber" "^5.7.0" 118 | "@ethersproject/bytes" "^5.7.0" 119 | "@ethersproject/keccak256" "^5.7.0" 120 | "@ethersproject/logger" "^5.7.0" 121 | "@ethersproject/properties" "^5.7.0" 122 | "@ethersproject/strings" "^5.7.0" 123 | 124 | "@ethersproject/hdnode@5.7.0", "@ethersproject/hdnode@^5.7.0": 125 | version "5.7.0" 126 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" 127 | integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== 128 | dependencies: 129 | "@ethersproject/abstract-signer" "^5.7.0" 130 | "@ethersproject/basex" "^5.7.0" 131 | "@ethersproject/bignumber" "^5.7.0" 132 | "@ethersproject/bytes" "^5.7.0" 133 | "@ethersproject/logger" "^5.7.0" 134 | "@ethersproject/pbkdf2" "^5.7.0" 135 | "@ethersproject/properties" "^5.7.0" 136 | "@ethersproject/sha2" "^5.7.0" 137 | "@ethersproject/signing-key" "^5.7.0" 138 | "@ethersproject/strings" "^5.7.0" 139 | "@ethersproject/transactions" "^5.7.0" 140 | "@ethersproject/wordlists" "^5.7.0" 141 | 142 | "@ethersproject/json-wallets@5.7.0", "@ethersproject/json-wallets@^5.7.0": 143 | version "5.7.0" 144 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" 145 | integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== 146 | dependencies: 147 | "@ethersproject/abstract-signer" "^5.7.0" 148 | "@ethersproject/address" "^5.7.0" 149 | "@ethersproject/bytes" "^5.7.0" 150 | "@ethersproject/hdnode" "^5.7.0" 151 | "@ethersproject/keccak256" "^5.7.0" 152 | "@ethersproject/logger" "^5.7.0" 153 | "@ethersproject/pbkdf2" "^5.7.0" 154 | "@ethersproject/properties" "^5.7.0" 155 | "@ethersproject/random" "^5.7.0" 156 | "@ethersproject/strings" "^5.7.0" 157 | "@ethersproject/transactions" "^5.7.0" 158 | aes-js "3.0.0" 159 | scrypt-js "3.0.1" 160 | 161 | "@ethersproject/keccak256@5.7.0", "@ethersproject/keccak256@^5.7.0": 162 | version "5.7.0" 163 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" 164 | integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== 165 | dependencies: 166 | "@ethersproject/bytes" "^5.7.0" 167 | js-sha3 "0.8.0" 168 | 169 | "@ethersproject/logger@5.7.0", "@ethersproject/logger@^5.7.0": 170 | version "5.7.0" 171 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" 172 | integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== 173 | 174 | "@ethersproject/networks@5.7.1", "@ethersproject/networks@^5.7.0": 175 | version "5.7.1" 176 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" 177 | integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== 178 | dependencies: 179 | "@ethersproject/logger" "^5.7.0" 180 | 181 | "@ethersproject/pbkdf2@5.7.0", "@ethersproject/pbkdf2@^5.7.0": 182 | version "5.7.0" 183 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" 184 | integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== 185 | dependencies: 186 | "@ethersproject/bytes" "^5.7.0" 187 | "@ethersproject/sha2" "^5.7.0" 188 | 189 | "@ethersproject/properties@5.7.0", "@ethersproject/properties@^5.7.0": 190 | version "5.7.0" 191 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" 192 | integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== 193 | dependencies: 194 | "@ethersproject/logger" "^5.7.0" 195 | 196 | "@ethersproject/providers@5.7.2": 197 | version "5.7.2" 198 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.7.2.tgz#f8b1a4f275d7ce58cf0a2eec222269a08beb18cb" 199 | integrity sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg== 200 | dependencies: 201 | "@ethersproject/abstract-provider" "^5.7.0" 202 | "@ethersproject/abstract-signer" "^5.7.0" 203 | "@ethersproject/address" "^5.7.0" 204 | "@ethersproject/base64" "^5.7.0" 205 | "@ethersproject/basex" "^5.7.0" 206 | "@ethersproject/bignumber" "^5.7.0" 207 | "@ethersproject/bytes" "^5.7.0" 208 | "@ethersproject/constants" "^5.7.0" 209 | "@ethersproject/hash" "^5.7.0" 210 | "@ethersproject/logger" "^5.7.0" 211 | "@ethersproject/networks" "^5.7.0" 212 | "@ethersproject/properties" "^5.7.0" 213 | "@ethersproject/random" "^5.7.0" 214 | "@ethersproject/rlp" "^5.7.0" 215 | "@ethersproject/sha2" "^5.7.0" 216 | "@ethersproject/strings" "^5.7.0" 217 | "@ethersproject/transactions" "^5.7.0" 218 | "@ethersproject/web" "^5.7.0" 219 | bech32 "1.1.4" 220 | ws "7.4.6" 221 | 222 | "@ethersproject/random@5.7.0", "@ethersproject/random@^5.7.0": 223 | version "5.7.0" 224 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" 225 | integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== 226 | dependencies: 227 | "@ethersproject/bytes" "^5.7.0" 228 | "@ethersproject/logger" "^5.7.0" 229 | 230 | "@ethersproject/rlp@5.7.0", "@ethersproject/rlp@^5.7.0": 231 | version "5.7.0" 232 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" 233 | integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== 234 | dependencies: 235 | "@ethersproject/bytes" "^5.7.0" 236 | "@ethersproject/logger" "^5.7.0" 237 | 238 | "@ethersproject/sha2@5.7.0", "@ethersproject/sha2@^5.7.0": 239 | version "5.7.0" 240 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" 241 | integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== 242 | dependencies: 243 | "@ethersproject/bytes" "^5.7.0" 244 | "@ethersproject/logger" "^5.7.0" 245 | hash.js "1.1.7" 246 | 247 | "@ethersproject/signing-key@5.7.0", "@ethersproject/signing-key@^5.7.0": 248 | version "5.7.0" 249 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" 250 | integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== 251 | dependencies: 252 | "@ethersproject/bytes" "^5.7.0" 253 | "@ethersproject/logger" "^5.7.0" 254 | "@ethersproject/properties" "^5.7.0" 255 | bn.js "^5.2.1" 256 | elliptic "6.5.4" 257 | hash.js "1.1.7" 258 | 259 | "@ethersproject/solidity@5.7.0": 260 | version "5.7.0" 261 | resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.7.0.tgz#5e9c911d8a2acce2a5ebb48a5e2e0af20b631cb8" 262 | integrity sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA== 263 | dependencies: 264 | "@ethersproject/bignumber" "^5.7.0" 265 | "@ethersproject/bytes" "^5.7.0" 266 | "@ethersproject/keccak256" "^5.7.0" 267 | "@ethersproject/logger" "^5.7.0" 268 | "@ethersproject/sha2" "^5.7.0" 269 | "@ethersproject/strings" "^5.7.0" 270 | 271 | "@ethersproject/strings@5.7.0", "@ethersproject/strings@^5.7.0": 272 | version "5.7.0" 273 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" 274 | integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== 275 | dependencies: 276 | "@ethersproject/bytes" "^5.7.0" 277 | "@ethersproject/constants" "^5.7.0" 278 | "@ethersproject/logger" "^5.7.0" 279 | 280 | "@ethersproject/transactions@5.7.0", "@ethersproject/transactions@^5.7.0": 281 | version "5.7.0" 282 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" 283 | integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== 284 | dependencies: 285 | "@ethersproject/address" "^5.7.0" 286 | "@ethersproject/bignumber" "^5.7.0" 287 | "@ethersproject/bytes" "^5.7.0" 288 | "@ethersproject/constants" "^5.7.0" 289 | "@ethersproject/keccak256" "^5.7.0" 290 | "@ethersproject/logger" "^5.7.0" 291 | "@ethersproject/properties" "^5.7.0" 292 | "@ethersproject/rlp" "^5.7.0" 293 | "@ethersproject/signing-key" "^5.7.0" 294 | 295 | "@ethersproject/units@5.7.0": 296 | version "5.7.0" 297 | resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.7.0.tgz#637b563d7e14f42deeee39245275d477aae1d8b1" 298 | integrity sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg== 299 | dependencies: 300 | "@ethersproject/bignumber" "^5.7.0" 301 | "@ethersproject/constants" "^5.7.0" 302 | "@ethersproject/logger" "^5.7.0" 303 | 304 | "@ethersproject/wallet@5.7.0": 305 | version "5.7.0" 306 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.7.0.tgz#4e5d0790d96fe21d61d38fb40324e6c7ef350b2d" 307 | integrity sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA== 308 | dependencies: 309 | "@ethersproject/abstract-provider" "^5.7.0" 310 | "@ethersproject/abstract-signer" "^5.7.0" 311 | "@ethersproject/address" "^5.7.0" 312 | "@ethersproject/bignumber" "^5.7.0" 313 | "@ethersproject/bytes" "^5.7.0" 314 | "@ethersproject/hash" "^5.7.0" 315 | "@ethersproject/hdnode" "^5.7.0" 316 | "@ethersproject/json-wallets" "^5.7.0" 317 | "@ethersproject/keccak256" "^5.7.0" 318 | "@ethersproject/logger" "^5.7.0" 319 | "@ethersproject/properties" "^5.7.0" 320 | "@ethersproject/random" "^5.7.0" 321 | "@ethersproject/signing-key" "^5.7.0" 322 | "@ethersproject/transactions" "^5.7.0" 323 | "@ethersproject/wordlists" "^5.7.0" 324 | 325 | "@ethersproject/web@5.7.1", "@ethersproject/web@^5.7.0": 326 | version "5.7.1" 327 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" 328 | integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== 329 | dependencies: 330 | "@ethersproject/base64" "^5.7.0" 331 | "@ethersproject/bytes" "^5.7.0" 332 | "@ethersproject/logger" "^5.7.0" 333 | "@ethersproject/properties" "^5.7.0" 334 | "@ethersproject/strings" "^5.7.0" 335 | 336 | "@ethersproject/wordlists@5.7.0", "@ethersproject/wordlists@^5.7.0": 337 | version "5.7.0" 338 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" 339 | integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== 340 | dependencies: 341 | "@ethersproject/bytes" "^5.7.0" 342 | "@ethersproject/hash" "^5.7.0" 343 | "@ethersproject/logger" "^5.7.0" 344 | "@ethersproject/properties" "^5.7.0" 345 | "@ethersproject/strings" "^5.7.0" 346 | 347 | aes-js@3.0.0: 348 | version "3.0.0" 349 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" 350 | integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== 351 | 352 | bech32@1.1.4: 353 | version "1.1.4" 354 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 355 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 356 | 357 | bn.js@^4.11.9: 358 | version "4.12.0" 359 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 360 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 361 | 362 | bn.js@^5.2.1: 363 | version "5.2.1" 364 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 365 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 366 | 367 | brorand@^1.1.0: 368 | version "1.1.0" 369 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 370 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 371 | 372 | elliptic@6.5.4: 373 | version "6.5.4" 374 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 375 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 376 | dependencies: 377 | bn.js "^4.11.9" 378 | brorand "^1.1.0" 379 | hash.js "^1.0.0" 380 | hmac-drbg "^1.0.1" 381 | inherits "^2.0.4" 382 | minimalistic-assert "^1.0.1" 383 | minimalistic-crypto-utils "^1.0.1" 384 | 385 | ethers@^5.7.2: 386 | version "5.7.2" 387 | resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e" 388 | integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg== 389 | dependencies: 390 | "@ethersproject/abi" "5.7.0" 391 | "@ethersproject/abstract-provider" "5.7.0" 392 | "@ethersproject/abstract-signer" "5.7.0" 393 | "@ethersproject/address" "5.7.0" 394 | "@ethersproject/base64" "5.7.0" 395 | "@ethersproject/basex" "5.7.0" 396 | "@ethersproject/bignumber" "5.7.0" 397 | "@ethersproject/bytes" "5.7.0" 398 | "@ethersproject/constants" "5.7.0" 399 | "@ethersproject/contracts" "5.7.0" 400 | "@ethersproject/hash" "5.7.0" 401 | "@ethersproject/hdnode" "5.7.0" 402 | "@ethersproject/json-wallets" "5.7.0" 403 | "@ethersproject/keccak256" "5.7.0" 404 | "@ethersproject/logger" "5.7.0" 405 | "@ethersproject/networks" "5.7.1" 406 | "@ethersproject/pbkdf2" "5.7.0" 407 | "@ethersproject/properties" "5.7.0" 408 | "@ethersproject/providers" "5.7.2" 409 | "@ethersproject/random" "5.7.0" 410 | "@ethersproject/rlp" "5.7.0" 411 | "@ethersproject/sha2" "5.7.0" 412 | "@ethersproject/signing-key" "5.7.0" 413 | "@ethersproject/solidity" "5.7.0" 414 | "@ethersproject/strings" "5.7.0" 415 | "@ethersproject/transactions" "5.7.0" 416 | "@ethersproject/units" "5.7.0" 417 | "@ethersproject/wallet" "5.7.0" 418 | "@ethersproject/web" "5.7.1" 419 | "@ethersproject/wordlists" "5.7.0" 420 | 421 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 422 | version "1.1.7" 423 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 424 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 425 | dependencies: 426 | inherits "^2.0.3" 427 | minimalistic-assert "^1.0.1" 428 | 429 | hmac-drbg@^1.0.1: 430 | version "1.0.1" 431 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 432 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 433 | dependencies: 434 | hash.js "^1.0.3" 435 | minimalistic-assert "^1.0.0" 436 | minimalistic-crypto-utils "^1.0.1" 437 | 438 | inherits@^2.0.3, inherits@^2.0.4: 439 | version "2.0.4" 440 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 441 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 442 | 443 | js-sha3@0.8.0: 444 | version "0.8.0" 445 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 446 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 447 | 448 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 449 | version "1.0.1" 450 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 451 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 452 | 453 | minimalistic-crypto-utils@^1.0.1: 454 | version "1.0.1" 455 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 456 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 457 | 458 | scrypt-js@3.0.1: 459 | version "3.0.1" 460 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" 461 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== 462 | 463 | ws@7.4.6: 464 | version "7.4.6" 465 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 466 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 467 | -------------------------------------------------------------------------------- /transfer-stable/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ethersproject/abi@5.4.1": 6 | version "5.4.1" 7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b" 8 | integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg== 9 | dependencies: 10 | "@ethersproject/address" "^5.4.0" 11 | "@ethersproject/bignumber" "^5.4.0" 12 | "@ethersproject/bytes" "^5.4.0" 13 | "@ethersproject/constants" "^5.4.0" 14 | "@ethersproject/hash" "^5.4.0" 15 | "@ethersproject/keccak256" "^5.4.0" 16 | "@ethersproject/logger" "^5.4.0" 17 | "@ethersproject/properties" "^5.4.0" 18 | "@ethersproject/strings" "^5.4.0" 19 | 20 | "@ethersproject/abi@^5.4.0": 21 | version "5.7.0" 22 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" 23 | integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== 24 | dependencies: 25 | "@ethersproject/address" "^5.7.0" 26 | "@ethersproject/bignumber" "^5.7.0" 27 | "@ethersproject/bytes" "^5.7.0" 28 | "@ethersproject/constants" "^5.7.0" 29 | "@ethersproject/hash" "^5.7.0" 30 | "@ethersproject/keccak256" "^5.7.0" 31 | "@ethersproject/logger" "^5.7.0" 32 | "@ethersproject/properties" "^5.7.0" 33 | "@ethersproject/strings" "^5.7.0" 34 | 35 | "@ethersproject/abstract-provider@5.4.1": 36 | version "5.4.1" 37 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e" 38 | integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ== 39 | dependencies: 40 | "@ethersproject/bignumber" "^5.4.0" 41 | "@ethersproject/bytes" "^5.4.0" 42 | "@ethersproject/logger" "^5.4.0" 43 | "@ethersproject/networks" "^5.4.0" 44 | "@ethersproject/properties" "^5.4.0" 45 | "@ethersproject/transactions" "^5.4.0" 46 | "@ethersproject/web" "^5.4.0" 47 | 48 | "@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@^5.7.0": 49 | version "5.7.0" 50 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" 51 | integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== 52 | dependencies: 53 | "@ethersproject/bignumber" "^5.7.0" 54 | "@ethersproject/bytes" "^5.7.0" 55 | "@ethersproject/logger" "^5.7.0" 56 | "@ethersproject/networks" "^5.7.0" 57 | "@ethersproject/properties" "^5.7.0" 58 | "@ethersproject/transactions" "^5.7.0" 59 | "@ethersproject/web" "^5.7.0" 60 | 61 | "@ethersproject/abstract-signer@5.4.1": 62 | version "5.4.1" 63 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81" 64 | integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA== 65 | dependencies: 66 | "@ethersproject/abstract-provider" "^5.4.0" 67 | "@ethersproject/bignumber" "^5.4.0" 68 | "@ethersproject/bytes" "^5.4.0" 69 | "@ethersproject/logger" "^5.4.0" 70 | "@ethersproject/properties" "^5.4.0" 71 | 72 | "@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@^5.7.0": 73 | version "5.7.0" 74 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" 75 | integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== 76 | dependencies: 77 | "@ethersproject/abstract-provider" "^5.7.0" 78 | "@ethersproject/bignumber" "^5.7.0" 79 | "@ethersproject/bytes" "^5.7.0" 80 | "@ethersproject/logger" "^5.7.0" 81 | "@ethersproject/properties" "^5.7.0" 82 | 83 | "@ethersproject/address@5.4.0": 84 | version "5.4.0" 85 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3" 86 | integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q== 87 | dependencies: 88 | "@ethersproject/bignumber" "^5.4.0" 89 | "@ethersproject/bytes" "^5.4.0" 90 | "@ethersproject/keccak256" "^5.4.0" 91 | "@ethersproject/logger" "^5.4.0" 92 | "@ethersproject/rlp" "^5.4.0" 93 | 94 | "@ethersproject/address@^5.4.0", "@ethersproject/address@^5.7.0": 95 | version "5.7.0" 96 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" 97 | integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== 98 | dependencies: 99 | "@ethersproject/bignumber" "^5.7.0" 100 | "@ethersproject/bytes" "^5.7.0" 101 | "@ethersproject/keccak256" "^5.7.0" 102 | "@ethersproject/logger" "^5.7.0" 103 | "@ethersproject/rlp" "^5.7.0" 104 | 105 | "@ethersproject/base64@5.4.0": 106 | version "5.4.0" 107 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a" 108 | integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ== 109 | dependencies: 110 | "@ethersproject/bytes" "^5.4.0" 111 | 112 | "@ethersproject/base64@^5.4.0", "@ethersproject/base64@^5.7.0": 113 | version "5.7.0" 114 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" 115 | integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== 116 | dependencies: 117 | "@ethersproject/bytes" "^5.7.0" 118 | 119 | "@ethersproject/basex@5.4.0": 120 | version "5.4.0" 121 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6" 122 | integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg== 123 | dependencies: 124 | "@ethersproject/bytes" "^5.4.0" 125 | "@ethersproject/properties" "^5.4.0" 126 | 127 | "@ethersproject/basex@^5.4.0", "@ethersproject/basex@^5.7.0": 128 | version "5.7.0" 129 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" 130 | integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== 131 | dependencies: 132 | "@ethersproject/bytes" "^5.7.0" 133 | "@ethersproject/properties" "^5.7.0" 134 | 135 | "@ethersproject/bignumber@5.4.1": 136 | version "5.4.1" 137 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d" 138 | integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg== 139 | dependencies: 140 | "@ethersproject/bytes" "^5.4.0" 141 | "@ethersproject/logger" "^5.4.0" 142 | bn.js "^4.11.9" 143 | 144 | "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@^5.7.0": 145 | version "5.7.0" 146 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" 147 | integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== 148 | dependencies: 149 | "@ethersproject/bytes" "^5.7.0" 150 | "@ethersproject/logger" "^5.7.0" 151 | bn.js "^5.2.1" 152 | 153 | "@ethersproject/bytes@5.4.0": 154 | version "5.4.0" 155 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e" 156 | integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA== 157 | dependencies: 158 | "@ethersproject/logger" "^5.4.0" 159 | 160 | "@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@^5.7.0": 161 | version "5.7.0" 162 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" 163 | integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== 164 | dependencies: 165 | "@ethersproject/logger" "^5.7.0" 166 | 167 | "@ethersproject/constants@5.4.0": 168 | version "5.4.0" 169 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a" 170 | integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q== 171 | dependencies: 172 | "@ethersproject/bignumber" "^5.4.0" 173 | 174 | "@ethersproject/constants@^5.4.0", "@ethersproject/constants@^5.7.0": 175 | version "5.7.0" 176 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" 177 | integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== 178 | dependencies: 179 | "@ethersproject/bignumber" "^5.7.0" 180 | 181 | "@ethersproject/contracts@5.4.1": 182 | version "5.4.1" 183 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.4.1.tgz#3eb4f35b7fe60a962a75804ada2746494df3e470" 184 | integrity sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w== 185 | dependencies: 186 | "@ethersproject/abi" "^5.4.0" 187 | "@ethersproject/abstract-provider" "^5.4.0" 188 | "@ethersproject/abstract-signer" "^5.4.0" 189 | "@ethersproject/address" "^5.4.0" 190 | "@ethersproject/bignumber" "^5.4.0" 191 | "@ethersproject/bytes" "^5.4.0" 192 | "@ethersproject/constants" "^5.4.0" 193 | "@ethersproject/logger" "^5.4.0" 194 | "@ethersproject/properties" "^5.4.0" 195 | "@ethersproject/transactions" "^5.4.0" 196 | 197 | "@ethersproject/hash@5.4.0": 198 | version "5.4.0" 199 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0" 200 | integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA== 201 | dependencies: 202 | "@ethersproject/abstract-signer" "^5.4.0" 203 | "@ethersproject/address" "^5.4.0" 204 | "@ethersproject/bignumber" "^5.4.0" 205 | "@ethersproject/bytes" "^5.4.0" 206 | "@ethersproject/keccak256" "^5.4.0" 207 | "@ethersproject/logger" "^5.4.0" 208 | "@ethersproject/properties" "^5.4.0" 209 | "@ethersproject/strings" "^5.4.0" 210 | 211 | "@ethersproject/hash@^5.4.0", "@ethersproject/hash@^5.7.0": 212 | version "5.7.0" 213 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" 214 | integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== 215 | dependencies: 216 | "@ethersproject/abstract-signer" "^5.7.0" 217 | "@ethersproject/address" "^5.7.0" 218 | "@ethersproject/base64" "^5.7.0" 219 | "@ethersproject/bignumber" "^5.7.0" 220 | "@ethersproject/bytes" "^5.7.0" 221 | "@ethersproject/keccak256" "^5.7.0" 222 | "@ethersproject/logger" "^5.7.0" 223 | "@ethersproject/properties" "^5.7.0" 224 | "@ethersproject/strings" "^5.7.0" 225 | 226 | "@ethersproject/hdnode@5.4.0": 227 | version "5.4.0" 228 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.4.0.tgz#4bc9999b9a12eb5ce80c5faa83114a57e4107cac" 229 | integrity sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q== 230 | dependencies: 231 | "@ethersproject/abstract-signer" "^5.4.0" 232 | "@ethersproject/basex" "^5.4.0" 233 | "@ethersproject/bignumber" "^5.4.0" 234 | "@ethersproject/bytes" "^5.4.0" 235 | "@ethersproject/logger" "^5.4.0" 236 | "@ethersproject/pbkdf2" "^5.4.0" 237 | "@ethersproject/properties" "^5.4.0" 238 | "@ethersproject/sha2" "^5.4.0" 239 | "@ethersproject/signing-key" "^5.4.0" 240 | "@ethersproject/strings" "^5.4.0" 241 | "@ethersproject/transactions" "^5.4.0" 242 | "@ethersproject/wordlists" "^5.4.0" 243 | 244 | "@ethersproject/hdnode@^5.4.0", "@ethersproject/hdnode@^5.7.0": 245 | version "5.7.0" 246 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" 247 | integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== 248 | dependencies: 249 | "@ethersproject/abstract-signer" "^5.7.0" 250 | "@ethersproject/basex" "^5.7.0" 251 | "@ethersproject/bignumber" "^5.7.0" 252 | "@ethersproject/bytes" "^5.7.0" 253 | "@ethersproject/logger" "^5.7.0" 254 | "@ethersproject/pbkdf2" "^5.7.0" 255 | "@ethersproject/properties" "^5.7.0" 256 | "@ethersproject/sha2" "^5.7.0" 257 | "@ethersproject/signing-key" "^5.7.0" 258 | "@ethersproject/strings" "^5.7.0" 259 | "@ethersproject/transactions" "^5.7.0" 260 | "@ethersproject/wordlists" "^5.7.0" 261 | 262 | "@ethersproject/json-wallets@5.4.0": 263 | version "5.4.0" 264 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz#2583341cfe313fc9856642e8ace3080154145e95" 265 | integrity sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ== 266 | dependencies: 267 | "@ethersproject/abstract-signer" "^5.4.0" 268 | "@ethersproject/address" "^5.4.0" 269 | "@ethersproject/bytes" "^5.4.0" 270 | "@ethersproject/hdnode" "^5.4.0" 271 | "@ethersproject/keccak256" "^5.4.0" 272 | "@ethersproject/logger" "^5.4.0" 273 | "@ethersproject/pbkdf2" "^5.4.0" 274 | "@ethersproject/properties" "^5.4.0" 275 | "@ethersproject/random" "^5.4.0" 276 | "@ethersproject/strings" "^5.4.0" 277 | "@ethersproject/transactions" "^5.4.0" 278 | aes-js "3.0.0" 279 | scrypt-js "3.0.1" 280 | 281 | "@ethersproject/json-wallets@^5.4.0": 282 | version "5.7.0" 283 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" 284 | integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== 285 | dependencies: 286 | "@ethersproject/abstract-signer" "^5.7.0" 287 | "@ethersproject/address" "^5.7.0" 288 | "@ethersproject/bytes" "^5.7.0" 289 | "@ethersproject/hdnode" "^5.7.0" 290 | "@ethersproject/keccak256" "^5.7.0" 291 | "@ethersproject/logger" "^5.7.0" 292 | "@ethersproject/pbkdf2" "^5.7.0" 293 | "@ethersproject/properties" "^5.7.0" 294 | "@ethersproject/random" "^5.7.0" 295 | "@ethersproject/strings" "^5.7.0" 296 | "@ethersproject/transactions" "^5.7.0" 297 | aes-js "3.0.0" 298 | scrypt-js "3.0.1" 299 | 300 | "@ethersproject/keccak256@5.4.0": 301 | version "5.4.0" 302 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318" 303 | integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A== 304 | dependencies: 305 | "@ethersproject/bytes" "^5.4.0" 306 | js-sha3 "0.5.7" 307 | 308 | "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@^5.7.0": 309 | version "5.7.0" 310 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" 311 | integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== 312 | dependencies: 313 | "@ethersproject/bytes" "^5.7.0" 314 | js-sha3 "0.8.0" 315 | 316 | "@ethersproject/logger@5.4.1": 317 | version "5.4.1" 318 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054" 319 | integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A== 320 | 321 | "@ethersproject/logger@^5.4.0", "@ethersproject/logger@^5.7.0": 322 | version "5.7.0" 323 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" 324 | integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== 325 | 326 | "@ethersproject/networks@5.4.2": 327 | version "5.4.2" 328 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35" 329 | integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw== 330 | dependencies: 331 | "@ethersproject/logger" "^5.4.0" 332 | 333 | "@ethersproject/networks@^5.4.0", "@ethersproject/networks@^5.7.0": 334 | version "5.7.1" 335 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" 336 | integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== 337 | dependencies: 338 | "@ethersproject/logger" "^5.7.0" 339 | 340 | "@ethersproject/pbkdf2@5.4.0": 341 | version "5.4.0" 342 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz#ed88782a67fda1594c22d60d0ca911a9d669641c" 343 | integrity sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g== 344 | dependencies: 345 | "@ethersproject/bytes" "^5.4.0" 346 | "@ethersproject/sha2" "^5.4.0" 347 | 348 | "@ethersproject/pbkdf2@^5.4.0", "@ethersproject/pbkdf2@^5.7.0": 349 | version "5.7.0" 350 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" 351 | integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== 352 | dependencies: 353 | "@ethersproject/bytes" "^5.7.0" 354 | "@ethersproject/sha2" "^5.7.0" 355 | 356 | "@ethersproject/properties@5.4.1": 357 | version "5.4.1" 358 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36" 359 | integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w== 360 | dependencies: 361 | "@ethersproject/logger" "^5.4.0" 362 | 363 | "@ethersproject/properties@^5.4.0", "@ethersproject/properties@^5.7.0": 364 | version "5.7.0" 365 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" 366 | integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== 367 | dependencies: 368 | "@ethersproject/logger" "^5.7.0" 369 | 370 | "@ethersproject/providers@5.4.5": 371 | version "5.4.5" 372 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.4.5.tgz#eb2ea2a743a8115f79604a8157233a3a2c832928" 373 | integrity sha512-1GkrvkiAw3Fj28cwi1Sqm8ED1RtERtpdXmRfwIBGmqBSN5MoeRUHuwHPppMtbPayPgpFcvD7/Gdc9doO5fGYgw== 374 | dependencies: 375 | "@ethersproject/abstract-provider" "^5.4.0" 376 | "@ethersproject/abstract-signer" "^5.4.0" 377 | "@ethersproject/address" "^5.4.0" 378 | "@ethersproject/basex" "^5.4.0" 379 | "@ethersproject/bignumber" "^5.4.0" 380 | "@ethersproject/bytes" "^5.4.0" 381 | "@ethersproject/constants" "^5.4.0" 382 | "@ethersproject/hash" "^5.4.0" 383 | "@ethersproject/logger" "^5.4.0" 384 | "@ethersproject/networks" "^5.4.0" 385 | "@ethersproject/properties" "^5.4.0" 386 | "@ethersproject/random" "^5.4.0" 387 | "@ethersproject/rlp" "^5.4.0" 388 | "@ethersproject/sha2" "^5.4.0" 389 | "@ethersproject/strings" "^5.4.0" 390 | "@ethersproject/transactions" "^5.4.0" 391 | "@ethersproject/web" "^5.4.0" 392 | bech32 "1.1.4" 393 | ws "7.4.6" 394 | 395 | "@ethersproject/random@5.4.0": 396 | version "5.4.0" 397 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16" 398 | integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw== 399 | dependencies: 400 | "@ethersproject/bytes" "^5.4.0" 401 | "@ethersproject/logger" "^5.4.0" 402 | 403 | "@ethersproject/random@^5.4.0", "@ethersproject/random@^5.7.0": 404 | version "5.7.0" 405 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" 406 | integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== 407 | dependencies: 408 | "@ethersproject/bytes" "^5.7.0" 409 | "@ethersproject/logger" "^5.7.0" 410 | 411 | "@ethersproject/rlp@5.4.0": 412 | version "5.4.0" 413 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931" 414 | integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg== 415 | dependencies: 416 | "@ethersproject/bytes" "^5.4.0" 417 | "@ethersproject/logger" "^5.4.0" 418 | 419 | "@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@^5.7.0": 420 | version "5.7.0" 421 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" 422 | integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== 423 | dependencies: 424 | "@ethersproject/bytes" "^5.7.0" 425 | "@ethersproject/logger" "^5.7.0" 426 | 427 | "@ethersproject/sha2@5.4.0": 428 | version "5.4.0" 429 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371" 430 | integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg== 431 | dependencies: 432 | "@ethersproject/bytes" "^5.4.0" 433 | "@ethersproject/logger" "^5.4.0" 434 | hash.js "1.1.7" 435 | 436 | "@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@^5.7.0": 437 | version "5.7.0" 438 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" 439 | integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== 440 | dependencies: 441 | "@ethersproject/bytes" "^5.7.0" 442 | "@ethersproject/logger" "^5.7.0" 443 | hash.js "1.1.7" 444 | 445 | "@ethersproject/signing-key@5.4.0": 446 | version "5.4.0" 447 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec" 448 | integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A== 449 | dependencies: 450 | "@ethersproject/bytes" "^5.4.0" 451 | "@ethersproject/logger" "^5.4.0" 452 | "@ethersproject/properties" "^5.4.0" 453 | bn.js "^4.11.9" 454 | elliptic "6.5.4" 455 | hash.js "1.1.7" 456 | 457 | "@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@^5.7.0": 458 | version "5.7.0" 459 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" 460 | integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== 461 | dependencies: 462 | "@ethersproject/bytes" "^5.7.0" 463 | "@ethersproject/logger" "^5.7.0" 464 | "@ethersproject/properties" "^5.7.0" 465 | bn.js "^5.2.1" 466 | elliptic "6.5.4" 467 | hash.js "1.1.7" 468 | 469 | "@ethersproject/solidity@5.4.0": 470 | version "5.4.0" 471 | resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.4.0.tgz#1305e058ea02dc4891df18b33232b11a14ece9ec" 472 | integrity sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ== 473 | dependencies: 474 | "@ethersproject/bignumber" "^5.4.0" 475 | "@ethersproject/bytes" "^5.4.0" 476 | "@ethersproject/keccak256" "^5.4.0" 477 | "@ethersproject/sha2" "^5.4.0" 478 | "@ethersproject/strings" "^5.4.0" 479 | 480 | "@ethersproject/strings@5.4.0": 481 | version "5.4.0" 482 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a" 483 | integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA== 484 | dependencies: 485 | "@ethersproject/bytes" "^5.4.0" 486 | "@ethersproject/constants" "^5.4.0" 487 | "@ethersproject/logger" "^5.4.0" 488 | 489 | "@ethersproject/strings@^5.4.0", "@ethersproject/strings@^5.7.0": 490 | version "5.7.0" 491 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" 492 | integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== 493 | dependencies: 494 | "@ethersproject/bytes" "^5.7.0" 495 | "@ethersproject/constants" "^5.7.0" 496 | "@ethersproject/logger" "^5.7.0" 497 | 498 | "@ethersproject/transactions@5.4.0": 499 | version "5.4.0" 500 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0" 501 | integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ== 502 | dependencies: 503 | "@ethersproject/address" "^5.4.0" 504 | "@ethersproject/bignumber" "^5.4.0" 505 | "@ethersproject/bytes" "^5.4.0" 506 | "@ethersproject/constants" "^5.4.0" 507 | "@ethersproject/keccak256" "^5.4.0" 508 | "@ethersproject/logger" "^5.4.0" 509 | "@ethersproject/properties" "^5.4.0" 510 | "@ethersproject/rlp" "^5.4.0" 511 | "@ethersproject/signing-key" "^5.4.0" 512 | 513 | "@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@^5.7.0": 514 | version "5.7.0" 515 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" 516 | integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== 517 | dependencies: 518 | "@ethersproject/address" "^5.7.0" 519 | "@ethersproject/bignumber" "^5.7.0" 520 | "@ethersproject/bytes" "^5.7.0" 521 | "@ethersproject/constants" "^5.7.0" 522 | "@ethersproject/keccak256" "^5.7.0" 523 | "@ethersproject/logger" "^5.7.0" 524 | "@ethersproject/properties" "^5.7.0" 525 | "@ethersproject/rlp" "^5.7.0" 526 | "@ethersproject/signing-key" "^5.7.0" 527 | 528 | "@ethersproject/units@5.4.0": 529 | version "5.4.0" 530 | resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.4.0.tgz#d57477a4498b14b88b10396062c8cbbaf20c79fe" 531 | integrity sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg== 532 | dependencies: 533 | "@ethersproject/bignumber" "^5.4.0" 534 | "@ethersproject/constants" "^5.4.0" 535 | "@ethersproject/logger" "^5.4.0" 536 | 537 | "@ethersproject/wallet@5.4.0": 538 | version "5.4.0" 539 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.4.0.tgz#fa5b59830b42e9be56eadd45a16a2e0933ad9353" 540 | integrity sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ== 541 | dependencies: 542 | "@ethersproject/abstract-provider" "^5.4.0" 543 | "@ethersproject/abstract-signer" "^5.4.0" 544 | "@ethersproject/address" "^5.4.0" 545 | "@ethersproject/bignumber" "^5.4.0" 546 | "@ethersproject/bytes" "^5.4.0" 547 | "@ethersproject/hash" "^5.4.0" 548 | "@ethersproject/hdnode" "^5.4.0" 549 | "@ethersproject/json-wallets" "^5.4.0" 550 | "@ethersproject/keccak256" "^5.4.0" 551 | "@ethersproject/logger" "^5.4.0" 552 | "@ethersproject/properties" "^5.4.0" 553 | "@ethersproject/random" "^5.4.0" 554 | "@ethersproject/signing-key" "^5.4.0" 555 | "@ethersproject/transactions" "^5.4.0" 556 | "@ethersproject/wordlists" "^5.4.0" 557 | 558 | "@ethersproject/web@5.4.0": 559 | version "5.4.0" 560 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f" 561 | integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og== 562 | dependencies: 563 | "@ethersproject/base64" "^5.4.0" 564 | "@ethersproject/bytes" "^5.4.0" 565 | "@ethersproject/logger" "^5.4.0" 566 | "@ethersproject/properties" "^5.4.0" 567 | "@ethersproject/strings" "^5.4.0" 568 | 569 | "@ethersproject/web@^5.4.0", "@ethersproject/web@^5.7.0": 570 | version "5.7.1" 571 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" 572 | integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== 573 | dependencies: 574 | "@ethersproject/base64" "^5.7.0" 575 | "@ethersproject/bytes" "^5.7.0" 576 | "@ethersproject/logger" "^5.7.0" 577 | "@ethersproject/properties" "^5.7.0" 578 | "@ethersproject/strings" "^5.7.0" 579 | 580 | "@ethersproject/wordlists@5.4.0": 581 | version "5.4.0" 582 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.4.0.tgz#f34205ec3bbc9e2c49cadaee774cf0b07e7573d7" 583 | integrity sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA== 584 | dependencies: 585 | "@ethersproject/bytes" "^5.4.0" 586 | "@ethersproject/hash" "^5.4.0" 587 | "@ethersproject/logger" "^5.4.0" 588 | "@ethersproject/properties" "^5.4.0" 589 | "@ethersproject/strings" "^5.4.0" 590 | 591 | "@ethersproject/wordlists@^5.4.0", "@ethersproject/wordlists@^5.7.0": 592 | version "5.7.0" 593 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" 594 | integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== 595 | dependencies: 596 | "@ethersproject/bytes" "^5.7.0" 597 | "@ethersproject/hash" "^5.7.0" 598 | "@ethersproject/logger" "^5.7.0" 599 | "@ethersproject/properties" "^5.7.0" 600 | "@ethersproject/strings" "^5.7.0" 601 | 602 | aes-js@3.0.0: 603 | version "3.0.0" 604 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" 605 | integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== 606 | 607 | bech32@1.1.4: 608 | version "1.1.4" 609 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 610 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 611 | 612 | bn.js@^4.11.9: 613 | version "4.12.0" 614 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 615 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 616 | 617 | bn.js@^5.2.1: 618 | version "5.2.1" 619 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 620 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 621 | 622 | brorand@^1.1.0: 623 | version "1.1.0" 624 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 625 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 626 | 627 | elliptic@6.5.4: 628 | version "6.5.4" 629 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 630 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 631 | dependencies: 632 | bn.js "^4.11.9" 633 | brorand "^1.1.0" 634 | hash.js "^1.0.0" 635 | hmac-drbg "^1.0.1" 636 | inherits "^2.0.4" 637 | minimalistic-assert "^1.0.1" 638 | minimalistic-crypto-utils "^1.0.1" 639 | 640 | ethers@5.4.6: 641 | version "5.4.6" 642 | resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6" 643 | integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ== 644 | dependencies: 645 | "@ethersproject/abi" "5.4.1" 646 | "@ethersproject/abstract-provider" "5.4.1" 647 | "@ethersproject/abstract-signer" "5.4.1" 648 | "@ethersproject/address" "5.4.0" 649 | "@ethersproject/base64" "5.4.0" 650 | "@ethersproject/basex" "5.4.0" 651 | "@ethersproject/bignumber" "5.4.1" 652 | "@ethersproject/bytes" "5.4.0" 653 | "@ethersproject/constants" "5.4.0" 654 | "@ethersproject/contracts" "5.4.1" 655 | "@ethersproject/hash" "5.4.0" 656 | "@ethersproject/hdnode" "5.4.0" 657 | "@ethersproject/json-wallets" "5.4.0" 658 | "@ethersproject/keccak256" "5.4.0" 659 | "@ethersproject/logger" "5.4.1" 660 | "@ethersproject/networks" "5.4.2" 661 | "@ethersproject/pbkdf2" "5.4.0" 662 | "@ethersproject/properties" "5.4.1" 663 | "@ethersproject/providers" "5.4.5" 664 | "@ethersproject/random" "5.4.0" 665 | "@ethersproject/rlp" "5.4.0" 666 | "@ethersproject/sha2" "5.4.0" 667 | "@ethersproject/signing-key" "5.4.0" 668 | "@ethersproject/solidity" "5.4.0" 669 | "@ethersproject/strings" "5.4.0" 670 | "@ethersproject/transactions" "5.4.0" 671 | "@ethersproject/units" "5.4.0" 672 | "@ethersproject/wallet" "5.4.0" 673 | "@ethersproject/web" "5.4.0" 674 | "@ethersproject/wordlists" "5.4.0" 675 | 676 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 677 | version "1.1.7" 678 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 679 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 680 | dependencies: 681 | inherits "^2.0.3" 682 | minimalistic-assert "^1.0.1" 683 | 684 | hmac-drbg@^1.0.1: 685 | version "1.0.1" 686 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 687 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 688 | dependencies: 689 | hash.js "^1.0.3" 690 | minimalistic-assert "^1.0.0" 691 | minimalistic-crypto-utils "^1.0.1" 692 | 693 | inherits@^2.0.3, inherits@^2.0.4: 694 | version "2.0.4" 695 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 696 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 697 | 698 | js-sha3@0.5.7: 699 | version "0.5.7" 700 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" 701 | integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g== 702 | 703 | js-sha3@0.8.0: 704 | version "0.8.0" 705 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 706 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 707 | 708 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 711 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 712 | 713 | minimalistic-crypto-utils@^1.0.1: 714 | version "1.0.1" 715 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 716 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 717 | 718 | scrypt-js@3.0.1: 719 | version "3.0.1" 720 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" 721 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== 722 | 723 | ws@7.4.6: 724 | version "7.4.6" 725 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 726 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 727 | -------------------------------------------------------------------------------- /mint-virtual-tal/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ethersproject/abi@5.4.1": 6 | version "5.4.1" 7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b" 8 | integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg== 9 | dependencies: 10 | "@ethersproject/address" "^5.4.0" 11 | "@ethersproject/bignumber" "^5.4.0" 12 | "@ethersproject/bytes" "^5.4.0" 13 | "@ethersproject/constants" "^5.4.0" 14 | "@ethersproject/hash" "^5.4.0" 15 | "@ethersproject/keccak256" "^5.4.0" 16 | "@ethersproject/logger" "^5.4.0" 17 | "@ethersproject/properties" "^5.4.0" 18 | "@ethersproject/strings" "^5.4.0" 19 | 20 | "@ethersproject/abi@^5.4.0": 21 | version "5.7.0" 22 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" 23 | integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== 24 | dependencies: 25 | "@ethersproject/address" "^5.7.0" 26 | "@ethersproject/bignumber" "^5.7.0" 27 | "@ethersproject/bytes" "^5.7.0" 28 | "@ethersproject/constants" "^5.7.0" 29 | "@ethersproject/hash" "^5.7.0" 30 | "@ethersproject/keccak256" "^5.7.0" 31 | "@ethersproject/logger" "^5.7.0" 32 | "@ethersproject/properties" "^5.7.0" 33 | "@ethersproject/strings" "^5.7.0" 34 | 35 | "@ethersproject/abstract-provider@5.4.1": 36 | version "5.4.1" 37 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e" 38 | integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ== 39 | dependencies: 40 | "@ethersproject/bignumber" "^5.4.0" 41 | "@ethersproject/bytes" "^5.4.0" 42 | "@ethersproject/logger" "^5.4.0" 43 | "@ethersproject/networks" "^5.4.0" 44 | "@ethersproject/properties" "^5.4.0" 45 | "@ethersproject/transactions" "^5.4.0" 46 | "@ethersproject/web" "^5.4.0" 47 | 48 | "@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@^5.7.0": 49 | version "5.7.0" 50 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" 51 | integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== 52 | dependencies: 53 | "@ethersproject/bignumber" "^5.7.0" 54 | "@ethersproject/bytes" "^5.7.0" 55 | "@ethersproject/logger" "^5.7.0" 56 | "@ethersproject/networks" "^5.7.0" 57 | "@ethersproject/properties" "^5.7.0" 58 | "@ethersproject/transactions" "^5.7.0" 59 | "@ethersproject/web" "^5.7.0" 60 | 61 | "@ethersproject/abstract-signer@5.4.1": 62 | version "5.4.1" 63 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81" 64 | integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA== 65 | dependencies: 66 | "@ethersproject/abstract-provider" "^5.4.0" 67 | "@ethersproject/bignumber" "^5.4.0" 68 | "@ethersproject/bytes" "^5.4.0" 69 | "@ethersproject/logger" "^5.4.0" 70 | "@ethersproject/properties" "^5.4.0" 71 | 72 | "@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@^5.7.0": 73 | version "5.7.0" 74 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" 75 | integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== 76 | dependencies: 77 | "@ethersproject/abstract-provider" "^5.7.0" 78 | "@ethersproject/bignumber" "^5.7.0" 79 | "@ethersproject/bytes" "^5.7.0" 80 | "@ethersproject/logger" "^5.7.0" 81 | "@ethersproject/properties" "^5.7.0" 82 | 83 | "@ethersproject/address@5.4.0": 84 | version "5.4.0" 85 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3" 86 | integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q== 87 | dependencies: 88 | "@ethersproject/bignumber" "^5.4.0" 89 | "@ethersproject/bytes" "^5.4.0" 90 | "@ethersproject/keccak256" "^5.4.0" 91 | "@ethersproject/logger" "^5.4.0" 92 | "@ethersproject/rlp" "^5.4.0" 93 | 94 | "@ethersproject/address@^5.4.0", "@ethersproject/address@^5.7.0": 95 | version "5.7.0" 96 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" 97 | integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== 98 | dependencies: 99 | "@ethersproject/bignumber" "^5.7.0" 100 | "@ethersproject/bytes" "^5.7.0" 101 | "@ethersproject/keccak256" "^5.7.0" 102 | "@ethersproject/logger" "^5.7.0" 103 | "@ethersproject/rlp" "^5.7.0" 104 | 105 | "@ethersproject/base64@5.4.0": 106 | version "5.4.0" 107 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a" 108 | integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ== 109 | dependencies: 110 | "@ethersproject/bytes" "^5.4.0" 111 | 112 | "@ethersproject/base64@^5.4.0", "@ethersproject/base64@^5.7.0": 113 | version "5.7.0" 114 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" 115 | integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== 116 | dependencies: 117 | "@ethersproject/bytes" "^5.7.0" 118 | 119 | "@ethersproject/basex@5.4.0": 120 | version "5.4.0" 121 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6" 122 | integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg== 123 | dependencies: 124 | "@ethersproject/bytes" "^5.4.0" 125 | "@ethersproject/properties" "^5.4.0" 126 | 127 | "@ethersproject/basex@^5.4.0", "@ethersproject/basex@^5.7.0": 128 | version "5.7.0" 129 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" 130 | integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== 131 | dependencies: 132 | "@ethersproject/bytes" "^5.7.0" 133 | "@ethersproject/properties" "^5.7.0" 134 | 135 | "@ethersproject/bignumber@5.4.1": 136 | version "5.4.1" 137 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d" 138 | integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg== 139 | dependencies: 140 | "@ethersproject/bytes" "^5.4.0" 141 | "@ethersproject/logger" "^5.4.0" 142 | bn.js "^4.11.9" 143 | 144 | "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@^5.7.0": 145 | version "5.7.0" 146 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" 147 | integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== 148 | dependencies: 149 | "@ethersproject/bytes" "^5.7.0" 150 | "@ethersproject/logger" "^5.7.0" 151 | bn.js "^5.2.1" 152 | 153 | "@ethersproject/bytes@5.4.0": 154 | version "5.4.0" 155 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e" 156 | integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA== 157 | dependencies: 158 | "@ethersproject/logger" "^5.4.0" 159 | 160 | "@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@^5.7.0": 161 | version "5.7.0" 162 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" 163 | integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== 164 | dependencies: 165 | "@ethersproject/logger" "^5.7.0" 166 | 167 | "@ethersproject/constants@5.4.0": 168 | version "5.4.0" 169 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a" 170 | integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q== 171 | dependencies: 172 | "@ethersproject/bignumber" "^5.4.0" 173 | 174 | "@ethersproject/constants@^5.4.0", "@ethersproject/constants@^5.7.0": 175 | version "5.7.0" 176 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" 177 | integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== 178 | dependencies: 179 | "@ethersproject/bignumber" "^5.7.0" 180 | 181 | "@ethersproject/contracts@5.4.1": 182 | version "5.4.1" 183 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.4.1.tgz#3eb4f35b7fe60a962a75804ada2746494df3e470" 184 | integrity sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w== 185 | dependencies: 186 | "@ethersproject/abi" "^5.4.0" 187 | "@ethersproject/abstract-provider" "^5.4.0" 188 | "@ethersproject/abstract-signer" "^5.4.0" 189 | "@ethersproject/address" "^5.4.0" 190 | "@ethersproject/bignumber" "^5.4.0" 191 | "@ethersproject/bytes" "^5.4.0" 192 | "@ethersproject/constants" "^5.4.0" 193 | "@ethersproject/logger" "^5.4.0" 194 | "@ethersproject/properties" "^5.4.0" 195 | "@ethersproject/transactions" "^5.4.0" 196 | 197 | "@ethersproject/hash@5.4.0": 198 | version "5.4.0" 199 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0" 200 | integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA== 201 | dependencies: 202 | "@ethersproject/abstract-signer" "^5.4.0" 203 | "@ethersproject/address" "^5.4.0" 204 | "@ethersproject/bignumber" "^5.4.0" 205 | "@ethersproject/bytes" "^5.4.0" 206 | "@ethersproject/keccak256" "^5.4.0" 207 | "@ethersproject/logger" "^5.4.0" 208 | "@ethersproject/properties" "^5.4.0" 209 | "@ethersproject/strings" "^5.4.0" 210 | 211 | "@ethersproject/hash@^5.4.0", "@ethersproject/hash@^5.7.0": 212 | version "5.7.0" 213 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" 214 | integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== 215 | dependencies: 216 | "@ethersproject/abstract-signer" "^5.7.0" 217 | "@ethersproject/address" "^5.7.0" 218 | "@ethersproject/base64" "^5.7.0" 219 | "@ethersproject/bignumber" "^5.7.0" 220 | "@ethersproject/bytes" "^5.7.0" 221 | "@ethersproject/keccak256" "^5.7.0" 222 | "@ethersproject/logger" "^5.7.0" 223 | "@ethersproject/properties" "^5.7.0" 224 | "@ethersproject/strings" "^5.7.0" 225 | 226 | "@ethersproject/hdnode@5.4.0": 227 | version "5.4.0" 228 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.4.0.tgz#4bc9999b9a12eb5ce80c5faa83114a57e4107cac" 229 | integrity sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q== 230 | dependencies: 231 | "@ethersproject/abstract-signer" "^5.4.0" 232 | "@ethersproject/basex" "^5.4.0" 233 | "@ethersproject/bignumber" "^5.4.0" 234 | "@ethersproject/bytes" "^5.4.0" 235 | "@ethersproject/logger" "^5.4.0" 236 | "@ethersproject/pbkdf2" "^5.4.0" 237 | "@ethersproject/properties" "^5.4.0" 238 | "@ethersproject/sha2" "^5.4.0" 239 | "@ethersproject/signing-key" "^5.4.0" 240 | "@ethersproject/strings" "^5.4.0" 241 | "@ethersproject/transactions" "^5.4.0" 242 | "@ethersproject/wordlists" "^5.4.0" 243 | 244 | "@ethersproject/hdnode@^5.4.0", "@ethersproject/hdnode@^5.7.0": 245 | version "5.7.0" 246 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" 247 | integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== 248 | dependencies: 249 | "@ethersproject/abstract-signer" "^5.7.0" 250 | "@ethersproject/basex" "^5.7.0" 251 | "@ethersproject/bignumber" "^5.7.0" 252 | "@ethersproject/bytes" "^5.7.0" 253 | "@ethersproject/logger" "^5.7.0" 254 | "@ethersproject/pbkdf2" "^5.7.0" 255 | "@ethersproject/properties" "^5.7.0" 256 | "@ethersproject/sha2" "^5.7.0" 257 | "@ethersproject/signing-key" "^5.7.0" 258 | "@ethersproject/strings" "^5.7.0" 259 | "@ethersproject/transactions" "^5.7.0" 260 | "@ethersproject/wordlists" "^5.7.0" 261 | 262 | "@ethersproject/json-wallets@5.4.0": 263 | version "5.4.0" 264 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz#2583341cfe313fc9856642e8ace3080154145e95" 265 | integrity sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ== 266 | dependencies: 267 | "@ethersproject/abstract-signer" "^5.4.0" 268 | "@ethersproject/address" "^5.4.0" 269 | "@ethersproject/bytes" "^5.4.0" 270 | "@ethersproject/hdnode" "^5.4.0" 271 | "@ethersproject/keccak256" "^5.4.0" 272 | "@ethersproject/logger" "^5.4.0" 273 | "@ethersproject/pbkdf2" "^5.4.0" 274 | "@ethersproject/properties" "^5.4.0" 275 | "@ethersproject/random" "^5.4.0" 276 | "@ethersproject/strings" "^5.4.0" 277 | "@ethersproject/transactions" "^5.4.0" 278 | aes-js "3.0.0" 279 | scrypt-js "3.0.1" 280 | 281 | "@ethersproject/json-wallets@^5.4.0": 282 | version "5.7.0" 283 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" 284 | integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== 285 | dependencies: 286 | "@ethersproject/abstract-signer" "^5.7.0" 287 | "@ethersproject/address" "^5.7.0" 288 | "@ethersproject/bytes" "^5.7.0" 289 | "@ethersproject/hdnode" "^5.7.0" 290 | "@ethersproject/keccak256" "^5.7.0" 291 | "@ethersproject/logger" "^5.7.0" 292 | "@ethersproject/pbkdf2" "^5.7.0" 293 | "@ethersproject/properties" "^5.7.0" 294 | "@ethersproject/random" "^5.7.0" 295 | "@ethersproject/strings" "^5.7.0" 296 | "@ethersproject/transactions" "^5.7.0" 297 | aes-js "3.0.0" 298 | scrypt-js "3.0.1" 299 | 300 | "@ethersproject/keccak256@5.4.0": 301 | version "5.4.0" 302 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318" 303 | integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A== 304 | dependencies: 305 | "@ethersproject/bytes" "^5.4.0" 306 | js-sha3 "0.5.7" 307 | 308 | "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@^5.7.0": 309 | version "5.7.0" 310 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" 311 | integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== 312 | dependencies: 313 | "@ethersproject/bytes" "^5.7.0" 314 | js-sha3 "0.8.0" 315 | 316 | "@ethersproject/logger@5.4.1": 317 | version "5.4.1" 318 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054" 319 | integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A== 320 | 321 | "@ethersproject/logger@^5.4.0", "@ethersproject/logger@^5.7.0": 322 | version "5.7.0" 323 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" 324 | integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== 325 | 326 | "@ethersproject/networks@5.4.2": 327 | version "5.4.2" 328 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35" 329 | integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw== 330 | dependencies: 331 | "@ethersproject/logger" "^5.4.0" 332 | 333 | "@ethersproject/networks@^5.4.0", "@ethersproject/networks@^5.7.0": 334 | version "5.7.1" 335 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" 336 | integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== 337 | dependencies: 338 | "@ethersproject/logger" "^5.7.0" 339 | 340 | "@ethersproject/pbkdf2@5.4.0": 341 | version "5.4.0" 342 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz#ed88782a67fda1594c22d60d0ca911a9d669641c" 343 | integrity sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g== 344 | dependencies: 345 | "@ethersproject/bytes" "^5.4.0" 346 | "@ethersproject/sha2" "^5.4.0" 347 | 348 | "@ethersproject/pbkdf2@^5.4.0", "@ethersproject/pbkdf2@^5.7.0": 349 | version "5.7.0" 350 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" 351 | integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== 352 | dependencies: 353 | "@ethersproject/bytes" "^5.7.0" 354 | "@ethersproject/sha2" "^5.7.0" 355 | 356 | "@ethersproject/properties@5.4.1": 357 | version "5.4.1" 358 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36" 359 | integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w== 360 | dependencies: 361 | "@ethersproject/logger" "^5.4.0" 362 | 363 | "@ethersproject/properties@^5.4.0", "@ethersproject/properties@^5.7.0": 364 | version "5.7.0" 365 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" 366 | integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== 367 | dependencies: 368 | "@ethersproject/logger" "^5.7.0" 369 | 370 | "@ethersproject/providers@5.4.5": 371 | version "5.4.5" 372 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.4.5.tgz#eb2ea2a743a8115f79604a8157233a3a2c832928" 373 | integrity sha512-1GkrvkiAw3Fj28cwi1Sqm8ED1RtERtpdXmRfwIBGmqBSN5MoeRUHuwHPppMtbPayPgpFcvD7/Gdc9doO5fGYgw== 374 | dependencies: 375 | "@ethersproject/abstract-provider" "^5.4.0" 376 | "@ethersproject/abstract-signer" "^5.4.0" 377 | "@ethersproject/address" "^5.4.0" 378 | "@ethersproject/basex" "^5.4.0" 379 | "@ethersproject/bignumber" "^5.4.0" 380 | "@ethersproject/bytes" "^5.4.0" 381 | "@ethersproject/constants" "^5.4.0" 382 | "@ethersproject/hash" "^5.4.0" 383 | "@ethersproject/logger" "^5.4.0" 384 | "@ethersproject/networks" "^5.4.0" 385 | "@ethersproject/properties" "^5.4.0" 386 | "@ethersproject/random" "^5.4.0" 387 | "@ethersproject/rlp" "^5.4.0" 388 | "@ethersproject/sha2" "^5.4.0" 389 | "@ethersproject/strings" "^5.4.0" 390 | "@ethersproject/transactions" "^5.4.0" 391 | "@ethersproject/web" "^5.4.0" 392 | bech32 "1.1.4" 393 | ws "7.4.6" 394 | 395 | "@ethersproject/random@5.4.0": 396 | version "5.4.0" 397 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16" 398 | integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw== 399 | dependencies: 400 | "@ethersproject/bytes" "^5.4.0" 401 | "@ethersproject/logger" "^5.4.0" 402 | 403 | "@ethersproject/random@^5.4.0", "@ethersproject/random@^5.7.0": 404 | version "5.7.0" 405 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" 406 | integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== 407 | dependencies: 408 | "@ethersproject/bytes" "^5.7.0" 409 | "@ethersproject/logger" "^5.7.0" 410 | 411 | "@ethersproject/rlp@5.4.0": 412 | version "5.4.0" 413 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931" 414 | integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg== 415 | dependencies: 416 | "@ethersproject/bytes" "^5.4.0" 417 | "@ethersproject/logger" "^5.4.0" 418 | 419 | "@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@^5.7.0": 420 | version "5.7.0" 421 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" 422 | integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== 423 | dependencies: 424 | "@ethersproject/bytes" "^5.7.0" 425 | "@ethersproject/logger" "^5.7.0" 426 | 427 | "@ethersproject/sha2@5.4.0": 428 | version "5.4.0" 429 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371" 430 | integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg== 431 | dependencies: 432 | "@ethersproject/bytes" "^5.4.0" 433 | "@ethersproject/logger" "^5.4.0" 434 | hash.js "1.1.7" 435 | 436 | "@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@^5.7.0": 437 | version "5.7.0" 438 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" 439 | integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== 440 | dependencies: 441 | "@ethersproject/bytes" "^5.7.0" 442 | "@ethersproject/logger" "^5.7.0" 443 | hash.js "1.1.7" 444 | 445 | "@ethersproject/signing-key@5.4.0": 446 | version "5.4.0" 447 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec" 448 | integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A== 449 | dependencies: 450 | "@ethersproject/bytes" "^5.4.0" 451 | "@ethersproject/logger" "^5.4.0" 452 | "@ethersproject/properties" "^5.4.0" 453 | bn.js "^4.11.9" 454 | elliptic "6.5.4" 455 | hash.js "1.1.7" 456 | 457 | "@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@^5.7.0": 458 | version "5.7.0" 459 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" 460 | integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== 461 | dependencies: 462 | "@ethersproject/bytes" "^5.7.0" 463 | "@ethersproject/logger" "^5.7.0" 464 | "@ethersproject/properties" "^5.7.0" 465 | bn.js "^5.2.1" 466 | elliptic "6.5.4" 467 | hash.js "1.1.7" 468 | 469 | "@ethersproject/solidity@5.4.0": 470 | version "5.4.0" 471 | resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.4.0.tgz#1305e058ea02dc4891df18b33232b11a14ece9ec" 472 | integrity sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ== 473 | dependencies: 474 | "@ethersproject/bignumber" "^5.4.0" 475 | "@ethersproject/bytes" "^5.4.0" 476 | "@ethersproject/keccak256" "^5.4.0" 477 | "@ethersproject/sha2" "^5.4.0" 478 | "@ethersproject/strings" "^5.4.0" 479 | 480 | "@ethersproject/strings@5.4.0": 481 | version "5.4.0" 482 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a" 483 | integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA== 484 | dependencies: 485 | "@ethersproject/bytes" "^5.4.0" 486 | "@ethersproject/constants" "^5.4.0" 487 | "@ethersproject/logger" "^5.4.0" 488 | 489 | "@ethersproject/strings@^5.4.0", "@ethersproject/strings@^5.7.0": 490 | version "5.7.0" 491 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" 492 | integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== 493 | dependencies: 494 | "@ethersproject/bytes" "^5.7.0" 495 | "@ethersproject/constants" "^5.7.0" 496 | "@ethersproject/logger" "^5.7.0" 497 | 498 | "@ethersproject/transactions@5.4.0": 499 | version "5.4.0" 500 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0" 501 | integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ== 502 | dependencies: 503 | "@ethersproject/address" "^5.4.0" 504 | "@ethersproject/bignumber" "^5.4.0" 505 | "@ethersproject/bytes" "^5.4.0" 506 | "@ethersproject/constants" "^5.4.0" 507 | "@ethersproject/keccak256" "^5.4.0" 508 | "@ethersproject/logger" "^5.4.0" 509 | "@ethersproject/properties" "^5.4.0" 510 | "@ethersproject/rlp" "^5.4.0" 511 | "@ethersproject/signing-key" "^5.4.0" 512 | 513 | "@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@^5.7.0": 514 | version "5.7.0" 515 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" 516 | integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== 517 | dependencies: 518 | "@ethersproject/address" "^5.7.0" 519 | "@ethersproject/bignumber" "^5.7.0" 520 | "@ethersproject/bytes" "^5.7.0" 521 | "@ethersproject/constants" "^5.7.0" 522 | "@ethersproject/keccak256" "^5.7.0" 523 | "@ethersproject/logger" "^5.7.0" 524 | "@ethersproject/properties" "^5.7.0" 525 | "@ethersproject/rlp" "^5.7.0" 526 | "@ethersproject/signing-key" "^5.7.0" 527 | 528 | "@ethersproject/units@5.4.0": 529 | version "5.4.0" 530 | resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.4.0.tgz#d57477a4498b14b88b10396062c8cbbaf20c79fe" 531 | integrity sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg== 532 | dependencies: 533 | "@ethersproject/bignumber" "^5.4.0" 534 | "@ethersproject/constants" "^5.4.0" 535 | "@ethersproject/logger" "^5.4.0" 536 | 537 | "@ethersproject/wallet@5.4.0": 538 | version "5.4.0" 539 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.4.0.tgz#fa5b59830b42e9be56eadd45a16a2e0933ad9353" 540 | integrity sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ== 541 | dependencies: 542 | "@ethersproject/abstract-provider" "^5.4.0" 543 | "@ethersproject/abstract-signer" "^5.4.0" 544 | "@ethersproject/address" "^5.4.0" 545 | "@ethersproject/bignumber" "^5.4.0" 546 | "@ethersproject/bytes" "^5.4.0" 547 | "@ethersproject/hash" "^5.4.0" 548 | "@ethersproject/hdnode" "^5.4.0" 549 | "@ethersproject/json-wallets" "^5.4.0" 550 | "@ethersproject/keccak256" "^5.4.0" 551 | "@ethersproject/logger" "^5.4.0" 552 | "@ethersproject/properties" "^5.4.0" 553 | "@ethersproject/random" "^5.4.0" 554 | "@ethersproject/signing-key" "^5.4.0" 555 | "@ethersproject/transactions" "^5.4.0" 556 | "@ethersproject/wordlists" "^5.4.0" 557 | 558 | "@ethersproject/web@5.4.0": 559 | version "5.4.0" 560 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f" 561 | integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og== 562 | dependencies: 563 | "@ethersproject/base64" "^5.4.0" 564 | "@ethersproject/bytes" "^5.4.0" 565 | "@ethersproject/logger" "^5.4.0" 566 | "@ethersproject/properties" "^5.4.0" 567 | "@ethersproject/strings" "^5.4.0" 568 | 569 | "@ethersproject/web@^5.4.0", "@ethersproject/web@^5.7.0": 570 | version "5.7.1" 571 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" 572 | integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== 573 | dependencies: 574 | "@ethersproject/base64" "^5.7.0" 575 | "@ethersproject/bytes" "^5.7.0" 576 | "@ethersproject/logger" "^5.7.0" 577 | "@ethersproject/properties" "^5.7.0" 578 | "@ethersproject/strings" "^5.7.0" 579 | 580 | "@ethersproject/wordlists@5.4.0": 581 | version "5.4.0" 582 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.4.0.tgz#f34205ec3bbc9e2c49cadaee774cf0b07e7573d7" 583 | integrity sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA== 584 | dependencies: 585 | "@ethersproject/bytes" "^5.4.0" 586 | "@ethersproject/hash" "^5.4.0" 587 | "@ethersproject/logger" "^5.4.0" 588 | "@ethersproject/properties" "^5.4.0" 589 | "@ethersproject/strings" "^5.4.0" 590 | 591 | "@ethersproject/wordlists@^5.4.0", "@ethersproject/wordlists@^5.7.0": 592 | version "5.7.0" 593 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" 594 | integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== 595 | dependencies: 596 | "@ethersproject/bytes" "^5.7.0" 597 | "@ethersproject/hash" "^5.7.0" 598 | "@ethersproject/logger" "^5.7.0" 599 | "@ethersproject/properties" "^5.7.0" 600 | "@ethersproject/strings" "^5.7.0" 601 | 602 | aes-js@3.0.0: 603 | version "3.0.0" 604 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" 605 | integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== 606 | 607 | bech32@1.1.4: 608 | version "1.1.4" 609 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 610 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 611 | 612 | bn.js@^4.11.9: 613 | version "4.12.0" 614 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 615 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 616 | 617 | bn.js@^5.2.1: 618 | version "5.2.1" 619 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 620 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 621 | 622 | brorand@^1.1.0: 623 | version "1.1.0" 624 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 625 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 626 | 627 | elliptic@6.5.4: 628 | version "6.5.4" 629 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 630 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 631 | dependencies: 632 | bn.js "^4.11.9" 633 | brorand "^1.1.0" 634 | hash.js "^1.0.0" 635 | hmac-drbg "^1.0.1" 636 | inherits "^2.0.4" 637 | minimalistic-assert "^1.0.1" 638 | minimalistic-crypto-utils "^1.0.1" 639 | 640 | ethers@5.4.6: 641 | version "5.4.6" 642 | resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6" 643 | integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ== 644 | dependencies: 645 | "@ethersproject/abi" "5.4.1" 646 | "@ethersproject/abstract-provider" "5.4.1" 647 | "@ethersproject/abstract-signer" "5.4.1" 648 | "@ethersproject/address" "5.4.0" 649 | "@ethersproject/base64" "5.4.0" 650 | "@ethersproject/basex" "5.4.0" 651 | "@ethersproject/bignumber" "5.4.1" 652 | "@ethersproject/bytes" "5.4.0" 653 | "@ethersproject/constants" "5.4.0" 654 | "@ethersproject/contracts" "5.4.1" 655 | "@ethersproject/hash" "5.4.0" 656 | "@ethersproject/hdnode" "5.4.0" 657 | "@ethersproject/json-wallets" "5.4.0" 658 | "@ethersproject/keccak256" "5.4.0" 659 | "@ethersproject/logger" "5.4.1" 660 | "@ethersproject/networks" "5.4.2" 661 | "@ethersproject/pbkdf2" "5.4.0" 662 | "@ethersproject/properties" "5.4.1" 663 | "@ethersproject/providers" "5.4.5" 664 | "@ethersproject/random" "5.4.0" 665 | "@ethersproject/rlp" "5.4.0" 666 | "@ethersproject/sha2" "5.4.0" 667 | "@ethersproject/signing-key" "5.4.0" 668 | "@ethersproject/solidity" "5.4.0" 669 | "@ethersproject/strings" "5.4.0" 670 | "@ethersproject/transactions" "5.4.0" 671 | "@ethersproject/units" "5.4.0" 672 | "@ethersproject/wallet" "5.4.0" 673 | "@ethersproject/web" "5.4.0" 674 | "@ethersproject/wordlists" "5.4.0" 675 | 676 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 677 | version "1.1.7" 678 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 679 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 680 | dependencies: 681 | inherits "^2.0.3" 682 | minimalistic-assert "^1.0.1" 683 | 684 | hmac-drbg@^1.0.1: 685 | version "1.0.1" 686 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 687 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 688 | dependencies: 689 | hash.js "^1.0.3" 690 | minimalistic-assert "^1.0.0" 691 | minimalistic-crypto-utils "^1.0.1" 692 | 693 | inherits@^2.0.3, inherits@^2.0.4: 694 | version "2.0.4" 695 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 696 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 697 | 698 | js-sha3@0.5.7: 699 | version "0.5.7" 700 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" 701 | integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g== 702 | 703 | js-sha3@0.8.0: 704 | version "0.8.0" 705 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 706 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 707 | 708 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 709 | version "1.0.1" 710 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 711 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 712 | 713 | minimalistic-crypto-utils@^1.0.1: 714 | version "1.0.1" 715 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 716 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 717 | 718 | scrypt-js@3.0.1: 719 | version "3.0.1" 720 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" 721 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== 722 | 723 | ws@7.4.6: 724 | version "7.4.6" 725 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 726 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 727 | -------------------------------------------------------------------------------- /burn-virtual-tal/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ethersproject/abi@5.4.1": 6 | version "5.4.1" 7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b" 8 | integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg== 9 | dependencies: 10 | "@ethersproject/address" "^5.4.0" 11 | "@ethersproject/bignumber" "^5.4.0" 12 | "@ethersproject/bytes" "^5.4.0" 13 | "@ethersproject/constants" "^5.4.0" 14 | "@ethersproject/hash" "^5.4.0" 15 | "@ethersproject/keccak256" "^5.4.0" 16 | "@ethersproject/logger" "^5.4.0" 17 | "@ethersproject/properties" "^5.4.0" 18 | "@ethersproject/strings" "^5.4.0" 19 | 20 | "@ethersproject/abi@^5.4.0": 21 | version "5.7.0" 22 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" 23 | integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== 24 | dependencies: 25 | "@ethersproject/address" "^5.7.0" 26 | "@ethersproject/bignumber" "^5.7.0" 27 | "@ethersproject/bytes" "^5.7.0" 28 | "@ethersproject/constants" "^5.7.0" 29 | "@ethersproject/hash" "^5.7.0" 30 | "@ethersproject/keccak256" "^5.7.0" 31 | "@ethersproject/logger" "^5.7.0" 32 | "@ethersproject/properties" "^5.7.0" 33 | "@ethersproject/strings" "^5.7.0" 34 | 35 | "@ethersproject/abstract-provider@5.4.1": 36 | version "5.4.1" 37 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e" 38 | integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ== 39 | dependencies: 40 | "@ethersproject/bignumber" "^5.4.0" 41 | "@ethersproject/bytes" "^5.4.0" 42 | "@ethersproject/logger" "^5.4.0" 43 | "@ethersproject/networks" "^5.4.0" 44 | "@ethersproject/properties" "^5.4.0" 45 | "@ethersproject/transactions" "^5.4.0" 46 | "@ethersproject/web" "^5.4.0" 47 | 48 | "@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@^5.7.0": 49 | version "5.7.0" 50 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" 51 | integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== 52 | dependencies: 53 | "@ethersproject/bignumber" "^5.7.0" 54 | "@ethersproject/bytes" "^5.7.0" 55 | "@ethersproject/logger" "^5.7.0" 56 | "@ethersproject/networks" "^5.7.0" 57 | "@ethersproject/properties" "^5.7.0" 58 | "@ethersproject/transactions" "^5.7.0" 59 | "@ethersproject/web" "^5.7.0" 60 | 61 | "@ethersproject/abstract-signer@5.4.1": 62 | version "5.4.1" 63 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81" 64 | integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA== 65 | dependencies: 66 | "@ethersproject/abstract-provider" "^5.4.0" 67 | "@ethersproject/bignumber" "^5.4.0" 68 | "@ethersproject/bytes" "^5.4.0" 69 | "@ethersproject/logger" "^5.4.0" 70 | "@ethersproject/properties" "^5.4.0" 71 | 72 | "@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@^5.7.0": 73 | version "5.7.0" 74 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" 75 | integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== 76 | dependencies: 77 | "@ethersproject/abstract-provider" "^5.7.0" 78 | "@ethersproject/bignumber" "^5.7.0" 79 | "@ethersproject/bytes" "^5.7.0" 80 | "@ethersproject/logger" "^5.7.0" 81 | "@ethersproject/properties" "^5.7.0" 82 | 83 | "@ethersproject/address@5.4.0": 84 | version "5.4.0" 85 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3" 86 | integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q== 87 | dependencies: 88 | "@ethersproject/bignumber" "^5.4.0" 89 | "@ethersproject/bytes" "^5.4.0" 90 | "@ethersproject/keccak256" "^5.4.0" 91 | "@ethersproject/logger" "^5.4.0" 92 | "@ethersproject/rlp" "^5.4.0" 93 | 94 | "@ethersproject/address@^5.4.0", "@ethersproject/address@^5.7.0": 95 | version "5.7.0" 96 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" 97 | integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== 98 | dependencies: 99 | "@ethersproject/bignumber" "^5.7.0" 100 | "@ethersproject/bytes" "^5.7.0" 101 | "@ethersproject/keccak256" "^5.7.0" 102 | "@ethersproject/logger" "^5.7.0" 103 | "@ethersproject/rlp" "^5.7.0" 104 | 105 | "@ethersproject/base64@5.4.0": 106 | version "5.4.0" 107 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a" 108 | integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ== 109 | dependencies: 110 | "@ethersproject/bytes" "^5.4.0" 111 | 112 | "@ethersproject/base64@^5.4.0", "@ethersproject/base64@^5.7.0": 113 | version "5.7.0" 114 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" 115 | integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== 116 | dependencies: 117 | "@ethersproject/bytes" "^5.7.0" 118 | 119 | "@ethersproject/basex@5.4.0": 120 | version "5.4.0" 121 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6" 122 | integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg== 123 | dependencies: 124 | "@ethersproject/bytes" "^5.4.0" 125 | "@ethersproject/properties" "^5.4.0" 126 | 127 | "@ethersproject/basex@^5.4.0", "@ethersproject/basex@^5.7.0": 128 | version "5.7.0" 129 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" 130 | integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== 131 | dependencies: 132 | "@ethersproject/bytes" "^5.7.0" 133 | "@ethersproject/properties" "^5.7.0" 134 | 135 | "@ethersproject/bignumber@5.4.1": 136 | version "5.4.1" 137 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d" 138 | integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg== 139 | dependencies: 140 | "@ethersproject/bytes" "^5.4.0" 141 | "@ethersproject/logger" "^5.4.0" 142 | bn.js "^4.11.9" 143 | 144 | "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@^5.7.0": 145 | version "5.7.0" 146 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" 147 | integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== 148 | dependencies: 149 | "@ethersproject/bytes" "^5.7.0" 150 | "@ethersproject/logger" "^5.7.0" 151 | bn.js "^5.2.1" 152 | 153 | "@ethersproject/bytes@5.4.0": 154 | version "5.4.0" 155 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e" 156 | integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA== 157 | dependencies: 158 | "@ethersproject/logger" "^5.4.0" 159 | 160 | "@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@^5.7.0": 161 | version "5.7.0" 162 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" 163 | integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== 164 | dependencies: 165 | "@ethersproject/logger" "^5.7.0" 166 | 167 | "@ethersproject/constants@5.4.0": 168 | version "5.4.0" 169 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a" 170 | integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q== 171 | dependencies: 172 | "@ethersproject/bignumber" "^5.4.0" 173 | 174 | "@ethersproject/constants@^5.4.0", "@ethersproject/constants@^5.7.0": 175 | version "5.7.0" 176 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" 177 | integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== 178 | dependencies: 179 | "@ethersproject/bignumber" "^5.7.0" 180 | 181 | "@ethersproject/contracts@5.4.1": 182 | version "5.4.1" 183 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.4.1.tgz#3eb4f35b7fe60a962a75804ada2746494df3e470" 184 | integrity sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w== 185 | dependencies: 186 | "@ethersproject/abi" "^5.4.0" 187 | "@ethersproject/abstract-provider" "^5.4.0" 188 | "@ethersproject/abstract-signer" "^5.4.0" 189 | "@ethersproject/address" "^5.4.0" 190 | "@ethersproject/bignumber" "^5.4.0" 191 | "@ethersproject/bytes" "^5.4.0" 192 | "@ethersproject/constants" "^5.4.0" 193 | "@ethersproject/logger" "^5.4.0" 194 | "@ethersproject/properties" "^5.4.0" 195 | "@ethersproject/transactions" "^5.4.0" 196 | 197 | "@ethersproject/hash@5.4.0": 198 | version "5.4.0" 199 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0" 200 | integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA== 201 | dependencies: 202 | "@ethersproject/abstract-signer" "^5.4.0" 203 | "@ethersproject/address" "^5.4.0" 204 | "@ethersproject/bignumber" "^5.4.0" 205 | "@ethersproject/bytes" "^5.4.0" 206 | "@ethersproject/keccak256" "^5.4.0" 207 | "@ethersproject/logger" "^5.4.0" 208 | "@ethersproject/properties" "^5.4.0" 209 | "@ethersproject/strings" "^5.4.0" 210 | 211 | "@ethersproject/hash@^5.4.0", "@ethersproject/hash@^5.7.0": 212 | version "5.7.0" 213 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" 214 | integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== 215 | dependencies: 216 | "@ethersproject/abstract-signer" "^5.7.0" 217 | "@ethersproject/address" "^5.7.0" 218 | "@ethersproject/base64" "^5.7.0" 219 | "@ethersproject/bignumber" "^5.7.0" 220 | "@ethersproject/bytes" "^5.7.0" 221 | "@ethersproject/keccak256" "^5.7.0" 222 | "@ethersproject/logger" "^5.7.0" 223 | "@ethersproject/properties" "^5.7.0" 224 | "@ethersproject/strings" "^5.7.0" 225 | 226 | "@ethersproject/hdnode@5.4.0": 227 | version "5.4.0" 228 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.4.0.tgz#4bc9999b9a12eb5ce80c5faa83114a57e4107cac" 229 | integrity sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q== 230 | dependencies: 231 | "@ethersproject/abstract-signer" "^5.4.0" 232 | "@ethersproject/basex" "^5.4.0" 233 | "@ethersproject/bignumber" "^5.4.0" 234 | "@ethersproject/bytes" "^5.4.0" 235 | "@ethersproject/logger" "^5.4.0" 236 | "@ethersproject/pbkdf2" "^5.4.0" 237 | "@ethersproject/properties" "^5.4.0" 238 | "@ethersproject/sha2" "^5.4.0" 239 | "@ethersproject/signing-key" "^5.4.0" 240 | "@ethersproject/strings" "^5.4.0" 241 | "@ethersproject/transactions" "^5.4.0" 242 | "@ethersproject/wordlists" "^5.4.0" 243 | 244 | "@ethersproject/hdnode@^5.4.0", "@ethersproject/hdnode@^5.7.0": 245 | version "5.7.0" 246 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" 247 | integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== 248 | dependencies: 249 | "@ethersproject/abstract-signer" "^5.7.0" 250 | "@ethersproject/basex" "^5.7.0" 251 | "@ethersproject/bignumber" "^5.7.0" 252 | "@ethersproject/bytes" "^5.7.0" 253 | "@ethersproject/logger" "^5.7.0" 254 | "@ethersproject/pbkdf2" "^5.7.0" 255 | "@ethersproject/properties" "^5.7.0" 256 | "@ethersproject/sha2" "^5.7.0" 257 | "@ethersproject/signing-key" "^5.7.0" 258 | "@ethersproject/strings" "^5.7.0" 259 | "@ethersproject/transactions" "^5.7.0" 260 | "@ethersproject/wordlists" "^5.7.0" 261 | 262 | "@ethersproject/json-wallets@5.4.0": 263 | version "5.4.0" 264 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz#2583341cfe313fc9856642e8ace3080154145e95" 265 | integrity sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ== 266 | dependencies: 267 | "@ethersproject/abstract-signer" "^5.4.0" 268 | "@ethersproject/address" "^5.4.0" 269 | "@ethersproject/bytes" "^5.4.0" 270 | "@ethersproject/hdnode" "^5.4.0" 271 | "@ethersproject/keccak256" "^5.4.0" 272 | "@ethersproject/logger" "^5.4.0" 273 | "@ethersproject/pbkdf2" "^5.4.0" 274 | "@ethersproject/properties" "^5.4.0" 275 | "@ethersproject/random" "^5.4.0" 276 | "@ethersproject/strings" "^5.4.0" 277 | "@ethersproject/transactions" "^5.4.0" 278 | aes-js "3.0.0" 279 | scrypt-js "3.0.1" 280 | 281 | "@ethersproject/json-wallets@^5.4.0": 282 | version "5.7.0" 283 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" 284 | integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== 285 | dependencies: 286 | "@ethersproject/abstract-signer" "^5.7.0" 287 | "@ethersproject/address" "^5.7.0" 288 | "@ethersproject/bytes" "^5.7.0" 289 | "@ethersproject/hdnode" "^5.7.0" 290 | "@ethersproject/keccak256" "^5.7.0" 291 | "@ethersproject/logger" "^5.7.0" 292 | "@ethersproject/pbkdf2" "^5.7.0" 293 | "@ethersproject/properties" "^5.7.0" 294 | "@ethersproject/random" "^5.7.0" 295 | "@ethersproject/strings" "^5.7.0" 296 | "@ethersproject/transactions" "^5.7.0" 297 | aes-js "3.0.0" 298 | scrypt-js "3.0.1" 299 | 300 | "@ethersproject/keccak256@5.4.0": 301 | version "5.4.0" 302 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318" 303 | integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A== 304 | dependencies: 305 | "@ethersproject/bytes" "^5.4.0" 306 | js-sha3 "0.5.7" 307 | 308 | "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@^5.7.0": 309 | version "5.7.0" 310 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" 311 | integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== 312 | dependencies: 313 | "@ethersproject/bytes" "^5.7.0" 314 | js-sha3 "0.8.0" 315 | 316 | "@ethersproject/logger@5.4.1": 317 | version "5.4.1" 318 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054" 319 | integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A== 320 | 321 | "@ethersproject/logger@^5.4.0", "@ethersproject/logger@^5.7.0": 322 | version "5.7.0" 323 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" 324 | integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== 325 | 326 | "@ethersproject/networks@5.4.2": 327 | version "5.4.2" 328 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35" 329 | integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw== 330 | dependencies: 331 | "@ethersproject/logger" "^5.4.0" 332 | 333 | "@ethersproject/networks@^5.4.0", "@ethersproject/networks@^5.7.0": 334 | version "5.7.1" 335 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" 336 | integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== 337 | dependencies: 338 | "@ethersproject/logger" "^5.7.0" 339 | 340 | "@ethersproject/pbkdf2@5.4.0": 341 | version "5.4.0" 342 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz#ed88782a67fda1594c22d60d0ca911a9d669641c" 343 | integrity sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g== 344 | dependencies: 345 | "@ethersproject/bytes" "^5.4.0" 346 | "@ethersproject/sha2" "^5.4.0" 347 | 348 | "@ethersproject/pbkdf2@^5.4.0", "@ethersproject/pbkdf2@^5.7.0": 349 | version "5.7.0" 350 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" 351 | integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== 352 | dependencies: 353 | "@ethersproject/bytes" "^5.7.0" 354 | "@ethersproject/sha2" "^5.7.0" 355 | 356 | "@ethersproject/properties@5.4.1": 357 | version "5.4.1" 358 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36" 359 | integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w== 360 | dependencies: 361 | "@ethersproject/logger" "^5.4.0" 362 | 363 | "@ethersproject/properties@^5.4.0", "@ethersproject/properties@^5.7.0": 364 | version "5.7.0" 365 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" 366 | integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== 367 | dependencies: 368 | "@ethersproject/logger" "^5.7.0" 369 | 370 | "@ethersproject/providers@5.4.5": 371 | version "5.4.5" 372 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.4.5.tgz#eb2ea2a743a8115f79604a8157233a3a2c832928" 373 | integrity sha512-1GkrvkiAw3Fj28cwi1Sqm8ED1RtERtpdXmRfwIBGmqBSN5MoeRUHuwHPppMtbPayPgpFcvD7/Gdc9doO5fGYgw== 374 | dependencies: 375 | "@ethersproject/abstract-provider" "^5.4.0" 376 | "@ethersproject/abstract-signer" "^5.4.0" 377 | "@ethersproject/address" "^5.4.0" 378 | "@ethersproject/basex" "^5.4.0" 379 | "@ethersproject/bignumber" "^5.4.0" 380 | "@ethersproject/bytes" "^5.4.0" 381 | "@ethersproject/constants" "^5.4.0" 382 | "@ethersproject/hash" "^5.4.0" 383 | "@ethersproject/logger" "^5.4.0" 384 | "@ethersproject/networks" "^5.4.0" 385 | "@ethersproject/properties" "^5.4.0" 386 | "@ethersproject/random" "^5.4.0" 387 | "@ethersproject/rlp" "^5.4.0" 388 | "@ethersproject/sha2" "^5.4.0" 389 | "@ethersproject/strings" "^5.4.0" 390 | "@ethersproject/transactions" "^5.4.0" 391 | "@ethersproject/web" "^5.4.0" 392 | bech32 "1.1.4" 393 | ws "7.4.6" 394 | 395 | "@ethersproject/random@5.4.0": 396 | version "5.4.0" 397 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16" 398 | integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw== 399 | dependencies: 400 | "@ethersproject/bytes" "^5.4.0" 401 | "@ethersproject/logger" "^5.4.0" 402 | 403 | "@ethersproject/random@^5.4.0", "@ethersproject/random@^5.7.0": 404 | version "5.7.0" 405 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" 406 | integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== 407 | dependencies: 408 | "@ethersproject/bytes" "^5.7.0" 409 | "@ethersproject/logger" "^5.7.0" 410 | 411 | "@ethersproject/rlp@5.4.0": 412 | version "5.4.0" 413 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931" 414 | integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg== 415 | dependencies: 416 | "@ethersproject/bytes" "^5.4.0" 417 | "@ethersproject/logger" "^5.4.0" 418 | 419 | "@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@^5.7.0": 420 | version "5.7.0" 421 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" 422 | integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== 423 | dependencies: 424 | "@ethersproject/bytes" "^5.7.0" 425 | "@ethersproject/logger" "^5.7.0" 426 | 427 | "@ethersproject/sha2@5.4.0": 428 | version "5.4.0" 429 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371" 430 | integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg== 431 | dependencies: 432 | "@ethersproject/bytes" "^5.4.0" 433 | "@ethersproject/logger" "^5.4.0" 434 | hash.js "1.1.7" 435 | 436 | "@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@^5.7.0": 437 | version "5.7.0" 438 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" 439 | integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== 440 | dependencies: 441 | "@ethersproject/bytes" "^5.7.0" 442 | "@ethersproject/logger" "^5.7.0" 443 | hash.js "1.1.7" 444 | 445 | "@ethersproject/signing-key@5.4.0": 446 | version "5.4.0" 447 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec" 448 | integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A== 449 | dependencies: 450 | "@ethersproject/bytes" "^5.4.0" 451 | "@ethersproject/logger" "^5.4.0" 452 | "@ethersproject/properties" "^5.4.0" 453 | bn.js "^4.11.9" 454 | elliptic "6.5.4" 455 | hash.js "1.1.7" 456 | 457 | "@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@^5.7.0": 458 | version "5.7.0" 459 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" 460 | integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== 461 | dependencies: 462 | "@ethersproject/bytes" "^5.7.0" 463 | "@ethersproject/logger" "^5.7.0" 464 | "@ethersproject/properties" "^5.7.0" 465 | bn.js "^5.2.1" 466 | elliptic "6.5.4" 467 | hash.js "1.1.7" 468 | 469 | "@ethersproject/solidity@5.4.0": 470 | version "5.4.0" 471 | resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.4.0.tgz#1305e058ea02dc4891df18b33232b11a14ece9ec" 472 | integrity sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ== 473 | dependencies: 474 | "@ethersproject/bignumber" "^5.4.0" 475 | "@ethersproject/bytes" "^5.4.0" 476 | "@ethersproject/keccak256" "^5.4.0" 477 | "@ethersproject/sha2" "^5.4.0" 478 | "@ethersproject/strings" "^5.4.0" 479 | 480 | "@ethersproject/strings@5.4.0": 481 | version "5.4.0" 482 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a" 483 | integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA== 484 | dependencies: 485 | "@ethersproject/bytes" "^5.4.0" 486 | "@ethersproject/constants" "^5.4.0" 487 | "@ethersproject/logger" "^5.4.0" 488 | 489 | "@ethersproject/strings@^5.4.0", "@ethersproject/strings@^5.7.0": 490 | version "5.7.0" 491 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" 492 | integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== 493 | dependencies: 494 | "@ethersproject/bytes" "^5.7.0" 495 | "@ethersproject/constants" "^5.7.0" 496 | "@ethersproject/logger" "^5.7.0" 497 | 498 | "@ethersproject/transactions@5.4.0": 499 | version "5.4.0" 500 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0" 501 | integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ== 502 | dependencies: 503 | "@ethersproject/address" "^5.4.0" 504 | "@ethersproject/bignumber" "^5.4.0" 505 | "@ethersproject/bytes" "^5.4.0" 506 | "@ethersproject/constants" "^5.4.0" 507 | "@ethersproject/keccak256" "^5.4.0" 508 | "@ethersproject/logger" "^5.4.0" 509 | "@ethersproject/properties" "^5.4.0" 510 | "@ethersproject/rlp" "^5.4.0" 511 | "@ethersproject/signing-key" "^5.4.0" 512 | 513 | "@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@^5.7.0": 514 | version "5.7.0" 515 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" 516 | integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== 517 | dependencies: 518 | "@ethersproject/address" "^5.7.0" 519 | "@ethersproject/bignumber" "^5.7.0" 520 | "@ethersproject/bytes" "^5.7.0" 521 | "@ethersproject/constants" "^5.7.0" 522 | "@ethersproject/keccak256" "^5.7.0" 523 | "@ethersproject/logger" "^5.7.0" 524 | "@ethersproject/properties" "^5.7.0" 525 | "@ethersproject/rlp" "^5.7.0" 526 | "@ethersproject/signing-key" "^5.7.0" 527 | 528 | "@ethersproject/units@5.4.0": 529 | version "5.4.0" 530 | resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.4.0.tgz#d57477a4498b14b88b10396062c8cbbaf20c79fe" 531 | integrity sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg== 532 | dependencies: 533 | "@ethersproject/bignumber" "^5.4.0" 534 | "@ethersproject/constants" "^5.4.0" 535 | "@ethersproject/logger" "^5.4.0" 536 | 537 | "@ethersproject/wallet@5.4.0": 538 | version "5.4.0" 539 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.4.0.tgz#fa5b59830b42e9be56eadd45a16a2e0933ad9353" 540 | integrity sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ== 541 | dependencies: 542 | "@ethersproject/abstract-provider" "^5.4.0" 543 | "@ethersproject/abstract-signer" "^5.4.0" 544 | "@ethersproject/address" "^5.4.0" 545 | "@ethersproject/bignumber" "^5.4.0" 546 | "@ethersproject/bytes" "^5.4.0" 547 | "@ethersproject/hash" "^5.4.0" 548 | "@ethersproject/hdnode" "^5.4.0" 549 | "@ethersproject/json-wallets" "^5.4.0" 550 | "@ethersproject/keccak256" "^5.4.0" 551 | "@ethersproject/logger" "^5.4.0" 552 | "@ethersproject/properties" "^5.4.0" 553 | "@ethersproject/random" "^5.4.0" 554 | "@ethersproject/signing-key" "^5.4.0" 555 | "@ethersproject/transactions" "^5.4.0" 556 | "@ethersproject/wordlists" "^5.4.0" 557 | 558 | "@ethersproject/web@5.4.0": 559 | version "5.4.0" 560 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f" 561 | integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og== 562 | dependencies: 563 | "@ethersproject/base64" "^5.4.0" 564 | "@ethersproject/bytes" "^5.4.0" 565 | "@ethersproject/logger" "^5.4.0" 566 | "@ethersproject/properties" "^5.4.0" 567 | "@ethersproject/strings" "^5.4.0" 568 | 569 | "@ethersproject/web@^5.4.0", "@ethersproject/web@^5.7.0": 570 | version "5.7.1" 571 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" 572 | integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== 573 | dependencies: 574 | "@ethersproject/base64" "^5.7.0" 575 | "@ethersproject/bytes" "^5.7.0" 576 | "@ethersproject/logger" "^5.7.0" 577 | "@ethersproject/properties" "^5.7.0" 578 | "@ethersproject/strings" "^5.7.0" 579 | 580 | "@ethersproject/wordlists@5.4.0": 581 | version "5.4.0" 582 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.4.0.tgz#f34205ec3bbc9e2c49cadaee774cf0b07e7573d7" 583 | integrity sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA== 584 | dependencies: 585 | "@ethersproject/bytes" "^5.4.0" 586 | "@ethersproject/hash" "^5.4.0" 587 | "@ethersproject/logger" "^5.4.0" 588 | "@ethersproject/properties" "^5.4.0" 589 | "@ethersproject/strings" "^5.4.0" 590 | 591 | "@ethersproject/wordlists@^5.4.0", "@ethersproject/wordlists@^5.7.0": 592 | version "5.7.0" 593 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" 594 | integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== 595 | dependencies: 596 | "@ethersproject/bytes" "^5.7.0" 597 | "@ethersproject/hash" "^5.7.0" 598 | "@ethersproject/logger" "^5.7.0" 599 | "@ethersproject/properties" "^5.7.0" 600 | "@ethersproject/strings" "^5.7.0" 601 | 602 | aes-js@3.0.0: 603 | version "3.0.0" 604 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" 605 | integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== 606 | 607 | axios@^0.26.1: 608 | version "0.26.1" 609 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" 610 | integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== 611 | dependencies: 612 | follow-redirects "^1.14.8" 613 | 614 | bech32@1.1.4: 615 | version "1.1.4" 616 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 617 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 618 | 619 | bn.js@^4.11.9: 620 | version "4.12.0" 621 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 622 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 623 | 624 | bn.js@^5.2.1: 625 | version "5.2.1" 626 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 627 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 628 | 629 | brorand@^1.1.0: 630 | version "1.1.0" 631 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 632 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 633 | 634 | elliptic@6.5.4: 635 | version "6.5.4" 636 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 637 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 638 | dependencies: 639 | bn.js "^4.11.9" 640 | brorand "^1.1.0" 641 | hash.js "^1.0.0" 642 | hmac-drbg "^1.0.1" 643 | inherits "^2.0.4" 644 | minimalistic-assert "^1.0.1" 645 | minimalistic-crypto-utils "^1.0.1" 646 | 647 | ethers@5.4.6: 648 | version "5.4.6" 649 | resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6" 650 | integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ== 651 | dependencies: 652 | "@ethersproject/abi" "5.4.1" 653 | "@ethersproject/abstract-provider" "5.4.1" 654 | "@ethersproject/abstract-signer" "5.4.1" 655 | "@ethersproject/address" "5.4.0" 656 | "@ethersproject/base64" "5.4.0" 657 | "@ethersproject/basex" "5.4.0" 658 | "@ethersproject/bignumber" "5.4.1" 659 | "@ethersproject/bytes" "5.4.0" 660 | "@ethersproject/constants" "5.4.0" 661 | "@ethersproject/contracts" "5.4.1" 662 | "@ethersproject/hash" "5.4.0" 663 | "@ethersproject/hdnode" "5.4.0" 664 | "@ethersproject/json-wallets" "5.4.0" 665 | "@ethersproject/keccak256" "5.4.0" 666 | "@ethersproject/logger" "5.4.1" 667 | "@ethersproject/networks" "5.4.2" 668 | "@ethersproject/pbkdf2" "5.4.0" 669 | "@ethersproject/properties" "5.4.1" 670 | "@ethersproject/providers" "5.4.5" 671 | "@ethersproject/random" "5.4.0" 672 | "@ethersproject/rlp" "5.4.0" 673 | "@ethersproject/sha2" "5.4.0" 674 | "@ethersproject/signing-key" "5.4.0" 675 | "@ethersproject/solidity" "5.4.0" 676 | "@ethersproject/strings" "5.4.0" 677 | "@ethersproject/transactions" "5.4.0" 678 | "@ethersproject/units" "5.4.0" 679 | "@ethersproject/wallet" "5.4.0" 680 | "@ethersproject/web" "5.4.0" 681 | "@ethersproject/wordlists" "5.4.0" 682 | 683 | follow-redirects@^1.14.8: 684 | version "1.15.3" 685 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" 686 | integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== 687 | 688 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 689 | version "1.1.7" 690 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 691 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 692 | dependencies: 693 | inherits "^2.0.3" 694 | minimalistic-assert "^1.0.1" 695 | 696 | hmac-drbg@^1.0.1: 697 | version "1.0.1" 698 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 699 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 700 | dependencies: 701 | hash.js "^1.0.3" 702 | minimalistic-assert "^1.0.0" 703 | minimalistic-crypto-utils "^1.0.1" 704 | 705 | inherits@^2.0.3, inherits@^2.0.4: 706 | version "2.0.4" 707 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 708 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 709 | 710 | js-sha3@0.5.7: 711 | version "0.5.7" 712 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" 713 | integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g== 714 | 715 | js-sha3@0.8.0: 716 | version "0.8.0" 717 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 718 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 719 | 720 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 721 | version "1.0.1" 722 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 723 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 724 | 725 | minimalistic-crypto-utils@^1.0.1: 726 | version "1.0.1" 727 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 728 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 729 | 730 | scrypt-js@3.0.1: 731 | version "3.0.1" 732 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" 733 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== 734 | 735 | ws@7.4.6: 736 | version "7.4.6" 737 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 738 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 739 | -------------------------------------------------------------------------------- /whitelist-talent-mate/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ethersproject/abi@5.4.1": 6 | version "5.4.1" 7 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.4.1.tgz#6ac28fafc9ef6f5a7a37e30356a2eb31fa05d39b" 8 | integrity sha512-9mhbjUk76BiSluiiW4BaYyI58KSbDMMQpCLdsAR+RsT2GyATiNYxVv+pGWRrekmsIdY3I+hOqsYQSTkc8L/mcg== 9 | dependencies: 10 | "@ethersproject/address" "^5.4.0" 11 | "@ethersproject/bignumber" "^5.4.0" 12 | "@ethersproject/bytes" "^5.4.0" 13 | "@ethersproject/constants" "^5.4.0" 14 | "@ethersproject/hash" "^5.4.0" 15 | "@ethersproject/keccak256" "^5.4.0" 16 | "@ethersproject/logger" "^5.4.0" 17 | "@ethersproject/properties" "^5.4.0" 18 | "@ethersproject/strings" "^5.4.0" 19 | 20 | "@ethersproject/abi@^5.4.0": 21 | version "5.7.0" 22 | resolved "https://registry.yarnpkg.com/@ethersproject/abi/-/abi-5.7.0.tgz#b3f3e045bbbeed1af3947335c247ad625a44e449" 23 | integrity sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA== 24 | dependencies: 25 | "@ethersproject/address" "^5.7.0" 26 | "@ethersproject/bignumber" "^5.7.0" 27 | "@ethersproject/bytes" "^5.7.0" 28 | "@ethersproject/constants" "^5.7.0" 29 | "@ethersproject/hash" "^5.7.0" 30 | "@ethersproject/keccak256" "^5.7.0" 31 | "@ethersproject/logger" "^5.7.0" 32 | "@ethersproject/properties" "^5.7.0" 33 | "@ethersproject/strings" "^5.7.0" 34 | 35 | "@ethersproject/abstract-provider@5.4.1": 36 | version "5.4.1" 37 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.4.1.tgz#e404309a29f771bd4d28dbafadcaa184668c2a6e" 38 | integrity sha512-3EedfKI3LVpjSKgAxoUaI+gB27frKsxzm+r21w9G60Ugk+3wVLQwhi1LsEJAKNV7WoZc8CIpNrATlL1QFABjtQ== 39 | dependencies: 40 | "@ethersproject/bignumber" "^5.4.0" 41 | "@ethersproject/bytes" "^5.4.0" 42 | "@ethersproject/logger" "^5.4.0" 43 | "@ethersproject/networks" "^5.4.0" 44 | "@ethersproject/properties" "^5.4.0" 45 | "@ethersproject/transactions" "^5.4.0" 46 | "@ethersproject/web" "^5.4.0" 47 | 48 | "@ethersproject/abstract-provider@^5.4.0", "@ethersproject/abstract-provider@^5.7.0": 49 | version "5.7.0" 50 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz#b0a8550f88b6bf9d51f90e4795d48294630cb9ef" 51 | integrity sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw== 52 | dependencies: 53 | "@ethersproject/bignumber" "^5.7.0" 54 | "@ethersproject/bytes" "^5.7.0" 55 | "@ethersproject/logger" "^5.7.0" 56 | "@ethersproject/networks" "^5.7.0" 57 | "@ethersproject/properties" "^5.7.0" 58 | "@ethersproject/transactions" "^5.7.0" 59 | "@ethersproject/web" "^5.7.0" 60 | 61 | "@ethersproject/abstract-signer@5.4.1": 62 | version "5.4.1" 63 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.4.1.tgz#e4e9abcf4dd4f1ba0db7dff9746a5f78f355ea81" 64 | integrity sha512-SkkFL5HVq1k4/25dM+NWP9MILgohJCgGv5xT5AcRruGz4ILpfHeBtO/y6j+Z3UN/PAjDeb4P7E51Yh8wcGNLGA== 65 | dependencies: 66 | "@ethersproject/abstract-provider" "^5.4.0" 67 | "@ethersproject/bignumber" "^5.4.0" 68 | "@ethersproject/bytes" "^5.4.0" 69 | "@ethersproject/logger" "^5.4.0" 70 | "@ethersproject/properties" "^5.4.0" 71 | 72 | "@ethersproject/abstract-signer@^5.4.0", "@ethersproject/abstract-signer@^5.7.0": 73 | version "5.7.0" 74 | resolved "https://registry.yarnpkg.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz#13f4f32117868452191a4649723cb086d2b596b2" 75 | integrity sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ== 76 | dependencies: 77 | "@ethersproject/abstract-provider" "^5.7.0" 78 | "@ethersproject/bignumber" "^5.7.0" 79 | "@ethersproject/bytes" "^5.7.0" 80 | "@ethersproject/logger" "^5.7.0" 81 | "@ethersproject/properties" "^5.7.0" 82 | 83 | "@ethersproject/address@5.4.0": 84 | version "5.4.0" 85 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.4.0.tgz#ba2d00a0f8c4c0854933b963b9a3a9f6eb4a37a3" 86 | integrity sha512-SD0VgOEkcACEG/C6xavlU1Hy3m5DGSXW3CUHkaaEHbAPPsgi0coP5oNPsxau8eTlZOk/bpa/hKeCNoK5IzVI2Q== 87 | dependencies: 88 | "@ethersproject/bignumber" "^5.4.0" 89 | "@ethersproject/bytes" "^5.4.0" 90 | "@ethersproject/keccak256" "^5.4.0" 91 | "@ethersproject/logger" "^5.4.0" 92 | "@ethersproject/rlp" "^5.4.0" 93 | 94 | "@ethersproject/address@^5.4.0", "@ethersproject/address@^5.7.0": 95 | version "5.7.0" 96 | resolved "https://registry.yarnpkg.com/@ethersproject/address/-/address-5.7.0.tgz#19b56c4d74a3b0a46bfdbb6cfcc0a153fc697f37" 97 | integrity sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA== 98 | dependencies: 99 | "@ethersproject/bignumber" "^5.7.0" 100 | "@ethersproject/bytes" "^5.7.0" 101 | "@ethersproject/keccak256" "^5.7.0" 102 | "@ethersproject/logger" "^5.7.0" 103 | "@ethersproject/rlp" "^5.7.0" 104 | 105 | "@ethersproject/base64@5.4.0": 106 | version "5.4.0" 107 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.4.0.tgz#7252bf65295954c9048c7ca5f43e5c86441b2a9a" 108 | integrity sha512-CjQw6E17QDSSC5jiM9YpF7N1aSCHmYGMt9bWD8PWv6YPMxjsys2/Q8xLrROKI3IWJ7sFfZ8B3flKDTM5wlWuZQ== 109 | dependencies: 110 | "@ethersproject/bytes" "^5.4.0" 111 | 112 | "@ethersproject/base64@^5.4.0", "@ethersproject/base64@^5.7.0": 113 | version "5.7.0" 114 | resolved "https://registry.yarnpkg.com/@ethersproject/base64/-/base64-5.7.0.tgz#ac4ee92aa36c1628173e221d0d01f53692059e1c" 115 | integrity sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ== 116 | dependencies: 117 | "@ethersproject/bytes" "^5.7.0" 118 | 119 | "@ethersproject/basex@5.4.0": 120 | version "5.4.0" 121 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.4.0.tgz#0a2da0f4e76c504a94f2b21d3161ed9438c7f8a6" 122 | integrity sha512-J07+QCVJ7np2bcpxydFVf/CuYo9mZ7T73Pe7KQY4c1lRlrixMeblauMxHXD0MPwFmUHZIILDNViVkykFBZylbg== 123 | dependencies: 124 | "@ethersproject/bytes" "^5.4.0" 125 | "@ethersproject/properties" "^5.4.0" 126 | 127 | "@ethersproject/basex@^5.4.0", "@ethersproject/basex@^5.7.0": 128 | version "5.7.0" 129 | resolved "https://registry.yarnpkg.com/@ethersproject/basex/-/basex-5.7.0.tgz#97034dc7e8938a8ca943ab20f8a5e492ece4020b" 130 | integrity sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw== 131 | dependencies: 132 | "@ethersproject/bytes" "^5.7.0" 133 | "@ethersproject/properties" "^5.7.0" 134 | 135 | "@ethersproject/bignumber@5.4.1": 136 | version "5.4.1" 137 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.4.1.tgz#64399d3b9ae80aa83d483e550ba57ea062c1042d" 138 | integrity sha512-fJhdxqoQNuDOk6epfM7yD6J8Pol4NUCy1vkaGAkuujZm0+lNow//MKu1hLhRiYV4BsOHyBv5/lsTjF+7hWwhJg== 139 | dependencies: 140 | "@ethersproject/bytes" "^5.4.0" 141 | "@ethersproject/logger" "^5.4.0" 142 | bn.js "^4.11.9" 143 | 144 | "@ethersproject/bignumber@^5.4.0", "@ethersproject/bignumber@^5.7.0": 145 | version "5.7.0" 146 | resolved "https://registry.yarnpkg.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz#e2f03837f268ba655ffba03a57853e18a18dc9c2" 147 | integrity sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw== 148 | dependencies: 149 | "@ethersproject/bytes" "^5.7.0" 150 | "@ethersproject/logger" "^5.7.0" 151 | bn.js "^5.2.1" 152 | 153 | "@ethersproject/bytes@5.4.0": 154 | version "5.4.0" 155 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.4.0.tgz#56fa32ce3bf67153756dbaefda921d1d4774404e" 156 | integrity sha512-H60ceqgTHbhzOj4uRc/83SCN9d+BSUnOkrr2intevqdtEMO1JFVZ1XL84OEZV+QjV36OaZYxtnt4lGmxcGsPfA== 157 | dependencies: 158 | "@ethersproject/logger" "^5.4.0" 159 | 160 | "@ethersproject/bytes@^5.4.0", "@ethersproject/bytes@^5.7.0": 161 | version "5.7.0" 162 | resolved "https://registry.yarnpkg.com/@ethersproject/bytes/-/bytes-5.7.0.tgz#a00f6ea8d7e7534d6d87f47188af1148d71f155d" 163 | integrity sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A== 164 | dependencies: 165 | "@ethersproject/logger" "^5.7.0" 166 | 167 | "@ethersproject/constants@5.4.0": 168 | version "5.4.0" 169 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.4.0.tgz#ee0bdcb30bf1b532d2353c977bf2ef1ee117958a" 170 | integrity sha512-tzjn6S7sj9+DIIeKTJLjK9WGN2Tj0P++Z8ONEIlZjyoTkBuODN+0VfhAyYksKi43l1Sx9tX2VlFfzjfmr5Wl3Q== 171 | dependencies: 172 | "@ethersproject/bignumber" "^5.4.0" 173 | 174 | "@ethersproject/constants@^5.4.0", "@ethersproject/constants@^5.7.0": 175 | version "5.7.0" 176 | resolved "https://registry.yarnpkg.com/@ethersproject/constants/-/constants-5.7.0.tgz#df80a9705a7e08984161f09014ea012d1c75295e" 177 | integrity sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA== 178 | dependencies: 179 | "@ethersproject/bignumber" "^5.7.0" 180 | 181 | "@ethersproject/contracts@5.4.1": 182 | version "5.4.1" 183 | resolved "https://registry.yarnpkg.com/@ethersproject/contracts/-/contracts-5.4.1.tgz#3eb4f35b7fe60a962a75804ada2746494df3e470" 184 | integrity sha512-m+z2ZgPy4pyR15Je//dUaymRUZq5MtDajF6GwFbGAVmKz/RF+DNIPwF0k5qEcL3wPGVqUjFg2/krlCRVTU4T5w== 185 | dependencies: 186 | "@ethersproject/abi" "^5.4.0" 187 | "@ethersproject/abstract-provider" "^5.4.0" 188 | "@ethersproject/abstract-signer" "^5.4.0" 189 | "@ethersproject/address" "^5.4.0" 190 | "@ethersproject/bignumber" "^5.4.0" 191 | "@ethersproject/bytes" "^5.4.0" 192 | "@ethersproject/constants" "^5.4.0" 193 | "@ethersproject/logger" "^5.4.0" 194 | "@ethersproject/properties" "^5.4.0" 195 | "@ethersproject/transactions" "^5.4.0" 196 | 197 | "@ethersproject/hash@5.4.0": 198 | version "5.4.0" 199 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.4.0.tgz#d18a8e927e828e22860a011f39e429d388344ae0" 200 | integrity sha512-xymAM9tmikKgbktOCjW60Z5sdouiIIurkZUr9oW5NOex5uwxrbsYG09kb5bMcNjlVeJD3yPivTNzViIs1GCbqA== 201 | dependencies: 202 | "@ethersproject/abstract-signer" "^5.4.0" 203 | "@ethersproject/address" "^5.4.0" 204 | "@ethersproject/bignumber" "^5.4.0" 205 | "@ethersproject/bytes" "^5.4.0" 206 | "@ethersproject/keccak256" "^5.4.0" 207 | "@ethersproject/logger" "^5.4.0" 208 | "@ethersproject/properties" "^5.4.0" 209 | "@ethersproject/strings" "^5.4.0" 210 | 211 | "@ethersproject/hash@^5.4.0", "@ethersproject/hash@^5.7.0": 212 | version "5.7.0" 213 | resolved "https://registry.yarnpkg.com/@ethersproject/hash/-/hash-5.7.0.tgz#eb7aca84a588508369562e16e514b539ba5240a7" 214 | integrity sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g== 215 | dependencies: 216 | "@ethersproject/abstract-signer" "^5.7.0" 217 | "@ethersproject/address" "^5.7.0" 218 | "@ethersproject/base64" "^5.7.0" 219 | "@ethersproject/bignumber" "^5.7.0" 220 | "@ethersproject/bytes" "^5.7.0" 221 | "@ethersproject/keccak256" "^5.7.0" 222 | "@ethersproject/logger" "^5.7.0" 223 | "@ethersproject/properties" "^5.7.0" 224 | "@ethersproject/strings" "^5.7.0" 225 | 226 | "@ethersproject/hdnode@5.4.0": 227 | version "5.4.0" 228 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.4.0.tgz#4bc9999b9a12eb5ce80c5faa83114a57e4107cac" 229 | integrity sha512-pKxdS0KAaeVGfZPp1KOiDLB0jba11tG6OP1u11QnYfb7pXn6IZx0xceqWRr6ygke8+Kw74IpOoSi7/DwANhy8Q== 230 | dependencies: 231 | "@ethersproject/abstract-signer" "^5.4.0" 232 | "@ethersproject/basex" "^5.4.0" 233 | "@ethersproject/bignumber" "^5.4.0" 234 | "@ethersproject/bytes" "^5.4.0" 235 | "@ethersproject/logger" "^5.4.0" 236 | "@ethersproject/pbkdf2" "^5.4.0" 237 | "@ethersproject/properties" "^5.4.0" 238 | "@ethersproject/sha2" "^5.4.0" 239 | "@ethersproject/signing-key" "^5.4.0" 240 | "@ethersproject/strings" "^5.4.0" 241 | "@ethersproject/transactions" "^5.4.0" 242 | "@ethersproject/wordlists" "^5.4.0" 243 | 244 | "@ethersproject/hdnode@^5.4.0", "@ethersproject/hdnode@^5.7.0": 245 | version "5.7.0" 246 | resolved "https://registry.yarnpkg.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz#e627ddc6b466bc77aebf1a6b9e47405ca5aef9cf" 247 | integrity sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg== 248 | dependencies: 249 | "@ethersproject/abstract-signer" "^5.7.0" 250 | "@ethersproject/basex" "^5.7.0" 251 | "@ethersproject/bignumber" "^5.7.0" 252 | "@ethersproject/bytes" "^5.7.0" 253 | "@ethersproject/logger" "^5.7.0" 254 | "@ethersproject/pbkdf2" "^5.7.0" 255 | "@ethersproject/properties" "^5.7.0" 256 | "@ethersproject/sha2" "^5.7.0" 257 | "@ethersproject/signing-key" "^5.7.0" 258 | "@ethersproject/strings" "^5.7.0" 259 | "@ethersproject/transactions" "^5.7.0" 260 | "@ethersproject/wordlists" "^5.7.0" 261 | 262 | "@ethersproject/json-wallets@5.4.0": 263 | version "5.4.0" 264 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.4.0.tgz#2583341cfe313fc9856642e8ace3080154145e95" 265 | integrity sha512-igWcu3fx4aiczrzEHwG1xJZo9l1cFfQOWzTqwRw/xcvxTk58q4f9M7cjh51EKphMHvrJtcezJ1gf1q1AUOfEQQ== 266 | dependencies: 267 | "@ethersproject/abstract-signer" "^5.4.0" 268 | "@ethersproject/address" "^5.4.0" 269 | "@ethersproject/bytes" "^5.4.0" 270 | "@ethersproject/hdnode" "^5.4.0" 271 | "@ethersproject/keccak256" "^5.4.0" 272 | "@ethersproject/logger" "^5.4.0" 273 | "@ethersproject/pbkdf2" "^5.4.0" 274 | "@ethersproject/properties" "^5.4.0" 275 | "@ethersproject/random" "^5.4.0" 276 | "@ethersproject/strings" "^5.4.0" 277 | "@ethersproject/transactions" "^5.4.0" 278 | aes-js "3.0.0" 279 | scrypt-js "3.0.1" 280 | 281 | "@ethersproject/json-wallets@^5.4.0": 282 | version "5.7.0" 283 | resolved "https://registry.yarnpkg.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz#5e3355287b548c32b368d91014919ebebddd5360" 284 | integrity sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g== 285 | dependencies: 286 | "@ethersproject/abstract-signer" "^5.7.0" 287 | "@ethersproject/address" "^5.7.0" 288 | "@ethersproject/bytes" "^5.7.0" 289 | "@ethersproject/hdnode" "^5.7.0" 290 | "@ethersproject/keccak256" "^5.7.0" 291 | "@ethersproject/logger" "^5.7.0" 292 | "@ethersproject/pbkdf2" "^5.7.0" 293 | "@ethersproject/properties" "^5.7.0" 294 | "@ethersproject/random" "^5.7.0" 295 | "@ethersproject/strings" "^5.7.0" 296 | "@ethersproject/transactions" "^5.7.0" 297 | aes-js "3.0.0" 298 | scrypt-js "3.0.1" 299 | 300 | "@ethersproject/keccak256@5.4.0": 301 | version "5.4.0" 302 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.4.0.tgz#7143b8eea4976080241d2bd92e3b1f1bf7025318" 303 | integrity sha512-FBI1plWet+dPUvAzPAeHzRKiPpETQzqSUWR1wXJGHVWi4i8bOSrpC3NwpkPjgeXG7MnugVc1B42VbfnQikyC/A== 304 | dependencies: 305 | "@ethersproject/bytes" "^5.4.0" 306 | js-sha3 "0.5.7" 307 | 308 | "@ethersproject/keccak256@^5.4.0", "@ethersproject/keccak256@^5.7.0": 309 | version "5.7.0" 310 | resolved "https://registry.yarnpkg.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz#3186350c6e1cd6aba7940384ec7d6d9db01f335a" 311 | integrity sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg== 312 | dependencies: 313 | "@ethersproject/bytes" "^5.7.0" 314 | js-sha3 "0.8.0" 315 | 316 | "@ethersproject/logger@5.4.1": 317 | version "5.4.1" 318 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.4.1.tgz#503bd33683538b923c578c07d1c2c0dd18672054" 319 | integrity sha512-DZ+bRinnYLPw1yAC64oRl0QyVZj43QeHIhVKfD/+YwSz4wsv1pfwb5SOFjz+r710YEWzU6LrhuSjpSO+6PeE4A== 320 | 321 | "@ethersproject/logger@^5.4.0", "@ethersproject/logger@^5.7.0": 322 | version "5.7.0" 323 | resolved "https://registry.yarnpkg.com/@ethersproject/logger/-/logger-5.7.0.tgz#6ce9ae168e74fecf287be17062b590852c311892" 324 | integrity sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig== 325 | 326 | "@ethersproject/networks@5.4.2": 327 | version "5.4.2" 328 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.4.2.tgz#2247d977626e97e2c3b8ee73cd2457babde0ce35" 329 | integrity sha512-eekOhvJyBnuibfJnhtK46b8HimBc5+4gqpvd1/H9LEl7Q7/qhsIhM81dI9Fcnjpk3jB1aTy6bj0hz3cifhNeYw== 330 | dependencies: 331 | "@ethersproject/logger" "^5.4.0" 332 | 333 | "@ethersproject/networks@^5.4.0", "@ethersproject/networks@^5.7.0": 334 | version "5.7.1" 335 | resolved "https://registry.yarnpkg.com/@ethersproject/networks/-/networks-5.7.1.tgz#118e1a981d757d45ccea6bb58d9fd3d9db14ead6" 336 | integrity sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ== 337 | dependencies: 338 | "@ethersproject/logger" "^5.7.0" 339 | 340 | "@ethersproject/pbkdf2@5.4.0": 341 | version "5.4.0" 342 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.4.0.tgz#ed88782a67fda1594c22d60d0ca911a9d669641c" 343 | integrity sha512-x94aIv6tiA04g6BnazZSLoRXqyusawRyZWlUhKip2jvoLpzJuLb//KtMM6PEovE47pMbW+Qe1uw+68ameJjB7g== 344 | dependencies: 345 | "@ethersproject/bytes" "^5.4.0" 346 | "@ethersproject/sha2" "^5.4.0" 347 | 348 | "@ethersproject/pbkdf2@^5.4.0", "@ethersproject/pbkdf2@^5.7.0": 349 | version "5.7.0" 350 | resolved "https://registry.yarnpkg.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz#d2267d0a1f6e123f3771007338c47cccd83d3102" 351 | integrity sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw== 352 | dependencies: 353 | "@ethersproject/bytes" "^5.7.0" 354 | "@ethersproject/sha2" "^5.7.0" 355 | 356 | "@ethersproject/properties@5.4.1": 357 | version "5.4.1" 358 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.4.1.tgz#9f051f976ce790142c6261ccb7b826eaae1f2f36" 359 | integrity sha512-cyCGlF8wWlIZyizsj2PpbJ9I7rIlUAfnHYwy/T90pdkSn/NFTa5YWZx2wTJBe9V7dD65dcrrEMisCRUJiq6n3w== 360 | dependencies: 361 | "@ethersproject/logger" "^5.4.0" 362 | 363 | "@ethersproject/properties@^5.4.0", "@ethersproject/properties@^5.7.0": 364 | version "5.7.0" 365 | resolved "https://registry.yarnpkg.com/@ethersproject/properties/-/properties-5.7.0.tgz#a6e12cb0439b878aaf470f1902a176033067ed30" 366 | integrity sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw== 367 | dependencies: 368 | "@ethersproject/logger" "^5.7.0" 369 | 370 | "@ethersproject/providers@5.4.5": 371 | version "5.4.5" 372 | resolved "https://registry.yarnpkg.com/@ethersproject/providers/-/providers-5.4.5.tgz#eb2ea2a743a8115f79604a8157233a3a2c832928" 373 | integrity sha512-1GkrvkiAw3Fj28cwi1Sqm8ED1RtERtpdXmRfwIBGmqBSN5MoeRUHuwHPppMtbPayPgpFcvD7/Gdc9doO5fGYgw== 374 | dependencies: 375 | "@ethersproject/abstract-provider" "^5.4.0" 376 | "@ethersproject/abstract-signer" "^5.4.0" 377 | "@ethersproject/address" "^5.4.0" 378 | "@ethersproject/basex" "^5.4.0" 379 | "@ethersproject/bignumber" "^5.4.0" 380 | "@ethersproject/bytes" "^5.4.0" 381 | "@ethersproject/constants" "^5.4.0" 382 | "@ethersproject/hash" "^5.4.0" 383 | "@ethersproject/logger" "^5.4.0" 384 | "@ethersproject/networks" "^5.4.0" 385 | "@ethersproject/properties" "^5.4.0" 386 | "@ethersproject/random" "^5.4.0" 387 | "@ethersproject/rlp" "^5.4.0" 388 | "@ethersproject/sha2" "^5.4.0" 389 | "@ethersproject/strings" "^5.4.0" 390 | "@ethersproject/transactions" "^5.4.0" 391 | "@ethersproject/web" "^5.4.0" 392 | bech32 "1.1.4" 393 | ws "7.4.6" 394 | 395 | "@ethersproject/random@5.4.0": 396 | version "5.4.0" 397 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.4.0.tgz#9cdde60e160d024be39cc16f8de3b9ce39191e16" 398 | integrity sha512-pnpWNQlf0VAZDEOVp1rsYQosmv2o0ITS/PecNw+mS2/btF8eYdspkN0vIXrCMtkX09EAh9bdk8GoXmFXM1eAKw== 399 | dependencies: 400 | "@ethersproject/bytes" "^5.4.0" 401 | "@ethersproject/logger" "^5.4.0" 402 | 403 | "@ethersproject/random@^5.4.0", "@ethersproject/random@^5.7.0": 404 | version "5.7.0" 405 | resolved "https://registry.yarnpkg.com/@ethersproject/random/-/random-5.7.0.tgz#af19dcbc2484aae078bb03656ec05df66253280c" 406 | integrity sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ== 407 | dependencies: 408 | "@ethersproject/bytes" "^5.7.0" 409 | "@ethersproject/logger" "^5.7.0" 410 | 411 | "@ethersproject/rlp@5.4.0": 412 | version "5.4.0" 413 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.4.0.tgz#de61afda5ff979454e76d3b3310a6c32ad060931" 414 | integrity sha512-0I7MZKfi+T5+G8atId9QaQKHRvvasM/kqLyAH4XxBCBchAooH2EX5rL9kYZWwcm3awYV+XC7VF6nLhfeQFKVPg== 415 | dependencies: 416 | "@ethersproject/bytes" "^5.4.0" 417 | "@ethersproject/logger" "^5.4.0" 418 | 419 | "@ethersproject/rlp@^5.4.0", "@ethersproject/rlp@^5.7.0": 420 | version "5.7.0" 421 | resolved "https://registry.yarnpkg.com/@ethersproject/rlp/-/rlp-5.7.0.tgz#de39e4d5918b9d74d46de93af80b7685a9c21304" 422 | integrity sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w== 423 | dependencies: 424 | "@ethersproject/bytes" "^5.7.0" 425 | "@ethersproject/logger" "^5.7.0" 426 | 427 | "@ethersproject/sha2@5.4.0": 428 | version "5.4.0" 429 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.4.0.tgz#c9a8db1037014cbc4e9482bd662f86c090440371" 430 | integrity sha512-siheo36r1WD7Cy+bDdE1BJ8y0bDtqXCOxRMzPa4bV1TGt/eTUUt03BHoJNB6reWJD8A30E/pdJ8WFkq+/uz4Gg== 431 | dependencies: 432 | "@ethersproject/bytes" "^5.4.0" 433 | "@ethersproject/logger" "^5.4.0" 434 | hash.js "1.1.7" 435 | 436 | "@ethersproject/sha2@^5.4.0", "@ethersproject/sha2@^5.7.0": 437 | version "5.7.0" 438 | resolved "https://registry.yarnpkg.com/@ethersproject/sha2/-/sha2-5.7.0.tgz#9a5f7a7824ef784f7f7680984e593a800480c9fb" 439 | integrity sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw== 440 | dependencies: 441 | "@ethersproject/bytes" "^5.7.0" 442 | "@ethersproject/logger" "^5.7.0" 443 | hash.js "1.1.7" 444 | 445 | "@ethersproject/signing-key@5.4.0": 446 | version "5.4.0" 447 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.4.0.tgz#2f05120984e81cf89a3d5f6dec5c68ee0894fbec" 448 | integrity sha512-q8POUeywx6AKg2/jX9qBYZIAmKSB4ubGXdQ88l40hmATj29JnG5pp331nAWwwxPn2Qao4JpWHNZsQN+bPiSW9A== 449 | dependencies: 450 | "@ethersproject/bytes" "^5.4.0" 451 | "@ethersproject/logger" "^5.4.0" 452 | "@ethersproject/properties" "^5.4.0" 453 | bn.js "^4.11.9" 454 | elliptic "6.5.4" 455 | hash.js "1.1.7" 456 | 457 | "@ethersproject/signing-key@^5.4.0", "@ethersproject/signing-key@^5.7.0": 458 | version "5.7.0" 459 | resolved "https://registry.yarnpkg.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz#06b2df39411b00bc57c7c09b01d1e41cf1b16ab3" 460 | integrity sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q== 461 | dependencies: 462 | "@ethersproject/bytes" "^5.7.0" 463 | "@ethersproject/logger" "^5.7.0" 464 | "@ethersproject/properties" "^5.7.0" 465 | bn.js "^5.2.1" 466 | elliptic "6.5.4" 467 | hash.js "1.1.7" 468 | 469 | "@ethersproject/solidity@5.4.0": 470 | version "5.4.0" 471 | resolved "https://registry.yarnpkg.com/@ethersproject/solidity/-/solidity-5.4.0.tgz#1305e058ea02dc4891df18b33232b11a14ece9ec" 472 | integrity sha512-XFQTZ7wFSHOhHcV1DpcWj7VXECEiSrBuv7JErJvB9Uo+KfCdc3QtUZV+Vjh/AAaYgezUEKbCtE6Khjm44seevQ== 473 | dependencies: 474 | "@ethersproject/bignumber" "^5.4.0" 475 | "@ethersproject/bytes" "^5.4.0" 476 | "@ethersproject/keccak256" "^5.4.0" 477 | "@ethersproject/sha2" "^5.4.0" 478 | "@ethersproject/strings" "^5.4.0" 479 | 480 | "@ethersproject/strings@5.4.0": 481 | version "5.4.0" 482 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.4.0.tgz#fb12270132dd84b02906a8d895ae7e7fa3d07d9a" 483 | integrity sha512-k/9DkH5UGDhv7aReXLluFG5ExurwtIpUfnDNhQA29w896Dw3i4uDTz01Quaptbks1Uj9kI8wo9tmW73wcIEaWA== 484 | dependencies: 485 | "@ethersproject/bytes" "^5.4.0" 486 | "@ethersproject/constants" "^5.4.0" 487 | "@ethersproject/logger" "^5.4.0" 488 | 489 | "@ethersproject/strings@^5.4.0", "@ethersproject/strings@^5.7.0": 490 | version "5.7.0" 491 | resolved "https://registry.yarnpkg.com/@ethersproject/strings/-/strings-5.7.0.tgz#54c9d2a7c57ae8f1205c88a9d3a56471e14d5ed2" 492 | integrity sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg== 493 | dependencies: 494 | "@ethersproject/bytes" "^5.7.0" 495 | "@ethersproject/constants" "^5.7.0" 496 | "@ethersproject/logger" "^5.7.0" 497 | 498 | "@ethersproject/transactions@5.4.0": 499 | version "5.4.0" 500 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.4.0.tgz#a159d035179334bd92f340ce0f77e83e9e1522e0" 501 | integrity sha512-s3EjZZt7xa4BkLknJZ98QGoIza94rVjaEed0rzZ/jB9WrIuu/1+tjvYCWzVrystXtDswy7TPBeIepyXwSYa4WQ== 502 | dependencies: 503 | "@ethersproject/address" "^5.4.0" 504 | "@ethersproject/bignumber" "^5.4.0" 505 | "@ethersproject/bytes" "^5.4.0" 506 | "@ethersproject/constants" "^5.4.0" 507 | "@ethersproject/keccak256" "^5.4.0" 508 | "@ethersproject/logger" "^5.4.0" 509 | "@ethersproject/properties" "^5.4.0" 510 | "@ethersproject/rlp" "^5.4.0" 511 | "@ethersproject/signing-key" "^5.4.0" 512 | 513 | "@ethersproject/transactions@^5.4.0", "@ethersproject/transactions@^5.7.0": 514 | version "5.7.0" 515 | resolved "https://registry.yarnpkg.com/@ethersproject/transactions/-/transactions-5.7.0.tgz#91318fc24063e057885a6af13fdb703e1f993d3b" 516 | integrity sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ== 517 | dependencies: 518 | "@ethersproject/address" "^5.7.0" 519 | "@ethersproject/bignumber" "^5.7.0" 520 | "@ethersproject/bytes" "^5.7.0" 521 | "@ethersproject/constants" "^5.7.0" 522 | "@ethersproject/keccak256" "^5.7.0" 523 | "@ethersproject/logger" "^5.7.0" 524 | "@ethersproject/properties" "^5.7.0" 525 | "@ethersproject/rlp" "^5.7.0" 526 | "@ethersproject/signing-key" "^5.7.0" 527 | 528 | "@ethersproject/units@5.4.0": 529 | version "5.4.0" 530 | resolved "https://registry.yarnpkg.com/@ethersproject/units/-/units-5.4.0.tgz#d57477a4498b14b88b10396062c8cbbaf20c79fe" 531 | integrity sha512-Z88krX40KCp+JqPCP5oPv5p750g+uU6gopDYRTBGcDvOASh6qhiEYCRatuM/suC4S2XW9Zz90QI35MfSrTIaFg== 532 | dependencies: 533 | "@ethersproject/bignumber" "^5.4.0" 534 | "@ethersproject/constants" "^5.4.0" 535 | "@ethersproject/logger" "^5.4.0" 536 | 537 | "@ethersproject/wallet@5.4.0": 538 | version "5.4.0" 539 | resolved "https://registry.yarnpkg.com/@ethersproject/wallet/-/wallet-5.4.0.tgz#fa5b59830b42e9be56eadd45a16a2e0933ad9353" 540 | integrity sha512-wU29majLjM6AjCjpat21mPPviG+EpK7wY1+jzKD0fg3ui5fgedf2zEu1RDgpfIMsfn8fJHJuzM4zXZ2+hSHaSQ== 541 | dependencies: 542 | "@ethersproject/abstract-provider" "^5.4.0" 543 | "@ethersproject/abstract-signer" "^5.4.0" 544 | "@ethersproject/address" "^5.4.0" 545 | "@ethersproject/bignumber" "^5.4.0" 546 | "@ethersproject/bytes" "^5.4.0" 547 | "@ethersproject/hash" "^5.4.0" 548 | "@ethersproject/hdnode" "^5.4.0" 549 | "@ethersproject/json-wallets" "^5.4.0" 550 | "@ethersproject/keccak256" "^5.4.0" 551 | "@ethersproject/logger" "^5.4.0" 552 | "@ethersproject/properties" "^5.4.0" 553 | "@ethersproject/random" "^5.4.0" 554 | "@ethersproject/signing-key" "^5.4.0" 555 | "@ethersproject/transactions" "^5.4.0" 556 | "@ethersproject/wordlists" "^5.4.0" 557 | 558 | "@ethersproject/web@5.4.0": 559 | version "5.4.0" 560 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.4.0.tgz#49fac173b96992334ed36a175538ba07a7413d1f" 561 | integrity sha512-1bUusGmcoRLYgMn6c1BLk1tOKUIFuTg8j+6N8lYlbMpDesnle+i3pGSagGNvwjaiLo4Y5gBibwctpPRmjrh4Og== 562 | dependencies: 563 | "@ethersproject/base64" "^5.4.0" 564 | "@ethersproject/bytes" "^5.4.0" 565 | "@ethersproject/logger" "^5.4.0" 566 | "@ethersproject/properties" "^5.4.0" 567 | "@ethersproject/strings" "^5.4.0" 568 | 569 | "@ethersproject/web@^5.4.0", "@ethersproject/web@^5.7.0": 570 | version "5.7.1" 571 | resolved "https://registry.yarnpkg.com/@ethersproject/web/-/web-5.7.1.tgz#de1f285b373149bee5928f4eb7bcb87ee5fbb4ae" 572 | integrity sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w== 573 | dependencies: 574 | "@ethersproject/base64" "^5.7.0" 575 | "@ethersproject/bytes" "^5.7.0" 576 | "@ethersproject/logger" "^5.7.0" 577 | "@ethersproject/properties" "^5.7.0" 578 | "@ethersproject/strings" "^5.7.0" 579 | 580 | "@ethersproject/wordlists@5.4.0": 581 | version "5.4.0" 582 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.4.0.tgz#f34205ec3bbc9e2c49cadaee774cf0b07e7573d7" 583 | integrity sha512-FemEkf6a+EBKEPxlzeVgUaVSodU7G0Na89jqKjmWMlDB0tomoU8RlEMgUvXyqtrg8N4cwpLh8nyRnm1Nay1isA== 584 | dependencies: 585 | "@ethersproject/bytes" "^5.4.0" 586 | "@ethersproject/hash" "^5.4.0" 587 | "@ethersproject/logger" "^5.4.0" 588 | "@ethersproject/properties" "^5.4.0" 589 | "@ethersproject/strings" "^5.4.0" 590 | 591 | "@ethersproject/wordlists@^5.4.0", "@ethersproject/wordlists@^5.7.0": 592 | version "5.7.0" 593 | resolved "https://registry.yarnpkg.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz#8fb2c07185d68c3e09eb3bfd6e779ba2774627f5" 594 | integrity sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA== 595 | dependencies: 596 | "@ethersproject/bytes" "^5.7.0" 597 | "@ethersproject/hash" "^5.7.0" 598 | "@ethersproject/logger" "^5.7.0" 599 | "@ethersproject/properties" "^5.7.0" 600 | "@ethersproject/strings" "^5.7.0" 601 | 602 | aes-js@3.0.0: 603 | version "3.0.0" 604 | resolved "https://registry.yarnpkg.com/aes-js/-/aes-js-3.0.0.tgz#e21df10ad6c2053295bcbb8dab40b09dbea87e4d" 605 | integrity sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw== 606 | 607 | axios@^0.26.1: 608 | version "0.26.1" 609 | resolved "https://registry.yarnpkg.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9" 610 | integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA== 611 | dependencies: 612 | follow-redirects "^1.14.8" 613 | 614 | bech32@1.1.4: 615 | version "1.1.4" 616 | resolved "https://registry.yarnpkg.com/bech32/-/bech32-1.1.4.tgz#e38c9f37bf179b8eb16ae3a772b40c356d4832e9" 617 | integrity sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ== 618 | 619 | bn.js@^4.11.9: 620 | version "4.12.0" 621 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 622 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 623 | 624 | bn.js@^5.2.1: 625 | version "5.2.1" 626 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" 627 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== 628 | 629 | brorand@^1.1.0: 630 | version "1.1.0" 631 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 632 | integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== 633 | 634 | elliptic@6.5.4: 635 | version "6.5.4" 636 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 637 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 638 | dependencies: 639 | bn.js "^4.11.9" 640 | brorand "^1.1.0" 641 | hash.js "^1.0.0" 642 | hmac-drbg "^1.0.1" 643 | inherits "^2.0.4" 644 | minimalistic-assert "^1.0.1" 645 | minimalistic-crypto-utils "^1.0.1" 646 | 647 | ethers@5.4.6: 648 | version "5.4.6" 649 | resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.4.6.tgz#fe0a023956b5502c947f58e82fbcf9a73e5e75b6" 650 | integrity sha512-F7LXARyB/Px3AQC6/QKedWZ8eqCkgOLORqL4B/F0Mag/K+qJSFGqsR36EaOZ6fKg3ZonI+pdbhb4A8Knt/43jQ== 651 | dependencies: 652 | "@ethersproject/abi" "5.4.1" 653 | "@ethersproject/abstract-provider" "5.4.1" 654 | "@ethersproject/abstract-signer" "5.4.1" 655 | "@ethersproject/address" "5.4.0" 656 | "@ethersproject/base64" "5.4.0" 657 | "@ethersproject/basex" "5.4.0" 658 | "@ethersproject/bignumber" "5.4.1" 659 | "@ethersproject/bytes" "5.4.0" 660 | "@ethersproject/constants" "5.4.0" 661 | "@ethersproject/contracts" "5.4.1" 662 | "@ethersproject/hash" "5.4.0" 663 | "@ethersproject/hdnode" "5.4.0" 664 | "@ethersproject/json-wallets" "5.4.0" 665 | "@ethersproject/keccak256" "5.4.0" 666 | "@ethersproject/logger" "5.4.1" 667 | "@ethersproject/networks" "5.4.2" 668 | "@ethersproject/pbkdf2" "5.4.0" 669 | "@ethersproject/properties" "5.4.1" 670 | "@ethersproject/providers" "5.4.5" 671 | "@ethersproject/random" "5.4.0" 672 | "@ethersproject/rlp" "5.4.0" 673 | "@ethersproject/sha2" "5.4.0" 674 | "@ethersproject/signing-key" "5.4.0" 675 | "@ethersproject/solidity" "5.4.0" 676 | "@ethersproject/strings" "5.4.0" 677 | "@ethersproject/transactions" "5.4.0" 678 | "@ethersproject/units" "5.4.0" 679 | "@ethersproject/wallet" "5.4.0" 680 | "@ethersproject/web" "5.4.0" 681 | "@ethersproject/wordlists" "5.4.0" 682 | 683 | follow-redirects@^1.14.8: 684 | version "1.15.2" 685 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" 686 | integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== 687 | 688 | hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3: 689 | version "1.1.7" 690 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" 691 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== 692 | dependencies: 693 | inherits "^2.0.3" 694 | minimalistic-assert "^1.0.1" 695 | 696 | hmac-drbg@^1.0.1: 697 | version "1.0.1" 698 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 699 | integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== 700 | dependencies: 701 | hash.js "^1.0.3" 702 | minimalistic-assert "^1.0.0" 703 | minimalistic-crypto-utils "^1.0.1" 704 | 705 | inherits@^2.0.3, inherits@^2.0.4: 706 | version "2.0.4" 707 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 708 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 709 | 710 | js-sha3@0.5.7: 711 | version "0.5.7" 712 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.5.7.tgz#0d4ffd8002d5333aabaf4a23eed2f6374c9f28e7" 713 | integrity sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g== 714 | 715 | js-sha3@0.8.0: 716 | version "0.8.0" 717 | resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" 718 | integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== 719 | 720 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: 721 | version "1.0.1" 722 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 723 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 724 | 725 | minimalistic-crypto-utils@^1.0.1: 726 | version "1.0.1" 727 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 728 | integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== 729 | 730 | scrypt-js@3.0.1: 731 | version "3.0.1" 732 | resolved "https://registry.yarnpkg.com/scrypt-js/-/scrypt-js-3.0.1.tgz#d314a57c2aef69d1ad98a138a21fe9eafa9ee312" 733 | integrity sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA== 734 | 735 | ws@7.4.6: 736 | version "7.4.6" 737 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.6.tgz#5654ca8ecdeee47c33a9a4bf6d28e2be2980377c" 738 | integrity sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A== 739 | --------------------------------------------------------------------------------