diff --git a/apps/taquito-test-dapp/package.json b/apps/taquito-test-dapp/package.json index 6d706e34b3..3fc4c2ea32 100644 --- a/apps/taquito-test-dapp/package.json +++ b/apps/taquito-test-dapp/package.json @@ -1,7 +1,7 @@ { "name": "taquito-test-dapp-vite", "private": true, - "version": "20.1.0", + "version": "20.1.1", "type": "module", "scripts": { "dev": "vite", @@ -24,13 +24,13 @@ "vite": "^5.3.5" }, "dependencies": { - "@airgap/beacon-sdk": "^4.2.2", - "@airgap/beacon-types": "^4.2.2", - "@taquito/beacon-wallet": "^20.1.0", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", - "@taquito/wallet-connect": "^20.1.0", + "@airgap/beacon-sdk": "^4.3.1", + "@airgap/beacon-types": "^4.3.1", + "@taquito/beacon-wallet": "^20.1.1", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", + "@taquito/wallet-connect": "^20.1.1", "buffer": "^6.0.3", "svelte-modals": "^2.0.0-beta.2", "svelte-select": "^5.8.3", diff --git a/docs/version.md b/docs/version.md index 1ce983a911..cbab28893a 100644 --- a/docs/version.md +++ b/docs/version.md @@ -3,6 +3,37 @@ title: Versions author: Jev Bjorsell --- +# Taquito v20.1.1 +## Summary + +### Beacon version Update +Updated Beacon version to v4.3.1 #3087 + +### ECAD Infra Tezos RPC addresses update +Updated network addresses for mainnet, ghostnet, parisnet, and quebecnet from Old format: https://${network_name}.ecadinfra.com to New format: https://${network_name}.tezos.ecadinfra.com #3090 + +- Mappings +Below are the mappings for the updated RPC addresses for all current networks: + +Old Address | New Address +-- | -- +https://mainnet.ecadinfra.com | https://mainnet.tezos.ecadinfra.com +https://ghostnet.ecadinfra.com | https://ghostnet.tezos.ecadinfra.com +https://parisnet.ecadinfra.com | https://parisnet.tezos.ecadinfra.com +https://quebecnet.ecadinfra.com | https://quebecnet.tezos.ecadinfra.com + +- Action Required +Update all scripts, configurations, and codebases using the old RPC addresses to point to the new format. +Validate that your systems and services using these RPC endpoints continue to function as expected after the update. + +- Deprecation Notice +The old addresses are considered deprecated, but will remain active until further notice. Users are strongly encouraged to transition to the new format as soon as possible to avoid potential disruptions in the future. + +- Reference +For more information, visit [ECAD Infra's website](https://www.ecadinfra.com/). +-------- +Please ensure your systems are updated promptly to avoid any disruptions. If you have any questions or encounter issues, feel free to contact the ECAD Infra team or open a new issue in this repository. + # Taquito v20.1.0 **Breaking changes:** diff --git a/example/package.json b/example/package.json index a7ea6afa17..e40ab78994 100644 --- a/example/package.json +++ b/example/package.json @@ -1,7 +1,7 @@ { "name": "@taquito/example", "private": true, - "version": "20.1.0", + "version": "20.1.1", "scripts": { "example": "node -r ts-node/register --preserve-symlinks example-node.ts", "example:activation": "node -r ts-node/register --preserve-symlinks example-activate.ts", @@ -42,16 +42,16 @@ }, "dependencies": { "@ledgerhq/hw-transport-node-hid": "^6.29.5", - "@taquito/ledger-signer": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/sapling": "^20.1.0", - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip16": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/ledger-signer": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/sapling": "^20.1.1", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip16": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { diff --git a/integration-tests/__tests__/contract/estimation-tests.spec.ts b/integration-tests/__tests__/contract/estimation-tests.spec.ts index 05b06fcce7..60284943d7 100644 --- a/integration-tests/__tests__/contract/estimation-tests.spec.ts +++ b/integration-tests/__tests__/contract/estimation-tests.spec.ts @@ -41,11 +41,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer({ to: await Tezos.signer.publicKeyHash(), amount: 0.019 }); expect(estimate.gasLimit).toEqual(101); expect(estimate.storageLimit).toEqual(0); - expect(estimate.suggestedFeeMutez).toEqual(188); + expect(estimate.suggestedFeeMutez).toEqual(190); expect(estimate.burnFeeMutez).toEqual(0); - expect(estimate.minimalFeeMutez).toEqual(168); - expect(estimate.totalCost).toEqual(168); - expect(estimate.usingBaseFeeMutez).toEqual(168); + expect(estimate.minimalFeeMutez).toEqual(170); + expect(estimate.totalCost).toEqual(170); + expect(estimate.usingBaseFeeMutez).toEqual(170); expect(estimate.consumedMilligas).toEqual(100040); }); @@ -53,11 +53,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer({ to: await (await createAddress()).signer.publicKeyHash(), amount: 0.017 }); expect(estimate.gasLimit).toEqual(101); expect(estimate.storageLimit).toEqual(277); - expect(estimate.suggestedFeeMutez).toEqual(188); + expect(estimate.suggestedFeeMutez).toEqual(190); expect(estimate.burnFeeMutez).toEqual(69250); - expect(estimate.minimalFeeMutez).toEqual(168); - expect(estimate.totalCost).toEqual(69418); - expect(estimate.usingBaseFeeMutez).toEqual(168); + expect(estimate.minimalFeeMutez).toEqual(170); + expect(estimate.totalCost).toEqual(69420); + expect(estimate.usingBaseFeeMutez).toEqual(170); expect(estimate.consumedMilligas).toEqual(100040); }); @@ -69,11 +69,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { }); expect(estimate.gasLimit).toEqual(677); expect(estimate.storageLimit).toEqual(591); - expect(estimate.suggestedFeeMutez).toEqual(537); + expect(estimate.suggestedFeeMutez).toEqual(539); expect(estimate.burnFeeMutez).toEqual(147750); - expect(estimate.minimalFeeMutez).toEqual(517); - expect(estimate.totalCost).toEqual(148267); - expect(estimate.usingBaseFeeMutez).toEqual(517); + expect(estimate.minimalFeeMutez).toEqual(519); + expect(estimate.totalCost).toEqual(148269); + expect(estimate.usingBaseFeeMutez).toEqual(519); expect(estimate.consumedMilligas).toEqual(676402); }); @@ -84,11 +84,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { }); expect(estimate.gasLimit).toEqual(100); expect(estimate.storageLimit).toEqual(0); - expect(estimate.suggestedFeeMutez).toEqual(183); + expect(estimate.suggestedFeeMutez).toEqual(185); expect(estimate.burnFeeMutez).toEqual(0); - expect(estimate.minimalFeeMutez).toEqual(163); - expect(estimate.totalCost).toEqual(163); - expect(estimate.usingBaseFeeMutez).toEqual(163); + expect(estimate.minimalFeeMutez).toEqual(165); + expect(estimate.totalCost).toEqual(165); + expect(estimate.usingBaseFeeMutez).toEqual(165); expect(estimate.consumedMilligas).toEqual(100000); }); @@ -97,11 +97,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer(tx); expect(estimate.gasLimit).toEqual(1457); expect(estimate.storageLimit).toEqual(0); - expect(estimate.suggestedFeeMutez).toEqual(396); + expect(estimate.suggestedFeeMutez).toEqual(398); expect(estimate.burnFeeMutez).toEqual(0); - expect(estimate.minimalFeeMutez).toEqual(376); - expect(estimate.totalCost).toEqual(376); - expect(estimate.usingBaseFeeMutez).toEqual(376); + expect(estimate.minimalFeeMutez).toEqual(378); + expect(estimate.totalCost).toEqual(378); + expect(estimate.usingBaseFeeMutez).toEqual(378); expect(estimate.consumedMilligas).toEqual(1456228); }); @@ -114,11 +114,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer(tx); expect(estimate.gasLimit).toEqual(1571); expect(estimate.storageLimit).toEqual(534); - expect(estimate.suggestedFeeMutez).toEqual(467); + expect(estimate.suggestedFeeMutez).toEqual(469); expect(estimate.burnFeeMutez).toEqual(133500); - expect(estimate.minimalFeeMutez).toEqual(447); - expect(estimate.totalCost).toEqual(133947); - expect(estimate.usingBaseFeeMutez).toEqual(447); + expect(estimate.minimalFeeMutez).toEqual(449); + expect(estimate.totalCost).toEqual(133949); + expect(estimate.usingBaseFeeMutez).toEqual(449); expect(estimate.consumedMilligas).toEqual(1570757); }); @@ -127,11 +127,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer(tx); expect(estimate.gasLimit).toEqual(1867); expect(estimate.storageLimit).toEqual(337); - expect(estimate.suggestedFeeMutez).toEqual(443); + expect(estimate.suggestedFeeMutez).toEqual(445); expect(estimate.burnFeeMutez).toEqual(84250); - expect(estimate.minimalFeeMutez).toEqual(423); - expect(estimate.totalCost).toEqual(84673); - expect(estimate.usingBaseFeeMutez).toEqual(423); + expect(estimate.minimalFeeMutez).toEqual(425); + expect(estimate.totalCost).toEqual(84675); + expect(estimate.usingBaseFeeMutez).toEqual(425); expect(estimate.consumedMilligas).toEqual(1866852); }); @@ -140,11 +140,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { const estimate = await LowAmountTez.estimate.transfer(tx); expect(estimate.gasLimit).toEqual(2393); expect(estimate.storageLimit).toEqual(654); - expect(estimate.suggestedFeeMutez).toEqual(561); + expect(estimate.suggestedFeeMutez).toEqual(563); expect(estimate.burnFeeMutez).toEqual(163500); - expect(estimate.minimalFeeMutez).toEqual(541); - expect(estimate.totalCost).toEqual(164041); - expect(estimate.usingBaseFeeMutez).toEqual(541); + expect(estimate.minimalFeeMutez).toEqual(543); + expect(estimate.totalCost).toEqual(164043); + expect(estimate.usingBaseFeeMutez).toEqual(543); expect(estimate.consumedMilligas).toEqual(2392005); // Do the actual operation const op2 = await contract.methods.do(originate2()).send(); @@ -176,11 +176,11 @@ CONFIGS().forEach(({ lib, setup, knownBaker, createAddress, rpc }) => { let estimate = await LowAmountTez.estimate.transfer({ to: await Tezos.signer.publicKeyHash(), mutez: true, amount: amt - (1382 + getRevealFee(await LowAmountTez.signer.publicKeyHash())) }); expect(estimate.gasLimit).toEqual(101); expect(estimate.storageLimit).toEqual(0); - expect(estimate.suggestedFeeMutez).toEqual(187); + expect(estimate.suggestedFeeMutez).toEqual(189); expect(estimate.burnFeeMutez).toEqual(0); - expect(estimate.minimalFeeMutez).toEqual(167); - expect(estimate.totalCost).toEqual(167); - expect(estimate.usingBaseFeeMutez).toEqual(167); + expect(estimate.minimalFeeMutez).toEqual(169); + expect(estimate.totalCost).toEqual(169); + expect(estimate.usingBaseFeeMutez).toEqual(169); expect(estimate.consumedMilligas).toEqual(100040); }); diff --git a/integration-tests/config.ts b/integration-tests/config.ts index 290e13880b..4d447806f6 100644 --- a/integration-tests/config.ts +++ b/integration-tests/config.ts @@ -153,7 +153,7 @@ const nairobinetSecretKey: Config = const ghostnetEphemeral: Config = defaultConfig({ networkName: 'GHOSTNET', - protocol: Protocols.PtParisBx, + protocol: Protocols.PsParisCZ, defaultRpc: 'http://ecad-tezos-ghostnet-rolling-1.i.ecadinfra.com/', knownContracts: knownContractsPtGhostnet, signerConfig: defaultEphemeralConfig('https://keygen.ecadinfra.com/ghostnet') @@ -166,7 +166,7 @@ const weeklynetEphemeral: Config = defaultConfig({ networkName: 'WEEKLYNET', protocol: Protocols.ProtoALpha, - defaultRpc: 'https://rpc.weeklynet-2024-09-04.teztnets.com', + defaultRpc: 'https://rpc.weeklynet-2024-11-27.teztnets.com', knownContracts: knownContractsProtoALph, signerConfig: defaultEphemeralConfig('http://key-gen-1.i.tez.ie:3010/mondaynet') }); diff --git a/integration-tests/package.json b/integration-tests/package.json index 54beb40b45..c74519455c 100644 --- a/integration-tests/package.json +++ b/integration-tests/package.json @@ -13,26 +13,26 @@ "originate-known-contracts": "node -r ts-node/register originate-known-contracts.ts", "originate-known-contracts-and-run-test": "node -r ts-node/register originate-known-contracts.ts && jest" }, - "version": "20.1.0", + "version": "20.1.1", "dependencies": { "@ledgerhq/devices": "8.4.4", "@ledgerhq/hw-transport": "6.31.4", "@ledgerhq/hw-transport-node-hid": "6.29.5", "@ledgerhq/hw-transport-node-hid-noevents": "6.30.5", - "@taquito/contracts-library": "^20.1.0", - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/remote-signer": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/sapling": "^20.1.0", - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip12": "^20.1.0", - "@taquito/tzip16": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/contracts-library": "^20.1.1", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/remote-signer": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/sapling": "^20.1.1", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip12": "^20.1.1", + "@taquito/tzip16": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1" diff --git a/lerna.json b/lerna.json index 9c11232668..f945f1067e 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { "useNx": true, - "version": "20.1.0" + "version": "20.1.1" } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index c1936b4ffd..357b53b751 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,15 +56,15 @@ }, "apps/taquito-test-dapp": { "name": "taquito-test-dapp-vite", - "version": "20.1.0", - "dependencies": { - "@airgap/beacon-sdk": "^4.2.2", - "@airgap/beacon-types": "^4.2.2", - "@taquito/beacon-wallet": "^20.1.0", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", - "@taquito/wallet-connect": "^20.1.0", + "version": "20.1.1", + "dependencies": { + "@airgap/beacon-sdk": "^4.3.1", + "@airgap/beacon-types": "^4.3.1", + "@taquito/beacon-wallet": "^20.1.1", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", + "@taquito/wallet-connect": "^20.1.1", "buffer": "^6.0.3", "svelte-modals": "^2.0.0-beta.2", "svelte-select": "^5.8.3", @@ -111,19 +111,19 @@ }, "example": { "name": "@taquito/example", - "version": "20.1.0", + "version": "20.1.1", "dependencies": { "@ledgerhq/hw-transport-node-hid": "^6.29.5", - "@taquito/ledger-signer": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/sapling": "^20.1.0", - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip16": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/ledger-signer": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/sapling": "^20.1.1", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip16": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -132,26 +132,26 @@ } }, "integration-tests": { - "version": "20.1.0", + "version": "20.1.1", "dependencies": { "@ledgerhq/devices": "8.4.4", "@ledgerhq/hw-transport": "6.31.4", "@ledgerhq/hw-transport-node-hid": "6.29.5", "@ledgerhq/hw-transport-node-hid-noevents": "6.30.5", - "@taquito/contracts-library": "^20.1.0", - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/remote-signer": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/sapling": "^20.1.0", - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip12": "^20.1.0", - "@taquito/tzip16": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/contracts-library": "^20.1.1", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/remote-signer": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/sapling": "^20.1.1", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip12": "^20.1.1", + "@taquito/tzip16": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1" @@ -173,37 +173,38 @@ } }, "node_modules/@airgap/beacon-blockchain-substrate": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-substrate/-/beacon-blockchain-substrate-4.2.2.tgz", - "integrity": "sha512-7G5HvZBM03zDwWh0OfXxKkE4WVrtacIEq7Ks1W33Yrtk7M2fliJu8FplYwn4EyasBXtt5WQfd2/3OkJOjbNmXw==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-substrate/-/beacon-blockchain-substrate-4.3.1.tgz", + "integrity": "sha512-kUnIo4qlGJDvheupN5S4ax1MrjsT6Idw4L/6KhpRTLIHd9yXz6JEJRLgrxIp4pFtmGsxIxol8kPnNTSMu15DhA==", "license": "ISC", "dependencies": { - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-ui": "4.2.2" + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-ui": "4.3.1" } }, "node_modules/@airgap/beacon-blockchain-tezos": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-tezos/-/beacon-blockchain-tezos-4.2.2.tgz", - "integrity": "sha512-VeS9nNwgwic9uIO4dF2KCQr673qos/vhf528H2dy5NwITFSSRwT/lPT5YCDvmCQ5roYQF7+qY1tTE0VBKONEhg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-blockchain-tezos/-/beacon-blockchain-tezos-4.3.1.tgz", + "integrity": "sha512-aLTtwQeC0OQ64uCx66PF04oYKMeqXFh1EXD3KIk7Mv7fKlizDg7+MObcxdixAg1vObA2JDreurJTU9Uui7XVCw==", "license": "ISC", "dependencies": { - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-ui": "4.2.2" + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-ui": "4.3.1" } }, "node_modules/@airgap/beacon-core": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-core/-/beacon-core-4.2.2.tgz", - "integrity": "sha512-pvp6T57fL734Yi81ZOvAo6oQmw7PPsj5BLC/brg17ic2uGCF0aFgYrExTDxVz5SoM93v5NJCPvg1TRkitTcvtA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-core/-/beacon-core-4.3.1.tgz", + "integrity": "sha512-Zo4dG6R7ZBapGTvuBSBM9jPIJYW3DJjEcbshJLnLBgCU3zjcitnW6auKaqpWjWIXqwP2ThzYwpjftWKpavCf9g==", "license": "ISC", "dependencies": { - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-utils": "4.2.2", + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-utils": "4.3.1", "@stablelib/ed25519": "^1.0.3", "@stablelib/nacl": "^1.0.4", "@stablelib/utf8": "^1.0.1", "@stablelib/x25519-session": "^1.0.4", + "broadcast-channel": "^7.0.0", "bs58check": "2.1.2" } }, @@ -237,98 +238,163 @@ } }, "node_modules/@airgap/beacon-dapp": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-dapp/-/beacon-dapp-4.2.2.tgz", - "integrity": "sha512-kXH9gwjkbZKlt1irg/QGOWJeUwvR+ffa/3m39F8Mv5uIdS/PnOU4QMso6F4VVbtk6RmAGFr1gG/Q6pIkkWPFxg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-dapp/-/beacon-dapp-4.3.1.tgz", + "integrity": "sha512-WTQB7ULv9ergD+6OSv9RDbZyWjSCForWUEhKNMbAYd1RZSz4bcoMaqw8/0v97b+bjLayZmqNqhrUEo0Y7z/jXw==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-transport-matrix": "4.2.2", - "@airgap/beacon-transport-postmessage": "4.2.2", - "@airgap/beacon-transport-walletconnect": "4.2.2", - "@airgap/beacon-ui": "4.2.2" + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-transport-matrix": "4.3.1", + "@airgap/beacon-transport-postmessage": "4.3.1", + "@airgap/beacon-transport-walletconnect": "4.3.1", + "@airgap/beacon-ui": "4.3.1", + "broadcast-channel": "^7.0.0" } }, "node_modules/@airgap/beacon-sdk": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-sdk/-/beacon-sdk-4.2.2.tgz", - "integrity": "sha512-F99zhXUp1EXDOqESqjPglBGzv0WSKVcmf62PYbW5B3HyhstbC3gdu8pcu/rEkMyyF3dLUFzX91cE/COBgh3qRA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-sdk/-/beacon-sdk-4.3.1.tgz", + "integrity": "sha512-zk6HkieYGHY+LrA+VPpoQhbTjAQuDzGU81L3mzyECFg0/HWamiY3Tr9BpwwGKIJo1IW8WV1HLfzhE9SckzA0aA==", "license": "ISC", "dependencies": { - "@airgap/beacon-blockchain-substrate": "4.2.2", - "@airgap/beacon-blockchain-tezos": "4.2.2", - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-dapp": "4.2.2", - "@airgap/beacon-transport-matrix": "4.2.2", - "@airgap/beacon-transport-postmessage": "4.2.2", - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-ui": "4.2.2", - "@airgap/beacon-utils": "4.2.2", - "@airgap/beacon-wallet": "4.2.2" + "@airgap/beacon-blockchain-substrate": "4.3.1", + "@airgap/beacon-blockchain-tezos": "4.3.1", + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-dapp": "4.3.1", + "@airgap/beacon-transport-matrix": "4.3.1", + "@airgap/beacon-transport-postmessage": "4.3.1", + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-ui": "4.3.1", + "@airgap/beacon-utils": "4.3.1", + "@airgap/beacon-wallet": "4.3.1" } }, "node_modules/@airgap/beacon-transport-matrix": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-matrix/-/beacon-transport-matrix-4.2.2.tgz", - "integrity": "sha512-lCwFo6laGQbowvQoGU5tlkgrdBx9S9Nyk/OjJUE5Db9DgvQZhRR77zA0jl7lPdYDYcKeklHahBz6vwkiN/ferA==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-matrix/-/beacon-transport-matrix-4.3.1.tgz", + "integrity": "sha512-Kmm2056712xSbGkIFWM2IEeifw++owHubOg163bCcvSPc6dwNgTodZdbeXmkpHcTg8ZisRhe0j46IRwvMcw4gg==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-utils": "4.2.2", - "axios": "^1.7.4" + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-utils": "4.3.1", + "axios": "^1.6.2" } }, "node_modules/@airgap/beacon-transport-postmessage": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-postmessage/-/beacon-transport-postmessage-4.2.2.tgz", - "integrity": "sha512-xLFeTEw6Yydq+4cr8IISxFprEQm3Us1QKNI/zNTAy1ssTxML1MZGAoLXWm/3adXKc8kzeR7dZH9blNEKhZWGcQ==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-postmessage/-/beacon-transport-postmessage-4.3.1.tgz", + "integrity": "sha512-Dy3LsIhNkqR7s85iOnt0iAqoB3k9NPyP4x4uHEhhyV8jEn0Z03N+Ra09Zk3RvysqS5oIoFWPjuaG8HvRjuXihg==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-utils": "4.2.2" + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-utils": "4.3.1" } }, "node_modules/@airgap/beacon-transport-walletconnect": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-walletconnect/-/beacon-transport-walletconnect-4.2.2.tgz", - "integrity": "sha512-ftwUDhQdjLPtyX1ESUp9VkFS5vyEvp377eL4lVFaEdqf4mCpxg/XxHffO/o7OeRD1NI0nZfCxsKOWU2plg+ghg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-transport-walletconnect/-/beacon-transport-walletconnect-4.3.1.tgz", + "integrity": "sha512-UACRVnM6O6qVDua5nBBcY94FfiLxU56cArHVeNVTA2cp9jOyeE2JPUJ4jcaPs4yslikFbsT21Vn3d5FJl5Y1YQ==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-utils": "4.2.2", - "@walletconnect/sign-client": "2.11.2" + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-utils": "4.3.1", + "@walletconnect/sign-client": "2.14.0" } }, "node_modules/@airgap/beacon-types": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-types/-/beacon-types-4.2.2.tgz", - "integrity": "sha512-4sX5QEZTanQ5E6FiY7lp6ilv6rlzu5eNrWa3KdygpHm0NFfkJCY7YRPWo4V5LkCCkILa9QF5TS9tVKMORNcocQ==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-types/-/beacon-types-4.3.1.tgz", + "integrity": "sha512-XYLZRQFRtfO33q/ZBSdssRIQHNXuRtoJhsnsmwwnbBssJKtiKEPfC0D+cf7BeBKoOObjigCIh9NixrPk+YyNeA==", "license": "ISC", "dependencies": { "@types/chrome": "0.0.246" } }, + "node_modules/@airgap/beacon-types/node_modules/@types/chrome": { + "version": "0.0.246", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.246.tgz", + "integrity": "sha512-MxGxEomGxsJiL9xe/7ZwVgwdn8XVKWbPvxpVQl3nWOjrS0Ce63JsfzxUc4aU3GvRcUPYsfufHmJ17BFyKxeA4g==", + "license": "MIT", + "dependencies": { + "@types/filesystem": "*", + "@types/har-format": "*" + } + }, "node_modules/@airgap/beacon-ui": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-ui/-/beacon-ui-4.2.2.tgz", - "integrity": "sha512-iuVH8ZgyejRo61vwZP4gTju+FfRxtEvA+Y9CanizlkJY3UcPa2ATx9Bmz8fGOeo5bkohxS1Ny36WEQ81z5cpIw==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-ui/-/beacon-ui-4.3.1.tgz", + "integrity": "sha512-OJYrQlQxU98ZckW4xhyX1+hEMLOEd80N302sauKGzpUv7P0oxBfMLHaTVhQlZ7A+cAJkwMSqBa+Ek19QRPvoiQ==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-transport-postmessage": "4.2.2", - "@airgap/beacon-types": "4.2.2", - "@airgap/beacon-utils": "4.2.2", - "@walletconnect/utils": "2.11.2", + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-transport-postmessage": "4.3.1", + "@airgap/beacon-types": "4.3.1", + "@airgap/beacon-utils": "4.3.1", + "@walletconnect/utils": "2.14.0", "qrcode-svg": "^1.1.0", "solid-js": "^1.7.11" } }, + "node_modules/@airgap/beacon-ui/node_modules/@walletconnect/relay-api": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.10.tgz", + "integrity": "sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==", + "license": "MIT", + "dependencies": { + "@walletconnect/jsonrpc-types": "^1.0.2" + } + }, + "node_modules/@airgap/beacon-ui/node_modules/@walletconnect/types": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.14.0.tgz", + "integrity": "sha512-vevMi4jZLJ55vLuFOicQFmBBbLyb+S0sZS4IsaBdZkQflfGIq34HkN13c/KPl4Ye0aoR4/cUcUSitmGIzEQM5g==", + "license": "Apache-2.0", + "dependencies": { + "@walletconnect/events": "1.0.1", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-types": "1.0.4", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/logger": "2.1.2", + "events": "3.3.0" + } + }, + "node_modules/@airgap/beacon-ui/node_modules/@walletconnect/utils": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.14.0.tgz", + "integrity": "sha512-vRVomYQEtEAyCK2c5bzzEvtgxaGGITF8mWuIL+WYSAMyEJLY97mirP2urDucNwcUczwxUgI+no9RiNFbUHreQQ==", + "license": "Apache-2.0", + "dependencies": { + "@stablelib/chacha20poly1305": "1.0.1", + "@stablelib/hkdf": "1.0.1", + "@stablelib/random": "1.0.2", + "@stablelib/sha256": "1.0.1", + "@stablelib/x25519": "1.0.3", + "@walletconnect/relay-api": "1.0.10", + "@walletconnect/safe-json": "1.0.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.14.0", + "@walletconnect/window-getters": "1.0.1", + "@walletconnect/window-metadata": "1.0.1", + "detect-browser": "5.3.0", + "query-string": "7.1.3", + "uint8arrays": "3.1.0" + } + }, + "node_modules/@airgap/beacon-ui/node_modules/uint8arrays": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz", + "integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" + } + }, "node_modules/@airgap/beacon-utils": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-utils/-/beacon-utils-4.2.2.tgz", - "integrity": "sha512-TwDJ8O8/Lky6qdpczVJKWACu3BWEE49hMyCylXYJPnLlCZtpaqByD6awc+BEooJkC2c8Bj4V3JfcwBJGNzMs6w==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-utils/-/beacon-utils-4.3.1.tgz", + "integrity": "sha512-6mghsASMxObCLcypsnTC38S+BkW8oZNxeuiSjPQSNE5c5LtNmDWS0Lm+UF69FjaskcbiUOxJWhOnmZZM3A9hcg==", "license": "ISC", "dependencies": { "@stablelib/ed25519": "^1.0.3", @@ -368,14 +434,14 @@ } }, "node_modules/@airgap/beacon-wallet": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@airgap/beacon-wallet/-/beacon-wallet-4.2.2.tgz", - "integrity": "sha512-UnyxUg++ip8Hqfa7lnnZH623MraPfGtMqGLt22aYvZHrRA9ypBcJRVhBqWDeD3WUdGrVdSjtCQ0I+mHn7jIGSg==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@airgap/beacon-wallet/-/beacon-wallet-4.3.1.tgz", + "integrity": "sha512-xsZdZLAsT4yKj2wz7lhMXhLChFhk1GglHi0bLaiJIi0ZycAbB76gOIwSAat7otMBLaswJj0b08JRinOCN4bf6Q==", "license": "ISC", "dependencies": { - "@airgap/beacon-core": "4.2.2", - "@airgap/beacon-transport-matrix": "4.2.2", - "@airgap/beacon-transport-postmessage": "4.2.2" + "@airgap/beacon-core": "4.3.1", + "@airgap/beacon-transport-matrix": "4.3.1", + "@airgap/beacon-transport-postmessage": "4.3.1" } }, "node_modules/@airgap/sapling-wasm": { @@ -401,7 +467,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "dev": true, "license": "MIT", "dependencies": { "@babel/highlight": "^7.24.7", @@ -757,7 +822,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" @@ -806,7 +870,6 @@ "version": "7.24.7", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "dev": true, "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.24.7", @@ -822,7 +885,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -835,7 +897,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -850,7 +911,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" @@ -860,7 +920,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -870,7 +929,6 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -2360,7 +2418,6 @@ "version": "7.25.0", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz", "integrity": "sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==", - "dev": true, "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" @@ -3612,27 +3669,6 @@ "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==", "license": "MIT" }, - "node_modules/@ethersproject/signing-key/node_modules/elliptic": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.0.tgz", - "integrity": "sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/@ethersproject/signing-key/node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "license": "MIT" - }, "node_modules/@ethersproject/strings": { "version": "5.7.0", "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", @@ -4937,7 +4973,7 @@ "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", @@ -7546,6 +7582,128 @@ "resolved": "packages/taquito-wallet-connect", "link": true }, + "node_modules/@testing-library/dom": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.0.tgz", + "integrity": "sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@testing-library/dom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT", + "peer": true + }, + "node_modules/@testing-library/dom/node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@testing-library/dom/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "license": "MIT", + "peer": true + }, + "node_modules/@testing-library/react": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.0.1.tgz", + "integrity": "sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0", + "@types/react-dom": "^18.0.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, "node_modules/@tsconfig/node10": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", @@ -7631,6 +7789,13 @@ "tslib": "^2.4.0" } }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "license": "MIT", + "peer": true + }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -7702,9 +7867,10 @@ } }, "node_modules/@types/chrome": { - "version": "0.0.246", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.246.tgz", - "integrity": "sha512-MxGxEomGxsJiL9xe/7ZwVgwdn8XVKWbPvxpVQl3nWOjrS0Ce63JsfzxUc4aU3GvRcUPYsfufHmJ17BFyKxeA4g==", + "version": "0.0.171", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.171.tgz", + "integrity": "sha512-CnCwFKI3COygib3DNJrCjePeoU2OCDGGbUcmftXtQ3loMABsLgwpG8z+LxV4kjQJFzmJDqOyhCSsbY9yyEfapQ==", + "dev": true, "license": "MIT", "dependencies": { "@types/filesystem": "*", @@ -8248,28 +8414,82 @@ "license": "ISC" }, "node_modules/@walletconnect/core": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.11.2.tgz", - "integrity": "sha512-bB4SiXX8hX3/hyBfVPC5gwZCXCl+OPj+/EDVM71iAO3TDsh78KPbrVAbDnnsbHzZVHlsMohtXX3j5XVsheN3+g==", + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.14.0.tgz", + "integrity": "sha512-E/dgBM9q3judXnTfZQ5ILvDpeSdDpabBLsXtYXa3Nyc26cfNplfLJ2nXm9FgtTdhM1nZ7yx4+zDPiXawBRZl2g==", "license": "Apache-2.0", "dependencies": { - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-provider": "1.0.13", - "@walletconnect/jsonrpc-types": "1.0.3", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-provider": "1.0.14", + "@walletconnect/jsonrpc-types": "1.0.4", "@walletconnect/jsonrpc-utils": "1.0.8", "@walletconnect/jsonrpc-ws-connection": "1.0.14", - "@walletconnect/keyvaluestorage": "^1.1.1", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/relay-auth": "^1.0.4", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.11.2", - "@walletconnect/utils": "2.11.2", - "events": "^3.3.0", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/logger": "2.1.2", + "@walletconnect/relay-api": "1.0.10", + "@walletconnect/relay-auth": "1.0.4", + "@walletconnect/safe-json": "1.0.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.14.0", + "@walletconnect/utils": "2.14.0", + "events": "3.3.0", "isomorphic-unfetch": "3.1.0", "lodash.isequal": "4.5.0", - "uint8arrays": "^3.1.0" + "uint8arrays": "3.1.0" + } + }, + "node_modules/@walletconnect/core/node_modules/@walletconnect/relay-api": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.10.tgz", + "integrity": "sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==", + "license": "MIT", + "dependencies": { + "@walletconnect/jsonrpc-types": "^1.0.2" + } + }, + "node_modules/@walletconnect/core/node_modules/@walletconnect/types": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.14.0.tgz", + "integrity": "sha512-vevMi4jZLJ55vLuFOicQFmBBbLyb+S0sZS4IsaBdZkQflfGIq34HkN13c/KPl4Ye0aoR4/cUcUSitmGIzEQM5g==", + "license": "Apache-2.0", + "dependencies": { + "@walletconnect/events": "1.0.1", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-types": "1.0.4", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/logger": "2.1.2", + "events": "3.3.0" + } + }, + "node_modules/@walletconnect/core/node_modules/@walletconnect/utils": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.14.0.tgz", + "integrity": "sha512-vRVomYQEtEAyCK2c5bzzEvtgxaGGITF8mWuIL+WYSAMyEJLY97mirP2urDucNwcUczwxUgI+no9RiNFbUHreQQ==", + "license": "Apache-2.0", + "dependencies": { + "@stablelib/chacha20poly1305": "1.0.1", + "@stablelib/hkdf": "1.0.1", + "@stablelib/random": "1.0.2", + "@stablelib/sha256": "1.0.1", + "@stablelib/x25519": "1.0.3", + "@walletconnect/relay-api": "1.0.10", + "@walletconnect/safe-json": "1.0.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.14.0", + "@walletconnect/window-getters": "1.0.1", + "@walletconnect/window-metadata": "1.0.1", + "detect-browser": "5.3.0", + "query-string": "7.1.3", + "uint8arrays": "3.1.0" + } + }, + "node_modules/@walletconnect/core/node_modules/uint8arrays": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz", + "integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" } }, "node_modules/@walletconnect/encoding": { @@ -8330,55 +8550,37 @@ "license": "0BSD" }, "node_modules/@walletconnect/heartbeat": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz", - "integrity": "sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.2.tgz", + "integrity": "sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==", "license": "MIT", "dependencies": { "@walletconnect/events": "^1.0.1", "@walletconnect/time": "^1.0.2", - "tslib": "1.14.1" + "events": "^3.3.0" } }, - "node_modules/@walletconnect/heartbeat/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "license": "0BSD" - }, "node_modules/@walletconnect/jsonrpc-provider": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz", - "integrity": "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==", + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.14.tgz", + "integrity": "sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==", "license": "MIT", "dependencies": { "@walletconnect/jsonrpc-utils": "^1.0.8", "@walletconnect/safe-json": "^1.0.2", - "tslib": "1.14.1" + "events": "^3.3.0" } }, - "node_modules/@walletconnect/jsonrpc-provider/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "license": "0BSD" - }, "node_modules/@walletconnect/jsonrpc-types": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz", - "integrity": "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz", + "integrity": "sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==", "license": "MIT", "dependencies": { - "keyvaluestorage-interface": "^1.0.0", - "tslib": "1.14.1" + "events": "^3.3.0", + "keyvaluestorage-interface": "^1.0.0" } }, - "node_modules/@walletconnect/jsonrpc-types/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "license": "0BSD" - }, "node_modules/@walletconnect/jsonrpc-utils": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz", @@ -8531,27 +8733,81 @@ "tslib": "1.14.1" } }, - "node_modules/@walletconnect/safe-json/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "license": "0BSD" - }, - "node_modules/@walletconnect/sign-client": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.11.2.tgz", - "integrity": "sha512-MfBcuSz2GmMH+P7MrCP46mVE5qhP0ZyWA0FyIH6/WuxQ6G+MgKsGfaITqakpRPsykWOJq8tXMs3XvUPDU413OQ==", + "node_modules/@walletconnect/safe-json/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/@walletconnect/sign-client": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.14.0.tgz", + "integrity": "sha512-UrB3S3eLjPYfBLCN3WJ5u7+WcZ8kFMe/QIDqLf76Jk6TaLwkSUy563LvnSw4KW/kA+/cY1KBSdUDfX1tzYJJXg==", + "license": "Apache-2.0", + "dependencies": { + "@walletconnect/core": "2.14.0", + "@walletconnect/events": "1.0.1", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-utils": "1.0.8", + "@walletconnect/logger": "2.1.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.14.0", + "@walletconnect/utils": "2.14.0", + "events": "3.3.0" + } + }, + "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/relay-api": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@walletconnect/relay-api/-/relay-api-1.0.10.tgz", + "integrity": "sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==", + "license": "MIT", + "dependencies": { + "@walletconnect/jsonrpc-types": "^1.0.2" + } + }, + "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/types": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.14.0.tgz", + "integrity": "sha512-vevMi4jZLJ55vLuFOicQFmBBbLyb+S0sZS4IsaBdZkQflfGIq34HkN13c/KPl4Ye0aoR4/cUcUSitmGIzEQM5g==", + "license": "Apache-2.0", + "dependencies": { + "@walletconnect/events": "1.0.1", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-types": "1.0.4", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/logger": "2.1.2", + "events": "3.3.0" + } + }, + "node_modules/@walletconnect/sign-client/node_modules/@walletconnect/utils": { + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.14.0.tgz", + "integrity": "sha512-vRVomYQEtEAyCK2c5bzzEvtgxaGGITF8mWuIL+WYSAMyEJLY97mirP2urDucNwcUczwxUgI+no9RiNFbUHreQQ==", "license": "Apache-2.0", "dependencies": { - "@walletconnect/core": "2.11.2", - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-utils": "1.0.8", - "@walletconnect/logger": "^2.0.1", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.11.2", - "@walletconnect/utils": "2.11.2", - "events": "^3.3.0" + "@stablelib/chacha20poly1305": "1.0.1", + "@stablelib/hkdf": "1.0.1", + "@stablelib/random": "1.0.2", + "@stablelib/sha256": "1.0.1", + "@stablelib/x25519": "1.0.3", + "@walletconnect/relay-api": "1.0.10", + "@walletconnect/safe-json": "1.0.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.14.0", + "@walletconnect/window-getters": "1.0.1", + "@walletconnect/window-metadata": "1.0.1", + "detect-browser": "5.3.0", + "query-string": "7.1.3", + "uint8arrays": "3.1.0" + } + }, + "node_modules/@walletconnect/sign-client/node_modules/uint8arrays": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz", + "integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" } }, "node_modules/@walletconnect/time": { @@ -8570,39 +8826,54 @@ "license": "0BSD" }, "node_modules/@walletconnect/types": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.11.2.tgz", - "integrity": "sha512-p632MFB+lJbip2cvtXPBQslpUdiw1sDtQ5y855bOlAGquay+6fZ4h1DcDePeKQDQM3P77ax2a9aNPZxV6y/h1Q==", + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.17.2.tgz", + "integrity": "sha512-j/+0WuO00lR8ntu7b1+MKe/r59hNwYLFzW0tTmozzhfAlDL+dYwWasDBNq4AH8NbVd7vlPCQWmncH7/6FVtOfQ==", "license": "Apache-2.0", "dependencies": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/heartbeat": "1.2.1", - "@walletconnect/jsonrpc-types": "1.0.3", - "@walletconnect/keyvaluestorage": "^1.1.1", - "@walletconnect/logger": "^2.0.1", - "events": "^3.3.0" + "@walletconnect/events": "1.0.1", + "@walletconnect/heartbeat": "1.2.2", + "@walletconnect/jsonrpc-types": "1.0.4", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/logger": "2.1.2", + "events": "3.3.0" } }, "node_modules/@walletconnect/utils": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.11.2.tgz", - "integrity": "sha512-LyfdmrnZY6dWqlF4eDrx5jpUwsB2bEPjoqR5Z6rXPiHJKUOdJt7az+mNOn5KTSOlRpd1DmozrBrWr+G9fFLYVw==", + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.17.2.tgz", + "integrity": "sha512-T7eLRiuw96fgwUy2A5NZB5Eu87ukX8RCVoO9lji34RFV4o2IGU9FhTEWyd4QQKI8OuQRjSknhbJs0tU0r0faPw==", "license": "Apache-2.0", "dependencies": { + "@ethersproject/hash": "5.7.0", + "@ethersproject/transactions": "5.7.0", "@stablelib/chacha20poly1305": "1.0.1", "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "^1.0.2", + "@stablelib/random": "1.0.2", "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "^1.0.3", - "@walletconnect/relay-api": "^1.0.9", - "@walletconnect/safe-json": "^1.0.2", - "@walletconnect/time": "^1.0.2", - "@walletconnect/types": "2.11.2", - "@walletconnect/window-getters": "^1.0.1", - "@walletconnect/window-metadata": "^1.0.1", + "@stablelib/x25519": "1.0.3", + "@walletconnect/jsonrpc-utils": "1.0.8", + "@walletconnect/keyvaluestorage": "1.1.1", + "@walletconnect/relay-api": "1.0.11", + "@walletconnect/relay-auth": "1.0.4", + "@walletconnect/safe-json": "1.0.2", + "@walletconnect/time": "1.0.2", + "@walletconnect/types": "2.17.2", + "@walletconnect/window-getters": "1.0.1", + "@walletconnect/window-metadata": "1.0.1", "detect-browser": "5.3.0", + "elliptic": "6.6.0", "query-string": "7.1.3", - "uint8arrays": "^3.1.0" + "uint8arrays": "3.1.0" + } + }, + "node_modules/@walletconnect/utils/node_modules/uint8arrays": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz", + "integrity": "sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==", + "license": "MIT", + "dependencies": { + "multiformats": "^9.4.2" } }, "node_modules/@walletconnect/window-getters": { @@ -9061,7 +9332,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, "license": "MIT", "engines": { "node": ">=10" @@ -9111,7 +9381,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, "license": "Apache-2.0", "dependencies": { "dequal": "^2.0.3" @@ -9875,6 +10144,33 @@ "node": ">=8" } }, + "node_modules/broadcast-channel": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-7.0.0.tgz", + "integrity": "sha512-a2tW0Ia1pajcPBOGUF2jXlDnvE9d5/dg6BG9h60OmRUcZVr/veUrU8vEQFwwQIhwG3KVzYwSk3v2nRRGFgQDXQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "7.23.4", + "oblivious-set": "1.4.0", + "p-queue": "6.6.2", + "unload": "2.4.1" + }, + "funding": { + "url": "https://github.com/sponsors/pubkey" + } + }, + "node_modules/broadcast-channel/node_modules/@babel/runtime": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.4.tgz", + "integrity": "sha512-2Yv65nlWnWlSpe3fXEyX5i7fx5kIKo4Qbcj+hMO0odwaneFjfXw5fdum+4yL20O0QiaHpia0cYQ9xpNMqrBwHg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -10591,7 +10887,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -10601,7 +10896,6 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, "license": "MIT" }, "node_modules/color-support": { @@ -12085,7 +12379,7 @@ "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.1" + "cross-spawn": "^7.0.6" }, "bin": { "cross-env": "src/bin/cross-env.js", @@ -12098,9 +12392,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -12541,7 +12835,6 @@ "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, "license": "MIT", "engines": { "node": ">=6" @@ -12698,6 +12991,13 @@ "node": ">=6.0.0" } }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "license": "MIT", + "peer": true + }, "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", @@ -13205,7 +13505,7 @@ "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", + "cross-spawn": "^7.0.6", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", @@ -13995,7 +14295,7 @@ "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", @@ -14534,7 +14834,7 @@ "dev": true, "license": "ISC", "dependencies": { - "cross-spawn": "^7.0.0", + "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" }, "engines": { @@ -15672,7 +15972,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, "license": "MIT", "engines": { "node": ">=8" @@ -17184,7 +17483,7 @@ "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", @@ -18787,7 +19086,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, "license": "MIT" }, "node_modules/js-yaml": { @@ -19274,7 +19572,7 @@ "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", @@ -20361,6 +20659,19 @@ "node": ">=0.10.0" } }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", @@ -20378,6 +20689,16 @@ "dev": true, "license": "MIT" }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "license": "MIT", + "peer": true, + "bin": { + "lz-string": "bin/bin.js" + } + }, "node_modules/magic-string": { "version": "0.30.11", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", @@ -21667,6 +21988,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/oblivious-set": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.4.0.tgz", + "integrity": "sha512-szyd0ou0T8nsAqHtprRcP3WidfsN1TnAR5yWXf2mFCEr5ek3LEOkT6EZ/92Xfs74HIdyhG5WkGxIssMU0jBaeg==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, "node_modules/ofetch": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", @@ -21847,7 +22177,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, "license": "MIT", "engines": { "node": ">=4" @@ -21957,7 +22286,6 @@ "version": "6.6.2", "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", - "dev": true, "license": "MIT", "dependencies": { "eventemitter3": "^4.0.4", @@ -21974,7 +22302,6 @@ "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true, "license": "MIT" }, "node_modules/p-reduce": { @@ -21991,7 +22318,6 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, "license": "MIT", "dependencies": { "p-finally": "^1.0.0" @@ -22284,7 +22610,6 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", - "dev": true, "license": "ISC" }, "node_modules/picomatch": { @@ -23268,6 +23593,33 @@ "node": ">=0.10.0" } }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, "node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", @@ -23602,7 +23954,6 @@ "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true, "license": "MIT" }, "node_modules/regenerator-transform": { @@ -24676,6 +25027,16 @@ "url": "https://paulmillr.com/funding/" } }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + } + }, "node_modules/schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", @@ -25071,9 +25432,9 @@ } }, "node_modules/solid-js": { - "version": "1.8.19", - "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.8.19.tgz", - "integrity": "sha512-h8z/TvTQYsf894LM9Iau/ZW2iAKrCzAWDwjPhMcXnonmW1OIIihc28wp82b1wwei1p81fH5+gnfNOe8RzLbDRQ==", + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/solid-js/-/solid-js-1.9.3.tgz", + "integrity": "sha512-5ba3taPoZGt9GY3YlsCB24kCg0Lv/rie/HTD4kG6h4daZZz7+yK02xn8Vx8dLYBc9i6Ps5JwAbEiqjmKaLB3Ag==", "license": "MIT", "dependencies": { "csstype": "^3.1.0", @@ -25588,7 +25949,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -26959,6 +27319,15 @@ "node": ">= 10.0.0" } }, + "node_modules/unload": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/unload/-/unload-2.4.1.tgz", + "integrity": "sha512-IViSAm8Z3sRBYA+9wc0fLQmU9Nrxb16rcDmIiR6Y9LJSZzI7QY5QsDhqPpKOjAn0O9/kfK1TfNEMMAGPTIraPw==", + "license": "Apache-2.0", + "funding": { + "url": "https://github.com/sponsors/pubkey" + } + }, "node_modules/unstorage": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", @@ -27491,7 +27860,7 @@ "@webpack-cli/serve": "^2.0.5", "colorette": "^2.0.14", "commander": "^10.0.1", - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "envinfo": "^7.7.3", "fastest-levenshtein": "^1.0.12", "import-local": "^3.0.2", @@ -28125,17 +28494,17 @@ }, "packages/taquito": { "name": "@taquito/taquito", - "version": "20.1.0", + "version": "20.1.1", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "rxjs": "^7.8.1" }, @@ -28183,12 +28552,14 @@ }, "packages/taquito-beacon-wallet": { "name": "@taquito/beacon-wallet", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@airgap/beacon-dapp": "^4.2.2", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0" + "@airgap/beacon-dapp": "^4.3.1", + "@airgap/beacon-ui": "^4.3.1", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@testing-library/react": "^16.0.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -28239,13 +28610,13 @@ }, "packages/taquito-contracts-library": { "name": "@taquito/contracts-library", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -28282,7 +28653,7 @@ }, "packages/taquito-core": { "name": "@taquito/core", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "json-stringify-safe": "^5.0.1" @@ -28298,10 +28669,10 @@ }, "packages/taquito-http-utils": { "name": "@taquito/http-utils", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", + "@taquito/core": "^20.1.1", "node-fetch": "^2.7.0" }, "devDependencies": { @@ -28359,14 +28730,14 @@ }, "packages/taquito-ledger-signer": { "name": "@taquito/ledger-signer", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "@ledgerhq/hw-transport": "^6.31.4", "@stablelib/blake2b": "^1.0.1", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "buffer": "^6.0.3" }, "devDependencies": { @@ -28427,15 +28798,15 @@ }, "packages/taquito-local-forging": { "name": "@taquito/local-forging", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { - "@taquito/rpc": "^20.1.0", + "@taquito/rpc": "^20.1.1", "@types/bluebird": "^3.5.42", "@types/estree": "^1.0.5", "@types/jest": "^29.5.12", @@ -28473,10 +28844,10 @@ }, "packages/taquito-michel-codec": { "name": "@taquito/michel-codec", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0" + "@taquito/core": "^20.1.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -28505,21 +28876,21 @@ } }, "packages/taquito-michel-codec/pack-test-tool": { - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/rpc": "^20.1.0", + "@taquito/rpc": "^20.1.1", "yargs": "^17.7.2" } }, "packages/taquito-michelson-encoder": { "name": "@taquito/michelson-encoder", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "fast-json-stable-stringify": "^2.1.0" }, @@ -28556,15 +28927,15 @@ }, "packages/taquito-remote-signer": { "name": "@taquito/remote-signer", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "typedarray-to-buffer": "^4.0.0" }, "devDependencies": { @@ -28601,12 +28972,12 @@ }, "packages/taquito-rpc": { "name": "@taquito/rpc", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -28642,17 +29013,17 @@ }, "packages/taquito-sapling": { "name": "@taquito/sapling", - "version": "20.1.0", + "version": "20.1.1", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { "@airgap/sapling-wasm": "0.0.9", "@stablelib/nacl": "^1.0.4", "@stablelib/random": "^1.0.2", - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1", @@ -28713,7 +29084,7 @@ }, "packages/taquito-signer": { "name": "@taquito/signer", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", @@ -28722,9 +29093,9 @@ "@stablelib/nacl": "^1.0.4", "@stablelib/pbkdf2": "^1.0.1", "@stablelib/sha512": "^1.0.1", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "@types/bn.js": "^5.1.5", "bip39": "3.1.0", "elliptic": "^6.6.0", @@ -28767,7 +29138,7 @@ }, "packages/taquito-timelock": { "name": "@taquito/timelock", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", @@ -28775,9 +29146,9 @@ "big-integer": "^1.6.52" }, "devDependencies": { - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", @@ -28808,13 +29179,13 @@ }, "packages/taquito-tzip12": { "name": "@taquito/tzip12", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip16": "^20.1.0" + "@taquito/core": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip16": "^20.1.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -28850,15 +29221,15 @@ }, "packages/taquito-tzip16": { "name": "@taquito/tzip16", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "crypto-js": "^4.2.0" }, @@ -28897,12 +29268,12 @@ }, "packages/taquito-utils": { "name": "@taquito/utils", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.1.0", + "@taquito/core": "^20.1.1", "@types/bs58check": "^2.1.2", "bignumber.js": "^9.1.2", "blakejs": "^1.2.1", @@ -28969,10 +29340,10 @@ }, "packages/taquito-wallet-connect": { "name": "@taquito/wallet-connect", - "version": "20.1.0", + "version": "20.1.1", "license": "Apache-2.0", "dependencies": { - "@taquito/taquito": "^20.0.1", + "@taquito/taquito": "^20.1.1", "@walletconnect/legacy-modal": "^2.0.0", "@walletconnect/sign-client": "^2.16.2", "@walletconnect/types": "^2.16.2", @@ -29059,17 +29430,6 @@ "node": ">=20" } }, - "packages/taquito-wallet-connect/node_modules/@types/chrome": { - "version": "0.0.171", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.171.tgz", - "integrity": "sha512-CnCwFKI3COygib3DNJrCjePeoU2OCDGGbUcmftXtQ3loMABsLgwpG8z+LxV4kjQJFzmJDqOyhCSsbY9yyEfapQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/filesystem": "*", - "@types/har-format": "*" - } - }, "packages/taquito-wallet-connect/node_modules/@walletconnect/core": { "version": "2.17.2", "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.17.2.tgz", @@ -29098,38 +29458,6 @@ "node": ">=18" } }, - "packages/taquito-wallet-connect/node_modules/@walletconnect/heartbeat": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.2.tgz", - "integrity": "sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==", - "license": "MIT", - "dependencies": { - "@walletconnect/events": "^1.0.1", - "@walletconnect/time": "^1.0.2", - "events": "^3.3.0" - } - }, - "packages/taquito-wallet-connect/node_modules/@walletconnect/jsonrpc-provider": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.14.tgz", - "integrity": "sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==", - "license": "MIT", - "dependencies": { - "@walletconnect/jsonrpc-utils": "^1.0.8", - "@walletconnect/safe-json": "^1.0.2", - "events": "^3.3.0" - } - }, - "packages/taquito-wallet-connect/node_modules/@walletconnect/jsonrpc-types": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz", - "integrity": "sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==", - "license": "MIT", - "dependencies": { - "events": "^3.3.0", - "keyvaluestorage-interface": "^1.0.0" - } - }, "packages/taquito-wallet-connect/node_modules/@walletconnect/sign-client": { "version": "2.17.2", "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.17.2.tgz", @@ -29147,48 +29475,6 @@ "events": "3.3.0" } }, - "packages/taquito-wallet-connect/node_modules/@walletconnect/types": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.17.2.tgz", - "integrity": "sha512-j/+0WuO00lR8ntu7b1+MKe/r59hNwYLFzW0tTmozzhfAlDL+dYwWasDBNq4AH8NbVd7vlPCQWmncH7/6FVtOfQ==", - "license": "Apache-2.0", - "dependencies": { - "@walletconnect/events": "1.0.1", - "@walletconnect/heartbeat": "1.2.2", - "@walletconnect/jsonrpc-types": "1.0.4", - "@walletconnect/keyvaluestorage": "1.1.1", - "@walletconnect/logger": "2.1.2", - "events": "3.3.0" - } - }, - "packages/taquito-wallet-connect/node_modules/@walletconnect/utils": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.17.2.tgz", - "integrity": "sha512-T7eLRiuw96fgwUy2A5NZB5Eu87ukX8RCVoO9lji34RFV4o2IGU9FhTEWyd4QQKI8OuQRjSknhbJs0tU0r0faPw==", - "license": "Apache-2.0", - "dependencies": { - "@ethersproject/hash": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@stablelib/chacha20poly1305": "1.0.1", - "@stablelib/hkdf": "1.0.1", - "@stablelib/random": "1.0.2", - "@stablelib/sha256": "1.0.1", - "@stablelib/x25519": "1.0.3", - "@walletconnect/jsonrpc-utils": "1.0.8", - "@walletconnect/keyvaluestorage": "1.1.1", - "@walletconnect/relay-api": "1.0.11", - "@walletconnect/relay-auth": "1.0.4", - "@walletconnect/safe-json": "1.0.2", - "@walletconnect/time": "1.0.2", - "@walletconnect/types": "2.17.2", - "@walletconnect/window-getters": "1.0.1", - "@walletconnect/window-metadata": "1.0.1", - "detect-browser": "5.3.0", - "elliptic": "6.6.0", - "query-string": "7.1.3", - "uint8arrays": "3.1.0" - } - }, "packages/taquito-wallet-connect/node_modules/uint8arrays": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz", diff --git a/packages/taquito-beacon-wallet/package.json b/packages/taquito-beacon-wallet/package.json index 2fb7747f0d..16a8ee9510 100644 --- a/packages/taquito-beacon-wallet/package.json +++ b/packages/taquito-beacon-wallet/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/beacon-wallet", - "version": "20.1.0", + "version": "20.1.1", "description": "Beacon wallet provider", "keywords": [ "tezos", @@ -67,9 +67,11 @@ ] }, "dependencies": { - "@airgap/beacon-dapp": "^4.2.2", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0" + "@airgap/beacon-dapp": "^4.3.1", + "@airgap/beacon-ui": "^4.3.1", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@testing-library/react": "^16.0.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", diff --git a/packages/taquito-beacon-wallet/src/version.ts b/packages/taquito-beacon-wallet/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-beacon-wallet/src/version.ts +++ b/packages/taquito-beacon-wallet/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-beacon-wallet/test/taquito-beacon-wallet.spec.ts b/packages/taquito-beacon-wallet/test/taquito-beacon-wallet.spec.ts index 40ca994793..072bf74bd6 100644 --- a/packages/taquito-beacon-wallet/test/taquito-beacon-wallet.spec.ts +++ b/packages/taquito-beacon-wallet/test/taquito-beacon-wallet.spec.ts @@ -10,6 +10,27 @@ global.localStorage = new LocalStorageMock(); global.indexedDB = indexedDB; global.window = { addEventListener: jest.fn() } as any; +jest.mock('@airgap/beacon-ui', () => { + return { + AlertButton: jest.fn(), + closeToast: jest.fn(), + getColorMode: jest.fn(), + setColorMode: jest.fn(), + setDesktopList: jest.fn(), + setExtensionList: jest.fn(), + setWebList: jest.fn(), + setiOSList: jest.fn(), + getiOSList: jest.fn(), + getDesktopList: jest.fn(), + getExtensionList: jest.fn(), + getWebList: jest.fn(), + isBrowser: jest.fn(), + isDesktop: jest.fn(), + isMobileOS: jest.fn(), + isIOS: jest.fn(), + currentOS: jest.fn(), + }; +}); // thanks to IsaccoSordo's contribution of https://github.com/ecadlabs/taquito/pull/3015 jest.mock('@airgap/beacon-transport-postmessage', () => { jest.useFakeTimers(); diff --git a/packages/taquito-contracts-library/package.json b/packages/taquito-contracts-library/package.json index 44b5306257..3dc797df6d 100644 --- a/packages/taquito-contracts-library/package.json +++ b/packages/taquito-contracts-library/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/contracts-library", - "version": "20.1.0", + "version": "20.1.1", "description": "Can be used as an extension on the TezosToolkit to provide contracts data", "keywords": [ "tezos" @@ -67,10 +67,10 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { diff --git a/packages/taquito-contracts-library/src/version.ts b/packages/taquito-contracts-library/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-contracts-library/src/version.ts +++ b/packages/taquito-contracts-library/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-core/package.json b/packages/taquito-core/package.json index 8621c2a901..f9c31e0d51 100644 --- a/packages/taquito-core/package.json +++ b/packages/taquito-core/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/core", - "version": "20.1.0", + "version": "20.1.1", "description": "Classes, interfaces, and types shared across Taquito packages", "keywords": [ "tezos", diff --git a/packages/taquito-core/src/version.ts b/packages/taquito-core/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-core/src/version.ts +++ b/packages/taquito-core/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-http-utils/package.json b/packages/taquito-http-utils/package.json index 8b6b6034f1..4a1cb4e7f5 100644 --- a/packages/taquito-http-utils/package.json +++ b/packages/taquito-http-utils/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/http-utils", - "version": "20.1.0", + "version": "20.1.1", "description": "", "keywords": [ "tezos" @@ -58,7 +58,7 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", + "@taquito/core": "^20.1.1", "node-fetch": "^2.7.0" }, "devDependencies": { diff --git a/packages/taquito-http-utils/src/version.ts b/packages/taquito-http-utils/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-http-utils/src/version.ts +++ b/packages/taquito-http-utils/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-ledger-signer/package.json b/packages/taquito-ledger-signer/package.json index c6eaedce9e..8af4e6f08a 100644 --- a/packages/taquito-ledger-signer/package.json +++ b/packages/taquito-ledger-signer/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/ledger-signer", - "version": "20.1.0", + "version": "20.1.1", "description": "Ledger signer provider", "keywords": [ "tezos", @@ -59,9 +59,9 @@ "dependencies": { "@ledgerhq/hw-transport": "^6.31.4", "@stablelib/blake2b": "^1.0.1", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "buffer": "^6.0.3" }, "devDependencies": { diff --git a/packages/taquito-ledger-signer/src/version.ts b/packages/taquito-ledger-signer/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-ledger-signer/src/version.ts +++ b/packages/taquito-ledger-signer/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-local-forging/package.json b/packages/taquito-local-forging/package.json index 9ade8d6514..c884e3d4f9 100644 --- a/packages/taquito-local-forging/package.json +++ b/packages/taquito-local-forging/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/local-forging", - "version": "20.1.0", + "version": "20.1.1", "description": "Provide local forging functionality to be with taquito", "keywords": [ "tezos", @@ -67,12 +67,12 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { - "@taquito/rpc": "^20.1.0", + "@taquito/rpc": "^20.1.1", "@types/bluebird": "^3.5.42", "@types/estree": "^1.0.5", "@types/jest": "^29.5.12", diff --git a/packages/taquito-local-forging/src/version.ts b/packages/taquito-local-forging/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-local-forging/src/version.ts +++ b/packages/taquito-local-forging/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-michel-codec/pack-test-tool/package.json b/packages/taquito-michel-codec/pack-test-tool/package.json index 27f66a352c..f0532874dd 100644 --- a/packages/taquito-michel-codec/pack-test-tool/package.json +++ b/packages/taquito-michel-codec/pack-test-tool/package.json @@ -1,6 +1,6 @@ { "name": "pack-test-tool", - "version": "20.1.0", + "version": "20.1.1", "description": "Generate pack test data via Tezos RPC", "main": "pack-test-tool.js", "private": true, @@ -8,7 +8,7 @@ "author": "Eugene Zagidullin ", "license": "Apache-2.0", "dependencies": { - "@taquito/rpc": "^20.1.0", + "@taquito/rpc": "^20.1.1", "yargs": "^17.7.2" } } diff --git a/packages/taquito-michel-codec/package.json b/packages/taquito-michel-codec/package.json index e0fe927332..15fc37117f 100644 --- a/packages/taquito-michel-codec/package.json +++ b/packages/taquito-michel-codec/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/michel-codec", - "version": "20.1.0", + "version": "20.1.1", "description": "Michelson parser/validator/formatter", "keywords": [ "tezos", @@ -66,7 +66,7 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0" + "@taquito/core": "^20.1.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", diff --git a/packages/taquito-michel-codec/src/version.ts b/packages/taquito-michel-codec/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-michel-codec/src/version.ts +++ b/packages/taquito-michel-codec/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-michelson-encoder/package.json b/packages/taquito-michelson-encoder/package.json index d93569785d..86cf9799fc 100644 --- a/packages/taquito-michelson-encoder/package.json +++ b/packages/taquito-michelson-encoder/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/michelson-encoder", - "version": "20.1.0", + "version": "20.1.1", "description": "converts michelson data and types into convenient JS/TS objects", "keywords": [ "tezos", @@ -67,9 +67,9 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "fast-json-stable-stringify": "^2.1.0" }, diff --git a/packages/taquito-michelson-encoder/src/version.ts b/packages/taquito-michelson-encoder/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-michelson-encoder/src/version.ts +++ b/packages/taquito-michelson-encoder/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-remote-signer/package.json b/packages/taquito-remote-signer/package.json index 5b0c99bcc5..bae305714b 100644 --- a/packages/taquito-remote-signer/package.json +++ b/packages/taquito-remote-signer/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/remote-signer", - "version": "20.1.0", + "version": "20.1.1", "description": "Remote signer provider", "keywords": [ "tezos", @@ -62,10 +62,10 @@ "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "typedarray-to-buffer": "^4.0.0" }, "devDependencies": { diff --git a/packages/taquito-remote-signer/src/version.ts b/packages/taquito-remote-signer/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-remote-signer/src/version.ts +++ b/packages/taquito-remote-signer/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-rpc/package.json b/packages/taquito-rpc/package.json index ffe36dc71e..fe77f2de09 100644 --- a/packages/taquito-rpc/package.json +++ b/packages/taquito-rpc/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/rpc", - "version": "20.1.0", + "version": "20.1.1", "description": "Provides low level methods, and types to invoke RPC calls from a Nomadic Tezos RPC node", "keywords": [ "tezos", @@ -66,9 +66,9 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2" }, "devDependencies": { diff --git a/packages/taquito-rpc/src/version.ts b/packages/taquito-rpc/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-rpc/src/version.ts +++ b/packages/taquito-rpc/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-sapling/package.json b/packages/taquito-sapling/package.json index b3fe15d348..329c12dbad 100644 --- a/packages/taquito-sapling/package.json +++ b/packages/taquito-sapling/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/sapling", - "version": "20.1.0", + "version": "20.1.1", "description": "Allows reading and preparing sapling transactions", "keywords": [ "tezos", @@ -68,10 +68,10 @@ "@airgap/sapling-wasm": "0.0.9", "@stablelib/nacl": "^1.0.4", "@stablelib/random": "^1.0.2", - "@taquito/core": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1", diff --git a/packages/taquito-sapling/src/version.ts b/packages/taquito-sapling/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-sapling/src/version.ts +++ b/packages/taquito-sapling/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-signer/package.json b/packages/taquito-signer/package.json index f7410805c9..717d381d3e 100644 --- a/packages/taquito-signer/package.json +++ b/packages/taquito-signer/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/signer", - "version": "20.1.0", + "version": "20.1.1", "description": "Provide signing functionality to be with taquito", "keywords": [ "tezos", @@ -72,9 +72,9 @@ "@stablelib/nacl": "^1.0.4", "@stablelib/pbkdf2": "^1.0.1", "@stablelib/sha512": "^1.0.1", - "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "@types/bn.js": "^5.1.5", "bip39": "3.1.0", "elliptic": "^6.6.0", diff --git a/packages/taquito-signer/src/version.ts b/packages/taquito-signer/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-signer/src/version.ts +++ b/packages/taquito-signer/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-timelock/package.json b/packages/taquito-timelock/package.json index d660400099..3a3c2e55eb 100644 --- a/packages/taquito-timelock/package.json +++ b/packages/taquito-timelock/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/timelock", - "version": "20.1.0", + "version": "20.1.1", "description": "TypeScript implementation of the Timelock feature in Tezos", "main": "./dist/taquito-timelock.umd.js", "module": "./dist/taquito-timelock.es6.js", @@ -68,9 +68,9 @@ "big-integer": "^1.6.52" }, "devDependencies": { - "@taquito/signer": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/signer": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", diff --git a/packages/taquito-timelock/src/version.ts b/packages/taquito-timelock/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-timelock/src/version.ts +++ b/packages/taquito-timelock/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-tzip12/package.json b/packages/taquito-tzip12/package.json index bbad2c719c..b26724cc32 100644 --- a/packages/taquito-tzip12/package.json +++ b/packages/taquito-tzip12/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/tzip12", - "version": "20.1.0", + "version": "20.1.1", "description": "Tzip12", "keywords": [ "tezos", @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/tzip16": "^20.1.0" + "@taquito/core": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/tzip16": "^20.1.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", diff --git a/packages/taquito-tzip12/src/version.ts b/packages/taquito-tzip12/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-tzip12/src/version.ts +++ b/packages/taquito-tzip12/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-tzip16/package.json b/packages/taquito-tzip16/package.json index fdf75853df..6c8e6100fd 100644 --- a/packages/taquito-tzip16/package.json +++ b/packages/taquito-tzip16/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/tzip16", - "version": "20.1.0", + "version": "20.1.1", "description": "Tzip16", "keywords": [ "tezos", @@ -61,12 +61,12 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/taquito": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/taquito": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "crypto-js": "^4.2.0" }, diff --git a/packages/taquito-tzip16/src/version.ts b/packages/taquito-tzip16/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-tzip16/src/version.ts +++ b/packages/taquito-tzip16/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-utils/package.json b/packages/taquito-utils/package.json index fb6580e03c..1177275d68 100644 --- a/packages/taquito-utils/package.json +++ b/packages/taquito-utils/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/utils", - "version": "20.1.0", + "version": "20.1.1", "description": "converts michelson data and types into convenient JS/TS objects", "keywords": [ "tezos", @@ -64,7 +64,7 @@ "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.1.0", + "@taquito/core": "^20.1.1", "@types/bs58check": "^2.1.2", "bignumber.js": "^9.1.2", "blakejs": "^1.2.1", diff --git a/packages/taquito-utils/src/version.ts b/packages/taquito-utils/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito-utils/src/version.ts +++ b/packages/taquito-utils/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/packages/taquito-wallet-connect/package.json b/packages/taquito-wallet-connect/package.json index a242e9d39b..e350b6c7ed 100644 --- a/packages/taquito-wallet-connect/package.json +++ b/packages/taquito-wallet-connect/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/wallet-connect", - "version": "20.1.0", + "version": "20.1.1", "description": "Walletconnect provider", "keywords": [ "tezos", @@ -66,7 +66,7 @@ ] }, "dependencies": { - "@taquito/taquito": "^20.0.1", + "@taquito/taquito": "^20.1.1", "@walletconnect/legacy-modal": "^2.0.0", "@walletconnect/sign-client": "^2.16.2", "@walletconnect/types": "^2.16.2", @@ -103,4 +103,4 @@ "typescript": "~5.5.4" }, "gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e" -} \ No newline at end of file +} diff --git a/packages/taquito-wallet-connect/src/version.ts b/packages/taquito-wallet-connect/src/version.ts new file mode 100644 index 0000000000..1401014e3c --- /dev/null +++ b/packages/taquito-wallet-connect/src/version.ts @@ -0,0 +1,6 @@ + +// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! +export const VERSION = { + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" +}; diff --git a/packages/taquito/README.md b/packages/taquito/README.md index 070d132686..32eb4fc9f0 100644 --- a/packages/taquito/README.md +++ b/packages/taquito/README.md @@ -7,7 +7,7 @@ The `@taquito/taquito` package contains higher-level functionality that builds u ## CDN Bundle ```html - ``` diff --git a/packages/taquito/assets-manifest.json b/packages/taquito/assets-manifest.json index 507b08a5c8..4996c88d41 100644 --- a/packages/taquito/assets-manifest.json +++ b/packages/taquito/assets-manifest.json @@ -5,6 +5,6 @@ }, "main.js": { "src": "dist/taquito.min.js", - "integrity": "sha256-wCCd9Y0MjdfwpfLCpUYxWZ1U2giilq0DgWDDItpL/v0= sha384-VjBcZcYC06DZCafRWVHxeWhiXqBPhyIwh1BArbsZHNwDae4NIyjxdmS3dlnCQ6WP sha512-gcWlAFelRYgsHAsCfz+n9ze0y3RyO/gtQShbK7T3eEHeLxVpAIdYo0GKsTiwCKta1Y0VhVXCp8Z8etANSXxpuA==" + "integrity": "sha256-OByEkYcHtoJVUV3EZ1uBctPMBYkLdgC8uG4xhJUY1Sw= sha384-oxIIs8n5K4cp3AK5zxtchAvPI3ttFw2jvGd4yArCVsZfcmb+XCAiJYf998aTWr+t sha512-NBdzXRZadNl7EwMvmMHkGZE29o7Djl1RnU6KN5b2+QrIfXpYMOsFzVtfy+Jy6JXELpkT7FT2cR1ztlswycivvg==" } } \ No newline at end of file diff --git a/packages/taquito/package.json b/packages/taquito/package.json index 7102893494..8cc41abfd9 100644 --- a/packages/taquito/package.json +++ b/packages/taquito/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/taquito", - "version": "20.1.0", + "version": "20.1.1", "description": "High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.", "keywords": [ "tezos", @@ -77,13 +77,13 @@ ] }, "dependencies": { - "@taquito/core": "^20.1.0", - "@taquito/http-utils": "^20.1.0", - "@taquito/local-forging": "^20.1.0", - "@taquito/michel-codec": "^20.1.0", - "@taquito/michelson-encoder": "^20.1.0", - "@taquito/rpc": "^20.1.0", - "@taquito/utils": "^20.1.0", + "@taquito/core": "^20.1.1", + "@taquito/http-utils": "^20.1.1", + "@taquito/local-forging": "^20.1.1", + "@taquito/michel-codec": "^20.1.1", + "@taquito/michelson-encoder": "^20.1.1", + "@taquito/rpc": "^20.1.1", + "@taquito/utils": "^20.1.1", "bignumber.js": "^9.1.2", "rxjs": "^7.8.1" }, diff --git a/packages/taquito/src/version.ts b/packages/taquito/src/version.ts index 77804e804e..1401014e3c 100644 --- a/packages/taquito/src/version.ts +++ b/packages/taquito/src/version.ts @@ -1,6 +1,6 @@ // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - "commitHash": "ccdb0db9569457dbbe7e5c0c2b7cb2003bb6155d", - "version": "20.1.0" + "commitHash": "8e5abdf5eeee32ce44023c703ebc1bf68d7851f0", + "version": "20.1.1" }; diff --git a/website/package-lock.json b/website/package-lock.json index 398e55cf7e..ee57a281a1 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -45,7 +45,7 @@ "docusaurus-plugin-sass": "^0.2.5", "dotenv": "^16.3.2", "file-loader": "^6.2.0", - "firebase": "^10.13.1", + "firebase": "^10.14.1", "html-react-parser": "^3.0.16", "lerna": "^8.1.5", "lottie-web": "^5.12.2", @@ -131,9 +131,11 @@ "version": "20.1.0", "license": "Apache-2.0", "dependencies": { - "@airgap/beacon-dapp": "^4.2.2", + "@airgap/beacon-dapp": "^4.3.1", + "@airgap/beacon-ui": "^4.3.1", "@taquito/core": "^20.1.0", - "@taquito/taquito": "^20.1.0" + "@taquito/taquito": "^20.1.0", + "@testing-library/react": "^16.0.1" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -4563,9 +4565,9 @@ "license": "Apache-2.0" }, "node_modules/@firebase/app": { - "version": "0.10.12", - "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.10.12.tgz", - "integrity": "sha512-fgBqe5j7GKv7/eMfyU4N1FdiW6O1EyrrVbMa8rJOT5MYNpCXqdL/5NNcLDStS1l6CN7h65a7jUNXmMnMSWo0sw==", + "version": "0.10.13", + "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.10.13.tgz", + "integrity": "sha512-OZiDAEK/lDB6xy/XzYAyJJkaDqmQ+BCtOEPLqFvxWKUz5JbBmej7IiiRHdtiIOD/twW7O5AxVsfaaGA/V1bNsA==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.9", @@ -4620,12 +4622,12 @@ "license": "Apache-2.0" }, "node_modules/@firebase/app-compat": { - "version": "0.2.42", - "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.2.42.tgz", - "integrity": "sha512-vPI0Aksk8ZuHywigyTxrx/oWbuD41kHxajfxRly7urHOFRiXKxf/q2ftgmcMVPfIeg0K02LzYNBmoh2PWzERpg==", + "version": "0.2.43", + "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.2.43.tgz", + "integrity": "sha512-HM96ZyIblXjAC7TzE8wIk2QhHlSvksYkQ4Ukh1GmEenzkucSNUmUX4QvoKrqeWsLEQ8hdcojABeCV8ybVyZmeg==", "license": "Apache-2.0", "dependencies": { - "@firebase/app": "0.10.12", + "@firebase/app": "0.10.13", "@firebase/component": "0.6.9", "@firebase/logger": "0.4.2", "@firebase/util": "1.10.0", @@ -4923,9 +4925,9 @@ } }, "node_modules/@firebase/messaging": { - "version": "0.12.11", - "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.12.11.tgz", - "integrity": "sha512-zn5zGhF46BmiZ7W9yAUoHlqzJGakmWn1FNp//roXHN62dgdEFIKfXY7IODA2iQiXpmUO3sBdI/Tf+Hsft1mVkw==", + "version": "0.12.12", + "resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.12.12.tgz", + "integrity": "sha512-6q0pbzYBJhZEtUoQx7hnPhZvAbuMNuBXKQXOx2YlWhSrlv9N1m0ZzlNpBbu/ItTzrwNKTibdYzUyaaxdWLg+4w==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.9", @@ -4940,13 +4942,13 @@ } }, "node_modules/@firebase/messaging-compat": { - "version": "0.2.11", - "resolved": "https://registry.npmjs.org/@firebase/messaging-compat/-/messaging-compat-0.2.11.tgz", - "integrity": "sha512-2NCkfE1L9jSn5OC+2n5rGAz5BEAQreK2lQGdPYQEJlAbKB2efoF+2FdiQ+LD8SlioSXz66REfeaEdesoLPFQcw==", + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@firebase/messaging-compat/-/messaging-compat-0.2.12.tgz", + "integrity": "sha512-pKsiUVZrbmRgdImYqhBNZlkKJbqjlPkVdQRZGRbkTyX4OSGKR0F/oJeCt1a8jEg5UnBp4fdVwSWSp4DuCovvEQ==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.9", - "@firebase/messaging": "0.12.11", + "@firebase/messaging": "0.12.12", "@firebase/util": "1.10.0", "tslib": "^2.1.0" }, @@ -10766,9 +10768,9 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -12687,7 +12689,7 @@ "integrity": "sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==", "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", @@ -13127,17 +13129,17 @@ } }, "node_modules/firebase": { - "version": "10.14.0", - "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.14.0.tgz", - "integrity": "sha512-/yB/OE4bfBbmtfku0DCdW6nWMHYVayN6xWKw68ztedxqGevfYDoPoygBXiLmvBHdWdBa+IlhJDkdUUiEEpcAUw==", + "version": "10.14.1", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.14.1.tgz", + "integrity": "sha512-0KZxU+Ela9rUCULqFsUUOYYkjh7OM1EWdIfG6///MtXd0t2/uUIf0iNV5i0KariMhRQ5jve/OY985nrAXFaZeQ==", "license": "Apache-2.0", "dependencies": { "@firebase/analytics": "0.10.8", "@firebase/analytics-compat": "0.2.14", - "@firebase/app": "0.10.12", + "@firebase/app": "0.10.13", "@firebase/app-check": "0.8.8", "@firebase/app-check-compat": "0.3.15", - "@firebase/app-compat": "0.2.42", + "@firebase/app-compat": "0.2.43", "@firebase/app-types": "0.9.2", "@firebase/auth": "1.7.9", "@firebase/auth-compat": "0.5.14", @@ -13150,8 +13152,8 @@ "@firebase/functions-compat": "0.3.14", "@firebase/installations": "0.6.9", "@firebase/installations-compat": "0.2.9", - "@firebase/messaging": "0.12.11", - "@firebase/messaging-compat": "0.2.11", + "@firebase/messaging": "0.12.12", + "@firebase/messaging-compat": "0.2.12", "@firebase/performance": "0.6.9", "@firebase/performance-compat": "0.2.9", "@firebase/remote-config": "0.4.9", @@ -13241,7 +13243,7 @@ "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "license": "ISC", "dependencies": { - "cross-spawn": "^7.0.0", + "cross-spawn": "^7.0.6", "signal-exit": "^4.0.1" }, "engines": { @@ -20068,7 +20070,7 @@ "address": "^1.1.2", "browserslist": "^4.18.1", "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", + "cross-spawn": "^7.0.6", "detect-port-alt": "^1.1.6", "escape-string-regexp": "^4.0.0", "filesize": "^8.0.6", diff --git a/website/package.json b/website/package.json index 0ddfdc6744..0eb3b4ef01 100644 --- a/website/package.json +++ b/website/package.json @@ -52,7 +52,7 @@ "docusaurus-plugin-sass": "^0.2.5", "dotenv": "^16.3.2", "file-loader": "^6.2.0", - "firebase": "^10.13.1", + "firebase": "^10.14.1", "html-react-parser": "^3.0.16", "lerna": "^8.1.5", "lottie-web": "^5.12.2", @@ -86,5 +86,5 @@ "last 1 safari version" ] }, - "version": "20.1.0" + "version": "20.1.1" }