Skip to content

Commit 6605c8d

Browse files
committed
debugging
1 parent 34d3de1 commit 6605c8d

File tree

3 files changed

+180
-10
lines changed

3 files changed

+180
-10
lines changed

libs/remix-ui/run-tab/src/lib/actions/account.ts

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ import { clearInstances, setAccount, setExecEnv } from "./actions"
44
import { displayNotification, fetchAccountsListFailed, fetchAccountsListRequest, fetchAccountsListSuccess, setMatchPassphrase, setPassphrase } from "./payload"
55
import { toChecksumAddress } from '@ethereumjs/util'
66

7+
import "viem/window"
8+
import { createPublicClient, http, custom, Account, PublicClient, Address } from "viem"
9+
import { sepolia } from "viem/chains"
10+
import { entryPoint07Address } from "viem/account-abstraction"
11+
import "permissionless"
12+
import { toSafeSmartAccount } from "permissionless/accounts"
13+
714
export const updateAccountBalances = async (plugin: RunTab, dispatch: React.Dispatch<any>) => {
815
const accounts = plugin.REACT_API.accounts.loadedAccounts
916

@@ -88,6 +95,38 @@ export const createNewBlockchainAccount = async (plugin: RunTab, dispatch: React
8895

8996
export const createSmartAccount = async (plugin: RunTab, dispatch: React.Dispatch<any>) => {
9097
console.log('createSmartAccount action')
98+
99+
// @ts-ignore
100+
const accounts = await window.ethereum!.request({ method: 'eth_requestAccounts' })
101+
console.log('account---accounts->', accounts)
102+
const selectedAddress = plugin.REACT_API.accounts.selectedAccount
103+
console.log('account---selectedAddress->', selectedAddress)
104+
105+
const publicClient = createPublicClient({
106+
chain: sepolia,
107+
transport: custom(window.ethereum),
108+
})
109+
110+
console.log('publicClient->', publicClient)
111+
112+
113+
// const owner = privateKeyToAccount(SIGNER_PRIVATE_KEY)
114+
115+
116+
117+
const safeAccount = await toSafeSmartAccount({
118+
client: publicClient,
119+
entryPoint: {
120+
address: entryPoint07Address,
121+
version: "0.7",
122+
},
123+
owners: [selectedAddress],
124+
// saltNonce: 0n, // optional
125+
version: "1.4.1"
126+
})
127+
128+
console.log('safeAccount----->', safeAccount)
129+
console.log('safeAccount----->', safeAccount.address)
91130
}
92131

93132
export const signMessageWithAddress = (plugin: RunTab, dispatch: React.Dispatch<any>, account: string, message: string, modalContent: (hash: string, data: string) => JSX.Element, passphrase?: string) => {

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@
175175
"npm-install-version": "^6.0.2",
176176
"octokit": "^3.1.2",
177177
"path-browserify": "^1.0.1",
178+
"permissionless": "0.2.25",
178179
"prettier": "^2.8.4",
179180
"prettier-plugin-solidity": "^1.0.0-beta.24",
180181
"ra-data-graphql": "^4.16.11",
@@ -215,6 +216,7 @@
215216
"tree-kill": "^1.2.2",
216217
"ts-loader": "^9.2.6",
217218
"tslib": "^2.3.0",
219+
"viem": "2.22.3",
218220
"web3": "^4.1.0",
219221
"winston": "^3.3.3",
220222
"ws": "^8.17.1",

yarn.lock

Lines changed: 139 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
88
integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
99

10+
"@adraffy/ens-normalize@^1.10.1":
11+
version "1.11.0"
12+
resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz#42cc67c5baa407ac25059fcd7d405cc5ecdb0c33"
13+
integrity sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==
14+
1015
"@adraffy/ens-normalize@^1.8.8":
1116
version "1.9.4"
1217
resolved "https://registry.yarnpkg.com/@adraffy/ens-normalize/-/ens-normalize-1.9.4.tgz#aae21cb858bbb0411949d5b7b3051f4209043f62"
@@ -5351,6 +5356,20 @@
53515356
dependencies:
53525357
"@noble/hashes" "1.4.0"
53535358

5359+
"@noble/curves@1.7.0", "@noble/curves@~1.7.0":
5360+
version "1.7.0"
5361+
resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.7.0.tgz#0512360622439256df892f21d25b388f52505e45"
5362+
integrity sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==
5363+
dependencies:
5364+
"@noble/hashes" "1.6.0"
5365+
5366+
"@noble/curves@^1.4.0", "@noble/curves@^1.6.0", "@noble/curves@~1.8.0":
5367+
version "1.8.0"
5368+
resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.8.0.tgz#fe035a23959e6aeadf695851b51a87465b5ba8f7"
5369+
integrity sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==
5370+
dependencies:
5371+
"@noble/hashes" "1.7.0"
5372+
53545373
"@noble/curves@^1.4.2":
53555374
version "1.5.0"
53565375
resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.5.0.tgz#7a9b9b507065d516e6dce275a1e31db8d2a100dd"
@@ -5373,6 +5392,21 @@
53735392
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426"
53745393
integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==
53755394

5395+
"@noble/hashes@1.6.0":
5396+
version "1.6.0"
5397+
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.0.tgz#d4bfb516ad6e7b5111c216a5cc7075f4cf19e6c5"
5398+
integrity sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==
5399+
5400+
"@noble/hashes@1.6.1", "@noble/hashes@~1.6.0":
5401+
version "1.6.1"
5402+
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.6.1.tgz#df6e5943edcea504bac61395926d6fd67869a0d5"
5403+
integrity sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==
5404+
5405+
"@noble/hashes@1.7.0", "@noble/hashes@^1.4.0", "@noble/hashes@^1.5.0", "@noble/hashes@~1.7.0":
5406+
version "1.7.0"
5407+
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.7.0.tgz#5d9e33af2c7d04fee35de1519b80c958b2e35e39"
5408+
integrity sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==
5409+
53765410
"@noble/hashes@^1.3.1":
53775411
version "1.3.3"
53785412
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.3.3.tgz#39908da56a4adc270147bb07968bf3b16cfe1699"
@@ -6741,6 +6775,11 @@
67416775
resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.1.6.tgz#8ce5d304b436e4c84f896e0550c83e4d88cb917d"
67426776
integrity sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==
67436777

6778+
"@scure/base@~1.2.1":
6779+
version "1.2.1"
6780+
resolved "https://registry.yarnpkg.com/@scure/base/-/base-1.2.1.tgz#dd0b2a533063ca612c17aa9ad26424a2ff5aa865"
6781+
integrity sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==
6782+
67446783
"@scure/bip32@1.1.5":
67456784
version "1.1.5"
67466785
resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.1.5.tgz#d2ccae16dcc2e75bc1d75f5ef3c66a338d1ba300"
@@ -6768,6 +6807,24 @@
67686807
"@noble/hashes" "~1.4.0"
67696808
"@scure/base" "~1.1.6"
67706809

6810+
"@scure/bip32@1.6.0":
6811+
version "1.6.0"
6812+
resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.6.0.tgz#6dbc6b4af7c9101b351f41231a879d8da47e0891"
6813+
integrity sha512-82q1QfklrUUdXJzjuRU7iG7D7XiFx5PHYVS0+oeNKhyDLT7WPqs6pBcM2W5ZdwOwKCwoE1Vy1se+DHjcXwCYnA==
6814+
dependencies:
6815+
"@noble/curves" "~1.7.0"
6816+
"@noble/hashes" "~1.6.0"
6817+
"@scure/base" "~1.2.1"
6818+
6819+
"@scure/bip32@^1.5.0":
6820+
version "1.6.1"
6821+
resolved "https://registry.yarnpkg.com/@scure/bip32/-/bip32-1.6.1.tgz#848eca1bc96f6b5ce6aa750798853fb142dace05"
6822+
integrity sha512-jSO+5Ud1E588Y+LFo8TaB8JVPNAZw/lGGao+1SepHDeTs2dFLurdNIAgUuDlwezqEjRjElkCJajVrtrZaBxvaQ==
6823+
dependencies:
6824+
"@noble/curves" "~1.8.0"
6825+
"@noble/hashes" "~1.7.0"
6826+
"@scure/base" "~1.2.1"
6827+
67716828
"@scure/bip39@1.1.1":
67726829
version "1.1.1"
67736830
resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.1.1.tgz#b54557b2e86214319405db819c4b6a370cf340c5"
@@ -6792,6 +6849,22 @@
67926849
"@noble/hashes" "~1.4.0"
67936850
"@scure/base" "~1.1.6"
67946851

6852+
"@scure/bip39@1.5.0":
6853+
version "1.5.0"
6854+
resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.5.0.tgz#c8f9533dbd787641b047984356531d84485f19be"
6855+
integrity sha512-Dop+ASYhnrwm9+HA/HwXg7j2ZqM6yk2fyLWb5znexjctFY3+E+eU8cIWI0Pql0Qx4hPZCijlGq4OL71g+Uz30A==
6856+
dependencies:
6857+
"@noble/hashes" "~1.6.0"
6858+
"@scure/base" "~1.2.1"
6859+
6860+
"@scure/bip39@^1.4.0":
6861+
version "1.5.1"
6862+
resolved "https://registry.yarnpkg.com/@scure/bip39/-/bip39-1.5.1.tgz#a056868d672c7203a6035c808893742a79e151f6"
6863+
integrity sha512-GnlufVSP9UdAo/H2Patfv22VTtpNTyfi+I3qCKpvuB5l1KWzEYx+l2TNpBy9Ksh4xTs3Rn06tBlpWCi/1Vz8gw==
6864+
dependencies:
6865+
"@noble/hashes" "~1.7.0"
6866+
"@scure/base" "~1.2.1"
6867+
67956868
"@sentry/core@5.30.0":
67966869
version "5.30.0"
67976870
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3"
@@ -8796,6 +8869,16 @@ abitype@0.7.1:
87968869
resolved "https://registry.yarnpkg.com/abitype/-/abitype-0.7.1.tgz#16db20abe67de80f6183cf75f3de1ff86453b745"
87978870
integrity sha512-VBkRHTDZf9Myaek/dO3yMmOzB/y2s3Zo6nVU7yaw1G+TvCHAjwaJzNGN9yo4K5D8bU/VZXKP1EJpRhFr862PlQ==
87988871

8872+
abitype@1.0.7:
8873+
version "1.0.7"
8874+
resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.7.tgz#876a0005d211e1c9132825d45bcee7b46416b284"
8875+
integrity sha512-ZfYYSktDQUwc2eduYu8C4wOs+RDPmnRYMh7zNfzeMtGGgb0U+6tLGjixUic6mXf5xKKCcgT5Qp6cv39tOARVFw==
8876+
8877+
abitype@^1.0.6:
8878+
version "1.0.8"
8879+
resolved "https://registry.yarnpkg.com/abitype/-/abitype-1.0.8.tgz#3554f28b2e9d6e9f35eb59878193eabd1b9f46ba"
8880+
integrity sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==
8881+
87998882
abort-controller@^3.0.0:
88008883
version "3.0.0"
88018884
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
@@ -15269,6 +15352,11 @@ event-target-shim@^5.0.0:
1526915352
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
1527015353
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
1527115354

15355+
eventemitter3@5.0.1, eventemitter3@^5.0.1:
15356+
version "5.0.1"
15357+
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
15358+
integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
15359+
1527215360
eventemitter3@^3.1.0:
1527315361
version "3.1.2"
1527415362
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
@@ -15279,11 +15367,6 @@ eventemitter3@^4.0.0, eventemitter3@^4.0.4:
1527915367
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
1528015368
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
1528115369

15282-
eventemitter3@^5.0.1:
15283-
version "5.0.1"
15284-
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
15285-
integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
15286-
1528715370
events@3.2.0:
1528815371
version "3.2.0"
1528915372
resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379"
@@ -19373,6 +19456,11 @@ isomorphic-ws@^5.0.0:
1937319456
resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf"
1937419457
integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==
1937519458

19459+
isows@1.0.6:
19460+
version "1.0.6"
19461+
resolved "https://registry.yarnpkg.com/isows/-/isows-1.0.6.tgz#0da29d706fa51551c663c627ace42769850f86e7"
19462+
integrity sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==
19463+
1937619464
isstream@~0.1.2:
1937719465
version "0.1.2"
1937819466
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
@@ -24329,6 +24417,19 @@ outpipe@^1.1.0:
2432924417
dependencies:
2433024418
shell-quote "^1.4.2"
2433124419

24420+
ox@0.6.0:
24421+
version "0.6.0"
24422+
resolved "https://registry.yarnpkg.com/ox/-/ox-0.6.0.tgz#ba8f89d68b5e8afe717c8a947ffacc0669ea155d"
24423+
integrity sha512-blUzTLidvUlshv0O02CnLFqBLidNzPoAZdIth894avUAotTuWziznv6IENv5idRuOSSP3dH8WzcYw84zVdu0Aw==
24424+
dependencies:
24425+
"@adraffy/ens-normalize" "^1.10.1"
24426+
"@noble/curves" "^1.6.0"
24427+
"@noble/hashes" "^1.5.0"
24428+
"@scure/bip32" "^1.5.0"
24429+
"@scure/bip39" "^1.4.0"
24430+
abitype "^1.0.6"
24431+
eventemitter3 "5.0.1"
24432+
2433224433
p-cancelable@^1.0.0:
2433324434
version "1.1.0"
2433424435
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
@@ -24888,6 +24989,11 @@ performance-now@^2.1.0:
2488824989
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
2488924990
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
2489024991

24992+
permissionless@0.2.25:
24993+
version "0.2.25"
24994+
resolved "https://registry.yarnpkg.com/permissionless/-/permissionless-0.2.25.tgz#25bd169efe0f7fb5c405ee3b333ed243ad949571"
24995+
integrity sha512-O0YUNBpouF/S0EGfk3PLuGHN3vYGRK4nJZAyGC5uq72NbHoi0Ao0bWxdTeBw6/rNyrcE7CMKtU5KxrSnIV+mcw==
24996+
2489124997
picocolors@^1.0.0:
2489224998
version "1.0.0"
2489324999
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
@@ -31063,6 +31169,21 @@ vfile@^5.0.0:
3106331169
unist-util-stringify-position "^3.0.0"
3106431170
vfile-message "^3.0.0"
3106531171

31172+
viem@2.22.3:
31173+
version "2.22.3"
31174+
resolved "https://registry.yarnpkg.com/viem/-/viem-2.22.3.tgz#8212f8ee8e2cecc362f63fcfb7518a87989d38f9"
31175+
integrity sha512-lO8K4lL5vWfJ9dmeJo9BfwlJJ0vNDrgLXgwFJNzjLJ6eDfOGXr48yzNhqt96ybYS7SlM7ecT7yhJIVfhZLkOkw==
31176+
dependencies:
31177+
"@noble/curves" "1.7.0"
31178+
"@noble/hashes" "1.6.1"
31179+
"@scure/bip32" "1.6.0"
31180+
"@scure/bip39" "1.5.0"
31181+
abitype "1.0.7"
31182+
isows "1.0.6"
31183+
ox "0.6.0"
31184+
webauthn-p256 "0.0.10"
31185+
ws "8.18.0"
31186+
3106631187
vinyl-fs@^3.0.0:
3106731188
version "3.0.3"
3106831189
resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7"
@@ -31478,6 +31599,14 @@ web3@^4.1.0:
3147831599
web3-utils "^4.0.7"
3147931600
web3-validator "^2.0.3"
3148031601

31602+
webauthn-p256@0.0.10:
31603+
version "0.0.10"
31604+
resolved "https://registry.yarnpkg.com/webauthn-p256/-/webauthn-p256-0.0.10.tgz#877e75abe8348d3e14485932968edf3325fd2fdd"
31605+
integrity sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==
31606+
dependencies:
31607+
"@noble/curves" "^1.4.0"
31608+
"@noble/hashes" "^1.4.0"
31609+
3148131610
webcrypto-core@^1.7.8:
3148231611
version "1.7.8"
3148331612
resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.7.8.tgz#056918036e846c72cfebbb04052e283f57f1114a"
@@ -31977,16 +32106,16 @@ ws@8.13.0:
3197732106
resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
3197832107
integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
3197932108

32109+
ws@8.18.0, ws@>=8.7.0, ws@^8.12.0, ws@^8.13.0, ws@^8.15.0, ws@^8.17.1, ws@^8.4.2, ws@^8.7.0, ws@^8.8.1:
32110+
version "8.18.0"
32111+
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
32112+
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
32113+
3198032114
ws@8.5.0:
3198132115
version "8.5.0"
3198232116
resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f"
3198332117
integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==
3198432118

31985-
ws@>=8.7.0, ws@^8.12.0, ws@^8.13.0, ws@^8.15.0, ws@^8.17.1, ws@^8.4.2, ws@^8.7.0, ws@^8.8.1:
31986-
version "8.18.0"
31987-
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
31988-
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
31989-
3199032119
ws@^1.1.1:
3199132120
version "1.1.5"
3199232121
resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"

0 commit comments

Comments
 (0)