@gooddollar/goodprotocol 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -3
- package/scripts/misc/activeUsersCount.ts +65 -0
- package/scripts/misc/activeWalletsStats.ts +150 -0
- package/scripts/misc/claimIncidentStats.ts +30 -10
- package/yarn.lock +3 -370
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddollar/goodprotocol",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "GoodDollar Protocol",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "scripts/build.sh deploy",
|
|
@@ -54,8 +54,6 @@
|
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://gooddollar.org",
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@celo-tools/celo-ethers-wrapper": "^0.1.0",
|
|
58
|
-
"@celo/contractkit": "^2.0.0",
|
|
59
57
|
"@gooddollar/goodcontracts": "^2.6.2",
|
|
60
58
|
"@jsier/retrier": "^1.2.4",
|
|
61
59
|
"@openzeppelin/contracts": "^4.5.0",
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { range, chunk, uniq } from "lodash";
|
|
2
|
+
import { ethers as Ethers } from "hardhat";
|
|
3
|
+
import fetch from "node-fetch";
|
|
4
|
+
|
|
5
|
+
const ONE_DAY = 24 * 60 * 60;
|
|
6
|
+
|
|
7
|
+
const main = async () => {
|
|
8
|
+
const signer = (await Ethers.getSigners())[0];
|
|
9
|
+
console.log("signer:", signer.address);
|
|
10
|
+
const ubiScheme = new Ethers.Contract(
|
|
11
|
+
"0xD7aC544F8A570C4d8764c3AAbCF6870CBD960D0D",
|
|
12
|
+
["function fishMulti(address[] tofish)"]
|
|
13
|
+
).connect(signer);
|
|
14
|
+
const twoWeeksAgo = parseInt((Date.now() / 1000).toFixed(0)); //
|
|
15
|
+
//parseInt((Date.now() / 1000).toFixed(0)) - 24 * 60 * 60 * 14;
|
|
16
|
+
|
|
17
|
+
const daysAgo: number[] = range(0, 180, 1);
|
|
18
|
+
let curDay = twoWeeksAgo;
|
|
19
|
+
const allActive = [];
|
|
20
|
+
for (let day of daysAgo) {
|
|
21
|
+
const query = `
|
|
22
|
+
{
|
|
23
|
+
walletStats(first:1000, where: { lastClaimed_lte: ${curDay},lastClaimed_gt: ${
|
|
24
|
+
curDay - ONE_DAY
|
|
25
|
+
} isActiveUser: true }) {
|
|
26
|
+
id
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
`;
|
|
30
|
+
|
|
31
|
+
console.log(
|
|
32
|
+
"fetching inactive users since:",
|
|
33
|
+
{ curDay, day },
|
|
34
|
+
JSON.stringify({ query })
|
|
35
|
+
);
|
|
36
|
+
const {
|
|
37
|
+
data: { walletStats }
|
|
38
|
+
} = await fetch(
|
|
39
|
+
"https://api.thegraph.com/subgraphs/name/gooddollar/gooddollarfuse",
|
|
40
|
+
{
|
|
41
|
+
method: "post",
|
|
42
|
+
body: JSON.stringify({ query }),
|
|
43
|
+
headers: { "Content-Type": "application/json" }
|
|
44
|
+
}
|
|
45
|
+
).then(_ => _.json());
|
|
46
|
+
|
|
47
|
+
console.log("got inactive wallets:", walletStats.length);
|
|
48
|
+
if (walletStats) {
|
|
49
|
+
const accounts = walletStats.map(_ => _.id);
|
|
50
|
+
allActive.push(...accounts);
|
|
51
|
+
}
|
|
52
|
+
// for (let tofish of chunk(accounts, 50)) {
|
|
53
|
+
// const tx = await ubiScheme.fishMulti(tofish, { gasLimit: 2000000 });
|
|
54
|
+
// console.log("fishing tx:", tx, tofish);
|
|
55
|
+
// const res = await tx.wait();
|
|
56
|
+
// console.log("fishing tx result:", res);
|
|
57
|
+
// }
|
|
58
|
+
|
|
59
|
+
curDay = curDay - ONE_DAY;
|
|
60
|
+
}
|
|
61
|
+
const unique = uniq(allActive);
|
|
62
|
+
console.log("active claimers:", unique.length);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
main();
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { range, sortBy } from "lodash";
|
|
2
|
+
import fetch from "node-fetch";
|
|
3
|
+
import PromisePool from "async-promise-pool";
|
|
4
|
+
import fs from "fs";
|
|
5
|
+
import { ethers } from "hardhat";
|
|
6
|
+
|
|
7
|
+
const main = async () => {
|
|
8
|
+
let result = [];
|
|
9
|
+
let balances = {};
|
|
10
|
+
let curPage = 1;
|
|
11
|
+
let maxResult;
|
|
12
|
+
// do {
|
|
13
|
+
// const pages = range(curPage, curPage + 5, 1);
|
|
14
|
+
// curPage += 5;
|
|
15
|
+
// const ps = pages.map(p =>
|
|
16
|
+
// fetch(
|
|
17
|
+
// `https://explorer.fuse.io/api?module=token&action=getTokenHolders&contractaddress=0x495d133B938596C9984d462F007B676bDc57eCEC&page=${p}&offset=10000`
|
|
18
|
+
// )
|
|
19
|
+
// .then(_ => _.json())
|
|
20
|
+
// .then(_ => _.result)
|
|
21
|
+
// );
|
|
22
|
+
// const results = await Promise.all(ps);
|
|
23
|
+
// result = result.concat(...results);
|
|
24
|
+
// maxResult = maxBy(results, "length");
|
|
25
|
+
// console.log(maxResult.length, result.length);
|
|
26
|
+
// } while (maxResult.length === 10000);
|
|
27
|
+
// result.forEach(
|
|
28
|
+
// r => (balances[r.address.toLowerCase()] = { balance: r.value, lastSeen: 0 })
|
|
29
|
+
// );
|
|
30
|
+
// fs.writeFileSync("activeWalletsBalances.json", JSON.stringify(balances));
|
|
31
|
+
|
|
32
|
+
balances = JSON.parse(
|
|
33
|
+
fs.readFileSync("activeWalletsBalances.json").toString()
|
|
34
|
+
);
|
|
35
|
+
|
|
36
|
+
const EPOCH = 60 * 60 * 6;
|
|
37
|
+
const pool = new PromisePool({ concurrency: 30 });
|
|
38
|
+
const lastUsed = {};
|
|
39
|
+
const epochs = range(1596045730, (Date.now() / 1000).toFixed(0), EPOCH);
|
|
40
|
+
|
|
41
|
+
const graphQuery = async (start, skip) => {
|
|
42
|
+
const query = `{
|
|
43
|
+
walletStats(first: 1000 skip:${skip} where: { dateAppeared_gte: ${start} dateAppeared_lt:${
|
|
44
|
+
start + EPOCH
|
|
45
|
+
} }) {
|
|
46
|
+
id
|
|
47
|
+
dateAppeared
|
|
48
|
+
balance
|
|
49
|
+
lastTransactionTo
|
|
50
|
+
lastTransactionFrom
|
|
51
|
+
lastClaimed
|
|
52
|
+
}
|
|
53
|
+
}`;
|
|
54
|
+
// console.log({ query });
|
|
55
|
+
try {
|
|
56
|
+
const { data = {}, errors } = await fetch(
|
|
57
|
+
"https://api.thegraph.com/subgraphs/name/gooddollar/gooddollarfuse",
|
|
58
|
+
{
|
|
59
|
+
method: "POST",
|
|
60
|
+
headers: {
|
|
61
|
+
"Content-Type": "application/json"
|
|
62
|
+
},
|
|
63
|
+
body: JSON.stringify({ query })
|
|
64
|
+
}
|
|
65
|
+
).then(_ => _.json());
|
|
66
|
+
errors && console.log({ errors });
|
|
67
|
+
if (data?.walletStats?.length === 1000) {
|
|
68
|
+
return data.walletStats.concat(await graphQuery(start, skip + 1000));
|
|
69
|
+
}
|
|
70
|
+
return data.walletStats || [];
|
|
71
|
+
} catch (error) {
|
|
72
|
+
console.log({ query, error });
|
|
73
|
+
return [];
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
epochs.forEach(e => {
|
|
77
|
+
pool.add(async () => {
|
|
78
|
+
const walletStats = await graphQuery(e, 0);
|
|
79
|
+
walletStats.forEach(w => {
|
|
80
|
+
balances[w.id.toLowerCase()] = {
|
|
81
|
+
lastSeen: Math.max(
|
|
82
|
+
Number(w.lastClaimed),
|
|
83
|
+
Number(w.lastTransactionFrom),
|
|
84
|
+
Number(w.lastTransactionTo),
|
|
85
|
+
Number(w.dateAppeared)
|
|
86
|
+
),
|
|
87
|
+
balance: balances[w.id.toLowerCase()]?.balance || w.balance
|
|
88
|
+
};
|
|
89
|
+
});
|
|
90
|
+
console.log({ curDate: e, records: walletStats.length });
|
|
91
|
+
});
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
await pool.all();
|
|
95
|
+
fs.writeFileSync("activeWalletsLastUsed.json", JSON.stringify(balances));
|
|
96
|
+
// console.log({ lastUsed });
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
const etl = async () => {
|
|
100
|
+
/** Convert a 2D array into a CSV string
|
|
101
|
+
*/
|
|
102
|
+
function arrayToCsv(data) {
|
|
103
|
+
return data
|
|
104
|
+
.map(
|
|
105
|
+
row =>
|
|
106
|
+
row
|
|
107
|
+
.map(String) // convert every value to String
|
|
108
|
+
.map(v => v.replaceAll('"', '""')) // escape double colons
|
|
109
|
+
.map(v => `"${v}"`) // quote it
|
|
110
|
+
.join(",") // comma-separated
|
|
111
|
+
)
|
|
112
|
+
.join("\r\n"); // rows starting on new lines
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const balances = JSON.parse(
|
|
116
|
+
fs.readFileSync("activeWalletsLastUsed.json").toString()
|
|
117
|
+
);
|
|
118
|
+
|
|
119
|
+
let result = [];
|
|
120
|
+
|
|
121
|
+
for (let addr in balances) {
|
|
122
|
+
const r = balances[addr];
|
|
123
|
+
if (!r.balance) {
|
|
124
|
+
continue;
|
|
125
|
+
}
|
|
126
|
+
result.push([addr, r.balance / 100, r.lastSeen, false]);
|
|
127
|
+
}
|
|
128
|
+
const top100 = result.slice(0, 100);
|
|
129
|
+
const pool = new PromisePool({ concurrency: 30 });
|
|
130
|
+
const provider = new ethers.providers.JsonRpcBatchProvider(
|
|
131
|
+
"https://rpc.fuse.io"
|
|
132
|
+
);
|
|
133
|
+
|
|
134
|
+
for (let idx in top100) {
|
|
135
|
+
pool.add(async () => {
|
|
136
|
+
const record = top100[idx];
|
|
137
|
+
let isContract =
|
|
138
|
+
(await provider.getCode(record[0]).catch(e => "0x")) !== "0x";
|
|
139
|
+
record[3] = isContract;
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
await pool.all();
|
|
143
|
+
console.log({ top100 });
|
|
144
|
+
fs.writeFileSync(
|
|
145
|
+
"activeWalletsLastUsed.csv",
|
|
146
|
+
arrayToCsv(sortBy(result, _ => -Number(_[1])))
|
|
147
|
+
);
|
|
148
|
+
};
|
|
149
|
+
// main().catch(e => console.log(e));
|
|
150
|
+
etl();
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { countBy, chunk, difference, flatten, sortBy } from "lodash";
|
|
2
2
|
import fs from "fs";
|
|
3
|
+
import fetch from "node-fetch";
|
|
3
4
|
import { network, ethers, upgrades } from "hardhat";
|
|
4
5
|
import { Contract, Provider, setMulticallAddress } from "ethers-multicall";
|
|
5
6
|
import Identity from "../../artifacts/contracts/Interfaces.sol/IIdentity.json";
|
|
@@ -8,7 +9,8 @@ setMulticallAddress(122, "0x3CE6158b7278Bf6792e014FA7B4f3c6c46fe9410");
|
|
|
8
9
|
const CLAIM_START_BLOCK = 17896430;
|
|
9
10
|
|
|
10
11
|
const fuseProvider = new ethers.providers.JsonRpcBatchProvider(
|
|
11
|
-
"https://
|
|
12
|
+
"https://explorer-node.fuse.io/"
|
|
13
|
+
// "https://rpc.fuse.io"
|
|
12
14
|
);
|
|
13
15
|
const ethcallProvider = new Provider(fuseProvider, 122);
|
|
14
16
|
|
|
@@ -45,15 +47,33 @@ const hasBalanceToRefund = async wallets => {
|
|
|
45
47
|
};
|
|
46
48
|
|
|
47
49
|
const hasRefunded = async wallets => {
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
50
|
+
const curBlock = (await gd.provider.getBlockNumber()) - 1;
|
|
51
|
+
console.log({ curBlock });
|
|
52
|
+
let toBlock = CLAIM_START_BLOCK + 50000;
|
|
53
|
+
let refunded = [];
|
|
54
|
+
let startBlock = CLAIM_START_BLOCK;
|
|
55
|
+
while (startBlock <= curBlock) {
|
|
56
|
+
const events = await gd.queryFilter(
|
|
57
|
+
gd.filters.Transfer(
|
|
58
|
+
undefined,
|
|
59
|
+
"0xd253A5203817225e9768C05E5996d642fb96bA86"
|
|
60
|
+
),
|
|
61
|
+
startBlock,
|
|
62
|
+
toBlock
|
|
63
|
+
);
|
|
64
|
+
const accounts = events
|
|
65
|
+
.filter(e => e.args.amount >= 9622260)
|
|
66
|
+
.map(_ => _.args.from.toLowerCase());
|
|
67
|
+
refunded.push(...accounts);
|
|
68
|
+
console.log("has refunded:", {
|
|
69
|
+
startBlock,
|
|
70
|
+
toBlock,
|
|
71
|
+
accounts: accounts.length
|
|
72
|
+
});
|
|
73
|
+
toBlock = Math.min(curBlock, toBlock + 50000);
|
|
74
|
+
startBlock += 50000;
|
|
75
|
+
}
|
|
76
|
+
return refunded;
|
|
57
77
|
};
|
|
58
78
|
|
|
59
79
|
const whereIsTheMoney = async noBalance => {
|
package/yarn.lock
CHANGED
|
@@ -1035,91 +1035,6 @@
|
|
|
1035
1035
|
"@babel/helper-validator-identifier" "^7.14.8"
|
|
1036
1036
|
to-fast-properties "^2.0.0"
|
|
1037
1037
|
|
|
1038
|
-
"@celo-tools/celo-ethers-wrapper@^0.1.0":
|
|
1039
|
-
version "0.1.0"
|
|
1040
|
-
resolved "https://registry.yarnpkg.com/@celo-tools/celo-ethers-wrapper/-/celo-ethers-wrapper-0.1.0.tgz#ee925b20d56923315ab35ef95def24bcd5f1879b"
|
|
1041
|
-
integrity sha512-kBpFi7viIRlysiVKfIIywuAGykO0l3w+lBZ+NFaEgw9GsVQl0NYj0e4/UhbglfU5XS6M8HCCordUuC8gVwCw7w==
|
|
1042
|
-
|
|
1043
|
-
"@celo/base@2.0.0":
|
|
1044
|
-
version "2.0.0"
|
|
1045
|
-
resolved "https://registry.yarnpkg.com/@celo/base/-/base-2.0.0.tgz#2cf054759ac37faea2a7e8bed7868e45adce24a5"
|
|
1046
|
-
integrity sha512-uLH0z/aj5vMO7rHuGZO+ZUOcmEu2tVJT90To6kX00csuEmUea50xijoDeDOyh/3aZFzyhUWKeHO4lw3m3K92Cw==
|
|
1047
|
-
|
|
1048
|
-
"@celo/connect@2.0.0":
|
|
1049
|
-
version "2.0.0"
|
|
1050
|
-
resolved "https://registry.yarnpkg.com/@celo/connect/-/connect-2.0.0.tgz#82cafbda0db2f9d16e9384673a05b08dbe618bad"
|
|
1051
|
-
integrity sha512-ZgSs0frah42nYVBet2tzyiXXCZ9ZuQ+eylKK13mPnHDR5hlOZuBQ0hol4IjNzxHQlIr/ZSVl2eoNbKCMlWpSJQ==
|
|
1052
|
-
dependencies:
|
|
1053
|
-
"@celo/utils" "2.0.0"
|
|
1054
|
-
"@types/debug" "^4.1.5"
|
|
1055
|
-
"@types/utf8" "^2.1.6"
|
|
1056
|
-
bignumber.js "^9.0.0"
|
|
1057
|
-
debug "^4.1.1"
|
|
1058
|
-
utf8 "3.0.0"
|
|
1059
|
-
|
|
1060
|
-
"@celo/contractkit@^2.0.0":
|
|
1061
|
-
version "2.0.0"
|
|
1062
|
-
resolved "https://registry.yarnpkg.com/@celo/contractkit/-/contractkit-2.0.0.tgz#dbb82c2857260a8c067bd7d5cda1284e7eafbefa"
|
|
1063
|
-
integrity sha512-W25mSUUEzbADChugp2INsgI6E4bhmk5QWutl/zKJMi1PcSRRw0Um4q6nbuMZBL2dySl4Ru4OkxtMvbeqbOYPGg==
|
|
1064
|
-
dependencies:
|
|
1065
|
-
"@celo/base" "2.0.0"
|
|
1066
|
-
"@celo/connect" "2.0.0"
|
|
1067
|
-
"@celo/utils" "2.0.0"
|
|
1068
|
-
"@celo/wallet-local" "2.0.0"
|
|
1069
|
-
"@types/bn.js" "^5.1.0"
|
|
1070
|
-
"@types/debug" "^4.1.5"
|
|
1071
|
-
bignumber.js "^9.0.0"
|
|
1072
|
-
cross-fetch "^3.0.6"
|
|
1073
|
-
debug "^4.1.1"
|
|
1074
|
-
fp-ts "2.1.1"
|
|
1075
|
-
io-ts "2.0.1"
|
|
1076
|
-
semver "^7.3.5"
|
|
1077
|
-
web3 "1.3.6"
|
|
1078
|
-
|
|
1079
|
-
"@celo/utils@2.0.0":
|
|
1080
|
-
version "2.0.0"
|
|
1081
|
-
resolved "https://registry.yarnpkg.com/@celo/utils/-/utils-2.0.0.tgz#f66871759281785ceb263c65362cbb50537d4d0d"
|
|
1082
|
-
integrity sha512-U1BMOHxabvkNE6kA1Ll13ww5jR4gI4Ppa8FkKz4L1Y4C6XUPbBOr06TRFWGGTNB2CCKTZZSo3//yw+Vym9oF8w==
|
|
1083
|
-
dependencies:
|
|
1084
|
-
"@celo/base" "2.0.0"
|
|
1085
|
-
"@types/bn.js" "^5.1.0"
|
|
1086
|
-
"@types/elliptic" "^6.4.9"
|
|
1087
|
-
"@types/ethereumjs-util" "^5.2.0"
|
|
1088
|
-
"@types/node" "^10.12.18"
|
|
1089
|
-
bignumber.js "^9.0.0"
|
|
1090
|
-
elliptic "^6.5.4"
|
|
1091
|
-
ethereumjs-util "^5.2.0"
|
|
1092
|
-
io-ts "2.0.1"
|
|
1093
|
-
web3-eth-abi "1.3.6"
|
|
1094
|
-
web3-utils "1.3.6"
|
|
1095
|
-
|
|
1096
|
-
"@celo/wallet-base@2.0.0":
|
|
1097
|
-
version "2.0.0"
|
|
1098
|
-
resolved "https://registry.yarnpkg.com/@celo/wallet-base/-/wallet-base-2.0.0.tgz#c3926af9fe618792eadb5e89b594cafcd7e8f158"
|
|
1099
|
-
integrity sha512-P/w1sd+VVqzCxOHzS9jUBSKfke/49GuaaNhsxD8xFX3Rr2/ryGE3ZgzoS3LQbQx2X3WqwRUGhelt7fGgTguBJg==
|
|
1100
|
-
dependencies:
|
|
1101
|
-
"@celo/base" "2.0.0"
|
|
1102
|
-
"@celo/connect" "2.0.0"
|
|
1103
|
-
"@celo/utils" "2.0.0"
|
|
1104
|
-
"@types/debug" "^4.1.5"
|
|
1105
|
-
"@types/ethereumjs-util" "^5.2.0"
|
|
1106
|
-
bignumber.js "^9.0.0"
|
|
1107
|
-
debug "^4.1.1"
|
|
1108
|
-
eth-lib "^0.2.8"
|
|
1109
|
-
ethereumjs-util "^5.2.0"
|
|
1110
|
-
|
|
1111
|
-
"@celo/wallet-local@2.0.0":
|
|
1112
|
-
version "2.0.0"
|
|
1113
|
-
resolved "https://registry.yarnpkg.com/@celo/wallet-local/-/wallet-local-2.0.0.tgz#8f27f2fcc94a3be4f92f25d79e0b01b8cccfca9f"
|
|
1114
|
-
integrity sha512-jN7uQr7FEC3YLqo3yqVAG5FRVBRxs18bKxPEjh0dkVTt6gEhMdwTKAHUI7crOti+NoupJbFbOK81AHNlqyklfg==
|
|
1115
|
-
dependencies:
|
|
1116
|
-
"@celo/connect" "2.0.0"
|
|
1117
|
-
"@celo/utils" "2.0.0"
|
|
1118
|
-
"@celo/wallet-base" "2.0.0"
|
|
1119
|
-
"@types/ethereumjs-util" "^5.2.0"
|
|
1120
|
-
eth-lib "^0.2.8"
|
|
1121
|
-
ethereumjs-util "^5.2.0"
|
|
1122
|
-
|
|
1123
1038
|
"@consento/sync-randombytes@^1.0.4", "@consento/sync-randombytes@^1.0.5":
|
|
1124
1039
|
version "1.0.5"
|
|
1125
1040
|
resolved "https://registry.yarnpkg.com/@consento/sync-randombytes/-/sync-randombytes-1.0.5.tgz#5be6bc58c6a6fa6e09f04cc684d037e29e6c28d5"
|
|
@@ -3120,13 +3035,6 @@
|
|
|
3120
3035
|
resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.10.tgz#61cc8469849e5bcdd0c7044122265c39cec10cf4"
|
|
3121
3036
|
integrity sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ==
|
|
3122
3037
|
|
|
3123
|
-
"@types/debug@^4.1.5":
|
|
3124
|
-
version "4.1.7"
|
|
3125
|
-
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82"
|
|
3126
|
-
integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==
|
|
3127
|
-
dependencies:
|
|
3128
|
-
"@types/ms" "*"
|
|
3129
|
-
|
|
3130
3038
|
"@types/ed2curve@^0.2.2":
|
|
3131
3039
|
version "0.2.2"
|
|
3132
3040
|
resolved "https://registry.yarnpkg.com/@types/ed2curve/-/ed2curve-0.2.2.tgz#8f8bc7e2c9a5895a941c63a4f7acd7a6a62a5b15"
|
|
@@ -3134,21 +3042,6 @@
|
|
|
3134
3042
|
dependencies:
|
|
3135
3043
|
tweetnacl "^1.0.0"
|
|
3136
3044
|
|
|
3137
|
-
"@types/elliptic@^6.4.9":
|
|
3138
|
-
version "6.4.14"
|
|
3139
|
-
resolved "https://registry.yarnpkg.com/@types/elliptic/-/elliptic-6.4.14.tgz#7bbaad60567a588c1f08b10893453e6b9b4de48e"
|
|
3140
|
-
integrity sha512-z4OBcDAU0GVwDTuwJzQCiL6188QvZMkvoERgcVjq0/mPM8jCfdwZ3x5zQEVoL9WCAru3aG5wl3Z5Ww5wBWn7ZQ==
|
|
3141
|
-
dependencies:
|
|
3142
|
-
"@types/bn.js" "*"
|
|
3143
|
-
|
|
3144
|
-
"@types/ethereumjs-util@^5.2.0":
|
|
3145
|
-
version "5.2.0"
|
|
3146
|
-
resolved "https://registry.yarnpkg.com/@types/ethereumjs-util/-/ethereumjs-util-5.2.0.tgz#f49fe8114789ec0871721392c09318c3eb56671b"
|
|
3147
|
-
integrity sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==
|
|
3148
|
-
dependencies:
|
|
3149
|
-
"@types/bn.js" "*"
|
|
3150
|
-
"@types/node" "*"
|
|
3151
|
-
|
|
3152
3045
|
"@types/express-serve-static-core@^4.17.18", "@types/express-serve-static-core@^4.17.21":
|
|
3153
3046
|
version "4.17.24"
|
|
3154
3047
|
resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz#ea41f93bf7e0d59cd5a76665068ed6aab6815c07"
|
|
@@ -3282,11 +3175,6 @@
|
|
|
3282
3175
|
resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.0.0.tgz#3205bcd15ada9bc681ac20bef64e9e6df88fd297"
|
|
3283
3176
|
integrity sha512-scN0hAWyLVAvLR9AyW7HoFF5sJZglyBsbPuHO4fv7JRvfmPBMfp1ozWqOf/e4wwPNxezBZXRfWzMb6iFLgEVRA==
|
|
3284
3177
|
|
|
3285
|
-
"@types/ms@*":
|
|
3286
|
-
version "0.7.31"
|
|
3287
|
-
resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
|
|
3288
|
-
integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
|
|
3289
|
-
|
|
3290
3178
|
"@types/node-fetch@^2.5.5":
|
|
3291
3179
|
version "2.5.12"
|
|
3292
3180
|
resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.12.tgz#8a6f779b1d4e60b7a57fb6fd48d84fb545b9cc66"
|
|
@@ -3310,7 +3198,7 @@
|
|
|
3310
3198
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-11.11.6.tgz#df929d1bb2eee5afdda598a41930fe50b43eaa6a"
|
|
3311
3199
|
integrity sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==
|
|
3312
3200
|
|
|
3313
|
-
"@types/node@^10.0.3", "@types/node@^10.1.0", "@types/node@^10.
|
|
3201
|
+
"@types/node@^10.0.3", "@types/node@^10.1.0", "@types/node@^10.3.2":
|
|
3314
3202
|
version "10.17.60"
|
|
3315
3203
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.60.tgz#35f3d6213daed95da7f0f73e75bcc6980e90597b"
|
|
3316
3204
|
integrity sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==
|
|
@@ -3396,11 +3284,6 @@
|
|
|
3396
3284
|
resolved "https://registry.yarnpkg.com/@types/underscore/-/underscore-1.11.3.tgz#d6734f3741ce41b2630018c6b61c6745f6188c07"
|
|
3397
3285
|
integrity sha512-Fl1TX1dapfXyDqFg2ic9M+vlXRktcPJrc4PR7sRc7sdVrjavg/JHlbUXBt8qWWqhJrmSqg3RNAkAPRiOYw6Ahw==
|
|
3398
3286
|
|
|
3399
|
-
"@types/utf8@^2.1.6":
|
|
3400
|
-
version "2.1.6"
|
|
3401
|
-
resolved "https://registry.yarnpkg.com/@types/utf8/-/utf8-2.1.6.tgz#430cabb71a42d0a3613cce5621324fe4f5a25753"
|
|
3402
|
-
integrity sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA==
|
|
3403
|
-
|
|
3404
3287
|
"@types/web3@1.0.19":
|
|
3405
3288
|
version "1.0.19"
|
|
3406
3289
|
resolved "https://registry.yarnpkg.com/@types/web3/-/web3-1.0.19.tgz#46b85d91d398ded9ab7c85a5dd57cb33ac558924"
|
|
@@ -6941,7 +6824,7 @@ elliptic@6.3.3:
|
|
|
6941
6824
|
hash.js "^1.0.0"
|
|
6942
6825
|
inherits "^2.0.1"
|
|
6943
6826
|
|
|
6944
|
-
elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3
|
|
6827
|
+
elliptic@6.5.4, elliptic@^6.4.0, elliptic@^6.5.2, elliptic@^6.5.3:
|
|
6945
6828
|
version "6.5.4"
|
|
6946
6829
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
|
|
6947
6830
|
integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
|
|
@@ -7431,7 +7314,7 @@ eth-lib@0.2.7:
|
|
|
7431
7314
|
elliptic "^6.4.0"
|
|
7432
7315
|
xhr-request-promise "^0.1.2"
|
|
7433
7316
|
|
|
7434
|
-
eth-lib@0.2.8
|
|
7317
|
+
eth-lib@0.2.8:
|
|
7435
7318
|
version "0.2.8"
|
|
7436
7319
|
resolved "https://registry.yarnpkg.com/eth-lib/-/eth-lib-0.2.8.tgz#b194058bef4b220ad12ea497431d6cb6aa0623c8"
|
|
7437
7320
|
integrity sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==
|
|
@@ -8748,11 +8631,6 @@ fp-ts@1.19.3:
|
|
|
8748
8631
|
resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-1.19.3.tgz#261a60d1088fbff01f91256f91d21d0caaaaa96f"
|
|
8749
8632
|
integrity sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==
|
|
8750
8633
|
|
|
8751
|
-
fp-ts@2.1.1:
|
|
8752
|
-
version "2.1.1"
|
|
8753
|
-
resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.1.1.tgz#c910544499d7c959351bb4260ee7c44a544084c1"
|
|
8754
|
-
integrity sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==
|
|
8755
|
-
|
|
8756
8634
|
fp-ts@^1.0.0:
|
|
8757
8635
|
version "1.19.5"
|
|
8758
8636
|
resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-1.19.5.tgz#3da865e585dfa1fdfd51785417357ac50afc520a"
|
|
@@ -9951,11 +9829,6 @@ io-ts@1.10.4:
|
|
|
9951
9829
|
dependencies:
|
|
9952
9830
|
fp-ts "^1.0.0"
|
|
9953
9831
|
|
|
9954
|
-
io-ts@2.0.1:
|
|
9955
|
-
version "2.0.1"
|
|
9956
|
-
resolved "https://registry.yarnpkg.com/io-ts/-/io-ts-2.0.1.tgz#1261c12f915c2f48d16393a36966636b48a45aa1"
|
|
9957
|
-
integrity sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==
|
|
9958
|
-
|
|
9959
9832
|
ip-regex@^4.0.0:
|
|
9960
9833
|
version "4.3.0"
|
|
9961
9834
|
resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5"
|
|
@@ -17137,16 +17010,6 @@ web3-bzz@1.2.11:
|
|
|
17137
17010
|
swarm-js "^0.1.40"
|
|
17138
17011
|
underscore "1.9.1"
|
|
17139
17012
|
|
|
17140
|
-
web3-bzz@1.3.6:
|
|
17141
|
-
version "1.3.6"
|
|
17142
|
-
resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.3.6.tgz#95f370aecc3ff6ad07f057e6c0c916ef09b04dde"
|
|
17143
|
-
integrity sha512-ibHdx1wkseujFejrtY7ZyC0QxQ4ATXjzcNUpaLrvM6AEae8prUiyT/OloG9FWDgFD2CPLwzKwfSQezYQlANNlw==
|
|
17144
|
-
dependencies:
|
|
17145
|
-
"@types/node" "^12.12.6"
|
|
17146
|
-
got "9.6.0"
|
|
17147
|
-
swarm-js "^0.1.40"
|
|
17148
|
-
underscore "1.12.1"
|
|
17149
|
-
|
|
17150
17013
|
web3-bzz@1.4.0:
|
|
17151
17014
|
version "1.4.0"
|
|
17152
17015
|
resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.4.0.tgz#78a5db3544624b6709b2554094d931639f6f85b8"
|
|
@@ -17175,15 +17038,6 @@ web3-core-helpers@1.2.11:
|
|
|
17175
17038
|
web3-eth-iban "1.2.11"
|
|
17176
17039
|
web3-utils "1.2.11"
|
|
17177
17040
|
|
|
17178
|
-
web3-core-helpers@1.3.6:
|
|
17179
|
-
version "1.3.6"
|
|
17180
|
-
resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.3.6.tgz#c478246a9abe4e5456acf42657dac2f7c330be74"
|
|
17181
|
-
integrity sha512-nhtjA2ZbkppjlxTSwG0Ttu6FcPkVu1rCN5IFAOVpF/L0SEt+jy+O5l90+cjDq0jAYvlBwUwnbh2mR9hwDEJCNA==
|
|
17182
|
-
dependencies:
|
|
17183
|
-
underscore "1.12.1"
|
|
17184
|
-
web3-eth-iban "1.3.6"
|
|
17185
|
-
web3-utils "1.3.6"
|
|
17186
|
-
|
|
17187
17041
|
web3-core-helpers@1.4.0:
|
|
17188
17042
|
version "1.4.0"
|
|
17189
17043
|
resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.4.0.tgz#5cbed46dd325b9498f6fafb15aed4a4295cce514"
|
|
@@ -17216,18 +17070,6 @@ web3-core-method@1.2.11:
|
|
|
17216
17070
|
web3-core-subscriptions "1.2.11"
|
|
17217
17071
|
web3-utils "1.2.11"
|
|
17218
17072
|
|
|
17219
|
-
web3-core-method@1.3.6:
|
|
17220
|
-
version "1.3.6"
|
|
17221
|
-
resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.3.6.tgz#4b0334edd94b03dfec729d113c69a4eb6ebc68ae"
|
|
17222
|
-
integrity sha512-RyegqVGxn0cyYW5yzAwkPlsSEynkdPiegd7RxgB4ak1eKk2Cv1q2x4C7D2sZjeeCEF+q6fOkVmo2OZNqS2iQxg==
|
|
17223
|
-
dependencies:
|
|
17224
|
-
"@ethersproject/transactions" "^5.0.0-beta.135"
|
|
17225
|
-
underscore "1.12.1"
|
|
17226
|
-
web3-core-helpers "1.3.6"
|
|
17227
|
-
web3-core-promievent "1.3.6"
|
|
17228
|
-
web3-core-subscriptions "1.3.6"
|
|
17229
|
-
web3-utils "1.3.6"
|
|
17230
|
-
|
|
17231
17073
|
web3-core-method@1.4.0:
|
|
17232
17074
|
version "1.4.0"
|
|
17233
17075
|
resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.4.0.tgz#0e26001e4029d359731b25a82e0bed4d1bef8392"
|
|
@@ -17255,13 +17097,6 @@ web3-core-promievent@1.2.11:
|
|
|
17255
17097
|
dependencies:
|
|
17256
17098
|
eventemitter3 "4.0.4"
|
|
17257
17099
|
|
|
17258
|
-
web3-core-promievent@1.3.6:
|
|
17259
|
-
version "1.3.6"
|
|
17260
|
-
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.3.6.tgz#6c27dc79de8f71b74f5d17acaf9aaf593d3cb0c9"
|
|
17261
|
-
integrity sha512-Z+QzfyYDTXD5wJmZO5wwnRO8bAAHEItT1XNSPVb4J1CToV/I/SbF7CuF8Uzh2jns0Cm1109o666H7StFFvzVKw==
|
|
17262
|
-
dependencies:
|
|
17263
|
-
eventemitter3 "4.0.4"
|
|
17264
|
-
|
|
17265
17100
|
web3-core-promievent@1.4.0:
|
|
17266
17101
|
version "1.4.0"
|
|
17267
17102
|
resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.4.0.tgz#531644dab287e83653d983aeb3d9daa0f894f775"
|
|
@@ -17291,18 +17126,6 @@ web3-core-requestmanager@1.2.11:
|
|
|
17291
17126
|
web3-providers-ipc "1.2.11"
|
|
17292
17127
|
web3-providers-ws "1.2.11"
|
|
17293
17128
|
|
|
17294
|
-
web3-core-requestmanager@1.3.6:
|
|
17295
|
-
version "1.3.6"
|
|
17296
|
-
resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.3.6.tgz#4fea269fe913fd4fca464b4f7c65cb94857b5b2a"
|
|
17297
|
-
integrity sha512-2rIaeuqeo7QN1Eex7aXP0ZqeteJEPWXYFS/M3r3LXMiV8R4STQBKE+//dnHJXoo2ctzEB5cgd+7NaJM8S3gPyA==
|
|
17298
|
-
dependencies:
|
|
17299
|
-
underscore "1.12.1"
|
|
17300
|
-
util "^0.12.0"
|
|
17301
|
-
web3-core-helpers "1.3.6"
|
|
17302
|
-
web3-providers-http "1.3.6"
|
|
17303
|
-
web3-providers-ipc "1.3.6"
|
|
17304
|
-
web3-providers-ws "1.3.6"
|
|
17305
|
-
|
|
17306
17129
|
web3-core-requestmanager@1.4.0:
|
|
17307
17130
|
version "1.4.0"
|
|
17308
17131
|
resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.4.0.tgz#39043da0e1a1b1474f85af531df786e6036ef4b3"
|
|
@@ -17333,15 +17156,6 @@ web3-core-subscriptions@1.2.11:
|
|
|
17333
17156
|
underscore "1.9.1"
|
|
17334
17157
|
web3-core-helpers "1.2.11"
|
|
17335
17158
|
|
|
17336
|
-
web3-core-subscriptions@1.3.6:
|
|
17337
|
-
version "1.3.6"
|
|
17338
|
-
resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.3.6.tgz#ee24e7974d1d72ff6c992c599deba4ef9b308415"
|
|
17339
|
-
integrity sha512-wi9Z9X5X75OKvxAg42GGIf81ttbNR2TxzkAsp1g+nnp5K8mBwgZvXrIsDuj7Z7gx72Y45mWJADCWjk/2vqNu8g==
|
|
17340
|
-
dependencies:
|
|
17341
|
-
eventemitter3 "4.0.4"
|
|
17342
|
-
underscore "1.12.1"
|
|
17343
|
-
web3-core-helpers "1.3.6"
|
|
17344
|
-
|
|
17345
17159
|
web3-core-subscriptions@1.4.0:
|
|
17346
17160
|
version "1.4.0"
|
|
17347
17161
|
resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.4.0.tgz#ec44e5cfe7bffe0c2a9da330007f88e08e1b5837"
|
|
@@ -17374,19 +17188,6 @@ web3-core@1.2.11:
|
|
|
17374
17188
|
web3-core-requestmanager "1.2.11"
|
|
17375
17189
|
web3-utils "1.2.11"
|
|
17376
17190
|
|
|
17377
|
-
web3-core@1.3.6:
|
|
17378
|
-
version "1.3.6"
|
|
17379
|
-
resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.3.6.tgz#a6a761d1ff2f3ee462b8dab679229d2f8e267504"
|
|
17380
|
-
integrity sha512-gkLDM4T1Sc0T+HZIwxrNrwPg0IfWI0oABSglP2X5ZbBAYVUeEATA0o92LWV8BeF+okvKXLK1Fek/p6axwM/h3Q==
|
|
17381
|
-
dependencies:
|
|
17382
|
-
"@types/bn.js" "^4.11.5"
|
|
17383
|
-
"@types/node" "^12.12.6"
|
|
17384
|
-
bignumber.js "^9.0.0"
|
|
17385
|
-
web3-core-helpers "1.3.6"
|
|
17386
|
-
web3-core-method "1.3.6"
|
|
17387
|
-
web3-core-requestmanager "1.3.6"
|
|
17388
|
-
web3-utils "1.3.6"
|
|
17389
|
-
|
|
17390
17191
|
web3-core@1.4.0:
|
|
17391
17192
|
version "1.4.0"
|
|
17392
17193
|
resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.4.0.tgz#db830ed9fa9cca37479c501f0e5bc4201493b46b"
|
|
@@ -17418,15 +17219,6 @@ web3-eth-abi@1.2.11:
|
|
|
17418
17219
|
underscore "1.9.1"
|
|
17419
17220
|
web3-utils "1.2.11"
|
|
17420
17221
|
|
|
17421
|
-
web3-eth-abi@1.3.6:
|
|
17422
|
-
version "1.3.6"
|
|
17423
|
-
resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.3.6.tgz#4272ca48d817aa651bbf97b269f5ff10abc2b8a9"
|
|
17424
|
-
integrity sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==
|
|
17425
|
-
dependencies:
|
|
17426
|
-
"@ethersproject/abi" "5.0.7"
|
|
17427
|
-
underscore "1.12.1"
|
|
17428
|
-
web3-utils "1.3.6"
|
|
17429
|
-
|
|
17430
17222
|
web3-eth-abi@1.4.0:
|
|
17431
17223
|
version "1.4.0"
|
|
17432
17224
|
resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.4.0.tgz#83f9f0ce48fd6d6b233a30a33bd674b3518e472b"
|
|
@@ -17470,23 +17262,6 @@ web3-eth-accounts@1.2.11:
|
|
|
17470
17262
|
web3-core-method "1.2.11"
|
|
17471
17263
|
web3-utils "1.2.11"
|
|
17472
17264
|
|
|
17473
|
-
web3-eth-accounts@1.3.6:
|
|
17474
|
-
version "1.3.6"
|
|
17475
|
-
resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.3.6.tgz#f9fcb50b28ee58090ab292a10d996155caa2b474"
|
|
17476
|
-
integrity sha512-Ilr0hG6ONbCdSlVKffasCmNwftD5HsNpwyQASevocIQwHdTlvlwO0tb3oGYuajbKOaDzNTwXfz25bttAEoFCGA==
|
|
17477
|
-
dependencies:
|
|
17478
|
-
crypto-browserify "3.12.0"
|
|
17479
|
-
eth-lib "0.2.8"
|
|
17480
|
-
ethereumjs-common "^1.3.2"
|
|
17481
|
-
ethereumjs-tx "^2.1.1"
|
|
17482
|
-
scrypt-js "^3.0.1"
|
|
17483
|
-
underscore "1.12.1"
|
|
17484
|
-
uuid "3.3.2"
|
|
17485
|
-
web3-core "1.3.6"
|
|
17486
|
-
web3-core-helpers "1.3.6"
|
|
17487
|
-
web3-core-method "1.3.6"
|
|
17488
|
-
web3-utils "1.3.6"
|
|
17489
|
-
|
|
17490
17265
|
web3-eth-accounts@1.4.0:
|
|
17491
17266
|
version "1.4.0"
|
|
17492
17267
|
resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.4.0.tgz#25fc4b2b582a16b77c1492f27f58c59481156068"
|
|
@@ -17534,21 +17309,6 @@ web3-eth-contract@1.2.11:
|
|
|
17534
17309
|
web3-eth-abi "1.2.11"
|
|
17535
17310
|
web3-utils "1.2.11"
|
|
17536
17311
|
|
|
17537
|
-
web3-eth-contract@1.3.6:
|
|
17538
|
-
version "1.3.6"
|
|
17539
|
-
resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.3.6.tgz#cccf4d32dc56917fb6923e778498a9ba2a5ba866"
|
|
17540
|
-
integrity sha512-8gDaRrLF2HCg+YEZN1ov0zN35vmtPnGf3h1DxmJQK5Wm2lRMLomz9rsWsuvig3UJMHqZAQKD7tOl3ocJocQsmA==
|
|
17541
|
-
dependencies:
|
|
17542
|
-
"@types/bn.js" "^4.11.5"
|
|
17543
|
-
underscore "1.12.1"
|
|
17544
|
-
web3-core "1.3.6"
|
|
17545
|
-
web3-core-helpers "1.3.6"
|
|
17546
|
-
web3-core-method "1.3.6"
|
|
17547
|
-
web3-core-promievent "1.3.6"
|
|
17548
|
-
web3-core-subscriptions "1.3.6"
|
|
17549
|
-
web3-eth-abi "1.3.6"
|
|
17550
|
-
web3-utils "1.3.6"
|
|
17551
|
-
|
|
17552
17312
|
web3-eth-contract@1.4.0:
|
|
17553
17313
|
version "1.4.0"
|
|
17554
17314
|
resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.4.0.tgz#604187d1e44365fa0c0592e61ac5a1b5fd7c2eaa"
|
|
@@ -17593,21 +17353,6 @@ web3-eth-ens@1.2.11:
|
|
|
17593
17353
|
web3-eth-contract "1.2.11"
|
|
17594
17354
|
web3-utils "1.2.11"
|
|
17595
17355
|
|
|
17596
|
-
web3-eth-ens@1.3.6:
|
|
17597
|
-
version "1.3.6"
|
|
17598
|
-
resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.3.6.tgz#0d28c5d4ea7b4462ef6c077545a77956a6cdf175"
|
|
17599
|
-
integrity sha512-n27HNj7lpSkRxTgSx+Zo7cmKAgyg2ElFilaFlUu/X2CNH23lXfcPm2bWssivH9z0ndhg0OyR4AYFZqPaqDHkJA==
|
|
17600
|
-
dependencies:
|
|
17601
|
-
content-hash "^2.5.2"
|
|
17602
|
-
eth-ens-namehash "2.0.8"
|
|
17603
|
-
underscore "1.12.1"
|
|
17604
|
-
web3-core "1.3.6"
|
|
17605
|
-
web3-core-helpers "1.3.6"
|
|
17606
|
-
web3-core-promievent "1.3.6"
|
|
17607
|
-
web3-eth-abi "1.3.6"
|
|
17608
|
-
web3-eth-contract "1.3.6"
|
|
17609
|
-
web3-utils "1.3.6"
|
|
17610
|
-
|
|
17611
17356
|
web3-eth-ens@1.4.0:
|
|
17612
17357
|
version "1.4.0"
|
|
17613
17358
|
resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.4.0.tgz#4e66dfc3bdc6439553482972ffb2a181f1c12cbc"
|
|
@@ -17639,14 +17384,6 @@ web3-eth-iban@1.2.11:
|
|
|
17639
17384
|
bn.js "^4.11.9"
|
|
17640
17385
|
web3-utils "1.2.11"
|
|
17641
17386
|
|
|
17642
|
-
web3-eth-iban@1.3.6:
|
|
17643
|
-
version "1.3.6"
|
|
17644
|
-
resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.3.6.tgz#0d6ba21fe78f190af8919e9cd5453882457209e0"
|
|
17645
|
-
integrity sha512-nfMQaaLA/zsg5W4Oy/EJQbs8rSs1vBAX6b/35xzjYoutXlpHMQadujDx2RerTKhSHqFXSJeQAfE+2f6mdhYkRQ==
|
|
17646
|
-
dependencies:
|
|
17647
|
-
bn.js "^4.11.9"
|
|
17648
|
-
web3-utils "1.3.6"
|
|
17649
|
-
|
|
17650
17387
|
web3-eth-iban@1.4.0:
|
|
17651
17388
|
version "1.4.0"
|
|
17652
17389
|
resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.4.0.tgz#b54902c019d677b6356d838b3e964f925017c143"
|
|
@@ -17678,18 +17415,6 @@ web3-eth-personal@1.2.11:
|
|
|
17678
17415
|
web3-net "1.2.11"
|
|
17679
17416
|
web3-utils "1.2.11"
|
|
17680
17417
|
|
|
17681
|
-
web3-eth-personal@1.3.6:
|
|
17682
|
-
version "1.3.6"
|
|
17683
|
-
resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.3.6.tgz#226137916754c498f0284f22c55924c87a2efcf0"
|
|
17684
|
-
integrity sha512-pOHU0+/h1RFRYoh1ehYBehRbcKWP4OSzd4F7mDljhHngv6W8ewMHrAN8O1ol9uysN2MuCdRE19qkRg5eNgvzFQ==
|
|
17685
|
-
dependencies:
|
|
17686
|
-
"@types/node" "^12.12.6"
|
|
17687
|
-
web3-core "1.3.6"
|
|
17688
|
-
web3-core-helpers "1.3.6"
|
|
17689
|
-
web3-core-method "1.3.6"
|
|
17690
|
-
web3-net "1.3.6"
|
|
17691
|
-
web3-utils "1.3.6"
|
|
17692
|
-
|
|
17693
17418
|
web3-eth-personal@1.4.0:
|
|
17694
17419
|
version "1.4.0"
|
|
17695
17420
|
resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.4.0.tgz#77420d1f49e36f8c461a61aeabac16045d8592c0"
|
|
@@ -17740,25 +17465,6 @@ web3-eth@1.2.11:
|
|
|
17740
17465
|
web3-net "1.2.11"
|
|
17741
17466
|
web3-utils "1.2.11"
|
|
17742
17467
|
|
|
17743
|
-
web3-eth@1.3.6:
|
|
17744
|
-
version "1.3.6"
|
|
17745
|
-
resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.3.6.tgz#2c650893d540a7a0eb1365dd5b2dca24ac919b7c"
|
|
17746
|
-
integrity sha512-9+rnywRRpyX3C4hfsAQXPQh6vHh9XzQkgLxo3gyeXfbhbShUoq2gFVuy42vsRs//6JlsKdyZS7Z3hHPHz2wreA==
|
|
17747
|
-
dependencies:
|
|
17748
|
-
underscore "1.12.1"
|
|
17749
|
-
web3-core "1.3.6"
|
|
17750
|
-
web3-core-helpers "1.3.6"
|
|
17751
|
-
web3-core-method "1.3.6"
|
|
17752
|
-
web3-core-subscriptions "1.3.6"
|
|
17753
|
-
web3-eth-abi "1.3.6"
|
|
17754
|
-
web3-eth-accounts "1.3.6"
|
|
17755
|
-
web3-eth-contract "1.3.6"
|
|
17756
|
-
web3-eth-ens "1.3.6"
|
|
17757
|
-
web3-eth-iban "1.3.6"
|
|
17758
|
-
web3-eth-personal "1.3.6"
|
|
17759
|
-
web3-net "1.3.6"
|
|
17760
|
-
web3-utils "1.3.6"
|
|
17761
|
-
|
|
17762
17468
|
web3-eth@1.4.0:
|
|
17763
17469
|
version "1.4.0"
|
|
17764
17470
|
resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.4.0.tgz#6ca2dcbd72d128a225ada1fec0d1e751f8df5200"
|
|
@@ -17796,15 +17502,6 @@ web3-net@1.2.11:
|
|
|
17796
17502
|
web3-core-method "1.2.11"
|
|
17797
17503
|
web3-utils "1.2.11"
|
|
17798
17504
|
|
|
17799
|
-
web3-net@1.3.6:
|
|
17800
|
-
version "1.3.6"
|
|
17801
|
-
resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.3.6.tgz#a56492e2227475e38db29394f8bac305a2446e41"
|
|
17802
|
-
integrity sha512-KhzU3wMQY/YYjyMiQzbaLPt2kut88Ncx2iqjy3nw28vRux3gVX0WOCk9EL/KVJBiAA/fK7VklTXvgy9dZnnipw==
|
|
17803
|
-
dependencies:
|
|
17804
|
-
web3-core "1.3.6"
|
|
17805
|
-
web3-core-method "1.3.6"
|
|
17806
|
-
web3-utils "1.3.6"
|
|
17807
|
-
|
|
17808
17505
|
web3-net@1.4.0:
|
|
17809
17506
|
version "1.4.0"
|
|
17810
17507
|
resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.4.0.tgz#eaea1562dc96ddde6f14e823d2b94886091d2049"
|
|
@@ -17876,14 +17573,6 @@ web3-providers-http@1.2.11:
|
|
|
17876
17573
|
web3-core-helpers "1.2.11"
|
|
17877
17574
|
xhr2-cookies "1.1.0"
|
|
17878
17575
|
|
|
17879
|
-
web3-providers-http@1.3.6:
|
|
17880
|
-
version "1.3.6"
|
|
17881
|
-
resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.3.6.tgz#36e8724a7424d52827819d53fd75dbf31f5422c2"
|
|
17882
|
-
integrity sha512-OQkT32O1A06dISIdazpGLveZcOXhEo5cEX6QyiSQkiPk/cjzDrXMw4SKZOGQbbS1+0Vjizm1Hrp7O8Vp2D1M5Q==
|
|
17883
|
-
dependencies:
|
|
17884
|
-
web3-core-helpers "1.3.6"
|
|
17885
|
-
xhr2-cookies "1.1.0"
|
|
17886
|
-
|
|
17887
17576
|
web3-providers-http@1.4.0:
|
|
17888
17577
|
version "1.4.0"
|
|
17889
17578
|
resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.4.0.tgz#2d67f85fda00765c1402aede3d7e6cbacaa3091b"
|
|
@@ -17910,15 +17599,6 @@ web3-providers-ipc@1.2.11:
|
|
|
17910
17599
|
underscore "1.9.1"
|
|
17911
17600
|
web3-core-helpers "1.2.11"
|
|
17912
17601
|
|
|
17913
|
-
web3-providers-ipc@1.3.6:
|
|
17914
|
-
version "1.3.6"
|
|
17915
|
-
resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.3.6.tgz#cef8d12c1ebb47adce5ebf597f553c623362cb4a"
|
|
17916
|
-
integrity sha512-+TVsSd2sSVvVgHG4s6FXwwYPPT91boKKcRuEFXqEfAbUC5t52XOgmyc2LNiD9LzPhed65FbV4LqICpeYGUvSwA==
|
|
17917
|
-
dependencies:
|
|
17918
|
-
oboe "2.1.5"
|
|
17919
|
-
underscore "1.12.1"
|
|
17920
|
-
web3-core-helpers "1.3.6"
|
|
17921
|
-
|
|
17922
17602
|
web3-providers-ipc@1.4.0:
|
|
17923
17603
|
version "1.4.0"
|
|
17924
17604
|
resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.4.0.tgz#cd14e93e2d22689a26587dd2d2101e575d1e2924"
|
|
@@ -17947,16 +17627,6 @@ web3-providers-ws@1.2.11:
|
|
|
17947
17627
|
web3-core-helpers "1.2.11"
|
|
17948
17628
|
websocket "^1.0.31"
|
|
17949
17629
|
|
|
17950
|
-
web3-providers-ws@1.3.6:
|
|
17951
|
-
version "1.3.6"
|
|
17952
|
-
resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.3.6.tgz#e1df617bc89d66165abdf2191da0014c505bfaac"
|
|
17953
|
-
integrity sha512-bk7MnJf5or0Re2zKyhR3L3CjGululLCHXx4vlbc/drnaTARUVvi559OI5uLytc/1k5HKUUyENAxLvetz2G1dnQ==
|
|
17954
|
-
dependencies:
|
|
17955
|
-
eventemitter3 "4.0.4"
|
|
17956
|
-
underscore "1.12.1"
|
|
17957
|
-
web3-core-helpers "1.3.6"
|
|
17958
|
-
websocket "^1.0.32"
|
|
17959
|
-
|
|
17960
17630
|
web3-providers-ws@1.4.0:
|
|
17961
17631
|
version "1.4.0"
|
|
17962
17632
|
resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.4.0.tgz#a4db03fc865a73db62bc15c5da37f930517cfe08"
|
|
@@ -17987,16 +17657,6 @@ web3-shh@1.2.11:
|
|
|
17987
17657
|
web3-core-subscriptions "1.2.11"
|
|
17988
17658
|
web3-net "1.2.11"
|
|
17989
17659
|
|
|
17990
|
-
web3-shh@1.3.6:
|
|
17991
|
-
version "1.3.6"
|
|
17992
|
-
resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.3.6.tgz#4e3486c7eca5cbdb87f88910948223a5b7ea6c20"
|
|
17993
|
-
integrity sha512-9zRo415O0iBslxBnmu9OzYjNErzLnzOsy+IOvSpIreLYbbAw0XkDWxv3SfcpKnTIWIACBR4AYMIxmmyi5iB3jw==
|
|
17994
|
-
dependencies:
|
|
17995
|
-
web3-core "1.3.6"
|
|
17996
|
-
web3-core-method "1.3.6"
|
|
17997
|
-
web3-core-subscriptions "1.3.6"
|
|
17998
|
-
web3-net "1.3.6"
|
|
17999
|
-
|
|
18000
17660
|
web3-shh@1.4.0:
|
|
18001
17661
|
version "1.4.0"
|
|
18002
17662
|
resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.4.0.tgz#d22ff8dce16987bef73172191d9e95c3ccf0aa80"
|
|
@@ -18034,20 +17694,6 @@ web3-utils@1.2.11:
|
|
|
18034
17694
|
underscore "1.9.1"
|
|
18035
17695
|
utf8 "3.0.0"
|
|
18036
17696
|
|
|
18037
|
-
web3-utils@1.3.6:
|
|
18038
|
-
version "1.3.6"
|
|
18039
|
-
resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.3.6.tgz#390bc9fa3a7179746963cfaca55bb80ac4d8dc10"
|
|
18040
|
-
integrity sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==
|
|
18041
|
-
dependencies:
|
|
18042
|
-
bn.js "^4.11.9"
|
|
18043
|
-
eth-lib "0.2.8"
|
|
18044
|
-
ethereum-bloom-filters "^1.0.6"
|
|
18045
|
-
ethjs-unit "0.1.6"
|
|
18046
|
-
number-to-bn "1.7.0"
|
|
18047
|
-
randombytes "^2.1.0"
|
|
18048
|
-
underscore "1.12.1"
|
|
18049
|
-
utf8 "3.0.0"
|
|
18050
|
-
|
|
18051
17697
|
web3-utils@1.4.0, web3-utils@^1.0.0-beta.31, web3-utils@^1.3.0:
|
|
18052
17698
|
version "1.4.0"
|
|
18053
17699
|
resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.4.0.tgz#e8cb381c81b242dc1d4ecb397200356d404410e6"
|
|
@@ -18088,19 +17734,6 @@ web3@1.2.11:
|
|
|
18088
17734
|
web3-shh "1.2.11"
|
|
18089
17735
|
web3-utils "1.2.11"
|
|
18090
17736
|
|
|
18091
|
-
web3@1.3.6:
|
|
18092
|
-
version "1.3.6"
|
|
18093
|
-
resolved "https://registry.yarnpkg.com/web3/-/web3-1.3.6.tgz#599425461c3f9a8cbbefa70616438995f4a064cc"
|
|
18094
|
-
integrity sha512-jEpPhnL6GDteifdVh7ulzlPrtVQeA30V9vnki9liYlUvLV82ZM7BNOQJiuzlDePuE+jZETZSP/0G/JlUVt6pOA==
|
|
18095
|
-
dependencies:
|
|
18096
|
-
web3-bzz "1.3.6"
|
|
18097
|
-
web3-core "1.3.6"
|
|
18098
|
-
web3-eth "1.3.6"
|
|
18099
|
-
web3-eth-personal "1.3.6"
|
|
18100
|
-
web3-net "1.3.6"
|
|
18101
|
-
web3-shh "1.3.6"
|
|
18102
|
-
web3-utils "1.3.6"
|
|
18103
|
-
|
|
18104
17737
|
web3@1.4.0:
|
|
18105
17738
|
version "1.4.0"
|
|
18106
17739
|
resolved "https://registry.yarnpkg.com/web3/-/web3-1.4.0.tgz#717c01723226daebab9274be5cb56644de860688"
|