├── app
├── CNAME
├── public
│ ├── robots.txt
│ ├── favicon.ico
│ ├── manifest.json
│ ├── credix_logo_zwart.svg
│ ├── credix_logo_wit.svg
│ └── index.html
├── src
│ ├── setupTests.js
│ ├── config
│ │ ├── config.js
│ │ └── spl_token_faucet.json
│ ├── reportWebVitals.js
│ ├── App.test.js
│ ├── components
│ │ ├── Utils
│ │ │ ├── utils.js
│ │ │ └── notify.js
│ │ ├── Footer
│ │ │ ├── index.js
│ │ │ └── style.scss
│ │ ├── Navbar
│ │ │ ├── style.scss
│ │ │ ├── CheckBalance
│ │ │ │ └── index.js
│ │ │ └── index.js
│ │ └── Airdrop
│ │ │ ├── style.scss
│ │ │ └── index.js
│ ├── index.js
│ ├── App.js
│ └── index.scss
├── .gitignore
├── config-overrides.js
├── package.json
└── README.md
├── Cargo.toml
├── .gitignore
├── programs
└── spl-token-faucet
│ ├── Xargo.toml
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── spl_token_faucet-keypair.json
├── tsconfig.json
├── Brewfile
├── Anchor.toml
├── package.json
├── migrations
└── deploy.ts
├── setup
└── usdc_airdrop.js
├── tests
└── spl-token-faucet.ts
├── README.md
├── LICENSE
├── Cargo.lock
└── yarn.lock
/app/CNAME:
--------------------------------------------------------------------------------
1 | spl-token-faucet.com
2 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [workspace]
2 | members = [
3 | "programs/*"
4 | ]
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .anchor
2 | .DS_Store
3 | target
4 | **/*.rs.bk
5 | node_modules
6 | test-ledger
7 |
--------------------------------------------------------------------------------
/app/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/programs/spl-token-faucet/Xargo.toml:
--------------------------------------------------------------------------------
1 | [target.bpfel-unknown-unknown.dependencies.std]
2 | features = []
3 |
--------------------------------------------------------------------------------
/app/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/credix-finance/spl-token-faucet/HEAD/app/public/favicon.ico
--------------------------------------------------------------------------------
/spl_token_faucet-keypair.json:
--------------------------------------------------------------------------------
1 | [154,24,203,214,50,23,163,39,165,182,119,111,242,226,167,24,98,89,22,110,52,88,220,153,10,180,205,153,108,92,99,220,57,121,253,121,44,203,5,241,143,3,65,210,151,59,209,190,111,166,83,204,116,93,193,126,162,27,8,202,142,94,195,163]
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "types": ["mocha", "chai"],
4 | "typeRoots": ["./node_modules/@types"],
5 | "lib": ["es2015"],
6 | "module": "commonjs",
7 | "target": "es6",
8 | "esModuleInterop": true
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/app/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/Brewfile:
--------------------------------------------------------------------------------
1 | tap "caarlos0/tap"
2 | tap "homebrew/bundle"
3 | tap "homebrew/cask"
4 | tap "homebrew/core"
5 | brew "coreutils"
6 | brew "cowsay"
7 | brew "fortune"
8 | brew "gh"
9 | brew "kubectx"
10 | brew "libpq"
11 | brew "node"
12 | brew "pre-commit"
13 | brew "python@3.9"
14 | brew "ssss"
15 |
--------------------------------------------------------------------------------
/app/src/config/config.js:
--------------------------------------------------------------------------------
1 | import { PublicKey } from '@solana/web3.js';
2 |
3 | export const programID = new PublicKey('4sN8PnN2ki2W4TFXAfzR645FWs8nimmsYeNtxM8RBK6A');
4 | export const dummyMintPk = new PublicKey('Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr');
5 | export const dummyMintPkBump = 255;
6 |
--------------------------------------------------------------------------------
/Anchor.toml:
--------------------------------------------------------------------------------
1 | [programs.localnet]
2 | spl_token_faucet = "4sN8PnN2ki2W4TFXAfzR645FWs8nimmsYeNtxM8RBK6A"
3 |
4 | [registry]
5 | url = "https://anchor.projectserum.com"
6 |
7 | [provider]
8 | cluster = "localnet"
9 | wallet = "~/.config/solana/id.json"
10 |
11 | [scripts]
12 | test = "ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"
13 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "@project-serum/anchor": "^0.18.0",
4 | "@solana/spl-token": "^0.1.8"
5 | },
6 | "devDependencies": {
7 | "@types/mocha": "^9.0.0",
8 | "chai": "^4.3.4",
9 | "mocha": "^9.0.3",
10 | "ts-mocha": "^8.0.0",
11 | "typescript": "^4.3.5"
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/app/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "Credix",
3 | "name": "Credix",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": ".",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/programs/spl-token-faucet/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "spl-token-faucet"
3 | version = "0.1.0"
4 | description = "Created with Anchor"
5 | edition = "2018"
6 |
7 | [lib]
8 | crate-type = ["cdylib", "lib"]
9 | name = "spl_token_faucet"
10 |
11 | [features]
12 | no-entrypoint = []
13 | no-idl = []
14 | cpi = ["no-entrypoint"]
15 | default = []
16 |
17 | [dependencies]
18 | anchor-lang = "0.18.2"
19 | anchor-spl = "0.18.0"
20 |
--------------------------------------------------------------------------------
/app/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = (onPerfEntry) => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({
4 | getCLS, getFID, getFCP, getLCP, getTTFB,
5 | }) => {
6 | getCLS(onPerfEntry);
7 | getFID(onPerfEntry);
8 | getFCP(onPerfEntry);
9 | getLCP(onPerfEntry);
10 | getTTFB(onPerfEntry);
11 | });
12 | }
13 | };
14 |
15 | export default reportWebVitals;
16 |
--------------------------------------------------------------------------------
/app/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | const mockEnqueue = jest.fn();
6 |
7 | jest.mock('notistack', () => ({
8 | ...jest.requireActual('notistack'),
9 | useSnackbar: () => ({
10 | enqueueSnackbar: mockEnqueue,
11 | }),
12 | }));
13 |
14 | it('renders without crashing', () => {
15 | const div = document.createElement('div');
16 | ReactDOM.render(, div);
17 | });
18 |
--------------------------------------------------------------------------------
/app/config-overrides.js:
--------------------------------------------------------------------------------
1 | const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
2 | const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin");
3 |
4 | module.exports = function override(config, env) {
5 | // do stuff with the webpack config...
6 | config.plugins.push(new NodePolyfillPlugin());
7 | config.resolve.plugins = config.resolve.plugins.filter(
8 | (plugin) => !(plugin instanceof ModuleScopePlugin)
9 | );
10 | return config;
11 | };
12 |
--------------------------------------------------------------------------------
/migrations/deploy.ts:
--------------------------------------------------------------------------------
1 | // Migrations are an early feature. Currently, they're nothing more than this
2 | // single deploy script that's invoked from the CLI, injecting a provider
3 | // configured from the workspace's Anchor.toml.
4 |
5 | const anchor = require("@project-serum/anchor");
6 |
7 | module.exports = async function (provider) {
8 | // Configure client to use the provider.
9 | anchor.setProvider(provider);
10 |
11 | // Add your deploy script here.
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/components/Utils/utils.js:
--------------------------------------------------------------------------------
1 | import { Connection } from "@solana/web3.js";
2 | import { AnchorProvider } from "@project-serum/anchor";
3 |
4 | export function GetProvider(wallet, network) {
5 | const opts = {
6 | preflightCommitment: "processed",
7 | };
8 | const connection = new Connection(network, opts.preflightCommitment);
9 | const provider = new AnchorProvider(
10 | connection,
11 | wallet,
12 | opts.preflightCommitment
13 | );
14 | return [provider, connection];
15 | }
16 |
--------------------------------------------------------------------------------
/app/src/components/Footer/index.js:
--------------------------------------------------------------------------------
1 | import "./style.scss";
2 |
3 | const Footer: FC = () => {
4 | return (
5 |
13 | );
14 | }
15 |
16 | export default Footer;
17 |
--------------------------------------------------------------------------------
/app/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.scss';
4 | import { SnackbarProvider } from 'notistack';
5 | import App from './App';
6 | import reportWebVitals from './reportWebVitals';
7 |
8 | ReactDOM.render(
9 |
10 |
11 |
12 |
13 | ,
14 | document.getElementById('root'),
15 | );
16 |
17 | // If you want to start measuring performance in your app, pass a function
18 | // to log results (for example: reportWebVitals(console.log))
19 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
20 | reportWebVitals();
21 |
--------------------------------------------------------------------------------
/app/public/credix_logo_zwart.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/src/components/Footer/style.scss:
--------------------------------------------------------------------------------
1 | .footer {
2 | //width: 300px;
3 | position: absolute;
4 | bottom: 0;
5 | height: 40px;
6 | border-top: 1px solid lightgrey;
7 | text-align: right;
8 | display: flex;
9 | align-items: center;
10 | justify-content: flex-end;
11 | padding-right: 50px;
12 |
13 | a {
14 | text-decoration: none;
15 | font-size: 12px;
16 | display: inline-block;
17 | color: black;
18 | margin-left: 50px;
19 | margin-bottom: 0px;
20 |
21 | &:hover {
22 | font-weight: bold;
23 | }
24 | }
25 | }
26 |
27 | .footer-left {
28 | left: 0;
29 | border-right: 1px solid lightgrey;
30 | }
31 |
32 | .footer-right {
33 | right: 0;
34 | border-left: 1px solid lightgrey;
35 | }
36 |
37 | .start-here {
38 | font-weight: bold;
39 | }
40 |
41 | .green {
42 | font-weight: bold;
43 | color: green !important;
44 | }
45 |
46 | .animated {
47 | animation-duration: 2.5s;
48 | animation-fill-mode: both;
49 | animation-iteration-count: infinite;
50 | }
51 |
52 | @keyframes bounce {
53 | 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
54 | 40% {transform: translateY(-4px);}
55 | 60% {transform: translateY(-2px);}
56 | }
57 | .bounce {
58 | animation-name: bounce;
59 | }
60 |
--------------------------------------------------------------------------------
/app/public/credix_logo_wit.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/src/components/Navbar/style.scss:
--------------------------------------------------------------------------------
1 | .navbar-wrapper {
2 | width: 100%;
3 | position: absolute;
4 | top: 0;
5 | z-index: 1000;
6 | }
7 |
8 | .notification-bar {
9 | height: 40px;
10 | width: 100%;
11 | top: 0;
12 | background-color: #7cd06e;
13 | display: flex;
14 | justify-content: center;
15 | align-items: center;
16 | p {
17 | font-weight: bolder;
18 | font-size: 14px;
19 | }
20 |
21 | a {
22 | color: black;
23 | margin-left: 10px;
24 | }
25 | }
26 |
27 | .navbar-container {
28 | height: 70px;
29 | width: 100%;
30 | border-bottom: 1px solid lightgrey;
31 | display: flex;
32 | justify-content: space-between;
33 | align-items: center;
34 | }
35 |
36 | .logo-and-tag-line {
37 | width: 400px;
38 | display: flex;
39 | align-items: center;
40 | }
41 |
42 | .tag-line {
43 | display: inline-block;
44 | font-size: 12px;
45 | max-width: 400px;
46 | margin-left: 20px;
47 | padding-bottom: 3px;
48 | font-size: 20px;
49 | }
50 |
51 | .navbar-button {
52 | margin-right: 20px !important;
53 | }
54 |
55 | .balance-wallet-container {
56 | display: flex;
57 | justify-content: space-between;
58 | align-items: flex-end;
59 | }
60 |
61 | .balance-and-pk {
62 | margin-left: 20px;
63 | margin-right: 50px;
64 |
65 | h1 {
66 | font-size: 20px;
67 | margin: 0 !important;
68 | }
69 |
70 | p {
71 | color: grey;
72 | font-size: 10px;
73 | margin-top: 3px;
74 | }
75 | }
76 |
77 | img.logo {
78 | max-height: 40px;
79 | margin-left: 20px;
80 | }
81 |
--------------------------------------------------------------------------------
/app/src/config/spl_token_faucet.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.0.0",
3 | "name": "spl_token_faucet",
4 | "instructions": [
5 | {
6 | "name": "airdrop",
7 | "accounts": [
8 | {
9 | "name": "mint",
10 | "isMut": true,
11 | "isSigner": false
12 | },
13 | {
14 | "name": "destination",
15 | "isMut": true,
16 | "isSigner": false
17 | },
18 | {
19 | "name": "payer",
20 | "isMut": false,
21 | "isSigner": true
22 | },
23 | {
24 | "name": "receiver",
25 | "isMut": false,
26 | "isSigner": false
27 | },
28 | {
29 | "name": "systemProgram",
30 | "isMut": false,
31 | "isSigner": false
32 | },
33 | {
34 | "name": "tokenProgram",
35 | "isMut": false,
36 | "isSigner": false
37 | },
38 | {
39 | "name": "associatedTokenProgram",
40 | "isMut": false,
41 | "isSigner": false
42 | },
43 | {
44 | "name": "rent",
45 | "isMut": false,
46 | "isSigner": false
47 | }
48 | ],
49 | "args": [
50 | {
51 | "name": "mintBump",
52 | "type": "u8"
53 | },
54 | {
55 | "name": "amount",
56 | "type": "u64"
57 | }
58 | ]
59 | }
60 | ],
61 | "metadata": {
62 | "address": "4sN8PnN2ki2W4TFXAfzR645FWs8nimmsYeNtxM8RBK6A"
63 | }
64 | }
--------------------------------------------------------------------------------
/app/src/components/Airdrop/style.scss:
--------------------------------------------------------------------------------
1 | .airdrop-pk-input {
2 | width: 100%;
3 | margin-top: 10px !important;
4 | margin-bottom: 40px !important;
5 | text-transform: none !important;
6 |
7 | &:disabled {
8 | opacity: 0.3;
9 | }
10 | }
11 |
12 | .network-dropdown {
13 | font-size: 12px !important;
14 | padding: 0;
15 | margin-bottom: 40px;
16 | margin-top: 10px;
17 | width: 100%;
18 | }
19 |
20 | .network-dropdown-wrapper {
21 | width: 500px;
22 | }
23 |
24 | .airdrop-container {
25 | height: calc(100vh - 70px);
26 | width: 100vw;
27 | position: absolute;
28 | bottom: 0;
29 | display: flex;
30 | justify-content: center;
31 | align-items: center;
32 | }
33 |
34 | .airdrop-wrapper {
35 | border: 1px solid black;
36 | padding: 40px;
37 | display: flex;
38 | max-width: 500px;
39 | flex-direction: column;
40 | justify-content: space-between;
41 | align-items: flex-end;
42 |
43 | h3 {
44 | width: 100%;
45 | margin: 0;
46 | }
47 |
48 | p {
49 | font-size: 12px;
50 | width: 100%;
51 | margin: 0;
52 | }
53 | }
54 |
55 | .sol-airdrop {
56 | width: 100% !important;
57 | margin-top: 10px !important;
58 | margin-bottom: 40px !important;
59 | }
60 |
61 | .stake-input {
62 | flex-grow: 2;
63 | margin-left: 0 !important;
64 |
65 | &:disabled {
66 | opacity: 0.3;
67 | }
68 | }
69 | .form-row {
70 | width: 100%;
71 | justify-content: flex-end;
72 | display: flex;
73 | margin-top: 10px;
74 | margin-bottom: 40px;
75 |
76 | input {
77 | margin-left: 10px;
78 | }
79 | }
80 |
--------------------------------------------------------------------------------
/app/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { FC, useMemo, useState } from "react";
2 | import { WalletDialogProvider } from "@solana/wallet-adapter-material-ui";
3 | import {
4 | ConnectionProvider,
5 | useLocalStorage,
6 | WalletProvider,
7 | } from "@solana/wallet-adapter-react";
8 | import { PhantomWalletAdapter } from "@solana/wallet-adapter-wallets";
9 | import { BrowserRouter as Router, Route } from "react-router-dom";
10 | import Navbar from "./components/Navbar";
11 | import Footer from "./components/Footer";
12 | import AirDrop from "./components/Airdrop";
13 |
14 | const App: FC = () => {
15 | const [network, setNetwork] = useState("https://api.devnet.solana.com");
16 | const [reload, setReload] = useState(true);
17 | const [autoConnect, _setAutoConnect] = useLocalStorage("autoConnect", false);
18 | const search = window.location.search;
19 | const params = new URLSearchParams(search);
20 | let tokenName = params.get("token-name");
21 | if (!tokenName) {
22 | tokenName = "DUMMY";
23 | }
24 |
25 | const wallets = useMemo(() => [new PhantomWalletAdapter()], []);
26 |
27 | return (
28 |
29 |
30 |
31 |
32 |
33 |
40 |
41 |
42 |
43 |
44 |
45 | );
46 | };
47 |
48 | export default App;
49 |
--------------------------------------------------------------------------------
/setup/usdc_airdrop.js:
--------------------------------------------------------------------------------
1 | const anchor = require("@project-serum/anchor");
2 | const {
3 | TOKEN_PROGRAM_ID,
4 | Token,
5 | ASSOCIATED_TOKEN_PROGRAM_ID,
6 | } = require("@solana/spl-token");
7 | const { SystemProgram, PublicKey } = anchor.web3;
8 |
9 | // This will always use the key on ~/.config/solana/id.json
10 | let provider = anchor.Provider.env();
11 | anchor.setProvider(provider);
12 | const program = anchor.workspace.SplTokenFaucet;
13 |
14 | const amount = 10000;
15 |
16 | async function airdrop_usdc() {
17 | console.log("provider address: " + provider.wallet.publicKey.toString());
18 | console.log("payer address: " + provider.wallet.publicKey.toString());
19 |
20 | const amountToAirdrop = new anchor.BN(amount * 1000000);
21 |
22 | console.log(program.programId);
23 | // Get the PDA that is the mint for the faucet
24 | const [mintPda, mintPdaBump] =
25 | await anchor.web3.PublicKey.findProgramAddressSync(
26 | [Buffer.from(anchor.utils.bytes.utf8.encode("faucet-mint"))],
27 | program.programId
28 | );
29 |
30 | // Get associated token account
31 | const associatedTokenAccount = await Token.getAssociatedTokenAddress(
32 | ASSOCIATED_TOKEN_PROGRAM_ID,
33 | TOKEN_PROGRAM_ID,
34 | mintPda,
35 | program.provider.wallet.publicKey
36 | );
37 |
38 | const tx = await program.rpc.airdrop(mintPdaBump, amountToAirdrop, {
39 | accounts: {
40 | receiver: program.provider.wallet.publicKey,
41 | payer: program.provider.wallet.publicKey,
42 | mint: mintPda,
43 | destination: associatedTokenAccount,
44 | rent: anchor.web3.SYSVAR_RENT_PUBKEY,
45 | tokenProgram: TOKEN_PROGRAM_ID,
46 | systemProgram: SystemProgram.programId,
47 | associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
48 | },
49 | signers: [],
50 | });
51 | console.log("Your transaction signature", tx);
52 | }
53 |
54 | airdrop_usdc();
55 |
--------------------------------------------------------------------------------
/app/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | SPL Token Faucet
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/app/src/components/Navbar/CheckBalance/index.js:
--------------------------------------------------------------------------------
1 | import {Button} from '@material-ui/core';
2 | import {useWallet} from '@solana/wallet-adapter-react';
3 | import React, {FC, useEffect} from 'react';
4 | import {GetProvider} from '../../Utils/utils';
5 | import {dummyMintPk} from '../../../config/config.js';
6 |
7 | const CheckBalance: FC = ({network, reload, balance, setBalance, solBalance, setSolBalance}) => {
8 | const wallet = useWallet();
9 | const [provider, connection] = GetProvider(wallet, network);
10 | const publicKey = provider.wallet.publicKey;
11 | const networkMap = {
12 | 'https://api.devnet.solana.com': 'DEVNET',
13 | 'https://api.testnet.solana.com': 'TESTNET',
14 | 'http://127.0.0.1:8899': 'LOCALNET'
15 | }
16 |
17 | useEffect(() => {
18 | checkBalance();
19 | }, [reload, wallet]);
20 |
21 | async function checkBalance() {
22 | try {
23 | const parsedTokenAccountsByOwner = await connection.getParsedTokenAccountsByOwner(provider.wallet.publicKey, { mint: dummyMintPk });
24 | balance = 1.0 * parsedTokenAccountsByOwner.value[0].account.data.parsed.info.tokenAmount.uiAmount;
25 | } catch (err) {
26 | console.log(err);
27 | balance = 0;
28 | }
29 | try {
30 | solBalance = await connection.getBalance(provider.wallet.publicKey);
31 | } catch (err) {
32 | console.log(err);
33 | solBalance = 0;
34 | }
35 | setBalance(Math.round(balance * 100)/100);
36 | setSolBalance(Math.round(((solBalance / 1000000000) * 100)/100));
37 | }
38 |
39 | return (
40 |
43 | );
44 | };
45 |
46 | export default CheckBalance;
47 |
--------------------------------------------------------------------------------
/app/src/components/Utils/notify.js:
--------------------------------------------------------------------------------
1 | import {Link, makeStyles} from '@material-ui/core';
2 | import LaunchIcon from '@material-ui/icons/Launch';
3 | import {useSnackbar, VariantType} from 'notistack';
4 | import React, {useCallback} from 'react';
5 |
6 | const useStyles = makeStyles({
7 | notification: {
8 | display: 'flex',
9 | alignItems: 'center',
10 | },
11 | link: {
12 | color: '#ffffff',
13 | display: 'flex',
14 | alignItems: 'center',
15 | marginLeft: 16,
16 | textDecoration: 'underline',
17 | '&:hover': {
18 | color: '#000000',
19 | },
20 | },
21 | icon: {
22 | fontSize: 20,
23 | marginLeft: 8,
24 | },
25 | });
26 |
27 | export function useNotify() {
28 | const styles = useStyles();
29 | const { enqueueSnackbar } = useSnackbar();
30 | const clusterMap = {
31 | "https://api.devnet.solana.com": "devnet",
32 | "https://api.testnet.solana.com": "testnet"
33 | }
34 |
35 | return useCallback(
36 | (variant: VariantType, message: string, signature?: string, cluster?: string) => {
37 | enqueueSnackbar(
38 |
39 | {message}
40 | {signature && (
41 |
46 | Transaction
47 |
48 |
49 | )}
50 | ,
51 | { variant }
52 | );
53 | },
54 | [enqueueSnackbar, styles]
55 | );
56 | }
57 |
--------------------------------------------------------------------------------
/app/src/components/Navbar/index.js:
--------------------------------------------------------------------------------
1 | import React, { FC } from "react";
2 | import { WalletMultiButton } from "@solana/wallet-adapter-material-ui";
3 | import CheckBalance from "./CheckBalance";
4 | import { useSessionStorage } from "react-use";
5 | import "./style.scss";
6 |
7 | const Navbar: FC = ({ tokenName, reload, network }) => {
8 | const [balance, setBalance] = useSessionStorage("balance");
9 | const [solBalance, setSolBalance] = useSessionStorage("balance");
10 |
11 | return (
12 |
13 |
25 |
26 |
27 | {tokenName}-TOKEN-FAUCET
28 |
29 |
30 |
31 |
40 |
41 |
42 |
43 | Balance: {solBalance} SOL, {balance} {tokenName}
44 |
45 |
46 |
47 |
48 |
49 |
50 | );
51 | };
52 |
53 | export default Navbar;
54 |
--------------------------------------------------------------------------------
/app/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "credix-mvp",
3 | "homepage": "https://spl-token-faucet.com",
4 | "version": "0.1.0",
5 | "private": true,
6 | "dependencies": {
7 | "@emotion/styled": "^11.10.6",
8 | "@material-ui/core": "^4.12.3",
9 | "@material-ui/icons": "^4.11.2",
10 | "@mui/icons-material": "^5.11.11",
11 | "@mui/material": "^5.11.13",
12 | "@project-serum/anchor": "^0.26.0",
13 | "@solana/spl-token": "^0.3.7",
14 | "@solana/wallet-adapter-base": "^0.9.22",
15 | "@solana/wallet-adapter-material-ui": "^0.16.29",
16 | "@solana/wallet-adapter-react": "^0.15.31",
17 | "@solana/wallet-adapter-wallets": "^0.19.15",
18 | "@solana/web3.js": "^1.74.0",
19 | "@testing-library/jest-dom": "^5.14.1",
20 | "@testing-library/react": "^14.0.0",
21 | "@testing-library/user-event": "^14.4.3",
22 | "antd": "5.3.2",
23 | "millify": "6.1.0",
24 | "notistack": "^3.0.1",
25 | "react": "^18.2.0",
26 | "react-dom": "^18.2.0",
27 | "react-ga": "^3.3.0",
28 | "react-router-dom": "^6.0.2",
29 | "react-scripts": "5.0.1",
30 | "react-select": "^5.2.1",
31 | "react-use": "^17.3.1",
32 | "sass": "^1.38.2",
33 | "web-vitals": "^3.3.0"
34 | },
35 | "scripts": {
36 | "start": "react-app-rewired start",
37 | "build": "react-app-rewired build",
38 | "test": "react-app-rewired test"
39 | },
40 | "eslintConfig": {
41 | "extends": [
42 | "react-app",
43 | "react-app/jest"
44 | ]
45 | },
46 | "browserslist": {
47 | "production": [
48 | ">0.2%",
49 | "not dead",
50 | "not op_mini all"
51 | ],
52 | "development": [
53 | "defaults"
54 | ]
55 | },
56 | "devDependencies": {
57 | "@babel/eslint-parser": "^7.15.8",
58 | "node-polyfill-webpack-plugin": "^2.0.1",
59 | "eslint": "^8.36.0",
60 | "eslint-config-airbnb": "^19.0.4",
61 | "eslint-plugin-import": "^2.25.2",
62 | "eslint-plugin-jsx-a11y": "^6.4.1",
63 | "eslint-plugin-react": "^7.26.1",
64 | "eslint-plugin-react-hooks": "^4.2.0",
65 | "gh-pages": "^5.0.0",
66 | "react-app-rewired": "^2.2.1"
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/programs/spl-token-faucet/src/lib.rs:
--------------------------------------------------------------------------------
1 | use anchor_lang::prelude::*;
2 | use anchor_spl::{
3 | associated_token::AssociatedToken,
4 | token::{Mint, Token, TokenAccount},
5 | };
6 |
7 | declare_id!("4sN8PnN2ki2W4TFXAfzR645FWs8nimmsYeNtxM8RBK6A");
8 |
9 | #[program]
10 | pub mod spl_token_faucet {
11 | use super::*;
12 |
13 | pub fn initialize_faucet(_ctx: Context, _mint_bump: u8) -> ProgramResult {
14 | Ok(())
15 | }
16 |
17 | pub fn airdrop(ctx: Context, mint_bump: u8, amount: u64) -> ProgramResult {
18 | anchor_spl::token::mint_to(
19 | CpiContext::new_with_signer(
20 | ctx.accounts.token_program.to_account_info(),
21 | anchor_spl::token::MintTo {
22 | mint: ctx.accounts.mint.to_account_info(),
23 | to: ctx.accounts.destination.to_account_info(),
24 | authority: ctx.accounts.mint.to_account_info(),
25 | },
26 | &[&[&"faucet-mint".as_bytes(), &[mint_bump]]],
27 | ),
28 | amount,
29 | )?;
30 | Ok(())
31 | }
32 | }
33 |
34 |
35 | #[derive(Accounts)]
36 | #[instruction(mint_bump: u8)]
37 | pub struct InitializeFaucet<'info> {
38 | #[account(
39 | init_if_needed,
40 | payer = payer,
41 | seeds = [b"faucet-mint".as_ref()],
42 | bump = mint_bump,
43 | mint::decimals = 6,
44 | mint::authority = mint
45 | )]
46 | pub mint: Account<'info, Mint>,
47 | pub payer: Signer<'info>,
48 | pub system_program: Program<'info, System>,
49 | pub token_program: Program<'info, Token>,
50 | pub rent: Sysvar<'info, Rent>,
51 | }
52 |
53 | #[derive(Accounts)]
54 | #[instruction(mint_bump: u8, amount: u64)]
55 | pub struct Airdrop<'info> {
56 | #[account(
57 | seeds = [b"faucet-mint".as_ref()],
58 | bump = mint_bump
59 | )]
60 | pub mint: Account<'info, Mint>,
61 |
62 | #[account(
63 | init_if_needed,
64 | payer = payer,
65 | associated_token::mint = mint,
66 | associated_token::authority = receiver
67 | )]
68 | pub destination: Account<'info, TokenAccount>,
69 | pub payer: Signer<'info>,
70 | pub receiver: AccountInfo<'info>,
71 | pub system_program: Program<'info, System>,
72 | pub token_program: Program<'info, Token>,
73 | pub associated_token_program: Program<'info, AssociatedToken>,
74 | pub rent: Sysvar<'info, Rent>,
75 | }
--------------------------------------------------------------------------------
/app/src/index.scss:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Poppins:wght@700&display=swap');
2 |
3 | body {
4 | font-family: "IBM Plex Mono";
5 | background-color: white;
6 | margin: 0;
7 | }
8 |
9 | h2 {
10 | text-align: left;
11 | margin-bottom: 1em;
12 | margin-top: 0;
13 | }
14 |
15 | .container {
16 | position: relative;
17 | height: 100vh;
18 | }
19 |
20 |
21 | button,
22 | .credix-button {
23 | font-family: 'IBM Plex Mono', monospace !important;
24 | border: 1px solid black !important;
25 | background: white !important;
26 | font-weight: bold !important;
27 | }
28 |
29 | .credix-button {
30 | font-size: 12px !important;
31 | padding: 3px 16px !important;
32 | height: 30px !important;
33 | }
34 |
35 | li > button {
36 | border: 0px !important;
37 | border-radius: 0px !important;
38 | }
39 |
40 | button > span,
41 | .credix-button {
42 | color: black !important;
43 | }
44 |
45 | .MuiDialog-container {
46 | font-family: 'IBM Plex Mono', monospace !important;
47 | }
48 |
49 | .MuiDialogTitle-root {
50 | background: white !important;
51 | }
52 |
53 | .makeStyles-root-5 .MuiDialogTitle-root {
54 | background: white !important;
55 | }
56 |
57 | .makeStyles-root-5 .MuiDialog-paper {
58 | padding: 15px;
59 | }
60 |
61 | .makeStyles-root-5 .MuiDialogContent-root .MuiListItem-root .MuiButton-root:hover {
62 | background: #E5E5E5 !important;
63 |
64 | }
65 |
66 | .MuiTypography-h6 {
67 | font-family: 'IBM Plex Mono', monospace !important;
68 | margin-bottom: 20px !important;
69 | }
70 |
71 | .makeStyles-root-7 .MuiDialogTitle-root {
72 | background-color: white !important;
73 | }
74 |
75 | .makeStyles-root-6 .MuiDialogTitle-root {
76 | background-color: white !important;
77 | }
78 |
79 |
80 | button {
81 | box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%) !important;
82 |
83 | &:hover {
84 | box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%) !important;
85 | };
86 |
87 | &:disabled {
88 | opacity: 0.3 !important;
89 | cursor: not-allowed !important;
90 | };
91 | }
92 |
93 | .makeStyles-root-7 {
94 | width: 20px !important;
95 | height: 20px !important;
96 | }
97 |
98 | .MuiButton-root {
99 | padding: 20px 20px;
100 | }
101 |
102 | .container-initialize {
103 | display: flex;
104 | justify-content: center;
105 | align-items: center;
106 | width: 100vw;
107 | height: 100vh;
108 |
109 | button {
110 | margin-right: 20px;
111 | }
112 | }
113 |
114 | .container-deals {
115 | display: flex;
116 | justify-content: center;
117 | align-items: center;
118 | width: 100vw;
119 | height: 100vh;
120 |
121 | button {
122 | margin-right: 20px;
123 | }
124 | }
125 |
--------------------------------------------------------------------------------
/tests/spl-token-faucet.ts:
--------------------------------------------------------------------------------
1 | import * as anchor from "@project-serum/anchor";
2 | import { Program } from "@project-serum/anchor";
3 | const assert = require("assert");
4 | const { SystemProgram } = anchor.web3;
5 | import { PublicKey } from "@solana/web3.js";
6 | const {
7 | TOKEN_PROGRAM_ID,
8 | Token,
9 | ASSOCIATED_TOKEN_PROGRAM_ID,
10 | } = require("@solana/spl-token");
11 | import { SplTokenFaucet } from "../target/types/spl_token_faucet";
12 |
13 | describe("spl-token-faucet", () => {
14 | // Configure the client to use the local cluster.
15 | anchor.setProvider(anchor.Provider.env());
16 | const program = anchor.workspace.SplTokenFaucet as Program;
17 |
18 | async function airdropTokens(
19 | amount,
20 | mintPda,
21 | mintPdaBump,
22 | receiver,
23 | associatedTokenAccount
24 | ) {
25 | let amountToAirdrop = new anchor.BN(amount * 1000000);
26 | await program.rpc.airdrop(mintPdaBump, amountToAirdrop, {
27 | accounts: {
28 | payer: program.provider.wallet.publicKey,
29 | mint: mintPda,
30 | destination: associatedTokenAccount,
31 | receiver: receiver,
32 | rent: anchor.web3.SYSVAR_RENT_PUBKEY,
33 | tokenProgram: TOKEN_PROGRAM_ID,
34 | systemProgram: SystemProgram.programId,
35 | associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
36 | },
37 | signers: [],
38 | });
39 | }
40 |
41 | async function getBalance(receiver, mintPda) {
42 | const parsedTokenAccountsByOwner =
43 | await program.provider.connection.getParsedTokenAccountsByOwner(
44 | receiver,
45 | { mint: mintPda }
46 | );
47 | let balance =
48 | parsedTokenAccountsByOwner.value[0].account.data.parsed.info.tokenAmount
49 | .uiAmount;
50 |
51 | return balance;
52 | }
53 |
54 | it("Airdrop tokens 2 times and check token account", async () => {
55 | // Get the PDA that is the mint for the faucet
56 | const [mintPda, mintPdaBump] =
57 | await anchor.web3.PublicKey.findProgramAddressSync(
58 | [Buffer.from(anchor.utils.bytes.utf8.encode("faucet-mint"))],
59 | program.programId
60 | );
61 |
62 | const receiver = new PublicKey(
63 | "8hpvAu6cq6qzVM4NpXp9bH2uuT4PEYMJvrXKrSd5tdfR"
64 | );
65 |
66 | let associatedTokenAccount = await Token.getAssociatedTokenAddress(
67 | ASSOCIATED_TOKEN_PROGRAM_ID,
68 | TOKEN_PROGRAM_ID,
69 | mintPda,
70 | receiver,
71 | true
72 | );
73 | // FIRST AIRDROP
74 | const firstAirdropAmount = 100;
75 | await airdropTokens(
76 | firstAirdropAmount,
77 | mintPda,
78 | mintPdaBump,
79 | receiver,
80 | associatedTokenAccount
81 | );
82 | let balance = await getBalance(receiver, mintPda);
83 | assert.ok(balance == firstAirdropAmount);
84 |
85 | // SECOND AIRDROP
86 | const secondAirdropAmount = 200;
87 | await airdropTokens(
88 | secondAirdropAmount,
89 | mintPda,
90 | mintPdaBump,
91 | receiver,
92 | associatedTokenAccount
93 | );
94 | balance = await getBalance(receiver, mintPda);
95 | assert.ok(balance == firstAirdropAmount + secondAirdropAmount);
96 | });
97 | });
98 |
--------------------------------------------------------------------------------
/app/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `npm start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `npm test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `npm run build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `npm run eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `npm run build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SPL token faucet
2 | This project aims at implementing an SPL token faucet in its simplest form using Anchor. Faucets are a must-have when developing dApps to test out token flows. A faucet allows you to receive an arbitrary amount of tokens; always coming from the same Mint. At Credix, we use this faucet to "mimic" USDC on testnet and devnet (as the USDC faucet is only available on testnet AND only allows 5USDC per IP, which is very limiting). The program is deployed on both testnet and devnet at `4sN8PnN2ki2W4TFXAfzR645FWs8nimmsYeNtxM8RBK6A` and the Mints PK is `Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr` on both networks.
3 |
4 | A reference UI has been implemented to make it easy for your end-users to get DUMMY tokens and use those in your application. The code for this reference UI can be found in the App folder. The hosted version can be found [here](https://spl-token-faucet.com/).
5 |
6 | Using the query parameter `token-name`, you can customize the UI to your needs. E.g. if we send the faucet to our test-users, we use the url https://spl-token-faucet.com?token-name=USDC to make the app look as it's a USDC faucet. If I want to mock the issuance of a TST token, I could send the url https://spl-token-faucet.com?token-name=TST.
7 |
8 | # Program
9 | ## Running the program on Localnet
10 |
11 | Swith to localnet.
12 |
13 | ```bash
14 | solana config set --url http://127.0.0.1:8899
15 | ```
16 |
17 | Run
18 | ```bash
19 | rm -rf test-ledger && solana-test-validator
20 | ```
21 | This will spin up a local validator that our client interacts with. More info on setting up a local validator can be found [here](https://docs.solana.com/developing/test-validator).
22 |
23 | ## Anchor program building and deployment
24 | Follow [this tutorial](https://dev.to/dabit3/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291) for an in depth-explanation on how to build your anchor program and deploy it to the different clusters.
25 |
26 |
27 | Copy the keypair into the build folder to override the generated keypair by Anchor. Normally, we never upload keypairs to GitHub, however we did upload this one so you can deploy the program locally using the same program id. You cannot upgrade the deployed versions (devnet, testnet) as their upgrade authority is already set.
28 | ```bash
29 | cp spl_token_faucet-keypair.json ./target/deploy/spl_token_faucet-keypair.json
30 | ```
31 |
32 | In order to build the program use following command.
33 | ```bash
34 | anchor build
35 | ```
36 |
37 | Now you can deploy it.
38 | ```bash
39 | anchor deploy
40 | ```
41 |
42 | You can now go to [the spl-token-faucet](https://spl-token-faucet.com/) and airdrop yourself some SOL and DUMMY tokens.
43 |
44 | If you want to do an airdrop of 10000 DUMMY tokens without running the client to the current provider, run following script.
45 | ```shell
46 | ANCHOR_WALLET=~/.config/solana/id.json ANCHOR_PROVIDER_URL=http://127.0.0.1:8899 node setup/usdc_airdrop.js
47 | ```
48 |
49 | ## Running program tests
50 | Before it's possible to run tests, all packages need to be installed and `mocha-ts` and `typescript` need to be globally installed.
51 | ```bash
52 | npm install -g ts-mocha typescript
53 | ```
54 |
55 | ```bash
56 | npm install
57 | ```
58 |
59 | Run all tests by using following command.
60 | ```bash
61 | anchor test
62 | ```
63 |
64 | # Client
65 | ## Running the client locally
66 | Go to the `app` directory and run following command.
67 | ```bash
68 | npm start
69 | ```
70 |
71 | ## Running client tests
72 | Before it's possible to run tests, all packages need to be installed. Make sure you are in the `app` directory.
73 | ```bash
74 | npm install
75 | ```
76 |
77 | Now it's possible to run UI tests.
78 | ```bash
79 | npm test
80 | ```
81 |
--------------------------------------------------------------------------------
/app/src/components/Airdrop/index.js:
--------------------------------------------------------------------------------
1 | import { Button } from "@material-ui/core";
2 | import {
3 | LAMPORTS_PER_SOL,
4 | TransactionSignature,
5 | PublicKey,
6 | } from "@solana/web3.js";
7 | import { useWallet } from "@solana/wallet-adapter-react";
8 | import { BN, Program, utils, web3 } from "@project-serum/anchor";
9 | import { useNotify } from "../Utils/notify";
10 | import Select from "react-select";
11 | import React, { FC, useState, useEffect } from "react";
12 | import { GetProvider } from "../Utils/utils";
13 | import {
14 | programID,
15 | dummyMintPk,
16 | dummyMintPkBump,
17 | } from "../../config/config.js";
18 | import idl from "../../config/spl_token_faucet.json";
19 |
20 | import "./style.scss";
21 | const {
22 | TOKEN_PROGRAM_ID,
23 | ASSOCIATED_TOKEN_PROGRAM_ID,
24 | } = require("@solana/spl-token");
25 | const { SystemProgram } = web3;
26 |
27 | const AirDrop: FC = ({ tokenName, reload, setReload, network, setNetwork }) => {
28 | const wallet = useWallet();
29 | const notify = useNotify();
30 | const [provider, connection] = GetProvider(wallet, network);
31 | const publicKey = provider.wallet.publicKey;
32 | const [selectedOption, setSelectedOption] = useState(
33 | "https://api.devnet.solana.com"
34 | );
35 | const [airdropPk, setAirdropPk] = useState("CONNECT WALLET");
36 | const [splAmount, setSplAmount] = useState(1000);
37 | const options = [
38 | { value: "https://api.devnet.solana.com", label: "DEVNET" },
39 | { value: "https://api.testnet.solana.com", label: "TESTNET" },
40 | { value: "http://127.0.0.1:8899", label: "LOCALNET" },
41 | ];
42 |
43 | useEffect(() => {
44 | if (wallet.publicKey) {
45 | setAirdropPk(wallet.publicKey.toString());
46 | }
47 | }, [wallet.publicKey]);
48 |
49 | const handleChange = (option) => {
50 | setSelectedOption(option);
51 | setNetwork(option.value);
52 | setReload(!reload);
53 | };
54 |
55 | const handleChangeSplAmount = (event) => {
56 | setSplAmount(event.target.value);
57 | };
58 |
59 | const handleChangeAirdropPk = (event) => {
60 | setAirdropPk(event.target.value);
61 | };
62 |
63 | const handleFocusAirdropPk = (event) => {
64 | setAirdropPk("");
65 | };
66 |
67 | const handleSubmitSpl = async (event) => {
68 | event.preventDefault();
69 | await airdropSplTokens(splAmount, dummyMintPk, dummyMintPkBump);
70 | };
71 |
72 | const handleSubmitSol = async (event) => {
73 | const [provider, connection] = GetProvider(wallet, network);
74 | let signature = "";
75 | try {
76 | signature = await connection.requestAirdrop(
77 | new PublicKey(airdropPk),
78 | LAMPORTS_PER_SOL
79 | );
80 | notify("info", "SOL airdrop requested:", signature, network);
81 | await connection.confirmTransaction(signature, "processed");
82 | notify("success", "SOL airdrop successful!", signature, network);
83 | setReload(!reload);
84 | } catch (err) {
85 | notify("error", `Airdrop failed! ${err?.message}`, signature, network);
86 | }
87 | };
88 |
89 | async function getAssociatedTokenAddress(
90 | associatedTokenProgramId,
91 | tokenProgramId,
92 | mint,
93 | owner,
94 | allowOwnerOffCurve = false
95 | ) {
96 | if (!allowOwnerOffCurve && !PublicKey.isOnCurve(owner.toBuffer()))
97 | throw new Error("Token owner off curve");
98 |
99 | const [address] = await PublicKey.findProgramAddressSync(
100 | [owner.toBuffer(), tokenProgramId.toBuffer(), mint.toBuffer()],
101 | associatedTokenProgramId
102 | );
103 |
104 | return address;
105 | }
106 |
107 | async function airdropSplTokens(amount, mintPda, mintPdaBump) {
108 | let signature = "";
109 | // try {
110 | const [provider, connection] = GetProvider(wallet, network);
111 | const program = new Program(idl, programID, provider);
112 | const receiver = new PublicKey(airdropPk);
113 | const mint = new PublicKey(mintPda.toString());
114 | let amountToAirdrop = new BN(amount * 1000000);
115 |
116 | let associatedTokenAccount = await getAssociatedTokenAddress(
117 | ASSOCIATED_TOKEN_PROGRAM_ID,
118 | TOKEN_PROGRAM_ID,
119 | mint,
120 | receiver,
121 | true
122 | );
123 |
124 | console.log(associatedTokenAccount);
125 | signature = await program.rpc.airdrop(mintPdaBump, amountToAirdrop, {
126 | accounts: {
127 | mint: mintPda,
128 | destination: associatedTokenAccount,
129 | payer: provider.wallet.publicKey,
130 | receiver: receiver,
131 | systemProgram: SystemProgram.programId,
132 | tokenProgram: TOKEN_PROGRAM_ID,
133 | associatedTokenProgram: ASSOCIATED_TOKEN_PROGRAM_ID,
134 | rent: web3.SYSVAR_RENT_PUBKEY,
135 | },
136 | signers: [],
137 | });
138 |
139 | notify("info", `${tokenName} Airdrop requested:`, signature, network);
140 | await connection.confirmTransaction(signature, "processed");
141 | notify("success", `${tokenName} Airdrop successful!`, signature, network);
142 | setReload(!reload);
143 |
144 | // } catch (err) {
145 | // notify(
146 | // "error",
147 | // `${tokenName} Airdrop failed! ${err?.message}`,
148 | // signature,
149 | // network
150 | // );
151 | // }
152 | }
153 |
154 | return (
155 |
156 |
157 |
Network selection
158 |
159 |
179 |
Address for airdrop
180 |
The address the SOL and {tokenName} will be sent to.
181 |
190 |
SOL airdrop
191 |
Receive 1 SOL; you will need this to pay for transaction fees.
192 |
200 |
{tokenName} airdrop
201 |
Receive dummy SPL tokens, always coming from the same mint.
202 |
Mint PK: Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr
203 |
221 |
Customize this faucet
222 |
223 | Give DUMMY a different name:{" "}
224 |
229 | spl-token-faucet.com?token-name=USDC
230 |
231 |
232 |
233 |
234 | );
235 | };
236 |
237 | export default AirDrop;
238 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
1 | # This file is automatically @generated by Cargo.
2 | # It is not intended for manual editing.
3 | version = 3
4 |
5 | [[package]]
6 | name = "ahash"
7 | version = "0.4.7"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
10 |
11 | [[package]]
12 | name = "aho-corasick"
13 | version = "0.7.18"
14 | source = "registry+https://github.com/rust-lang/crates.io-index"
15 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
16 | dependencies = [
17 | "memchr",
18 | ]
19 |
20 | [[package]]
21 | name = "anchor-attribute-access-control"
22 | version = "0.18.2"
23 | source = "registry+https://github.com/rust-lang/crates.io-index"
24 | checksum = "13e53fd8d0aa034bb2e647c39eec4e399095438dbc83526949ac6a072e3c4ce7"
25 | dependencies = [
26 | "anchor-syn",
27 | "anyhow",
28 | "proc-macro2",
29 | "quote",
30 | "regex",
31 | "syn",
32 | ]
33 |
34 | [[package]]
35 | name = "anchor-attribute-account"
36 | version = "0.18.2"
37 | source = "registry+https://github.com/rust-lang/crates.io-index"
38 | checksum = "362b1b119372b38cdd45949bd8f09a8f5c56a701d49a747fc43d7a59393b647f"
39 | dependencies = [
40 | "anchor-syn",
41 | "anyhow",
42 | "bs58 0.4.0",
43 | "proc-macro2",
44 | "quote",
45 | "rustversion",
46 | "syn",
47 | ]
48 |
49 | [[package]]
50 | name = "anchor-attribute-error"
51 | version = "0.18.2"
52 | source = "registry+https://github.com/rust-lang/crates.io-index"
53 | checksum = "41c8be43ca34309afcafb24274bba6733b6b5d59be47f1cc11ef3afe9584e5cd"
54 | dependencies = [
55 | "anchor-syn",
56 | "proc-macro2",
57 | "quote",
58 | "syn",
59 | ]
60 |
61 | [[package]]
62 | name = "anchor-attribute-event"
63 | version = "0.18.2"
64 | source = "registry+https://github.com/rust-lang/crates.io-index"
65 | checksum = "899640f277f8296da82d6505312b03a4cd4901c3c6d6fe8eb3ca2db33f26ebb9"
66 | dependencies = [
67 | "anchor-syn",
68 | "anyhow",
69 | "proc-macro2",
70 | "quote",
71 | "syn",
72 | ]
73 |
74 | [[package]]
75 | name = "anchor-attribute-interface"
76 | version = "0.18.2"
77 | source = "registry+https://github.com/rust-lang/crates.io-index"
78 | checksum = "f514a6502a0ad56f321df492f1c699ee8ad3912c6354acd087f3d28431a0fac4"
79 | dependencies = [
80 | "anchor-syn",
81 | "anyhow",
82 | "heck",
83 | "proc-macro2",
84 | "quote",
85 | "syn",
86 | ]
87 |
88 | [[package]]
89 | name = "anchor-attribute-program"
90 | version = "0.18.2"
91 | source = "registry+https://github.com/rust-lang/crates.io-index"
92 | checksum = "fadc2f9bcaeb3be4a8efb76c455bc772b5d257c01796b415eb3aa4bd93ed43fe"
93 | dependencies = [
94 | "anchor-syn",
95 | "anyhow",
96 | "proc-macro2",
97 | "quote",
98 | "syn",
99 | ]
100 |
101 | [[package]]
102 | name = "anchor-attribute-state"
103 | version = "0.18.2"
104 | source = "registry+https://github.com/rust-lang/crates.io-index"
105 | checksum = "adbff8f1a2b53a42ef547f3188e25f7e3d6933113ab0f94b11afb825eee80f47"
106 | dependencies = [
107 | "anchor-syn",
108 | "anyhow",
109 | "proc-macro2",
110 | "quote",
111 | "syn",
112 | ]
113 |
114 | [[package]]
115 | name = "anchor-derive-accounts"
116 | version = "0.18.2"
117 | source = "registry+https://github.com/rust-lang/crates.io-index"
118 | checksum = "458185d8bd23559f6ed35c4a7a7d0f83ac4d7837b2e790d90e50cafc9371503e"
119 | dependencies = [
120 | "anchor-syn",
121 | "anyhow",
122 | "proc-macro2",
123 | "quote",
124 | "syn",
125 | ]
126 |
127 | [[package]]
128 | name = "anchor-lang"
129 | version = "0.18.2"
130 | source = "registry+https://github.com/rust-lang/crates.io-index"
131 | checksum = "46dd615c2eb55d88de8800c46fa7ed51ef045d76ed669222a798976d0a447f59"
132 | dependencies = [
133 | "anchor-attribute-access-control",
134 | "anchor-attribute-account",
135 | "anchor-attribute-error",
136 | "anchor-attribute-event",
137 | "anchor-attribute-interface",
138 | "anchor-attribute-program",
139 | "anchor-attribute-state",
140 | "anchor-derive-accounts",
141 | "base64 0.13.0",
142 | "borsh",
143 | "bytemuck",
144 | "solana-program",
145 | "thiserror",
146 | ]
147 |
148 | [[package]]
149 | name = "anchor-spl"
150 | version = "0.18.2"
151 | source = "registry+https://github.com/rust-lang/crates.io-index"
152 | checksum = "a6d6c8fbc834319618581a4e19807a30e76326b9981abd069addb55acf0647db"
153 | dependencies = [
154 | "anchor-lang",
155 | "solana-program",
156 | "spl-associated-token-account",
157 | "spl-token",
158 | ]
159 |
160 | [[package]]
161 | name = "anchor-syn"
162 | version = "0.18.2"
163 | source = "registry+https://github.com/rust-lang/crates.io-index"
164 | checksum = "77faec86e3bf8e15568d026bd586e381910610544aa0b2642b942b37698029e5"
165 | dependencies = [
166 | "anyhow",
167 | "bs58 0.3.1",
168 | "heck",
169 | "proc-macro2",
170 | "proc-macro2-diagnostics",
171 | "quote",
172 | "serde",
173 | "serde_json",
174 | "sha2",
175 | "syn",
176 | "thiserror",
177 | ]
178 |
179 | [[package]]
180 | name = "anyhow"
181 | version = "1.0.48"
182 | source = "registry+https://github.com/rust-lang/crates.io-index"
183 | checksum = "62e1f47f7dc0422027a4e370dd4548d4d66b26782e513e98dca1e689e058a80e"
184 |
185 | [[package]]
186 | name = "arrayref"
187 | version = "0.3.6"
188 | source = "registry+https://github.com/rust-lang/crates.io-index"
189 | checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
190 |
191 | [[package]]
192 | name = "arrayvec"
193 | version = "0.5.2"
194 | source = "registry+https://github.com/rust-lang/crates.io-index"
195 | checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
196 |
197 | [[package]]
198 | name = "atty"
199 | version = "0.2.14"
200 | source = "registry+https://github.com/rust-lang/crates.io-index"
201 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
202 | dependencies = [
203 | "hermit-abi",
204 | "libc",
205 | "winapi",
206 | ]
207 |
208 | [[package]]
209 | name = "autocfg"
210 | version = "1.0.1"
211 | source = "registry+https://github.com/rust-lang/crates.io-index"
212 | checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
213 |
214 | [[package]]
215 | name = "base64"
216 | version = "0.12.3"
217 | source = "registry+https://github.com/rust-lang/crates.io-index"
218 | checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
219 |
220 | [[package]]
221 | name = "base64"
222 | version = "0.13.0"
223 | source = "registry+https://github.com/rust-lang/crates.io-index"
224 | checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
225 |
226 | [[package]]
227 | name = "bincode"
228 | version = "1.3.3"
229 | source = "registry+https://github.com/rust-lang/crates.io-index"
230 | checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
231 | dependencies = [
232 | "serde",
233 | ]
234 |
235 | [[package]]
236 | name = "blake3"
237 | version = "0.3.8"
238 | source = "registry+https://github.com/rust-lang/crates.io-index"
239 | checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"
240 | dependencies = [
241 | "arrayref",
242 | "arrayvec",
243 | "cc",
244 | "cfg-if 0.1.10",
245 | "constant_time_eq",
246 | "crypto-mac",
247 | "digest 0.9.0",
248 | ]
249 |
250 | [[package]]
251 | name = "block-buffer"
252 | version = "0.9.0"
253 | source = "registry+https://github.com/rust-lang/crates.io-index"
254 | checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
255 | dependencies = [
256 | "block-padding",
257 | "generic-array 0.14.4",
258 | ]
259 |
260 | [[package]]
261 | name = "block-padding"
262 | version = "0.2.1"
263 | source = "registry+https://github.com/rust-lang/crates.io-index"
264 | checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
265 |
266 | [[package]]
267 | name = "borsh"
268 | version = "0.9.1"
269 | source = "registry+https://github.com/rust-lang/crates.io-index"
270 | checksum = "18dda7dc709193c0d86a1a51050a926dc3df1cf262ec46a23a25dba421ea1924"
271 | dependencies = [
272 | "borsh-derive",
273 | "hashbrown",
274 | ]
275 |
276 | [[package]]
277 | name = "borsh-derive"
278 | version = "0.9.1"
279 | source = "registry+https://github.com/rust-lang/crates.io-index"
280 | checksum = "684155372435f578c0fa1acd13ebbb182cc19d6b38b64ae7901da4393217d264"
281 | dependencies = [
282 | "borsh-derive-internal",
283 | "borsh-schema-derive-internal",
284 | "proc-macro-crate 0.1.5",
285 | "proc-macro2",
286 | "syn",
287 | ]
288 |
289 | [[package]]
290 | name = "borsh-derive-internal"
291 | version = "0.9.1"
292 | source = "registry+https://github.com/rust-lang/crates.io-index"
293 | checksum = "2102f62f8b6d3edeab871830782285b64cc1830168094db05c8e458f209bc5c3"
294 | dependencies = [
295 | "proc-macro2",
296 | "quote",
297 | "syn",
298 | ]
299 |
300 | [[package]]
301 | name = "borsh-schema-derive-internal"
302 | version = "0.9.1"
303 | source = "registry+https://github.com/rust-lang/crates.io-index"
304 | checksum = "196c978c4c9b0b142d446ef3240690bf5a8a33497074a113ff9a337ccb750483"
305 | dependencies = [
306 | "proc-macro2",
307 | "quote",
308 | "syn",
309 | ]
310 |
311 | [[package]]
312 | name = "bs58"
313 | version = "0.3.1"
314 | source = "registry+https://github.com/rust-lang/crates.io-index"
315 | checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb"
316 |
317 | [[package]]
318 | name = "bs58"
319 | version = "0.4.0"
320 | source = "registry+https://github.com/rust-lang/crates.io-index"
321 | checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
322 |
323 | [[package]]
324 | name = "bv"
325 | version = "0.11.1"
326 | source = "registry+https://github.com/rust-lang/crates.io-index"
327 | checksum = "8834bb1d8ee5dc048ee3124f2c7c1afcc6bc9aed03f11e9dfd8c69470a5db340"
328 | dependencies = [
329 | "feature-probe",
330 | "serde",
331 | ]
332 |
333 | [[package]]
334 | name = "bytemuck"
335 | version = "1.7.2"
336 | source = "registry+https://github.com/rust-lang/crates.io-index"
337 | checksum = "72957246c41db82b8ef88a5486143830adeb8227ef9837740bdec67724cf2c5b"
338 | dependencies = [
339 | "bytemuck_derive",
340 | ]
341 |
342 | [[package]]
343 | name = "bytemuck_derive"
344 | version = "1.0.1"
345 | source = "registry+https://github.com/rust-lang/crates.io-index"
346 | checksum = "8e215f8c2f9f79cb53c8335e687ffd07d5bfcb6fe5fc80723762d0be46e7cc54"
347 | dependencies = [
348 | "proc-macro2",
349 | "quote",
350 | "syn",
351 | ]
352 |
353 | [[package]]
354 | name = "byteorder"
355 | version = "1.4.3"
356 | source = "registry+https://github.com/rust-lang/crates.io-index"
357 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
358 |
359 | [[package]]
360 | name = "cc"
361 | version = "1.0.72"
362 | source = "registry+https://github.com/rust-lang/crates.io-index"
363 | checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
364 |
365 | [[package]]
366 | name = "cfg-if"
367 | version = "0.1.10"
368 | source = "registry+https://github.com/rust-lang/crates.io-index"
369 | checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
370 |
371 | [[package]]
372 | name = "cfg-if"
373 | version = "1.0.0"
374 | source = "registry+https://github.com/rust-lang/crates.io-index"
375 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
376 |
377 | [[package]]
378 | name = "constant_time_eq"
379 | version = "0.1.5"
380 | source = "registry+https://github.com/rust-lang/crates.io-index"
381 | checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
382 |
383 | [[package]]
384 | name = "cpufeatures"
385 | version = "0.2.1"
386 | source = "registry+https://github.com/rust-lang/crates.io-index"
387 | checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
388 | dependencies = [
389 | "libc",
390 | ]
391 |
392 | [[package]]
393 | name = "crunchy"
394 | version = "0.2.2"
395 | source = "registry+https://github.com/rust-lang/crates.io-index"
396 | checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
397 |
398 | [[package]]
399 | name = "crypto-mac"
400 | version = "0.8.0"
401 | source = "registry+https://github.com/rust-lang/crates.io-index"
402 | checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
403 | dependencies = [
404 | "generic-array 0.14.4",
405 | "subtle",
406 | ]
407 |
408 | [[package]]
409 | name = "curve25519-dalek"
410 | version = "2.1.3"
411 | source = "registry+https://github.com/rust-lang/crates.io-index"
412 | checksum = "4a9b85542f99a2dfa2a1b8e192662741c9859a846b296bef1c92ef9b58b5a216"
413 | dependencies = [
414 | "byteorder",
415 | "digest 0.8.1",
416 | "rand_core",
417 | "subtle",
418 | "zeroize",
419 | ]
420 |
421 | [[package]]
422 | name = "derivative"
423 | version = "2.2.0"
424 | source = "registry+https://github.com/rust-lang/crates.io-index"
425 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
426 | dependencies = [
427 | "proc-macro2",
428 | "quote",
429 | "syn",
430 | ]
431 |
432 | [[package]]
433 | name = "digest"
434 | version = "0.8.1"
435 | source = "registry+https://github.com/rust-lang/crates.io-index"
436 | checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
437 | dependencies = [
438 | "generic-array 0.12.4",
439 | ]
440 |
441 | [[package]]
442 | name = "digest"
443 | version = "0.9.0"
444 | source = "registry+https://github.com/rust-lang/crates.io-index"
445 | checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
446 | dependencies = [
447 | "generic-array 0.14.4",
448 | ]
449 |
450 | [[package]]
451 | name = "either"
452 | version = "1.6.1"
453 | source = "registry+https://github.com/rust-lang/crates.io-index"
454 | checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
455 |
456 | [[package]]
457 | name = "env_logger"
458 | version = "0.8.4"
459 | source = "registry+https://github.com/rust-lang/crates.io-index"
460 | checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
461 | dependencies = [
462 | "atty",
463 | "humantime",
464 | "log",
465 | "regex",
466 | "termcolor",
467 | ]
468 |
469 | [[package]]
470 | name = "feature-probe"
471 | version = "0.1.1"
472 | source = "registry+https://github.com/rust-lang/crates.io-index"
473 | checksum = "835a3dc7d1ec9e75e2b5fb4ba75396837112d2060b03f7d43bc1897c7f7211da"
474 |
475 | [[package]]
476 | name = "generic-array"
477 | version = "0.12.4"
478 | source = "registry+https://github.com/rust-lang/crates.io-index"
479 | checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
480 | dependencies = [
481 | "typenum",
482 | ]
483 |
484 | [[package]]
485 | name = "generic-array"
486 | version = "0.14.4"
487 | source = "registry+https://github.com/rust-lang/crates.io-index"
488 | checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
489 | dependencies = [
490 | "serde",
491 | "typenum",
492 | "version_check",
493 | ]
494 |
495 | [[package]]
496 | name = "getrandom"
497 | version = "0.1.16"
498 | source = "registry+https://github.com/rust-lang/crates.io-index"
499 | checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
500 | dependencies = [
501 | "cfg-if 1.0.0",
502 | "libc",
503 | "wasi",
504 | ]
505 |
506 | [[package]]
507 | name = "hashbrown"
508 | version = "0.9.1"
509 | source = "registry+https://github.com/rust-lang/crates.io-index"
510 | checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
511 | dependencies = [
512 | "ahash",
513 | ]
514 |
515 | [[package]]
516 | name = "heck"
517 | version = "0.3.3"
518 | source = "registry+https://github.com/rust-lang/crates.io-index"
519 | checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
520 | dependencies = [
521 | "unicode-segmentation",
522 | ]
523 |
524 | [[package]]
525 | name = "hermit-abi"
526 | version = "0.1.19"
527 | source = "registry+https://github.com/rust-lang/crates.io-index"
528 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
529 | dependencies = [
530 | "libc",
531 | ]
532 |
533 | [[package]]
534 | name = "hex"
535 | version = "0.4.3"
536 | source = "registry+https://github.com/rust-lang/crates.io-index"
537 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
538 |
539 | [[package]]
540 | name = "hmac"
541 | version = "0.8.1"
542 | source = "registry+https://github.com/rust-lang/crates.io-index"
543 | checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
544 | dependencies = [
545 | "crypto-mac",
546 | "digest 0.9.0",
547 | ]
548 |
549 | [[package]]
550 | name = "hmac-drbg"
551 | version = "0.3.0"
552 | source = "registry+https://github.com/rust-lang/crates.io-index"
553 | checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
554 | dependencies = [
555 | "digest 0.9.0",
556 | "generic-array 0.14.4",
557 | "hmac",
558 | ]
559 |
560 | [[package]]
561 | name = "humantime"
562 | version = "2.1.0"
563 | source = "registry+https://github.com/rust-lang/crates.io-index"
564 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
565 |
566 | [[package]]
567 | name = "itertools"
568 | version = "0.9.0"
569 | source = "registry+https://github.com/rust-lang/crates.io-index"
570 | checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
571 | dependencies = [
572 | "either",
573 | ]
574 |
575 | [[package]]
576 | name = "itoa"
577 | version = "0.4.8"
578 | source = "registry+https://github.com/rust-lang/crates.io-index"
579 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
580 |
581 | [[package]]
582 | name = "keccak"
583 | version = "0.1.0"
584 | source = "registry+https://github.com/rust-lang/crates.io-index"
585 | checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
586 |
587 | [[package]]
588 | name = "lazy_static"
589 | version = "1.4.0"
590 | source = "registry+https://github.com/rust-lang/crates.io-index"
591 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
592 |
593 | [[package]]
594 | name = "libc"
595 | version = "0.2.108"
596 | source = "registry+https://github.com/rust-lang/crates.io-index"
597 | checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119"
598 |
599 | [[package]]
600 | name = "libsecp256k1"
601 | version = "0.5.0"
602 | source = "registry+https://github.com/rust-lang/crates.io-index"
603 | checksum = "bd1137239ab33b41aa9637a88a28249e5e70c40a42ccc92db7f12cc356c1fcd7"
604 | dependencies = [
605 | "arrayref",
606 | "base64 0.12.3",
607 | "digest 0.9.0",
608 | "hmac-drbg",
609 | "libsecp256k1-core",
610 | "libsecp256k1-gen-ecmult",
611 | "libsecp256k1-gen-genmult",
612 | "rand",
613 | "serde",
614 | "sha2",
615 | "typenum",
616 | ]
617 |
618 | [[package]]
619 | name = "libsecp256k1-core"
620 | version = "0.2.2"
621 | source = "registry+https://github.com/rust-lang/crates.io-index"
622 | checksum = "d0f6ab710cec28cef759c5f18671a27dae2a5f952cdaaee1d8e2908cb2478a80"
623 | dependencies = [
624 | "crunchy",
625 | "digest 0.9.0",
626 | "subtle",
627 | ]
628 |
629 | [[package]]
630 | name = "libsecp256k1-gen-ecmult"
631 | version = "0.2.1"
632 | source = "registry+https://github.com/rust-lang/crates.io-index"
633 | checksum = "ccab96b584d38fac86a83f07e659f0deafd0253dc096dab5a36d53efe653c5c3"
634 | dependencies = [
635 | "libsecp256k1-core",
636 | ]
637 |
638 | [[package]]
639 | name = "libsecp256k1-gen-genmult"
640 | version = "0.2.1"
641 | source = "registry+https://github.com/rust-lang/crates.io-index"
642 | checksum = "67abfe149395e3aa1c48a2beb32b068e2334402df8181f818d3aee2b304c4f5d"
643 | dependencies = [
644 | "libsecp256k1-core",
645 | ]
646 |
647 | [[package]]
648 | name = "log"
649 | version = "0.4.14"
650 | source = "registry+https://github.com/rust-lang/crates.io-index"
651 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
652 | dependencies = [
653 | "cfg-if 1.0.0",
654 | ]
655 |
656 | [[package]]
657 | name = "memchr"
658 | version = "2.4.1"
659 | source = "registry+https://github.com/rust-lang/crates.io-index"
660 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
661 |
662 | [[package]]
663 | name = "memmap2"
664 | version = "0.1.0"
665 | source = "registry+https://github.com/rust-lang/crates.io-index"
666 | checksum = "d9b70ca2a6103ac8b665dc150b142ef0e4e89df640c9e6cf295d189c3caebe5a"
667 | dependencies = [
668 | "libc",
669 | ]
670 |
671 | [[package]]
672 | name = "num-derive"
673 | version = "0.3.3"
674 | source = "registry+https://github.com/rust-lang/crates.io-index"
675 | checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
676 | dependencies = [
677 | "proc-macro2",
678 | "quote",
679 | "syn",
680 | ]
681 |
682 | [[package]]
683 | name = "num-traits"
684 | version = "0.2.14"
685 | source = "registry+https://github.com/rust-lang/crates.io-index"
686 | checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
687 | dependencies = [
688 | "autocfg",
689 | ]
690 |
691 | [[package]]
692 | name = "num_enum"
693 | version = "0.5.4"
694 | source = "registry+https://github.com/rust-lang/crates.io-index"
695 | checksum = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f"
696 | dependencies = [
697 | "derivative",
698 | "num_enum_derive",
699 | ]
700 |
701 | [[package]]
702 | name = "num_enum_derive"
703 | version = "0.5.4"
704 | source = "registry+https://github.com/rust-lang/crates.io-index"
705 | checksum = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9"
706 | dependencies = [
707 | "proc-macro-crate 1.1.0",
708 | "proc-macro2",
709 | "quote",
710 | "syn",
711 | ]
712 |
713 | [[package]]
714 | name = "opaque-debug"
715 | version = "0.3.0"
716 | source = "registry+https://github.com/rust-lang/crates.io-index"
717 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
718 |
719 | [[package]]
720 | name = "ppv-lite86"
721 | version = "0.2.15"
722 | source = "registry+https://github.com/rust-lang/crates.io-index"
723 | checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
724 |
725 | [[package]]
726 | name = "proc-macro-crate"
727 | version = "0.1.5"
728 | source = "registry+https://github.com/rust-lang/crates.io-index"
729 | checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
730 | dependencies = [
731 | "toml",
732 | ]
733 |
734 | [[package]]
735 | name = "proc-macro-crate"
736 | version = "1.1.0"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "1ebace6889caf889b4d3f76becee12e90353f2b8c7d875534a71e5742f8f6f83"
739 | dependencies = [
740 | "thiserror",
741 | "toml",
742 | ]
743 |
744 | [[package]]
745 | name = "proc-macro2"
746 | version = "1.0.32"
747 | source = "registry+https://github.com/rust-lang/crates.io-index"
748 | checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"
749 | dependencies = [
750 | "unicode-xid",
751 | ]
752 |
753 | [[package]]
754 | name = "proc-macro2-diagnostics"
755 | version = "0.9.1"
756 | source = "registry+https://github.com/rust-lang/crates.io-index"
757 | checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
758 | dependencies = [
759 | "proc-macro2",
760 | "quote",
761 | "syn",
762 | "version_check",
763 | "yansi",
764 | ]
765 |
766 | [[package]]
767 | name = "quote"
768 | version = "1.0.10"
769 | source = "registry+https://github.com/rust-lang/crates.io-index"
770 | checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
771 | dependencies = [
772 | "proc-macro2",
773 | ]
774 |
775 | [[package]]
776 | name = "rand"
777 | version = "0.7.3"
778 | source = "registry+https://github.com/rust-lang/crates.io-index"
779 | checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
780 | dependencies = [
781 | "getrandom",
782 | "libc",
783 | "rand_chacha",
784 | "rand_core",
785 | "rand_hc",
786 | ]
787 |
788 | [[package]]
789 | name = "rand_chacha"
790 | version = "0.2.2"
791 | source = "registry+https://github.com/rust-lang/crates.io-index"
792 | checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
793 | dependencies = [
794 | "ppv-lite86",
795 | "rand_core",
796 | ]
797 |
798 | [[package]]
799 | name = "rand_core"
800 | version = "0.5.1"
801 | source = "registry+https://github.com/rust-lang/crates.io-index"
802 | checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
803 | dependencies = [
804 | "getrandom",
805 | ]
806 |
807 | [[package]]
808 | name = "rand_hc"
809 | version = "0.2.0"
810 | source = "registry+https://github.com/rust-lang/crates.io-index"
811 | checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
812 | dependencies = [
813 | "rand_core",
814 | ]
815 |
816 | [[package]]
817 | name = "regex"
818 | version = "1.5.4"
819 | source = "registry+https://github.com/rust-lang/crates.io-index"
820 | checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
821 | dependencies = [
822 | "aho-corasick",
823 | "memchr",
824 | "regex-syntax",
825 | ]
826 |
827 | [[package]]
828 | name = "regex-syntax"
829 | version = "0.6.25"
830 | source = "registry+https://github.com/rust-lang/crates.io-index"
831 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
832 |
833 | [[package]]
834 | name = "rustc_version"
835 | version = "0.2.3"
836 | source = "registry+https://github.com/rust-lang/crates.io-index"
837 | checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
838 | dependencies = [
839 | "semver",
840 | ]
841 |
842 | [[package]]
843 | name = "rustversion"
844 | version = "1.0.5"
845 | source = "registry+https://github.com/rust-lang/crates.io-index"
846 | checksum = "61b3909d758bb75c79f23d4736fac9433868679d3ad2ea7a61e3c25cfda9a088"
847 |
848 | [[package]]
849 | name = "ryu"
850 | version = "1.0.5"
851 | source = "registry+https://github.com/rust-lang/crates.io-index"
852 | checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
853 |
854 | [[package]]
855 | name = "semver"
856 | version = "0.9.0"
857 | source = "registry+https://github.com/rust-lang/crates.io-index"
858 | checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
859 | dependencies = [
860 | "semver-parser",
861 | ]
862 |
863 | [[package]]
864 | name = "semver-parser"
865 | version = "0.7.0"
866 | source = "registry+https://github.com/rust-lang/crates.io-index"
867 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
868 |
869 | [[package]]
870 | name = "serde"
871 | version = "1.0.130"
872 | source = "registry+https://github.com/rust-lang/crates.io-index"
873 | checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
874 | dependencies = [
875 | "serde_derive",
876 | ]
877 |
878 | [[package]]
879 | name = "serde_bytes"
880 | version = "0.11.5"
881 | source = "registry+https://github.com/rust-lang/crates.io-index"
882 | checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
883 | dependencies = [
884 | "serde",
885 | ]
886 |
887 | [[package]]
888 | name = "serde_derive"
889 | version = "1.0.130"
890 | source = "registry+https://github.com/rust-lang/crates.io-index"
891 | checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
892 | dependencies = [
893 | "proc-macro2",
894 | "quote",
895 | "syn",
896 | ]
897 |
898 | [[package]]
899 | name = "serde_json"
900 | version = "1.0.71"
901 | source = "registry+https://github.com/rust-lang/crates.io-index"
902 | checksum = "063bf466a64011ac24040a49009724ee60a57da1b437617ceb32e53ad61bfb19"
903 | dependencies = [
904 | "itoa",
905 | "ryu",
906 | "serde",
907 | ]
908 |
909 | [[package]]
910 | name = "sha2"
911 | version = "0.9.8"
912 | source = "registry+https://github.com/rust-lang/crates.io-index"
913 | checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"
914 | dependencies = [
915 | "block-buffer",
916 | "cfg-if 1.0.0",
917 | "cpufeatures",
918 | "digest 0.9.0",
919 | "opaque-debug",
920 | ]
921 |
922 | [[package]]
923 | name = "sha3"
924 | version = "0.9.1"
925 | source = "registry+https://github.com/rust-lang/crates.io-index"
926 | checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
927 | dependencies = [
928 | "block-buffer",
929 | "digest 0.9.0",
930 | "keccak",
931 | "opaque-debug",
932 | ]
933 |
934 | [[package]]
935 | name = "solana-frozen-abi"
936 | version = "1.8.5"
937 | source = "registry+https://github.com/rust-lang/crates.io-index"
938 | checksum = "bc1012d3d2ab907d942511eefa9e49dc411eeefda964c744ab431e5a4788decd"
939 | dependencies = [
940 | "bs58 0.3.1",
941 | "bv",
942 | "generic-array 0.14.4",
943 | "log",
944 | "memmap2",
945 | "rustc_version",
946 | "serde",
947 | "serde_derive",
948 | "sha2",
949 | "solana-frozen-abi-macro",
950 | "solana-logger",
951 | "thiserror",
952 | ]
953 |
954 | [[package]]
955 | name = "solana-frozen-abi-macro"
956 | version = "1.8.5"
957 | source = "registry+https://github.com/rust-lang/crates.io-index"
958 | checksum = "2c02e8365ddbab83f2004041032a48e2b9e3b42a3fc44c318aebc96dce6bf920"
959 | dependencies = [
960 | "proc-macro2",
961 | "quote",
962 | "rustc_version",
963 | "syn",
964 | ]
965 |
966 | [[package]]
967 | name = "solana-logger"
968 | version = "1.8.5"
969 | source = "registry+https://github.com/rust-lang/crates.io-index"
970 | checksum = "298885f4c7c704df17fa48ddf1a1582032e13174bc7e0e8ada57ca62740e8a98"
971 | dependencies = [
972 | "env_logger",
973 | "lazy_static",
974 | "log",
975 | ]
976 |
977 | [[package]]
978 | name = "solana-program"
979 | version = "1.8.5"
980 | source = "registry+https://github.com/rust-lang/crates.io-index"
981 | checksum = "d115ccafc326625e378cd8b4122a2e6a6666ad7907d165e9384a76ecbdb7b745"
982 | dependencies = [
983 | "base64 0.13.0",
984 | "bincode",
985 | "blake3",
986 | "borsh",
987 | "borsh-derive",
988 | "bs58 0.3.1",
989 | "bv",
990 | "bytemuck",
991 | "curve25519-dalek",
992 | "hex",
993 | "itertools",
994 | "lazy_static",
995 | "libsecp256k1",
996 | "log",
997 | "num-derive",
998 | "num-traits",
999 | "rand",
1000 | "rustc_version",
1001 | "rustversion",
1002 | "serde",
1003 | "serde_bytes",
1004 | "serde_derive",
1005 | "sha2",
1006 | "sha3",
1007 | "solana-frozen-abi",
1008 | "solana-frozen-abi-macro",
1009 | "solana-logger",
1010 | "solana-sdk-macro",
1011 | "thiserror",
1012 | ]
1013 |
1014 | [[package]]
1015 | name = "solana-sdk-macro"
1016 | version = "1.8.5"
1017 | source = "registry+https://github.com/rust-lang/crates.io-index"
1018 | checksum = "91983679137d5a342cc99f56dbb418def7af5712a5edb2636d3637c897962f9b"
1019 | dependencies = [
1020 | "bs58 0.3.1",
1021 | "proc-macro2",
1022 | "quote",
1023 | "rustversion",
1024 | "syn",
1025 | ]
1026 |
1027 | [[package]]
1028 | name = "spl-associated-token-account"
1029 | version = "1.0.3"
1030 | source = "registry+https://github.com/rust-lang/crates.io-index"
1031 | checksum = "393e2240d521c3dd770806bff25c2c00d761ac962be106e14e22dd912007f428"
1032 | dependencies = [
1033 | "solana-program",
1034 | "spl-token",
1035 | ]
1036 |
1037 | [[package]]
1038 | name = "spl-token"
1039 | version = "3.2.0"
1040 | source = "registry+https://github.com/rust-lang/crates.io-index"
1041 | checksum = "93bfdd5bd7c869cb565c7d7635c4fafe189b988a0bdef81063cd9585c6b8dc01"
1042 | dependencies = [
1043 | "arrayref",
1044 | "num-derive",
1045 | "num-traits",
1046 | "num_enum",
1047 | "solana-program",
1048 | "thiserror",
1049 | ]
1050 |
1051 | [[package]]
1052 | name = "spl-token-faucet"
1053 | version = "0.1.0"
1054 | dependencies = [
1055 | "anchor-lang",
1056 | "anchor-spl",
1057 | ]
1058 |
1059 | [[package]]
1060 | name = "subtle"
1061 | version = "2.4.1"
1062 | source = "registry+https://github.com/rust-lang/crates.io-index"
1063 | checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
1064 |
1065 | [[package]]
1066 | name = "syn"
1067 | version = "1.0.81"
1068 | source = "registry+https://github.com/rust-lang/crates.io-index"
1069 | checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966"
1070 | dependencies = [
1071 | "proc-macro2",
1072 | "quote",
1073 | "unicode-xid",
1074 | ]
1075 |
1076 | [[package]]
1077 | name = "termcolor"
1078 | version = "1.1.2"
1079 | source = "registry+https://github.com/rust-lang/crates.io-index"
1080 | checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
1081 | dependencies = [
1082 | "winapi-util",
1083 | ]
1084 |
1085 | [[package]]
1086 | name = "thiserror"
1087 | version = "1.0.30"
1088 | source = "registry+https://github.com/rust-lang/crates.io-index"
1089 | checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
1090 | dependencies = [
1091 | "thiserror-impl",
1092 | ]
1093 |
1094 | [[package]]
1095 | name = "thiserror-impl"
1096 | version = "1.0.30"
1097 | source = "registry+https://github.com/rust-lang/crates.io-index"
1098 | checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
1099 | dependencies = [
1100 | "proc-macro2",
1101 | "quote",
1102 | "syn",
1103 | ]
1104 |
1105 | [[package]]
1106 | name = "toml"
1107 | version = "0.5.8"
1108 | source = "registry+https://github.com/rust-lang/crates.io-index"
1109 | checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
1110 | dependencies = [
1111 | "serde",
1112 | ]
1113 |
1114 | [[package]]
1115 | name = "typenum"
1116 | version = "1.14.0"
1117 | source = "registry+https://github.com/rust-lang/crates.io-index"
1118 | checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
1119 |
1120 | [[package]]
1121 | name = "unicode-segmentation"
1122 | version = "1.8.0"
1123 | source = "registry+https://github.com/rust-lang/crates.io-index"
1124 | checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
1125 |
1126 | [[package]]
1127 | name = "unicode-xid"
1128 | version = "0.2.2"
1129 | source = "registry+https://github.com/rust-lang/crates.io-index"
1130 | checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1131 |
1132 | [[package]]
1133 | name = "version_check"
1134 | version = "0.9.3"
1135 | source = "registry+https://github.com/rust-lang/crates.io-index"
1136 | checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
1137 |
1138 | [[package]]
1139 | name = "wasi"
1140 | version = "0.9.0+wasi-snapshot-preview1"
1141 | source = "registry+https://github.com/rust-lang/crates.io-index"
1142 | checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
1143 |
1144 | [[package]]
1145 | name = "winapi"
1146 | version = "0.3.9"
1147 | source = "registry+https://github.com/rust-lang/crates.io-index"
1148 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1149 | dependencies = [
1150 | "winapi-i686-pc-windows-gnu",
1151 | "winapi-x86_64-pc-windows-gnu",
1152 | ]
1153 |
1154 | [[package]]
1155 | name = "winapi-i686-pc-windows-gnu"
1156 | version = "0.4.0"
1157 | source = "registry+https://github.com/rust-lang/crates.io-index"
1158 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1159 |
1160 | [[package]]
1161 | name = "winapi-util"
1162 | version = "0.1.5"
1163 | source = "registry+https://github.com/rust-lang/crates.io-index"
1164 | checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1165 | dependencies = [
1166 | "winapi",
1167 | ]
1168 |
1169 | [[package]]
1170 | name = "winapi-x86_64-pc-windows-gnu"
1171 | version = "0.4.0"
1172 | source = "registry+https://github.com/rust-lang/crates.io-index"
1173 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1174 |
1175 | [[package]]
1176 | name = "yansi"
1177 | version = "0.5.0"
1178 | source = "registry+https://github.com/rust-lang/crates.io-index"
1179 | checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
1180 |
1181 | [[package]]
1182 | name = "zeroize"
1183 | version = "1.4.3"
1184 | source = "registry+https://github.com/rust-lang/crates.io-index"
1185 | checksum = "d68d9dcec5f9b43a30d38c49f91dfedfaac384cb8f085faca366c26207dd1619"
1186 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2":
6 | version "7.21.0"
7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
8 | integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
9 | dependencies:
10 | regenerator-runtime "^0.13.11"
11 |
12 | "@noble/ed25519@^1.7.0":
13 | version "1.7.3"
14 | resolved "https://registry.yarnpkg.com/@noble/ed25519/-/ed25519-1.7.3.tgz#57e1677bf6885354b466c38e2b620c62f45a7123"
15 | integrity sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==
16 |
17 | "@noble/hashes@^1.1.2":
18 | version "1.3.0"
19 | resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.0.tgz#085fd70f6d7d9d109671090ccae1d3bec62554a1"
20 | integrity sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg==
21 |
22 | "@noble/secp256k1@^1.6.3":
23 | version "1.7.1"
24 | resolved "https://registry.yarnpkg.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz#b251c70f824ce3ca7f8dc3df08d58f005cc0507c"
25 | integrity sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==
26 |
27 | "@project-serum/anchor@^0.18.0":
28 | version "0.18.2"
29 | resolved "https://registry.yarnpkg.com/@project-serum/anchor/-/anchor-0.18.2.tgz#0f13b5c2046446b7c24cf28763eec90febb28485"
30 | integrity sha512-uyjiN/3Ipp+4hrZRm/hG18HzGLZyvP790LXrCsGO3IWxSl28YRhiGEpKnZycfMW94R7nxdUoE3wY67V+ZHSQBQ==
31 | dependencies:
32 | "@project-serum/borsh" "^0.2.2"
33 | "@solana/web3.js" "^1.17.0"
34 | base64-js "^1.5.1"
35 | bn.js "^5.1.2"
36 | bs58 "^4.0.1"
37 | buffer-layout "^1.2.0"
38 | camelcase "^5.3.1"
39 | crypto-hash "^1.3.0"
40 | eventemitter3 "^4.0.7"
41 | find "^0.3.0"
42 | js-sha256 "^0.9.0"
43 | pako "^2.0.3"
44 | snake-case "^3.0.4"
45 | toml "^3.0.0"
46 |
47 | "@project-serum/borsh@^0.2.2":
48 | version "0.2.5"
49 | resolved "https://registry.yarnpkg.com/@project-serum/borsh/-/borsh-0.2.5.tgz#6059287aa624ecebbfc0edd35e4c28ff987d8663"
50 | integrity sha512-UmeUkUoKdQ7rhx6Leve1SssMR/Ghv8qrEiyywyxSWg7ooV7StdpPBhciiy5eB3T0qU1BXvdRNC8TdrkxK7WC5Q==
51 | dependencies:
52 | bn.js "^5.1.2"
53 | buffer-layout "^1.2.0"
54 |
55 | "@solana/buffer-layout@^4.0.0":
56 | version "4.0.1"
57 | resolved "https://registry.yarnpkg.com/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz#b996235eaec15b1e0b5092a8ed6028df77fa6c15"
58 | integrity sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==
59 | dependencies:
60 | buffer "~6.0.3"
61 |
62 | "@solana/spl-token@^0.1.8":
63 | version "0.1.8"
64 | resolved "https://registry.yarnpkg.com/@solana/spl-token/-/spl-token-0.1.8.tgz#f06e746341ef8d04165e21fc7f555492a2a0faa6"
65 | integrity sha512-LZmYCKcPQDtJgecvWOgT/cnoIQPWjdH+QVyzPcFvyDUiT0DiRjZaam4aqNUyvchLFhzgunv3d9xOoyE34ofdoQ==
66 | dependencies:
67 | "@babel/runtime" "^7.10.5"
68 | "@solana/web3.js" "^1.21.0"
69 | bn.js "^5.1.0"
70 | buffer "6.0.3"
71 | buffer-layout "^1.2.0"
72 | dotenv "10.0.0"
73 |
74 | "@solana/web3.js@^1.17.0", "@solana/web3.js@^1.21.0":
75 | version "1.74.0"
76 | resolved "https://registry.yarnpkg.com/@solana/web3.js/-/web3.js-1.74.0.tgz#dbcbeabb830dd7cbbcf5e31404ca79c9785cbf2d"
77 | integrity sha512-RKZyPqizPCxmpMGfpu4fuplNZEWCrhRBjjVstv5QnAJvgln1jgOfgui+rjl1ExnqDnWKg9uaZ5jtGROH/cwabg==
78 | dependencies:
79 | "@babel/runtime" "^7.12.5"
80 | "@noble/ed25519" "^1.7.0"
81 | "@noble/hashes" "^1.1.2"
82 | "@noble/secp256k1" "^1.6.3"
83 | "@solana/buffer-layout" "^4.0.0"
84 | agentkeepalive "^4.2.1"
85 | bigint-buffer "^1.1.5"
86 | bn.js "^5.0.0"
87 | borsh "^0.7.0"
88 | bs58 "^4.0.1"
89 | buffer "6.0.1"
90 | fast-stable-stringify "^1.0.0"
91 | jayson "^3.4.4"
92 | node-fetch "^2.6.7"
93 | rpc-websockets "^7.5.1"
94 | superstruct "^0.14.2"
95 |
96 | "@types/connect@^3.4.33":
97 | version "3.4.35"
98 | resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1"
99 | integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==
100 | dependencies:
101 | "@types/node" "*"
102 |
103 | "@types/json5@^0.0.29":
104 | version "0.0.29"
105 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
106 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
107 |
108 | "@types/mocha@^9.0.0":
109 | version "9.1.1"
110 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4"
111 | integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw==
112 |
113 | "@types/node@*":
114 | version "18.15.3"
115 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.3.tgz#f0b991c32cfc6a4e7f3399d6cb4b8cf9a0315014"
116 | integrity sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==
117 |
118 | "@types/node@^12.12.54":
119 | version "12.20.55"
120 | resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.55.tgz#c329cbd434c42164f846b909bd6f85b5537f6240"
121 | integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==
122 |
123 | "@types/ws@^7.4.4":
124 | version "7.4.7"
125 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702"
126 | integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==
127 | dependencies:
128 | "@types/node" "*"
129 |
130 | "@ungap/promise-all-settled@1.1.2":
131 | version "1.1.2"
132 | resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
133 | integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
134 |
135 | JSONStream@^1.3.5:
136 | version "1.3.5"
137 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
138 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
139 | dependencies:
140 | jsonparse "^1.2.0"
141 | through ">=2.2.7 <3"
142 |
143 | agentkeepalive@^4.2.1:
144 | version "4.3.0"
145 | resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.3.0.tgz#bb999ff07412653c1803b3ced35e50729830a255"
146 | integrity sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==
147 | dependencies:
148 | debug "^4.1.0"
149 | depd "^2.0.0"
150 | humanize-ms "^1.2.1"
151 |
152 | ansi-colors@4.1.1:
153 | version "4.1.1"
154 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
155 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
156 |
157 | ansi-regex@^5.0.1:
158 | version "5.0.1"
159 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
160 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
161 |
162 | ansi-styles@^4.0.0, ansi-styles@^4.1.0:
163 | version "4.3.0"
164 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
165 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
166 | dependencies:
167 | color-convert "^2.0.1"
168 |
169 | anymatch@~3.1.2:
170 | version "3.1.3"
171 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
172 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
173 | dependencies:
174 | normalize-path "^3.0.0"
175 | picomatch "^2.0.4"
176 |
177 | argparse@^2.0.1:
178 | version "2.0.1"
179 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
180 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
181 |
182 | arrify@^1.0.0:
183 | version "1.0.1"
184 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
185 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==
186 |
187 | assertion-error@^1.1.0:
188 | version "1.1.0"
189 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b"
190 | integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==
191 |
192 | balanced-match@^1.0.0:
193 | version "1.0.2"
194 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
195 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
196 |
197 | base-x@^3.0.2:
198 | version "3.0.9"
199 | resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.9.tgz#6349aaabb58526332de9f60995e548a53fe21320"
200 | integrity sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==
201 | dependencies:
202 | safe-buffer "^5.0.1"
203 |
204 | base64-js@^1.3.1, base64-js@^1.5.1:
205 | version "1.5.1"
206 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
207 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
208 |
209 | bigint-buffer@^1.1.5:
210 | version "1.1.5"
211 | resolved "https://registry.yarnpkg.com/bigint-buffer/-/bigint-buffer-1.1.5.tgz#d038f31c8e4534c1f8d0015209bf34b4fa6dd442"
212 | integrity sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==
213 | dependencies:
214 | bindings "^1.3.0"
215 |
216 | binary-extensions@^2.0.0:
217 | version "2.2.0"
218 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
219 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
220 |
221 | bindings@^1.3.0:
222 | version "1.5.0"
223 | resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
224 | integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
225 | dependencies:
226 | file-uri-to-path "1.0.0"
227 |
228 | bn.js@^5.0.0, bn.js@^5.1.0, bn.js@^5.1.2, bn.js@^5.2.0:
229 | version "5.2.1"
230 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70"
231 | integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==
232 |
233 | borsh@^0.7.0:
234 | version "0.7.0"
235 | resolved "https://registry.yarnpkg.com/borsh/-/borsh-0.7.0.tgz#6e9560d719d86d90dc589bca60ffc8a6c51fec2a"
236 | integrity sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==
237 | dependencies:
238 | bn.js "^5.2.0"
239 | bs58 "^4.0.0"
240 | text-encoding-utf-8 "^1.0.2"
241 |
242 | brace-expansion@^1.1.7:
243 | version "1.1.11"
244 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
245 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
246 | dependencies:
247 | balanced-match "^1.0.0"
248 | concat-map "0.0.1"
249 |
250 | braces@~3.0.2:
251 | version "3.0.2"
252 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
253 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
254 | dependencies:
255 | fill-range "^7.0.1"
256 |
257 | browser-stdout@1.3.1:
258 | version "1.3.1"
259 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
260 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
261 |
262 | bs58@^4.0.0, bs58@^4.0.1:
263 | version "4.0.1"
264 | resolved "https://registry.yarnpkg.com/bs58/-/bs58-4.0.1.tgz#be161e76c354f6f788ae4071f63f34e8c4f0a42a"
265 | integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==
266 | dependencies:
267 | base-x "^3.0.2"
268 |
269 | buffer-from@^1.0.0, buffer-from@^1.1.0:
270 | version "1.1.2"
271 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
272 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
273 |
274 | buffer-layout@^1.2.0:
275 | version "1.2.2"
276 | resolved "https://registry.yarnpkg.com/buffer-layout/-/buffer-layout-1.2.2.tgz#b9814e7c7235783085f9ca4966a0cfff112259d5"
277 | integrity sha512-kWSuLN694+KTk8SrYvCqwP2WcgQjoRCiF5b4QDvkkz8EmgD+aWAIceGFKMIAdmF/pH+vpgNV3d3kAKorcdAmWA==
278 |
279 | buffer@6.0.1:
280 | version "6.0.1"
281 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.1.tgz#3cbea8c1463e5a0779e30b66d4c88c6ffa182ac2"
282 | integrity sha512-rVAXBwEcEoYtxnHSO5iWyhzV/O1WMtkUYWlfdLS7FjU4PnSJJHEfHXi/uHPI5EwltmOA794gN3bm3/pzuctWjQ==
283 | dependencies:
284 | base64-js "^1.3.1"
285 | ieee754 "^1.2.1"
286 |
287 | buffer@6.0.3, buffer@~6.0.3:
288 | version "6.0.3"
289 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6"
290 | integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
291 | dependencies:
292 | base64-js "^1.3.1"
293 | ieee754 "^1.2.1"
294 |
295 | bufferutil@^4.0.1:
296 | version "4.0.7"
297 | resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.7.tgz#60c0d19ba2c992dd8273d3f73772ffc894c153ad"
298 | integrity sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==
299 | dependencies:
300 | node-gyp-build "^4.3.0"
301 |
302 | camelcase@^5.3.1:
303 | version "5.3.1"
304 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
305 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
306 |
307 | camelcase@^6.0.0:
308 | version "6.3.0"
309 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
310 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
311 |
312 | chai@^4.3.4:
313 | version "4.3.7"
314 | resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51"
315 | integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==
316 | dependencies:
317 | assertion-error "^1.1.0"
318 | check-error "^1.0.2"
319 | deep-eql "^4.1.2"
320 | get-func-name "^2.0.0"
321 | loupe "^2.3.1"
322 | pathval "^1.1.1"
323 | type-detect "^4.0.5"
324 |
325 | chalk@^4.1.0:
326 | version "4.1.2"
327 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
328 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
329 | dependencies:
330 | ansi-styles "^4.1.0"
331 | supports-color "^7.1.0"
332 |
333 | check-error@^1.0.2:
334 | version "1.0.2"
335 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
336 | integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==
337 |
338 | chokidar@3.5.3:
339 | version "3.5.3"
340 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
341 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
342 | dependencies:
343 | anymatch "~3.1.2"
344 | braces "~3.0.2"
345 | glob-parent "~5.1.2"
346 | is-binary-path "~2.1.0"
347 | is-glob "~4.0.1"
348 | normalize-path "~3.0.0"
349 | readdirp "~3.6.0"
350 | optionalDependencies:
351 | fsevents "~2.3.2"
352 |
353 | cliui@^7.0.2:
354 | version "7.0.4"
355 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
356 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
357 | dependencies:
358 | string-width "^4.2.0"
359 | strip-ansi "^6.0.0"
360 | wrap-ansi "^7.0.0"
361 |
362 | color-convert@^2.0.1:
363 | version "2.0.1"
364 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
365 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
366 | dependencies:
367 | color-name "~1.1.4"
368 |
369 | color-name@~1.1.4:
370 | version "1.1.4"
371 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
372 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
373 |
374 | commander@^2.20.3:
375 | version "2.20.3"
376 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
377 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
378 |
379 | concat-map@0.0.1:
380 | version "0.0.1"
381 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
382 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
383 |
384 | crypto-hash@^1.3.0:
385 | version "1.3.0"
386 | resolved "https://registry.yarnpkg.com/crypto-hash/-/crypto-hash-1.3.0.tgz#b402cb08f4529e9f4f09346c3e275942f845e247"
387 | integrity sha512-lyAZ0EMyjDkVvz8WOeVnuCPvKVBXcMv1l5SVqO1yC7PzTwrD/pPje/BIRbWhMoPe436U+Y2nD7f5bFx0kt+Sbg==
388 |
389 | debug@4.3.3:
390 | version "4.3.3"
391 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
392 | integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
393 | dependencies:
394 | ms "2.1.2"
395 |
396 | debug@^4.1.0:
397 | version "4.3.4"
398 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
399 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
400 | dependencies:
401 | ms "2.1.2"
402 |
403 | decamelize@^4.0.0:
404 | version "4.0.0"
405 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
406 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
407 |
408 | deep-eql@^4.1.2:
409 | version "4.1.3"
410 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
411 | integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
412 | dependencies:
413 | type-detect "^4.0.0"
414 |
415 | delay@^5.0.0:
416 | version "5.0.0"
417 | resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d"
418 | integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==
419 |
420 | depd@^2.0.0:
421 | version "2.0.0"
422 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
423 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
424 |
425 | diff@5.0.0:
426 | version "5.0.0"
427 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
428 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
429 |
430 | diff@^3.1.0:
431 | version "3.5.0"
432 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
433 | integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
434 |
435 | dot-case@^3.0.4:
436 | version "3.0.4"
437 | resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
438 | integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
439 | dependencies:
440 | no-case "^3.0.4"
441 | tslib "^2.0.3"
442 |
443 | dotenv@10.0.0:
444 | version "10.0.0"
445 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81"
446 | integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==
447 |
448 | emoji-regex@^8.0.0:
449 | version "8.0.0"
450 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
451 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
452 |
453 | es6-promise@^4.0.3:
454 | version "4.2.8"
455 | resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a"
456 | integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==
457 |
458 | es6-promisify@^5.0.0:
459 | version "5.0.0"
460 | resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203"
461 | integrity sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==
462 | dependencies:
463 | es6-promise "^4.0.3"
464 |
465 | escalade@^3.1.1:
466 | version "3.1.1"
467 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
468 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
469 |
470 | escape-string-regexp@4.0.0:
471 | version "4.0.0"
472 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
473 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
474 |
475 | eventemitter3@^4.0.7:
476 | version "4.0.7"
477 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
478 | integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
479 |
480 | eyes@^0.1.8:
481 | version "0.1.8"
482 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0"
483 | integrity sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==
484 |
485 | fast-stable-stringify@^1.0.0:
486 | version "1.0.0"
487 | resolved "https://registry.yarnpkg.com/fast-stable-stringify/-/fast-stable-stringify-1.0.0.tgz#5c5543462b22aeeefd36d05b34e51c78cb86d313"
488 | integrity sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==
489 |
490 | file-uri-to-path@1.0.0:
491 | version "1.0.0"
492 | resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
493 | integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
494 |
495 | fill-range@^7.0.1:
496 | version "7.0.1"
497 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
498 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
499 | dependencies:
500 | to-regex-range "^5.0.1"
501 |
502 | find-up@5.0.0:
503 | version "5.0.0"
504 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
505 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
506 | dependencies:
507 | locate-path "^6.0.0"
508 | path-exists "^4.0.0"
509 |
510 | find@^0.3.0:
511 | version "0.3.0"
512 | resolved "https://registry.yarnpkg.com/find/-/find-0.3.0.tgz#4082e8fc8d8320f1a382b5e4f521b9bc50775cb8"
513 | integrity sha512-iSd+O4OEYV/I36Zl8MdYJO0xD82wH528SaCieTVHhclgiYNe9y+yPKSwK+A7/WsmHL1EZ+pYUJBXWTL5qofksw==
514 | dependencies:
515 | traverse-chain "~0.1.0"
516 |
517 | flat@^5.0.2:
518 | version "5.0.2"
519 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
520 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
521 |
522 | fs.realpath@^1.0.0:
523 | version "1.0.0"
524 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
525 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
526 |
527 | fsevents@~2.3.2:
528 | version "2.3.2"
529 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
530 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
531 |
532 | get-caller-file@^2.0.5:
533 | version "2.0.5"
534 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
535 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
536 |
537 | get-func-name@^2.0.0:
538 | version "2.0.0"
539 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
540 | integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
541 |
542 | glob-parent@~5.1.2:
543 | version "5.1.2"
544 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
545 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
546 | dependencies:
547 | is-glob "^4.0.1"
548 |
549 | glob@7.2.0:
550 | version "7.2.0"
551 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
552 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
553 | dependencies:
554 | fs.realpath "^1.0.0"
555 | inflight "^1.0.4"
556 | inherits "2"
557 | minimatch "^3.0.4"
558 | once "^1.3.0"
559 | path-is-absolute "^1.0.0"
560 |
561 | growl@1.10.5:
562 | version "1.10.5"
563 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
564 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
565 |
566 | has-flag@^4.0.0:
567 | version "4.0.0"
568 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
569 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
570 |
571 | he@1.2.0:
572 | version "1.2.0"
573 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
574 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
575 |
576 | humanize-ms@^1.2.1:
577 | version "1.2.1"
578 | resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
579 | integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==
580 | dependencies:
581 | ms "^2.0.0"
582 |
583 | ieee754@^1.2.1:
584 | version "1.2.1"
585 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
586 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
587 |
588 | inflight@^1.0.4:
589 | version "1.0.6"
590 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
591 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
592 | dependencies:
593 | once "^1.3.0"
594 | wrappy "1"
595 |
596 | inherits@2:
597 | version "2.0.4"
598 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
599 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
600 |
601 | is-binary-path@~2.1.0:
602 | version "2.1.0"
603 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
604 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
605 | dependencies:
606 | binary-extensions "^2.0.0"
607 |
608 | is-extglob@^2.1.1:
609 | version "2.1.1"
610 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
611 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
612 |
613 | is-fullwidth-code-point@^3.0.0:
614 | version "3.0.0"
615 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
616 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
617 |
618 | is-glob@^4.0.1, is-glob@~4.0.1:
619 | version "4.0.3"
620 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
621 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
622 | dependencies:
623 | is-extglob "^2.1.1"
624 |
625 | is-number@^7.0.0:
626 | version "7.0.0"
627 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
628 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
629 |
630 | is-plain-obj@^2.1.0:
631 | version "2.1.0"
632 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
633 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
634 |
635 | is-unicode-supported@^0.1.0:
636 | version "0.1.0"
637 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
638 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
639 |
640 | isexe@^2.0.0:
641 | version "2.0.0"
642 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
643 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
644 |
645 | isomorphic-ws@^4.0.1:
646 | version "4.0.1"
647 | resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz#55fd4cd6c5e6491e76dc125938dd863f5cd4f2dc"
648 | integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
649 |
650 | jayson@^3.4.4:
651 | version "3.7.0"
652 | resolved "https://registry.yarnpkg.com/jayson/-/jayson-3.7.0.tgz#b735b12d06d348639ae8230d7a1e2916cb078f25"
653 | integrity sha512-tfy39KJMrrXJ+mFcMpxwBvFDetS8LAID93+rycFglIQM4kl3uNR3W4lBLE/FFhsoUCEox5Dt2adVpDm/XtebbQ==
654 | dependencies:
655 | "@types/connect" "^3.4.33"
656 | "@types/node" "^12.12.54"
657 | "@types/ws" "^7.4.4"
658 | JSONStream "^1.3.5"
659 | commander "^2.20.3"
660 | delay "^5.0.0"
661 | es6-promisify "^5.0.0"
662 | eyes "^0.1.8"
663 | isomorphic-ws "^4.0.1"
664 | json-stringify-safe "^5.0.1"
665 | lodash "^4.17.20"
666 | uuid "^8.3.2"
667 | ws "^7.4.5"
668 |
669 | js-sha256@^0.9.0:
670 | version "0.9.0"
671 | resolved "https://registry.yarnpkg.com/js-sha256/-/js-sha256-0.9.0.tgz#0b89ac166583e91ef9123644bd3c5334ce9d0966"
672 | integrity sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==
673 |
674 | js-yaml@4.1.0:
675 | version "4.1.0"
676 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
677 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
678 | dependencies:
679 | argparse "^2.0.1"
680 |
681 | json-stringify-safe@^5.0.1:
682 | version "5.0.1"
683 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
684 | integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
685 |
686 | json5@^1.0.2:
687 | version "1.0.2"
688 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
689 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
690 | dependencies:
691 | minimist "^1.2.0"
692 |
693 | jsonparse@^1.2.0:
694 | version "1.3.1"
695 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
696 | integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
697 |
698 | locate-path@^6.0.0:
699 | version "6.0.0"
700 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
701 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
702 | dependencies:
703 | p-locate "^5.0.0"
704 |
705 | lodash@^4.17.20:
706 | version "4.17.21"
707 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
708 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
709 |
710 | log-symbols@4.1.0:
711 | version "4.1.0"
712 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
713 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
714 | dependencies:
715 | chalk "^4.1.0"
716 | is-unicode-supported "^0.1.0"
717 |
718 | loupe@^2.3.1:
719 | version "2.3.6"
720 | resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
721 | integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
722 | dependencies:
723 | get-func-name "^2.0.0"
724 |
725 | lower-case@^2.0.2:
726 | version "2.0.2"
727 | resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
728 | integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
729 | dependencies:
730 | tslib "^2.0.3"
731 |
732 | make-error@^1.1.1:
733 | version "1.3.6"
734 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
735 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
736 |
737 | minimatch@4.2.1:
738 | version "4.2.1"
739 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-4.2.1.tgz#40d9d511a46bdc4e563c22c3080cde9c0d8299b4"
740 | integrity sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==
741 | dependencies:
742 | brace-expansion "^1.1.7"
743 |
744 | minimatch@^3.0.4:
745 | version "3.1.2"
746 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
747 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
748 | dependencies:
749 | brace-expansion "^1.1.7"
750 |
751 | minimist@^1.2.0, minimist@^1.2.6:
752 | version "1.2.8"
753 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
754 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
755 |
756 | mkdirp@^0.5.1:
757 | version "0.5.6"
758 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
759 | integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
760 | dependencies:
761 | minimist "^1.2.6"
762 |
763 | mocha@^9.0.3:
764 | version "9.2.2"
765 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.2.2.tgz#d70db46bdb93ca57402c809333e5a84977a88fb9"
766 | integrity sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==
767 | dependencies:
768 | "@ungap/promise-all-settled" "1.1.2"
769 | ansi-colors "4.1.1"
770 | browser-stdout "1.3.1"
771 | chokidar "3.5.3"
772 | debug "4.3.3"
773 | diff "5.0.0"
774 | escape-string-regexp "4.0.0"
775 | find-up "5.0.0"
776 | glob "7.2.0"
777 | growl "1.10.5"
778 | he "1.2.0"
779 | js-yaml "4.1.0"
780 | log-symbols "4.1.0"
781 | minimatch "4.2.1"
782 | ms "2.1.3"
783 | nanoid "3.3.1"
784 | serialize-javascript "6.0.0"
785 | strip-json-comments "3.1.1"
786 | supports-color "8.1.1"
787 | which "2.0.2"
788 | workerpool "6.2.0"
789 | yargs "16.2.0"
790 | yargs-parser "20.2.4"
791 | yargs-unparser "2.0.0"
792 |
793 | ms@2.1.2:
794 | version "2.1.2"
795 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
796 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
797 |
798 | ms@2.1.3, ms@^2.0.0:
799 | version "2.1.3"
800 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
801 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
802 |
803 | nanoid@3.3.1:
804 | version "3.3.1"
805 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
806 | integrity sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==
807 |
808 | no-case@^3.0.4:
809 | version "3.0.4"
810 | resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
811 | integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
812 | dependencies:
813 | lower-case "^2.0.2"
814 | tslib "^2.0.3"
815 |
816 | node-fetch@^2.6.7:
817 | version "2.6.9"
818 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.9.tgz#7c7f744b5cc6eb5fd404e0c7a9fec630a55657e6"
819 | integrity sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==
820 | dependencies:
821 | whatwg-url "^5.0.0"
822 |
823 | node-gyp-build@^4.3.0:
824 | version "4.6.0"
825 | resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055"
826 | integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==
827 |
828 | normalize-path@^3.0.0, normalize-path@~3.0.0:
829 | version "3.0.0"
830 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
831 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
832 |
833 | once@^1.3.0:
834 | version "1.4.0"
835 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
836 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
837 | dependencies:
838 | wrappy "1"
839 |
840 | p-limit@^3.0.2:
841 | version "3.1.0"
842 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
843 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
844 | dependencies:
845 | yocto-queue "^0.1.0"
846 |
847 | p-locate@^5.0.0:
848 | version "5.0.0"
849 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
850 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
851 | dependencies:
852 | p-limit "^3.0.2"
853 |
854 | pako@^2.0.3:
855 | version "2.1.0"
856 | resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
857 | integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
858 |
859 | path-exists@^4.0.0:
860 | version "4.0.0"
861 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
862 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
863 |
864 | path-is-absolute@^1.0.0:
865 | version "1.0.1"
866 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
867 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
868 |
869 | pathval@^1.1.1:
870 | version "1.1.1"
871 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
872 | integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
873 |
874 | picomatch@^2.0.4, picomatch@^2.2.1:
875 | version "2.3.1"
876 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
877 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
878 |
879 | randombytes@^2.1.0:
880 | version "2.1.0"
881 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
882 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
883 | dependencies:
884 | safe-buffer "^5.1.0"
885 |
886 | readdirp@~3.6.0:
887 | version "3.6.0"
888 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
889 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
890 | dependencies:
891 | picomatch "^2.2.1"
892 |
893 | regenerator-runtime@^0.13.11:
894 | version "0.13.11"
895 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
896 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
897 |
898 | require-directory@^2.1.1:
899 | version "2.1.1"
900 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
901 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
902 |
903 | rpc-websockets@^7.5.1:
904 | version "7.5.1"
905 | resolved "https://registry.yarnpkg.com/rpc-websockets/-/rpc-websockets-7.5.1.tgz#e0a05d525a97e7efc31a0617f093a13a2e10c401"
906 | integrity sha512-kGFkeTsmd37pHPMaHIgN1LVKXMi0JD782v4Ds9ZKtLlwdTKjn+CxM9A9/gLT2LaOuEcEFGL98h1QWQtlOIdW0w==
907 | dependencies:
908 | "@babel/runtime" "^7.17.2"
909 | eventemitter3 "^4.0.7"
910 | uuid "^8.3.2"
911 | ws "^8.5.0"
912 | optionalDependencies:
913 | bufferutil "^4.0.1"
914 | utf-8-validate "^5.0.2"
915 |
916 | safe-buffer@^5.0.1, safe-buffer@^5.1.0:
917 | version "5.2.1"
918 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
919 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
920 |
921 | serialize-javascript@6.0.0:
922 | version "6.0.0"
923 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
924 | integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
925 | dependencies:
926 | randombytes "^2.1.0"
927 |
928 | snake-case@^3.0.4:
929 | version "3.0.4"
930 | resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c"
931 | integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==
932 | dependencies:
933 | dot-case "^3.0.4"
934 | tslib "^2.0.3"
935 |
936 | source-map-support@^0.5.6:
937 | version "0.5.21"
938 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
939 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
940 | dependencies:
941 | buffer-from "^1.0.0"
942 | source-map "^0.6.0"
943 |
944 | source-map@^0.6.0:
945 | version "0.6.1"
946 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
947 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
948 |
949 | string-width@^4.1.0, string-width@^4.2.0:
950 | version "4.2.3"
951 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
952 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
953 | dependencies:
954 | emoji-regex "^8.0.0"
955 | is-fullwidth-code-point "^3.0.0"
956 | strip-ansi "^6.0.1"
957 |
958 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
959 | version "6.0.1"
960 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
961 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
962 | dependencies:
963 | ansi-regex "^5.0.1"
964 |
965 | strip-bom@^3.0.0:
966 | version "3.0.0"
967 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
968 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
969 |
970 | strip-json-comments@3.1.1:
971 | version "3.1.1"
972 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
973 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
974 |
975 | superstruct@^0.14.2:
976 | version "0.14.2"
977 | resolved "https://registry.yarnpkg.com/superstruct/-/superstruct-0.14.2.tgz#0dbcdf3d83676588828f1cf5ed35cda02f59025b"
978 | integrity sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==
979 |
980 | supports-color@8.1.1:
981 | version "8.1.1"
982 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
983 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
984 | dependencies:
985 | has-flag "^4.0.0"
986 |
987 | supports-color@^7.1.0:
988 | version "7.2.0"
989 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
990 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
991 | dependencies:
992 | has-flag "^4.0.0"
993 |
994 | text-encoding-utf-8@^1.0.2:
995 | version "1.0.2"
996 | resolved "https://registry.yarnpkg.com/text-encoding-utf-8/-/text-encoding-utf-8-1.0.2.tgz#585b62197b0ae437e3c7b5d0af27ac1021e10d13"
997 | integrity sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==
998 |
999 | "through@>=2.2.7 <3":
1000 | version "2.3.8"
1001 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
1002 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
1003 |
1004 | to-regex-range@^5.0.1:
1005 | version "5.0.1"
1006 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1007 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1008 | dependencies:
1009 | is-number "^7.0.0"
1010 |
1011 | toml@^3.0.0:
1012 | version "3.0.0"
1013 | resolved "https://registry.yarnpkg.com/toml/-/toml-3.0.0.tgz#342160f1af1904ec9d204d03a5d61222d762c5ee"
1014 | integrity sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==
1015 |
1016 | tr46@~0.0.3:
1017 | version "0.0.3"
1018 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
1019 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
1020 |
1021 | traverse-chain@~0.1.0:
1022 | version "0.1.0"
1023 | resolved "https://registry.yarnpkg.com/traverse-chain/-/traverse-chain-0.1.0.tgz#61dbc2d53b69ff6091a12a168fd7d433107e40f1"
1024 | integrity sha512-up6Yvai4PYKhpNp5PkYtx50m3KbwQrqDwbuZP/ItyL64YEWHAvH6Md83LFLV/GRSk/BoUVwwgUzX6SOQSbsfAg==
1025 |
1026 | ts-mocha@^8.0.0:
1027 | version "8.0.0"
1028 | resolved "https://registry.yarnpkg.com/ts-mocha/-/ts-mocha-8.0.0.tgz#962d0fa12eeb6468aa1a6b594bb3bbc818da3ef0"
1029 | integrity sha512-Kou1yxTlubLnD5C3unlCVO7nh0HERTezjoVhVw/M5S1SqoUec0WgllQvPk3vzPMc6by8m6xD1uR1yRf8lnVUbA==
1030 | dependencies:
1031 | ts-node "7.0.1"
1032 | optionalDependencies:
1033 | tsconfig-paths "^3.5.0"
1034 |
1035 | ts-node@7.0.1:
1036 | version "7.0.1"
1037 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-7.0.1.tgz#9562dc2d1e6d248d24bc55f773e3f614337d9baf"
1038 | integrity sha512-BVwVbPJRspzNh2yfslyT1PSbl5uIk03EZlb493RKHN4qej/D06n1cEhjlOJG69oFsE7OT8XjpTUcYf6pKTLMhw==
1039 | dependencies:
1040 | arrify "^1.0.0"
1041 | buffer-from "^1.1.0"
1042 | diff "^3.1.0"
1043 | make-error "^1.1.1"
1044 | minimist "^1.2.0"
1045 | mkdirp "^0.5.1"
1046 | source-map-support "^0.5.6"
1047 | yn "^2.0.0"
1048 |
1049 | tsconfig-paths@^3.5.0:
1050 | version "3.14.2"
1051 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
1052 | integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
1053 | dependencies:
1054 | "@types/json5" "^0.0.29"
1055 | json5 "^1.0.2"
1056 | minimist "^1.2.6"
1057 | strip-bom "^3.0.0"
1058 |
1059 | tslib@^2.0.3:
1060 | version "2.5.0"
1061 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
1062 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
1063 |
1064 | type-detect@^4.0.0, type-detect@^4.0.5:
1065 | version "4.0.8"
1066 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
1067 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
1068 |
1069 | typescript@^4.3.5:
1070 | version "4.9.5"
1071 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
1072 | integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
1073 |
1074 | utf-8-validate@^5.0.2:
1075 | version "5.0.10"
1076 | resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.10.tgz#d7d10ea39318171ca982718b6b96a8d2442571a2"
1077 | integrity sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==
1078 | dependencies:
1079 | node-gyp-build "^4.3.0"
1080 |
1081 | uuid@^8.3.2:
1082 | version "8.3.2"
1083 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
1084 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
1085 |
1086 | webidl-conversions@^3.0.0:
1087 | version "3.0.1"
1088 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
1089 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
1090 |
1091 | whatwg-url@^5.0.0:
1092 | version "5.0.0"
1093 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
1094 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
1095 | dependencies:
1096 | tr46 "~0.0.3"
1097 | webidl-conversions "^3.0.0"
1098 |
1099 | which@2.0.2:
1100 | version "2.0.2"
1101 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
1102 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
1103 | dependencies:
1104 | isexe "^2.0.0"
1105 |
1106 | workerpool@6.2.0:
1107 | version "6.2.0"
1108 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b"
1109 | integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==
1110 |
1111 | wrap-ansi@^7.0.0:
1112 | version "7.0.0"
1113 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1114 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1115 | dependencies:
1116 | ansi-styles "^4.0.0"
1117 | string-width "^4.1.0"
1118 | strip-ansi "^6.0.0"
1119 |
1120 | wrappy@1:
1121 | version "1.0.2"
1122 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
1123 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
1124 |
1125 | ws@^7.4.5:
1126 | version "7.5.9"
1127 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
1128 | integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
1129 |
1130 | ws@^8.5.0:
1131 | version "8.13.0"
1132 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
1133 | integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
1134 |
1135 | y18n@^5.0.5:
1136 | version "5.0.8"
1137 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
1138 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
1139 |
1140 | yargs-parser@20.2.4:
1141 | version "20.2.4"
1142 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
1143 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
1144 |
1145 | yargs-parser@^20.2.2:
1146 | version "20.2.9"
1147 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
1148 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
1149 |
1150 | yargs-unparser@2.0.0:
1151 | version "2.0.0"
1152 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb"
1153 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==
1154 | dependencies:
1155 | camelcase "^6.0.0"
1156 | decamelize "^4.0.0"
1157 | flat "^5.0.2"
1158 | is-plain-obj "^2.1.0"
1159 |
1160 | yargs@16.2.0:
1161 | version "16.2.0"
1162 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
1163 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
1164 | dependencies:
1165 | cliui "^7.0.2"
1166 | escalade "^3.1.1"
1167 | get-caller-file "^2.0.5"
1168 | require-directory "^2.1.1"
1169 | string-width "^4.2.0"
1170 | y18n "^5.0.5"
1171 | yargs-parser "^20.2.2"
1172 |
1173 | yn@^2.0.0:
1174 | version "2.0.0"
1175 | resolved "https://registry.yarnpkg.com/yn/-/yn-2.0.0.tgz#e5adabc8acf408f6385fc76495684c88e6af689a"
1176 | integrity sha512-uTv8J/wiWTgUTg+9vLTi//leUl5vDQS6uii/emeTb2ssY7vl6QWf2fFbIIGjnhjvbdKlU0ed7QPgY1htTC86jQ==
1177 |
1178 | yocto-queue@^0.1.0:
1179 | version "0.1.0"
1180 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1181 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1182 |
--------------------------------------------------------------------------------