Skip to content

Commit ddc232a

Browse files
committed
test: first subgraph unit test
1 parent edd79fa commit ddc232a

File tree

4 files changed

+136
-100
lines changed

4 files changed

+136
-100
lines changed

subgraph/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"update:local": "./scripts/update.sh localhost mainnet",
99
"codegen": "graph codegen",
1010
"build": "graph build",
11+
"test": "graph test",
1112
"clean": "graph clean && rm subgraph.yaml.bak.*",
1213
"deploy:arbitrum-goerli": "graph deploy --product hosted-service kleros/kleros-v2-core-testnet-2",
1314
"deploy:arbitrum-goerli-devnet": "graph deploy --product hosted-service kleros/kleros-v2-core-devnet",
@@ -30,7 +31,8 @@
3031
"@graphprotocol/graph-cli": "0.52.0",
3132
"@kleros/kleros-v2-eslint-config": "workspace:^",
3233
"@kleros/kleros-v2-prettier-config": "workspace:^",
33-
"gluegun": "^5.1.2"
34+
"gluegun": "^5.1.2",
35+
"matchstick-as": "0.6.0-beta.2"
3436
},
3537
"dependenciesComments": {
3638
"@graphprotocol/graph-cli": "pinned because of this issue: https://github.com/graphprotocol/graph-tooling/issues/1399#issuecomment-1676104540"

subgraph/src/entities/User.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { BigInt, BigDecimal } from "@graphprotocol/graph-ts";
22
import { User } from "../../generated/schema";
33
import { ONE, ZERO } from "../utils";
44

5-
function computeCoherenceScore(totalCoherent: BigInt, totalResolvedDisputes: BigInt): BigInt {
5+
export function computeCoherenceScore(totalCoherent: BigInt, totalResolvedDisputes: BigInt): BigInt {
66
const smoothingFactor = BigInt.fromI32(10);
77
const shiftFactor = BigInt.fromI32(1000);
88
let denominator = totalResolvedDisputes.plus(smoothingFactor);

subgraph/tests/user.test.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { assert, test, describe } from "matchstick-as/assembly/index";
2+
import { BigInt } from "@graphprotocol/graph-ts";
3+
import { computeCoherenceScore } from "../src/entities/User";
4+
5+
describe("Compute coherence score", () => {
6+
test("Slam BigInts together", () => {
7+
assert.bigIntEquals(computeCoherenceScore(BigInt.fromI32(8), BigInt.fromI32(1)), BigInt.fromI32(99));
8+
});
9+
});

yarn.lock

Lines changed: 123 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -5349,6 +5349,7 @@ __metadata:
53495349
"@kleros/kleros-v2-eslint-config": "workspace:^"
53505350
"@kleros/kleros-v2-prettier-config": "workspace:^"
53515351
gluegun: ^5.1.2
5352+
matchstick-as: 0.6.0-beta.2
53525353
languageName: unknown
53535354
linkType: soft
53545355

@@ -6081,161 +6082,161 @@ __metadata:
60816082
languageName: node
60826083
linkType: hard
60836084

6084-
"@nomicfoundation/ethereumjs-block@npm:5.0.1":
6085-
version: 5.0.1
6086-
resolution: "@nomicfoundation/ethereumjs-block@npm:5.0.1"
6085+
"@nomicfoundation/ethereumjs-block@npm:5.0.2":
6086+
version: 5.0.2
6087+
resolution: "@nomicfoundation/ethereumjs-block@npm:5.0.2"
60876088
dependencies:
6088-
"@nomicfoundation/ethereumjs-common": 4.0.1
6089-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6090-
"@nomicfoundation/ethereumjs-trie": 6.0.1
6091-
"@nomicfoundation/ethereumjs-tx": 5.0.1
6092-
"@nomicfoundation/ethereumjs-util": 9.0.1
6089+
"@nomicfoundation/ethereumjs-common": 4.0.2
6090+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6091+
"@nomicfoundation/ethereumjs-trie": 6.0.2
6092+
"@nomicfoundation/ethereumjs-tx": 5.0.2
6093+
"@nomicfoundation/ethereumjs-util": 9.0.2
60936094
ethereum-cryptography: 0.1.3
60946095
ethers: ^5.7.1
6095-
checksum: 02591bc9ba02b56edc5faf75a7991d6b9430bd98542864f2f6ab202f0f4aed09be156fdba60948375beb10e524ffa4e461475edc8a15b3098b1c58ff59a0137e
6096+
checksum: 7ff744f44a01f1c059ca7812a1cfc8089f87aa506af6cb39c78331dca71b32993cbd6fa05ad03f8c4f4fab73bb998a927af69e0d8ff01ae192ee5931606e09f5
60966097
languageName: node
60976098
linkType: hard
60986099

6099-
"@nomicfoundation/ethereumjs-blockchain@npm:7.0.1":
6100-
version: 7.0.1
6101-
resolution: "@nomicfoundation/ethereumjs-blockchain@npm:7.0.1"
6102-
dependencies:
6103-
"@nomicfoundation/ethereumjs-block": 5.0.1
6104-
"@nomicfoundation/ethereumjs-common": 4.0.1
6105-
"@nomicfoundation/ethereumjs-ethash": 3.0.1
6106-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6107-
"@nomicfoundation/ethereumjs-trie": 6.0.1
6108-
"@nomicfoundation/ethereumjs-tx": 5.0.1
6109-
"@nomicfoundation/ethereumjs-util": 9.0.1
6100+
"@nomicfoundation/ethereumjs-blockchain@npm:7.0.2":
6101+
version: 7.0.2
6102+
resolution: "@nomicfoundation/ethereumjs-blockchain@npm:7.0.2"
6103+
dependencies:
6104+
"@nomicfoundation/ethereumjs-block": 5.0.2
6105+
"@nomicfoundation/ethereumjs-common": 4.0.2
6106+
"@nomicfoundation/ethereumjs-ethash": 3.0.2
6107+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6108+
"@nomicfoundation/ethereumjs-trie": 6.0.2
6109+
"@nomicfoundation/ethereumjs-tx": 5.0.2
6110+
"@nomicfoundation/ethereumjs-util": 9.0.2
61106111
abstract-level: ^1.0.3
61116112
debug: ^4.3.3
61126113
ethereum-cryptography: 0.1.3
61136114
level: ^8.0.0
61146115
lru-cache: ^5.1.1
61156116
memory-level: ^1.0.0
6116-
checksum: 8b7a4e3613c2abbf59e92a927cb074d1df8640fbf6a0ec4be7fcb5ecaead1310ebbe3a41613c027253742f6dccca6eaeee8dde0a38315558de156313d0c8f313
6117+
checksum: b7e440dcd73e32aa72d13bfd28cb472773c9c60ea808a884131bf7eb3f42286ad594a0864215f599332d800f3fe1f772fff4b138d2dcaa8f41e4d8389bff33e7
61176118
languageName: node
61186119
linkType: hard
61196120

6120-
"@nomicfoundation/ethereumjs-common@npm:4.0.1":
6121-
version: 4.0.1
6122-
resolution: "@nomicfoundation/ethereumjs-common@npm:4.0.1"
6121+
"@nomicfoundation/ethereumjs-common@npm:4.0.2":
6122+
version: 4.0.2
6123+
resolution: "@nomicfoundation/ethereumjs-common@npm:4.0.2"
61236124
dependencies:
6124-
"@nomicfoundation/ethereumjs-util": 9.0.1
6125+
"@nomicfoundation/ethereumjs-util": 9.0.2
61256126
crc-32: ^1.2.0
6126-
checksum: af5b599bcc07430b57017e516b0bad70af04e812b970be9bfae0c1d3433ab26656b3d1db71717b3b0fb38a889db2b93071b45adc1857000e7cd58a99a8e29495
6127+
checksum: f0d84704d6254d374299c19884312bd5666974b4b6f342d3f10bc76e549de78d20e45a53d25fbdc146268a52335497127e4f069126da7c60ac933a158e704887
61276128
languageName: node
61286129
linkType: hard
61296130

6130-
"@nomicfoundation/ethereumjs-ethash@npm:3.0.1":
6131-
version: 3.0.1
6132-
resolution: "@nomicfoundation/ethereumjs-ethash@npm:3.0.1"
6131+
"@nomicfoundation/ethereumjs-ethash@npm:3.0.2":
6132+
version: 3.0.2
6133+
resolution: "@nomicfoundation/ethereumjs-ethash@npm:3.0.2"
61336134
dependencies:
6134-
"@nomicfoundation/ethereumjs-block": 5.0.1
6135-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6136-
"@nomicfoundation/ethereumjs-util": 9.0.1
6135+
"@nomicfoundation/ethereumjs-block": 5.0.2
6136+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6137+
"@nomicfoundation/ethereumjs-util": 9.0.2
61376138
abstract-level: ^1.0.3
61386139
bigint-crypto-utils: ^3.0.23
61396140
ethereum-cryptography: 0.1.3
6140-
checksum: beeec9788a9ed57020ee47271447715bdc0a98990a0bd0e9d598c6de74ade836db17c0590275e6aab12fa9b0fbd81f1d02e3cdf1fb8497583cec693ec3ed6aed
6141+
checksum: e4011e4019dd9b92f7eeebfc1e6c9a9685c52d8fd0ee4f28f03e50048a23b600c714490827f59fdce497b3afb503b3fd2ebf6815ff307e9949c3efeff1403278
61416142
languageName: node
61426143
linkType: hard
61436144

6144-
"@nomicfoundation/ethereumjs-evm@npm:2.0.1":
6145-
version: 2.0.1
6146-
resolution: "@nomicfoundation/ethereumjs-evm@npm:2.0.1"
6145+
"@nomicfoundation/ethereumjs-evm@npm:2.0.2":
6146+
version: 2.0.2
6147+
resolution: "@nomicfoundation/ethereumjs-evm@npm:2.0.2"
61476148
dependencies:
61486149
"@ethersproject/providers": ^5.7.1
6149-
"@nomicfoundation/ethereumjs-common": 4.0.1
6150-
"@nomicfoundation/ethereumjs-tx": 5.0.1
6151-
"@nomicfoundation/ethereumjs-util": 9.0.1
6150+
"@nomicfoundation/ethereumjs-common": 4.0.2
6151+
"@nomicfoundation/ethereumjs-tx": 5.0.2
6152+
"@nomicfoundation/ethereumjs-util": 9.0.2
61526153
debug: ^4.3.3
61536154
ethereum-cryptography: 0.1.3
61546155
mcl-wasm: ^0.7.1
61556156
rustbn.js: ~0.2.0
6156-
checksum: 0aa2e1460e1c311506fd3bf9d03602c7c3a5e03f352173a55a274a9cc1840bd774692d1c4e5c6e82a7eee015a7cf1585f1c5be02cfdf54cc2a771421820e3f84
6157+
checksum: a23cf570836ddc147606b02df568069de946108e640f902358fef67e589f6b371d856056ee44299d9b4e3497f8ae25faa45e6b18fefd90e9b222dc6a761d85f0
61576158
languageName: node
61586159
linkType: hard
61596160

6160-
"@nomicfoundation/ethereumjs-rlp@npm:5.0.1":
6161-
version: 5.0.1
6162-
resolution: "@nomicfoundation/ethereumjs-rlp@npm:5.0.1"
6161+
"@nomicfoundation/ethereumjs-rlp@npm:5.0.2":
6162+
version: 5.0.2
6163+
resolution: "@nomicfoundation/ethereumjs-rlp@npm:5.0.2"
61636164
bin:
61646165
rlp: bin/rlp
6165-
checksum: 5a51d2cf92b84e50ce516cbdadff5d39cb4c6b71335e92eaf447dfb7d88f5499d78d599024b9252efd7ba99495de36f4d983cec6a89e77db286db691fc6328f7
6166+
checksum: a74434cadefca9aa8754607cc1ad7bb4bbea4ee61c6214918e60a5bbee83206850346eb64e39fd1fe97f854c7ec0163e01148c0c881dda23881938f0645a0ef2
61666167
languageName: node
61676168
linkType: hard
61686169

6169-
"@nomicfoundation/ethereumjs-statemanager@npm:2.0.1":
6170-
version: 2.0.1
6171-
resolution: "@nomicfoundation/ethereumjs-statemanager@npm:2.0.1"
6170+
"@nomicfoundation/ethereumjs-statemanager@npm:2.0.2":
6171+
version: 2.0.2
6172+
resolution: "@nomicfoundation/ethereumjs-statemanager@npm:2.0.2"
61726173
dependencies:
6173-
"@nomicfoundation/ethereumjs-common": 4.0.1
6174-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6174+
"@nomicfoundation/ethereumjs-common": 4.0.2
6175+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
61756176
debug: ^4.3.3
61766177
ethereum-cryptography: 0.1.3
61776178
ethers: ^5.7.1
61786179
js-sdsl: ^4.1.4
6179-
checksum: 157b503fa3e45a3695ba2eba5b089b56719f7790274edd09c95bb0d223570820127f6a2cbfcb14f2d9d876d1440ea4dccb04a4922fa9e9e34b416fddd6517c20
6180+
checksum: 3ab6578e252e53609afd98d8ba42a99f182dcf80252f23ed9a5e0471023ffb2502130f85fc47fa7c94cd149f9be799ed9a0942ca52a143405be9267f4ad94e64
61806181
languageName: node
61816182
linkType: hard
61826183

6183-
"@nomicfoundation/ethereumjs-trie@npm:6.0.1":
6184-
version: 6.0.1
6185-
resolution: "@nomicfoundation/ethereumjs-trie@npm:6.0.1"
6184+
"@nomicfoundation/ethereumjs-trie@npm:6.0.2":
6185+
version: 6.0.2
6186+
resolution: "@nomicfoundation/ethereumjs-trie@npm:6.0.2"
61866187
dependencies:
6187-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6188-
"@nomicfoundation/ethereumjs-util": 9.0.1
6188+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6189+
"@nomicfoundation/ethereumjs-util": 9.0.2
61896190
"@types/readable-stream": ^2.3.13
61906191
ethereum-cryptography: 0.1.3
61916192
readable-stream: ^3.6.0
6192-
checksum: 7001c3204120fd4baba673b4bb52015594f5ad28311f24574cd16f38c015ef87ed51188d6f46d6362ffb9da589359a9e0f99e6068ef7a2f61cb66213e2f493d7
6193+
checksum: d4da918d333851b9f2cce7dbd25ab5753e0accd43d562d98fd991b168b6a08d1794528f0ade40fe5617c84900378376fe6256cdbe52c8d66bf4c53293bbc7c40
61936194
languageName: node
61946195
linkType: hard
61956196

6196-
"@nomicfoundation/ethereumjs-tx@npm:5.0.1":
6197-
version: 5.0.1
6198-
resolution: "@nomicfoundation/ethereumjs-tx@npm:5.0.1"
6197+
"@nomicfoundation/ethereumjs-tx@npm:5.0.2":
6198+
version: 5.0.2
6199+
resolution: "@nomicfoundation/ethereumjs-tx@npm:5.0.2"
61996200
dependencies:
62006201
"@chainsafe/ssz": ^0.9.2
62016202
"@ethersproject/providers": ^5.7.2
6202-
"@nomicfoundation/ethereumjs-common": 4.0.1
6203-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6204-
"@nomicfoundation/ethereumjs-util": 9.0.1
6203+
"@nomicfoundation/ethereumjs-common": 4.0.2
6204+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6205+
"@nomicfoundation/ethereumjs-util": 9.0.2
62056206
ethereum-cryptography: 0.1.3
6206-
checksum: aa3829e4a43f5e10cfd66b87eacb3e737ba98f5e3755a3e6a4ccfbc257dbf10d926838cc3acb8fef8afa3362a023b7fd11b53e6ba53f94bb09c345f083cd29a8
6207+
checksum: 0bbcea75786b2ccb559afe2ecc9866fb4566a9f157b6ffba4f50960d14f4b3da2e86e273f6fadda9b860e67cfcabf589970fb951b328cb5f900a585cd21842a2
62076208
languageName: node
62086209
linkType: hard
62096210

6210-
"@nomicfoundation/ethereumjs-util@npm:9.0.1":
6211-
version: 9.0.1
6212-
resolution: "@nomicfoundation/ethereumjs-util@npm:9.0.1"
6211+
"@nomicfoundation/ethereumjs-util@npm:9.0.2":
6212+
version: 9.0.2
6213+
resolution: "@nomicfoundation/ethereumjs-util@npm:9.0.2"
62136214
dependencies:
62146215
"@chainsafe/ssz": ^0.10.0
6215-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6216+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
62166217
ethereum-cryptography: 0.1.3
6217-
checksum: 5f8a50a25c68c974b717f36ad0a5828b786ce1aaea3c874663c2014593fa387de5ad5c8cea35e94379df306dbd1a58c55b310779fd82197dcb993d5dbd4de7a1
6218+
checksum: 3a08f7b88079ef9f53b43da9bdcb8195498fd3d3911c2feee2571f4d1204656053f058b2f650471c86f7d2d0ba2f814768c7cfb0f266eede41c848356afc4900
62186219
languageName: node
62196220
linkType: hard
62206221

6221-
"@nomicfoundation/ethereumjs-vm@npm:7.0.1":
6222-
version: 7.0.1
6223-
resolution: "@nomicfoundation/ethereumjs-vm@npm:7.0.1"
6224-
dependencies:
6225-
"@nomicfoundation/ethereumjs-block": 5.0.1
6226-
"@nomicfoundation/ethereumjs-blockchain": 7.0.1
6227-
"@nomicfoundation/ethereumjs-common": 4.0.1
6228-
"@nomicfoundation/ethereumjs-evm": 2.0.1
6229-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
6230-
"@nomicfoundation/ethereumjs-statemanager": 2.0.1
6231-
"@nomicfoundation/ethereumjs-trie": 6.0.1
6232-
"@nomicfoundation/ethereumjs-tx": 5.0.1
6233-
"@nomicfoundation/ethereumjs-util": 9.0.1
6222+
"@nomicfoundation/ethereumjs-vm@npm:7.0.2":
6223+
version: 7.0.2
6224+
resolution: "@nomicfoundation/ethereumjs-vm@npm:7.0.2"
6225+
dependencies:
6226+
"@nomicfoundation/ethereumjs-block": 5.0.2
6227+
"@nomicfoundation/ethereumjs-blockchain": 7.0.2
6228+
"@nomicfoundation/ethereumjs-common": 4.0.2
6229+
"@nomicfoundation/ethereumjs-evm": 2.0.2
6230+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
6231+
"@nomicfoundation/ethereumjs-statemanager": 2.0.2
6232+
"@nomicfoundation/ethereumjs-trie": 6.0.2
6233+
"@nomicfoundation/ethereumjs-tx": 5.0.2
6234+
"@nomicfoundation/ethereumjs-util": 9.0.2
62346235
debug: ^4.3.3
62356236
ethereum-cryptography: 0.1.3
62366237
mcl-wasm: ^0.7.1
62376238
rustbn.js: ~0.2.0
6238-
checksum: 0f637316322744140d6f75d894c21b8055e27a94c72dd8ae9b0b9b93c0d54d7f30fa2aaf909e802e183a3f1020b4aa6a8178dedb823a4ce70a227ac7b432f8c1
6239+
checksum: 1c25ba4d0644cadb8a2b0241a4bb02e578bfd7f70e3492b855c2ab5c120cb159cb8f7486f84dc1597884bd1697feedbfb5feb66e91352afb51f3694fd8e4a043
62396240
languageName: node
62406241
linkType: hard
62416242

@@ -18099,26 +18100,25 @@ __metadata:
1809918100
linkType: hard
1810018101

1810118102
"hardhat@npm:^2.15.0":
18102-
version: 2.15.0
18103-
resolution: "hardhat@npm:2.15.0"
18103+
version: 2.18.2
18104+
resolution: "hardhat@npm:2.18.2"
1810418105
dependencies:
1810518106
"@ethersproject/abi": ^5.1.2
1810618107
"@metamask/eth-sig-util": ^4.0.0
18107-
"@nomicfoundation/ethereumjs-block": 5.0.1
18108-
"@nomicfoundation/ethereumjs-blockchain": 7.0.1
18109-
"@nomicfoundation/ethereumjs-common": 4.0.1
18110-
"@nomicfoundation/ethereumjs-evm": 2.0.1
18111-
"@nomicfoundation/ethereumjs-rlp": 5.0.1
18112-
"@nomicfoundation/ethereumjs-statemanager": 2.0.1
18113-
"@nomicfoundation/ethereumjs-trie": 6.0.1
18114-
"@nomicfoundation/ethereumjs-tx": 5.0.1
18115-
"@nomicfoundation/ethereumjs-util": 9.0.1
18116-
"@nomicfoundation/ethereumjs-vm": 7.0.1
18108+
"@nomicfoundation/ethereumjs-block": 5.0.2
18109+
"@nomicfoundation/ethereumjs-blockchain": 7.0.2
18110+
"@nomicfoundation/ethereumjs-common": 4.0.2
18111+
"@nomicfoundation/ethereumjs-evm": 2.0.2
18112+
"@nomicfoundation/ethereumjs-rlp": 5.0.2
18113+
"@nomicfoundation/ethereumjs-statemanager": 2.0.2
18114+
"@nomicfoundation/ethereumjs-trie": 6.0.2
18115+
"@nomicfoundation/ethereumjs-tx": 5.0.2
18116+
"@nomicfoundation/ethereumjs-util": 9.0.2
18117+
"@nomicfoundation/ethereumjs-vm": 7.0.2
1811718118
"@nomicfoundation/solidity-analyzer": ^0.1.0
1811818119
"@sentry/node": ^5.18.1
1811918120
"@types/bn.js": ^5.1.0
1812018121
"@types/lru-cache": ^5.1.0
18121-
abort-controller: ^3.0.0
1812218122
adm-zip: ^0.4.16
1812318123
aggregate-error: ^3.0.0
1812418124
ansi-escapes: ^4.3.0
@@ -18141,7 +18141,6 @@ __metadata:
1814118141
mnemonist: ^0.38.0
1814218142
mocha: ^10.0.0
1814318143
p-map: ^4.0.0
18144-
qs: ^6.7.0
1814518144
raw-body: ^2.4.1
1814618145
resolve: 1.17.0
1814718146
semver: ^6.3.0
@@ -18162,7 +18161,7 @@ __metadata:
1816218161
optional: true
1816318162
bin:
1816418163
hardhat: internal/cli/bootstrap.js
18165-
checksum: 46767f0eb75f08e1f47585d3aec3261932251b47909051bfffcbff317f7efe06fdab7cb8686cb67c46cc7ed4cedb80d0c21157fe03f103054001b2762085ef92
18164+
checksum: b234ec9c4030ee91c0c91b78acbebf7fd6354ea46c7a5d1ced245b2e0e6045996d130944e6d2d5b2139fb53895a15c5eb054ab76571f9835e2021d9f70beccbe
1816618165
languageName: node
1816718166
linkType: hard
1816818167

@@ -22389,6 +22388,15 @@ __metadata:
2238922388
languageName: node
2239022389
linkType: hard
2239122390

22391+
"matchstick-as@npm:0.6.0-beta.2":
22392+
version: 0.6.0-beta.2
22393+
resolution: "matchstick-as@npm:0.6.0-beta.2"
22394+
dependencies:
22395+
wabt: 1.0.24
22396+
checksum: d3a72d9c35efd0388eabe24ed4726cf3d522769ba7beca3696baa8e0eaebd05b28d27a07ee8687eec543862a12b796982ec8d44d7cb5a15484d99bb94413f4cd
22397+
languageName: node
22398+
linkType: hard
22399+
2239222400
"mcl-wasm@npm:^0.7.1":
2239322401
version: 0.7.9
2239422402
resolution: "mcl-wasm@npm:0.7.9"
@@ -26162,7 +26170,7 @@ __metadata:
2616226170
languageName: node
2616326171
linkType: hard
2616426172

26165-
"qs@npm:^6.10.3, qs@npm:^6.4.0, qs@npm:^6.7.0, qs@npm:^6.9.4":
26173+
"qs@npm:^6.10.3, qs@npm:^6.4.0, qs@npm:^6.9.4":
2616626174
version: 6.11.2
2616726175
resolution: "qs@npm:6.11.2"
2616826176
dependencies:
@@ -31126,6 +31134,23 @@ __metadata:
3112631134
languageName: node
3112731135
linkType: hard
3112831136

31137+
"wabt@npm:1.0.24":
31138+
version: 1.0.24
31139+
resolution: "wabt@npm:1.0.24"
31140+
bin:
31141+
wasm-decompile: bin/wasm-decompile
31142+
wasm-interp: bin/wasm-interp
31143+
wasm-objdump: bin/wasm-objdump
31144+
wasm-opcodecnt: bin/wasm-opcodecnt
31145+
wasm-strip: bin/wasm-strip
31146+
wasm-validate: bin/wasm-validate
31147+
wasm2c: bin/wasm2c
31148+
wasm2wat: bin/wasm2wat
31149+
wat2wasm: bin/wat2wasm
31150+
checksum: 7d404acaa0605b5cde99585839b97db37998754512d89e1c63147bc62f4bfd46484595cc8f2e8d6f9741f67206ed936336a0828a3e1e6f3d348567cda6176333
31151+
languageName: node
31152+
linkType: hard
31153+
3112931154
"wagmi@npm:^1.4.3":
3113031155
version: 1.4.3
3113131156
resolution: "wagmi@npm:1.4.3"

0 commit comments

Comments
 (0)