diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40a05936cf..debb10e7db 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,6 +45,10 @@ jobs: include: - testnet: parisnet testnet_uppercase: PARISNET + rpc_url: https://parisnet.ecadinfra.com + - testnet: quebecbnet + testnet_uppercase: QUEBECBNET + rpc_url: https://quebecbnet.ecadinfra.com/ steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -58,31 +62,8 @@ jobs: with: authkey: ${{ secrets.TAILSCALE_AUTHKEY }} version: 1.32.2 - - run: npm -w integration-tests run test:${{ matrix.testnet }} -- --maxWorkers=4 + - id: run-tests + run: npm -w integration-tests run test:${{ matrix.testnet }} -- --maxWorkers=4 env: # Ternary operator workaround - TEZOS_RPC_${{ matrix.testnet_uppercase }}: ${{ github.event.pull_request.head.repo.fork && format('https://{0}.ecadinfra.com', matrix.testnet) || null }} - integration-tests-testnet-beta-secret-key: - runs-on: ubuntu-latest - continue-on-error: true - strategy: - matrix: - include: - - testnet: betanet - testnet_uppercase: BETANET - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: lts/hydrogen - - run: npm ci - - run: npm run build - - if: ${{ !github.event.pull_request.head.repo.fork }} - name: Tailscale - uses: tailscale/github-action@v1 - with: - authkey: ${{ secrets.TAILSCALE_AUTHKEY }} - version: 1.32.2 - - run: npm -w integration-tests run test:betanet-secret-key - env: - RUN_${{ matrix.testnet_uppercase }}_WITH_SECRET_KEY: true \ No newline at end of file + TEZOS_RPC_${{ matrix.testnet_uppercase }}: ${{ github.event.pull_request.head.repo.fork && matrix.rpc_url || null }} \ No newline at end of file diff --git a/apps/taquito-test-dapp/package.json b/apps/taquito-test-dapp/package.json index b0d99f5977..e83225b89a 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.0.1", + "version": "21.0.0-beta.0", "type": "module", "scripts": { "dev": "vite", @@ -26,10 +26,10 @@ "dependencies": { "@airgap/beacon-sdk": "^4.2.2", "@airgap/beacon-types": "^4.2.2", - "@taquito/beacon-wallet": "^20.0.1", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/beacon-wallet": "^21.0.0-beta.0", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "buffer": "^6.0.3", "svelte-select": "^5.8.3", "vite-compatible-readable-stream": "^3.6.1" diff --git a/example/package.json b/example/package.json index 715df03b06..914ab2ce5a 100644 --- a/example/package.json +++ b/example/package.json @@ -1,7 +1,7 @@ { "name": "@taquito/example", "private": true, - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.3", - "@taquito/ledger-signer": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/sapling": "^20.0.1", - "@taquito/signer": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip16": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/ledger-signer": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/sapling": "^21.0.0-beta.0", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { diff --git a/integration-tests/__tests__/contract/operations/failing-noop.spec.ts b/integration-tests/__tests__/contract/operations/failing-noop.spec.ts index 20a140d370..8eb825cd7e 100644 --- a/integration-tests/__tests__/contract/operations/failing-noop.spec.ts +++ b/integration-tests/__tests__/contract/operations/failing-noop.spec.ts @@ -7,7 +7,7 @@ CONFIGS().forEach(({ setup, rpc, lib }) => { let signerAlice = new InMemorySigner('edsk3QoqBuvdamxouPhin7swCvkQNgq4jP5KZPbwWNnwdZpSpJiEbq') describe(`Test failing_noop through wallet api using: ${rpc}`, () => { - let Tezos = lib + const Tezos = lib beforeAll(async () => { setup(true) if (rpc.includes('paris')) { diff --git a/integration-tests/__tests__/contract/operations/staking.spec.ts b/integration-tests/__tests__/contract/operations/staking.spec.ts index ff720f3065..0b4b06a1c2 100644 --- a/integration-tests/__tests__/contract/operations/staking.spec.ts +++ b/integration-tests/__tests__/contract/operations/staking.spec.ts @@ -6,7 +6,7 @@ CONFIGS().forEach(({ lib, rpc, setup, knownBaker }) => { beforeAll(async () => { await setup(true); - // There is no baker accept staking in betanet and weeklylnet hence tests will fail + // There is no baker accept staking in quebecbnet and weeklylnet hence tests will fail // Currently TF is a baker that allows staking on parisnet. if (rpc.includes('paris')) { knownBaker = 'tz3Q67aMz7gSMiQRcW729sXSfuMtkyAHYfqc' // TF diff --git a/integration-tests/__tests__/rpc/get-protocol-constants.spec.ts b/integration-tests/__tests__/rpc/get-protocol-constants.spec.ts index 0c923b330f..e036a4b23b 100644 --- a/integration-tests/__tests__/rpc/get-protocol-constants.spec.ts +++ b/integration-tests/__tests__/rpc/get-protocol-constants.spec.ts @@ -6,7 +6,7 @@ import { ConstantsResponseProto020, ConstantsResponseProto021 } from '@taquito/r CONFIGS().forEach(({ lib, protocol, rpc, networkType }) => { const Tezos = lib; const parisnet = (networkType == NetworkType.TESTNET && protocol === Protocols.PsParisCZ) ? test : test.skip; - const betanet = (networkType == NetworkType.TESTNET && protocol === Protocols.PtBetaaEZ) ? test : test.skip; + const quebecbnet = (networkType == NetworkType.TESTNET && protocol === Protocols.PsQuebecB) ? test : test.skip; const weeklynet = (networkType == NetworkType.TESTNET && protocol === Protocols.ProtoALpha) ? test : test.skip; describe('Test fetching constants for all protocols on Mainnet', () => { const rpcUrl = 'https://mainnet.ecadinfra.com/'; @@ -304,7 +304,7 @@ CONFIGS().forEach(({ lib, protocol, rpc, networkType }) => { }); }); - betanet(`should successfully fetch all constants for Betanet + quebecbnet(`should successfully fetch all constants for quebecbnet using ${rpc}`, async () => { Tezos.setRpcProvider(rpc); const constants: ConstantsResponseProto021 = await Tezos.rpc.getConstants(); @@ -385,7 +385,7 @@ CONFIGS().forEach(({ lib, protocol, rpc, networkType }) => { vdf_revelation_tip_weight: 1, }, min_proposal_quorum: 500, - edge_of_staking_over_delegation: 2, + edge_of_staking_over_delegation: 3, global_limit_of_staking_over_baking: 5, liquidity_baking_toggle_ema_threshold: 100000, max_operations_time_to_live: 187, @@ -443,7 +443,7 @@ CONFIGS().forEach(({ lib, protocol, rpc, networkType }) => { smart_rollup_riscv_pvm_enable: true, smart_rollup_stake_amount: '32000000', smart_rollup_timeout_period_in_blocks: 781, - testnet_dictator: 'tz1Xf8zdT3DbAX9cHw3c3CXh79rc4nK4gCe8', + testnet_dictator: 'tz1e1TX7KghsqWUBXWmBTAAtPK3W6JTbNc82', vdf_difficulty: new BigNumber(10000000), zk_rollup_enable: true, zk_rollup_max_ticket_payload_size: 2048, diff --git a/integration-tests/__tests__/rpc/nodes.spec.ts b/integration-tests/__tests__/rpc/nodes.spec.ts index 71a54bcdee..5c0fecd652 100644 --- a/integration-tests/__tests__/rpc/nodes.spec.ts +++ b/integration-tests/__tests__/rpc/nodes.spec.ts @@ -19,8 +19,8 @@ CONFIGS().forEach( knownViewContract, }) => { const Tezos = lib; - const unrestrictedRPCNode = rpc.endsWith("ecadinfra.com") ? test.skip : test; - const betanet = protocol === Protocols.PtBetaaEZ ? test : test.skip; + const unrestrictedRPCNode = rpc.includes("i.ecadinfra.com") ? test : test.skip; + const quebecbnet = protocol === Protocols.PsQuebecB ? test : test.skip; let ticketContract: DefaultContractType; beforeAll(async () => { @@ -66,7 +66,7 @@ CONFIGS().forEach( expect(balance).toBeDefined(); }); - betanet(`Verify that rpcClient.getSpendable for knownBaker returns the spendable balance excluding frozen bonds`, async () => { + quebecbnet(`Verify that rpcClient.getSpendable for knownBaker returns the spendable balance excluding frozen bonds`, async () => { const balance = await rpcClient.getSpendable(knownBaker); expect(balance).toBeDefined(); }); @@ -76,7 +76,7 @@ CONFIGS().forEach( expect(balance).toBeDefined(); }); - betanet(`Verify that rpcClient.getSpendableAndFrozenBonds for knownBaker returns the full balance`, async () => { + quebecbnet(`Verify that rpcClient.getSpendableAndFrozenBonds for knownBaker returns the full balance`, async () => { const balance = await rpcClient.getSpendableAndFrozenBonds(knownBaker); expect(balance).toBeDefined(); }); @@ -165,7 +165,7 @@ CONFIGS().forEach( expect(bigMapValue).toBeDefined(); }); - it(`Verify that rpcClient.getAllDelegates returns all delegates from RPC`, async () => { + unrestrictedRPCNode(`Verify that rpcClient.getAllDelegates returns all delegates from RPC`, async () => { const allDelegates = await rpcClient.getAllDelegates(); expect(allDelegates).toBeDefined(); diff --git a/integration-tests/__tests__/wallet/failing-noop.spec.ts b/integration-tests/__tests__/wallet/failing-noop.spec.ts index 8af97e8216..19d7eba483 100644 --- a/integration-tests/__tests__/wallet/failing-noop.spec.ts +++ b/integration-tests/__tests__/wallet/failing-noop.spec.ts @@ -7,7 +7,7 @@ CONFIGS().forEach(({ setup, rpc, lib }) => { let signerAlice = new InMemorySigner('edsk3QoqBuvdamxouPhin7swCvkQNgq4jP5KZPbwWNnwdZpSpJiEbq') describe(`Test failing_noop through wallet api using: ${rpc}`, () => { - let Tezos = lib + const Tezos = lib beforeAll(async () => { setup(true) if (rpc.includes('paris')) { diff --git a/integration-tests/__tests__/wallet/staking-pseudo-operations.spec.ts b/integration-tests/__tests__/wallet/staking-pseudo-operations.spec.ts index 471b7ebd92..a9fd70fc20 100644 --- a/integration-tests/__tests__/wallet/staking-pseudo-operations.spec.ts +++ b/integration-tests/__tests__/wallet/staking-pseudo-operations.spec.ts @@ -7,7 +7,7 @@ CONFIGS().forEach(({ lib, rpc, setup, knownBaker }) => { beforeAll(async () => { await setup(true); try { - // There is no baker accept staking in betanet and weeklylnet hence tests will fail + // There is no baker accept staking in quebecbnet and weeklylnet hence tests will fail // Currently TF is a baker that allows staking on parisnet. if (rpc.includes('paris')) { knownBaker = 'tz3Q67aMz7gSMiQRcW729sXSfuMtkyAHYfqc' // TF diff --git a/integration-tests/config.ts b/integration-tests/config.ts index d3543694a1..ada675aa72 100644 --- a/integration-tests/config.ts +++ b/integration-tests/config.ts @@ -8,7 +8,7 @@ import { KnownContracts } from './known-contracts'; import { knownContractsProtoALph } from './known-contracts-ProtoALph'; import { knownContractsPtGhostnet } from './known-contracts-PtGhostnet'; import { knownContractsPsParisCZ } from './known-contracts-PsParisCZ'; -import { knownContractsPtBetaaEZ } from './known-contracts-PtBetaaEZ'; +import { knownContractsPsQuebecB } from './known-contracts-PsQuebecB'; const nodeCrypto = require('crypto'); @@ -139,16 +139,19 @@ const parisnetEphemeral: Config = }); const parisnetSecretKey: Config = - { ...parisnetEphemeral, ...{ signerConfig: defaultSecretKey }, ...{ defaultRpc: 'https://rpc.pariscnet.teztnets.com/' } }; + { ...parisnetEphemeral, ...{ signerConfig: defaultSecretKey } }; -const betanetSecretKey: Config = + const quebecbnetEphemeral: Config = defaultConfig({ - networkName: 'BETANET', - protocol: Protocols.PtBetaaEZ, - defaultRpc: 'https://rpc.betanet-2024-08-29.teztnets.com', - knownContracts: knownContractsPtBetaaEZ, - signerConfig: defaultSecretKey - }) + networkName: 'QUEBECBNET', + protocol: Protocols.PsQuebecB, + defaultRpc: 'https://rpc.quebecbnet.teztnets.com/', + knownContracts: knownContractsPsQuebecB, + signerConfig: defaultEphemeralConfig('https://keygen.ecadinfra.com/quebecbnet') + }); + +const quebecbnetSecretKey: Config = + { ...quebecbnetEphemeral, ...{ signerConfig: defaultSecretKey }, ...{ defaultRpc: 'https://quebecbnet.ecadinfra.com/' } }; const ghostnetEphemeral: Config = defaultConfig({ @@ -160,7 +163,7 @@ const ghostnetEphemeral: Config = }); const ghostnetSecretKey: Config = - { ...ghostnetEphemeral, ...{ signerConfig: defaultSecretKey }, ...{ defaultRpc: 'http://ecad-tezos-ghostnet-rolling-1.i.ecadinfra.com/' } }; + { ...ghostnetEphemeral, ...{ signerConfig: defaultSecretKey }, ...{ defaultRpc: 'https://ghostnet.ecadinfra.com/' } }; const weeklynetEphemeral: Config = defaultConfig({ @@ -182,12 +185,14 @@ if (process.env['RUN_WITH_SECRET_KEY']) { providers.push(parisnetSecretKey); } else if (process.env['RUN_GHOSTNET_WITH_SECRET_KEY']) { providers.push(ghostnetSecretKey); -} else if (process.env['RUN_BETANET_WITH_SECRET_KEY']) { - providers.push(betanetSecretKey); +} else if (process.env['RUN_QUEBECBNET_WITH_SECRET_KEY']) { + providers.push(quebecbnetSecretKey); } else if (process.env['RUN_WEEKLYNET_WITH_SECRET_KEY']) { providers.push(weeklynetSecretKey); } else if (process.env['PARISNET']) { providers.push(parisnetEphemeral); +} else if (process.env['QUEBECBNET']) { + providers.push(quebecbnetEphemeral); } else if (process.env['GHOSTNET']) { providers.push(ghostnetEphemeral); } else if (process.env['WEEKLYNET']) { diff --git a/integration-tests/known-contracts-PsQuebecB.ts b/integration-tests/known-contracts-PsQuebecB.ts new file mode 100644 index 0000000000..2cd1109fba --- /dev/null +++ b/integration-tests/known-contracts-PsQuebecB.ts @@ -0,0 +1,8 @@ +import { KnownContracts } from './known-contracts'; +export const knownContractsPsQuebecB: KnownContracts = { + contract: "KT1KAK4KbpyzfPBhy4g46iCdB4eAFZwPKyaH", + bigMapContract: "KT1AHDjPEfoiyCvQBPXZEkoXR26h8J6LsiU2", + tzip12BigMapOffChainContract: "KT1SGSDiRRu5qHSKFVpDBBXDBxKUxdRnzbRQ", + saplingContract: "KT1PF3ePtD7Q45SaDVFdfYtqybbURqBd1wgz", + onChainViewContractAddress: "KT1LKW5sryVUqEygK2n59RzPHHJSJofBVzzm", +}; diff --git a/integration-tests/known-contracts-PtBetaaEZ.ts b/integration-tests/known-contracts-PtBetaaEZ.ts deleted file mode 100644 index 217490e7eb..0000000000 --- a/integration-tests/known-contracts-PtBetaaEZ.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { KnownContracts } from './known-contracts'; -export const knownContractsPtBetaaEZ: KnownContracts = { - contract: "KT1XKPeFgUEn2kt4Wg8cEL8DfopiHQQaPpBj", - bigMapContract: "KT1LBaTaYaKUQwDDhud7EG2CYvZjxwQghn81", - tzip12BigMapOffChainContract: "KT1GLrL9dVQQSi6bPv8pePKwcHYjcj8mMTa7", - saplingContract: "KT1ErqDowX2QE29KSp73dsg75oeXBu3fe9qD", - onChainViewContractAddress: "KT1QmK4ffXJRTvRj9ciAjBhFjX1uPSU97kEu", -}; diff --git a/integration-tests/package.json b/integration-tests/package.json index ff88320deb..8b9a555365 100644 --- a/integration-tests/package.json +++ b/integration-tests/package.json @@ -5,7 +5,8 @@ "test:secret-key": "RUN_WITH_SECRET_KEY=true jest --runInBand", "test:parisnet": "PARISNET=true jest", "test:parisnet-secret-key": "RUN_PARISNET_WITH_SECRET_KEY=true jest --runInBand", - "test:betanet-secret-key": "RUN_BETANET_WITH_SECRET_KEY=true jest --runInBand", + "test:quebecbnet": "QUEBECBNET=true jest", + "test:quebecbnet-secret-key": "RUN_QUEBECBNET_WITH_SECRET_KEY=true jest --runInBand", "test:weeklynet": "WEEKLYNET=true jest", "test:weeklynet-secret-key": "RUN_WEEKLYNET_WITH_SECRET_KEY=true jest --runInBand", "test:ghostnet": "GHOSTNET=true jest", @@ -13,26 +14,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.0.1", + "version": "21.0.0-beta.0", "dependencies": { "@ledgerhq/devices": "8.4.2", "@ledgerhq/hw-transport": "6.31.2", "@ledgerhq/hw-transport-node-hid": "6.29.3", "@ledgerhq/hw-transport-node-hid-noevents": "6.30.3", - "@taquito/contracts-library": "^20.0.1", - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/remote-signer": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/sapling": "^20.0.1", - "@taquito/signer": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip12": "^20.0.1", - "@taquito/tzip16": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/contracts-library": "^21.0.0-beta.0", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/remote-signer": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/sapling": "^21.0.0-beta.0", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip12": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1" diff --git a/lerna.json b/lerna.json index aace12516a..d0a55a1203 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { "useNx": true, - "version": "20.0.1" -} + "version": "21.0.0-beta.0" +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 524f553b1a..8d930a9b62 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,14 +56,14 @@ }, "apps/taquito-test-dapp": { "name": "taquito-test-dapp-vite", - "version": "20.0.1", + "version": "21.0.0-beta.0", "dependencies": { "@airgap/beacon-sdk": "^4.2.2", "@airgap/beacon-types": "^4.2.2", - "@taquito/beacon-wallet": "^20.0.1", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/beacon-wallet": "^21.0.0-beta.0", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "buffer": "^6.0.3", "svelte-select": "^5.8.3", "vite-compatible-readable-stream": "^3.6.1" @@ -109,19 +109,19 @@ }, "example": { "name": "@taquito/example", - "version": "20.0.1", + "version": "21.0.0-beta.0", "dependencies": { "@ledgerhq/hw-transport-node-hid": "^6.29.3", - "@taquito/ledger-signer": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/sapling": "^20.0.1", - "@taquito/signer": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip16": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/ledger-signer": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/sapling": "^21.0.0-beta.0", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -130,26 +130,26 @@ } }, "integration-tests": { - "version": "20.0.1", + "version": "21.0.0-beta.0", "dependencies": { "@ledgerhq/devices": "8.4.2", "@ledgerhq/hw-transport": "6.31.2", "@ledgerhq/hw-transport-node-hid": "6.29.3", "@ledgerhq/hw-transport-node-hid-noevents": "6.30.3", - "@taquito/contracts-library": "^20.0.1", - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/remote-signer": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/sapling": "^20.0.1", - "@taquito/signer": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip12": "^20.0.1", - "@taquito/tzip16": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/contracts-library": "^21.0.0-beta.0", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/remote-signer": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/sapling": "^21.0.0-beta.0", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip12": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1" @@ -26462,11 +26462,10 @@ } }, "node_modules/vite": { - "version": "5.3.5", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.5.tgz", - "integrity": "sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==", + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.6.tgz", + "integrity": "sha512-es78AlrylO8mTVBygC0gTC0FENv0C6T496vvd33ydbjF/mIi9q3XQ9A3NWo5qLGFKywvz10J26813OkLvcQleA==", "dev": true, - "license": "MIT", "dependencies": { "esbuild": "^0.21.3", "postcss": "^8.4.39", @@ -27356,17 +27355,17 @@ }, "packages/taquito": { "name": "@taquito/taquito", - "version": "20.0.1", + "version": "21.0.0-beta.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "rxjs": "^7.8.1" }, @@ -27414,12 +27413,12 @@ }, "packages/taquito-beacon-wallet": { "name": "@taquito/beacon-wallet", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@airgap/beacon-dapp": "^4.2.2", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -27470,13 +27469,13 @@ }, "packages/taquito-contracts-library": { "name": "@taquito/contracts-library", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -27513,7 +27512,7 @@ }, "packages/taquito-core": { "name": "@taquito/core", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "json-stringify-safe": "^5.0.1" @@ -27529,10 +27528,10 @@ }, "packages/taquito-http-utils": { "name": "@taquito/http-utils", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", "node-fetch": "^2.7.0" }, "devDependencies": { @@ -27590,14 +27589,14 @@ }, "packages/taquito-ledger-signer": { "name": "@taquito/ledger-signer", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@ledgerhq/hw-transport": "^6.31.2", "@stablelib/blake2b": "^1.0.1", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "buffer": "^6.0.3" }, "devDependencies": { @@ -27658,15 +27657,15 @@ }, "packages/taquito-local-forging": { "name": "@taquito/local-forging", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { - "@taquito/rpc": "^20.0.1", + "@taquito/rpc": "^21.0.0-beta.0", "@types/bluebird": "^3.5.42", "@types/estree": "^1.0.5", "@types/jest": "^29.5.12", @@ -27704,10 +27703,10 @@ }, "packages/taquito-michel-codec": { "name": "@taquito/michel-codec", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -27736,21 +27735,21 @@ } }, "packages/taquito-michel-codec/pack-test-tool": { - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/rpc": "^20.0.1", + "@taquito/rpc": "^21.0.0-beta.0", "yargs": "^17.7.2" } }, "packages/taquito-michelson-encoder": { "name": "@taquito/michelson-encoder", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "fast-json-stable-stringify": "^2.1.0" }, @@ -27787,15 +27786,15 @@ }, "packages/taquito-remote-signer": { "name": "@taquito/remote-signer", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "typedarray-to-buffer": "^4.0.0" }, "devDependencies": { @@ -27832,12 +27831,12 @@ }, "packages/taquito-rpc": { "name": "@taquito/rpc", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { @@ -27873,17 +27872,17 @@ }, "packages/taquito-sapling": { "name": "@taquito/sapling", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "bip39": "3.1.0", "blakejs": "^1.2.1", @@ -27944,7 +27943,7 @@ }, "packages/taquito-signer": { "name": "@taquito/signer", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", @@ -27953,9 +27952,9 @@ "@stablelib/nacl": "^1.0.4", "@stablelib/pbkdf2": "^1.0.1", "@stablelib/sha512": "^1.0.1", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "@types/bn.js": "^5.1.5", "bip39": "3.1.0", "elliptic": "^6.5.7", @@ -27998,7 +27997,7 @@ }, "packages/taquito-timelock": { "name": "@taquito/timelock", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", @@ -28006,9 +28005,9 @@ "big-integer": "^1.6.52" }, "devDependencies": { - "@taquito/signer": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", @@ -28039,13 +28038,13 @@ }, "packages/taquito-tzip12": { "name": "@taquito/tzip12", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip16": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0" }, "devDependencies": { "@types/bluebird": "^3.5.42", @@ -28081,15 +28080,15 @@ }, "packages/taquito-tzip16": { "name": "@taquito/tzip16", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "crypto-js": "^4.2.0" }, @@ -28128,12 +28127,12 @@ }, "packages/taquito-utils": { "name": "@taquito/utils", - "version": "20.0.1", + "version": "21.0.0-beta.0", "license": "Apache-2.0", "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", "@types/bs58check": "^2.1.2", "bignumber.js": "^9.1.2", "blakejs": "^1.2.1", diff --git a/packages/taquito-beacon-wallet/package.json b/packages/taquito-beacon-wallet/package.json index 8513301d84..658855dbb7 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.0.1", + "version": "21.0.0-beta.0", "description": "Beacon wallet provider", "keywords": [ "tezos", @@ -68,8 +68,8 @@ }, "dependencies": { "@airgap/beacon-dapp": "^4.2.2", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0" }, "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-beacon-wallet/src/version.ts +++ b/packages/taquito-beacon-wallet/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-contracts-library/package.json b/packages/taquito-contracts-library/package.json index 2e43471fa2..35fa517ee8 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.0.1", + "version": "21.0.0-beta.0", "description": "Can be used as an extension on the TezosToolkit to provide contracts data", "keywords": [ "tezos" @@ -67,10 +67,10 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-contracts-library/src/version.ts +++ b/packages/taquito-contracts-library/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-core/package.json b/packages/taquito-core/package.json index f90b09f0f7..fddce8ed9a 100644 --- a/packages/taquito-core/package.json +++ b/packages/taquito-core/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/core", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-core/src/version.ts +++ b/packages/taquito-core/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-http-utils/package.json b/packages/taquito-http-utils/package.json index a8fe0d1c84..6549e26515 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.0.1", + "version": "21.0.0-beta.0", "description": "", "keywords": [ "tezos" @@ -58,7 +58,7 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-http-utils/src/version.ts +++ b/packages/taquito-http-utils/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-ledger-signer/package.json b/packages/taquito-ledger-signer/package.json index 4252709ac8..2a93d28715 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.0.1", + "version": "21.0.0-beta.0", "description": "Ledger signer provider", "keywords": [ "tezos", @@ -59,9 +59,9 @@ "dependencies": { "@ledgerhq/hw-transport": "^6.31.2", "@stablelib/blake2b": "^1.0.1", - "@taquito/core": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "buffer": "^6.0.3" }, "devDependencies": { diff --git a/packages/taquito-ledger-signer/src/version.ts b/packages/taquito-ledger-signer/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-ledger-signer/src/version.ts +++ b/packages/taquito-ledger-signer/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-local-forging/package.json b/packages/taquito-local-forging/package.json index 44400be643..d648a01741 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.0.1", + "version": "21.0.0-beta.0", "description": "Provide local forging functionality to be with taquito", "keywords": [ "tezos", @@ -67,12 +67,12 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { - "@taquito/rpc": "^20.0.1", + "@taquito/rpc": "^21.0.0-beta.0", "@types/bluebird": "^3.5.42", "@types/estree": "^1.0.5", "@types/jest": "^29.5.12", diff --git a/packages/taquito-local-forging/src/protocols.ts b/packages/taquito-local-forging/src/protocols.ts index b8243be065..adeb2b88da 100644 --- a/packages/taquito-local-forging/src/protocols.ts +++ b/packages/taquito-local-forging/src/protocols.ts @@ -18,7 +18,7 @@ export enum ProtocolsHash { ProxfordY = 'ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH', PtParisBx = 'PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ', PsParisCZ = 'PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi', - PtBetaaEZ = 'PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT', + PsQuebecB = 'PsQuebecBo3zZmhQT7KdEQ2RRDtncE6gQFRPgwkKEyC1ea995G1', ProtoALpha = 'ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK', } @@ -42,7 +42,7 @@ const protoLevel: Record = { ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH: 19, PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ: 20, PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi: 20, - PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT: 21, + PsQuebecBo3zZmhQT7KdEQ2RRDtncE6gQFRPgwkKEyC1ea995G1: 21, ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK: 22, }; diff --git a/packages/taquito-local-forging/src/version.ts b/packages/taquito-local-forging/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-local-forging/src/version.ts +++ b/packages/taquito-local-forging/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-michel-codec/pack-test-tool/package.json b/packages/taquito-michel-codec/pack-test-tool/package.json index 9d0dc361b3..78b592594c 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.0.1", + "version": "21.0.0-beta.0", "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.0.1", + "@taquito/rpc": "^21.0.0-beta.0", "yargs": "^17.7.2" } } diff --git a/packages/taquito-michel-codec/package.json b/packages/taquito-michel-codec/package.json index 51681c8402..c5b2e59031 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.0.1", + "version": "21.0.0-beta.0", "description": "Michelson parser/validator/formatter", "keywords": [ "tezos", @@ -66,7 +66,7 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0" }, "devDependencies": { "@types/bluebird": "^3.5.42", diff --git a/packages/taquito-michel-codec/src/michelson-types.ts b/packages/taquito-michel-codec/src/michelson-types.ts index c436fb92a8..e5dbe43dee 100644 --- a/packages/taquito-michel-codec/src/michelson-types.ts +++ b/packages/taquito-michel-codec/src/michelson-types.ts @@ -406,7 +406,7 @@ export enum Protocol { ProxfordY = 'ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH', PtParisBx = 'PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ', PsParisCZ = 'PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi', - PtBetaaEZ = 'PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT', + PsQuebecB = 'PsQuebecBo3zZmhQT7KdEQ2RRDtncE6gQFRPgwkKEyC1ea995G1', ProtoALpha = 'ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK', // temporary protocol hash } @@ -442,7 +442,7 @@ const protoLevel: Record = { ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH: 19, PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ: 20, PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi: 20, - PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT: 21, + PsQuebecBo3zZmhQT7KdEQ2RRDtncE6gQFRPgwkKEyC1ea995G1: 21, ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK: 22, }; diff --git a/packages/taquito-michel-codec/src/version.ts b/packages/taquito-michel-codec/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-michel-codec/src/version.ts +++ b/packages/taquito-michel-codec/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-michelson-encoder/package.json b/packages/taquito-michelson-encoder/package.json index a2631285c9..4d40c9b73b 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.0.1", + "version": "21.0.0-beta.0", "description": "converts michelson data and types into convenient JS/TS objects", "keywords": [ "tezos", @@ -67,9 +67,9 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-michelson-encoder/src/version.ts +++ b/packages/taquito-michelson-encoder/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-remote-signer/package.json b/packages/taquito-remote-signer/package.json index 6dc36a6e6c..19cc072aae 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.0.1", + "version": "21.0.0-beta.0", "description": "Remote signer provider", "keywords": [ "tezos", @@ -62,10 +62,10 @@ "dependencies": { "@stablelib/blake2b": "^1.0.1", "@stablelib/ed25519": "^1.0.3", - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-remote-signer/src/version.ts +++ b/packages/taquito-remote-signer/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-rpc/package.json b/packages/taquito-rpc/package.json index ca610b7175..dff390de9b 100644 --- a/packages/taquito-rpc/package.json +++ b/packages/taquito-rpc/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/rpc", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2" }, "devDependencies": { diff --git a/packages/taquito-rpc/src/version.ts b/packages/taquito-rpc/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-rpc/src/version.ts +++ b/packages/taquito-rpc/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-sapling/package.json b/packages/taquito-sapling/package.json index 42968fe031..59313a401e 100644 --- a/packages/taquito-sapling/package.json +++ b/packages/taquito-sapling/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/sapling", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-sapling/src/version.ts +++ b/packages/taquito-sapling/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-signer/package.json b/packages/taquito-signer/package.json index 36eedf519e..595fb13edd 100644 --- a/packages/taquito-signer/package.json +++ b/packages/taquito-signer/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/signer", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "@types/bn.js": "^5.1.5", "bip39": "3.1.0", "elliptic": "^6.5.7", diff --git a/packages/taquito-signer/src/version.ts b/packages/taquito-signer/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-signer/src/version.ts +++ b/packages/taquito-signer/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-timelock/package.json b/packages/taquito-timelock/package.json index e2f43208b9..40738f4559 100644 --- a/packages/taquito-timelock/package.json +++ b/packages/taquito-timelock/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/timelock", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/signer": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "@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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-timelock/src/version.ts +++ b/packages/taquito-timelock/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-tzip12/package.json b/packages/taquito-tzip12/package.json index 16184f9071..3e9ac690d5 100644 --- a/packages/taquito-tzip12/package.json +++ b/packages/taquito-tzip12/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/tzip12", - "version": "20.0.1", + "version": "21.0.0-beta.0", "description": "Tzip12", "keywords": [ "tezos", @@ -62,10 +62,10 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/tzip16": "^20.0.1" + "@taquito/core": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/tzip16": "^21.0.0-beta.0" }, "devDependencies": { "@types/bluebird": "^3.5.42", diff --git a/packages/taquito-tzip12/src/version.ts b/packages/taquito-tzip12/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-tzip12/src/version.ts +++ b/packages/taquito-tzip12/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-tzip16/package.json b/packages/taquito-tzip16/package.json index 1e627cc56f..591c0d7885 100644 --- a/packages/taquito-tzip16/package.json +++ b/packages/taquito-tzip16/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/tzip16", - "version": "20.0.1", + "version": "21.0.0-beta.0", "description": "Tzip16", "keywords": [ "tezos", @@ -61,12 +61,12 @@ ] }, "dependencies": { - "@taquito/core": "^20.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/taquito": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/taquito": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-tzip16/src/version.ts +++ b/packages/taquito-tzip16/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito-utils/package.json b/packages/taquito-utils/package.json index 40cf8165d4..217fd24684 100644 --- a/packages/taquito-utils/package.json +++ b/packages/taquito-utils/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/utils", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", + "@taquito/core": "^21.0.0-beta.0", "@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 be2f0cca3b..6c96f76600 100644 --- a/packages/taquito-utils/src/version.ts +++ b/packages/taquito-utils/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/packages/taquito/README.md b/packages/taquito/README.md index b14d500f28..9267f30b1d 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 3ebf8ed077..2c12490aea 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-KcAHd9YiZt4U4KnpGSrP6x4OYO/dUTSpRgSeY2XBBBc= sha384-PsHEjYg0mY0R8Kvc11Q+J81S1FMGTZMIWHe14o5H4KF+T+2LxECi3wFZ9cB5BH8Z sha512-2+HALs6t2yRTYxBj8QWl9Bn4lp4HrpNYXKwsHax5ULdmQ2gryQpIRFQnqRng4aa1x1fTSnJtrG32V7HMSYQeSg==" + "integrity": "sha256-cSRaS+BP171juh9hzB/eJJFHok+dfDX6qK8p4CVlPlI= sha384-zMOZ+smFEBKJ+KZu9FzCUgQ1H3kez2meJ3tLLQYtEWUH7yO6CkU4ltpCSeEzX7t6 sha512-PyCmQfEld9ydQFUQo36WvMKwM2bjOYrq7LK9p0NX3x/aYX49t/Kye31Fa2U+vvsILE7FslMkfKlznFqTvM3vcg==" } } \ No newline at end of file diff --git a/packages/taquito/package.json b/packages/taquito/package.json index ae51f52a4e..4bbd918f23 100644 --- a/packages/taquito/package.json +++ b/packages/taquito/package.json @@ -1,6 +1,6 @@ { "name": "@taquito/taquito", - "version": "20.0.1", + "version": "21.0.0-beta.0", "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.0.1", - "@taquito/http-utils": "^20.0.1", - "@taquito/local-forging": "^20.0.1", - "@taquito/michel-codec": "^20.0.1", - "@taquito/michelson-encoder": "^20.0.1", - "@taquito/rpc": "^20.0.1", - "@taquito/utils": "^20.0.1", + "@taquito/core": "^21.0.0-beta.0", + "@taquito/http-utils": "^21.0.0-beta.0", + "@taquito/local-forging": "^21.0.0-beta.0", + "@taquito/michel-codec": "^21.0.0-beta.0", + "@taquito/michelson-encoder": "^21.0.0-beta.0", + "@taquito/rpc": "^21.0.0-beta.0", + "@taquito/utils": "^21.0.0-beta.0", "bignumber.js": "^9.1.2", "rxjs": "^7.8.1" }, diff --git a/packages/taquito/src/constants.ts b/packages/taquito/src/constants.ts index 57a79517af..b339b8c5c1 100644 --- a/packages/taquito/src/constants.ts +++ b/packages/taquito/src/constants.ts @@ -70,7 +70,7 @@ export enum Protocols { ProxfordY = 'ProxfordYmVfjWnRcgjWH36fW6PArwqykTFzotUxRs6gmTcZDuH', PtParisBx = 'PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ', PsParisCZ = 'PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi', - PtBetaaEZ = 'PtBetaaEZxGcn9JDpkpAZ6E92Kh7bQb5FDoTCeYhmkfcwNehZcT', + PsQuebecB = 'PsQuebecBo3zZmhQT7KdEQ2RRDtncE6gQFRPgwkKEyC1ea995G1', ProtoALpha = 'ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK', } @@ -91,7 +91,7 @@ export const protocols = { '017': [Protocols.PtNairobi], '019': [Protocols.ProxfordY], '020': [Protocols.PtParisBx, Protocols.PsParisCZ], - '021': [Protocols.PtBetaaEZ], + '021': [Protocols.PsQuebecB], '022': [Protocols.ProtoALpha], }; @@ -114,7 +114,7 @@ export enum ChainIds { OXFORDNET2 = 'NetXxWsskGahzQB', PARISBNET = 'NetXo8SqH1c38SS', PARISCNET = 'NetXXWAHLEvre9b', - BETANET = 'NetXsTfFgyGbHTz', + QUEBECBNET = 'NetXamR3dD5nwmS', } // A fixed fee reveal operation gasLimit accepted by both simulate and injection endpoint is between 1.2-5 times of actual gas consumption (3.5 fails occasionally with gas exhausted; 4 fails occasionally with fee too low) diff --git a/packages/taquito/src/operations/index.ts b/packages/taquito/src/operations/index.ts index 51f6101893..18d35f800c 100644 --- a/packages/taquito/src/operations/index.ts +++ b/packages/taquito/src/operations/index.ts @@ -31,6 +31,8 @@ export { RPCSmartRollupAddMessagesOperation, SmartRollupOriginateParams, RPCSmartRollupOriginateOperation, + SmartRollupExecuteOutboxMessageParams, + RPCSmartRollupOutboxMessageOperation, ActivationParams, RPCActivateOperation, BallotParams, diff --git a/packages/taquito/src/version.ts b/packages/taquito/src/version.ts index be2f0cca3b..6c96f76600 100644 --- a/packages/taquito/src/version.ts +++ b/packages/taquito/src/version.ts @@ -1,5 +1,6 @@ + // IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN! export const VERSION = { - commitHash: 'd44ee8a26e6924e12a8cae2f9c5b717fc65af72c', - version: '20.0.1', + "commitHash": "bbfe9f5a28ecf81757bf3895aaba6d2aeaa656cb", + "version": "21.0.0-beta.0" }; diff --git a/website/package-lock.json b/website/package-lock.json index 9b7766522e..4bbf7a11a6 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -44,7 +44,7 @@ "docusaurus-plugin-sass": "^0.2.5", "dotenv": "^16.3.2", "file-loader": "^6.2.0", - "firebase": "^10.11.1", + "firebase": "^10.13.0", "html-react-parser": "^3.0.16", "lerna": "^7.4.2", "lottie-web": "^5.12.2", @@ -121,7 +121,7 @@ "webpack-subresource-integrity": "^5.1.0" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-beacon-wallet": { @@ -166,7 +166,7 @@ "webpack-cli": "^5.1.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-core": { @@ -182,7 +182,7 @@ "rollup-plugin-typescript2": "^0.36.0" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-http-utils": { @@ -223,7 +223,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-ledger-signer": { @@ -267,13 +267,13 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-michel-codec": { "name": "@taquito/michel-codec", "version": "20.0.1", - "license": "MIT", + "license": "Apache-2.0", "dependencies": { "@taquito/core": "^20.0.1" }, @@ -300,7 +300,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-michelson-encoder": { @@ -342,7 +342,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-remote-signer": { @@ -387,7 +387,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-rpc": { @@ -428,7 +428,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-signer": { @@ -482,7 +482,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-tzip12": { @@ -524,7 +524,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-tzip16": { @@ -571,7 +571,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "../packages/taquito-utils": { @@ -619,7 +619,7 @@ "typescript": "~5.5.4" }, "engines": { - "node": ">=18" + "node": ">=20" } }, "node_modules/@algolia/autocomplete-core": { @@ -4292,16 +4292,15 @@ } }, "node_modules/@firebase/analytics": { - "version": "0.10.6", - "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.10.6.tgz", - "integrity": "sha512-sB59EwcAvLt0fINGfMWmcRKcdUiYhE4AJNdDXSCSDo4D/ZXFRmb6qwX9YesKHXFB59XTLT03mAjqQcDrdym9qA==", + "version": "0.10.7", + "resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.10.7.tgz", + "integrity": "sha512-GE29uTT6y/Jv2EP0OjpTezeTQZ5FTCTaZXKrrdVGjb/t35AU4u/jiU+hUwUPpuK8fqhhiHkS/AawE3a3ZK/a9Q==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", "@firebase/installations": "0.6.8", "@firebase/logger": "0.4.2", "@firebase/util": "1.9.7", - "safevalues": "0.6.0", "tslib": "^2.1.0" }, "peerDependencies": { @@ -4309,12 +4308,12 @@ } }, "node_modules/@firebase/analytics-compat": { - "version": "0.2.12", - "resolved": "https://registry.npmjs.org/@firebase/analytics-compat/-/analytics-compat-0.2.12.tgz", - "integrity": "sha512-rXWnOAdEHbvBPLNjFLu3U0yDZVIAi+C0DL+RkUEOirfSqAeQaKzBCATeBw6+K7FVpEnknhm4tZrvVUVtJjShMw==", + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/@firebase/analytics-compat/-/analytics-compat-0.2.13.tgz", + "integrity": "sha512-aZ4wGfNDMsCxhKzDbK2g1aV0JKsdQ9FbeIsjpNJPzhahV0XYj+z36Y4RNLPpG/6hHU4gxnezxs+yn3HhHkNL8w==", "license": "Apache-2.0", "dependencies": { - "@firebase/analytics": "0.10.6", + "@firebase/analytics": "0.10.7", "@firebase/analytics-types": "0.8.2", "@firebase/component": "0.6.8", "@firebase/util": "1.9.7", @@ -4331,9 +4330,9 @@ "license": "Apache-2.0" }, "node_modules/@firebase/app": { - "version": "0.10.7", - "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.10.7.tgz", - "integrity": "sha512-7OCd53B+wnk/onbMLn/vM10pDjw97zzWUD8m3swtLYKJIrL+gDZ7HZ4xcbBLw7OB8ikzu8k1ORNjRe2itgAy4g==", + "version": "0.10.9", + "resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.10.9.tgz", + "integrity": "sha512-AmGlPg/4SoDhwCdvVDeZsN5Yn+czYD/m/NAEOOCOhwn3Cz1xmEFKAKcyZKKahLrh5QPmge5Adyw+sk3cBTubBg==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", @@ -4344,15 +4343,14 @@ } }, "node_modules/@firebase/app-check": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.8.6.tgz", - "integrity": "sha512-uSzl0/SDw54hwuORWHDtldb9kK/QEVZOcoPn2mlIjMrJOLDug/6kcqnIN3IHzwmPyf23Epg0AGBktvG2FugW4w==", + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/@firebase/app-check/-/app-check-0.8.7.tgz", + "integrity": "sha512-EkOeJcMKVR0zZ6z/jqcFTqHb/xq+TVIRIuBNGHdpcIuFU1czhSlegvqv2+nC+nFrkD8M6Xvd3tAlUOkdbMeS6A==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", "@firebase/logger": "0.4.2", "@firebase/util": "1.9.7", - "safevalues": "0.6.0", "tslib": "^2.1.0" }, "peerDependencies": { @@ -4360,12 +4358,12 @@ } }, "node_modules/@firebase/app-check-compat": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@firebase/app-check-compat/-/app-check-compat-0.3.13.tgz", - "integrity": "sha512-1sbS5Apq7dLys1KYdNQsmZLFIjJoFP9Mv4bzIcdXuTkWQjr3X2qAvwiTslC6prVAUMiTV0eM9eicdQIXVsiSRw==", + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/@firebase/app-check-compat/-/app-check-compat-0.3.14.tgz", + "integrity": "sha512-kK3bPfojAfXE53W+20rxMqIxrloFswXG9vh4kEdYL6Wa2IB3sD5++2dPiK3yGxl8oQiqS8qL2wcKB5/xLpEVEg==", "license": "Apache-2.0", "dependencies": { - "@firebase/app-check": "0.8.6", + "@firebase/app-check": "0.8.7", "@firebase/app-check-types": "0.5.2", "@firebase/component": "0.6.8", "@firebase/logger": "0.4.2", @@ -4389,12 +4387,12 @@ "license": "Apache-2.0" }, "node_modules/@firebase/app-compat": { - "version": "0.2.37", - "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.2.37.tgz", - "integrity": "sha512-yiQLYT9LYQHuJGu/msuBLFtdWWTJ3Pz04E9gSeWykSB+8s0XXJJqfqQlghH7CcQ3KnJZR+Wuc3zSMcY3a+dn6Q==", + "version": "0.2.39", + "resolved": "https://registry.npmjs.org/@firebase/app-compat/-/app-compat-0.2.39.tgz", + "integrity": "sha512-NnTFywe+M/jxZn751NIEhidgDePiDvlcfabvGxBy4YbU1E+b0TpEuJUnm3L6YDZtaZLVEz8ieoq9wbJkgGZ2rg==", "license": "Apache-2.0", "dependencies": { - "@firebase/app": "0.10.7", + "@firebase/app": "0.10.9", "@firebase/component": "0.6.8", "@firebase/logger": "0.4.2", "@firebase/util": "1.9.7", @@ -4408,12 +4406,12 @@ "license": "Apache-2.0" }, "node_modules/@firebase/auth-compat": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@firebase/auth-compat/-/auth-compat-0.5.10.tgz", - "integrity": "sha512-epDhgNIXmhl9DPuTW9Ec5NDJJKMFIdXBXiQI9O0xNHveow/ETtBCY86srzF7iCacqsd30CcpLwwXlhk8Y19Olg==", + "version": "0.5.12", + "resolved": "https://registry.npmjs.org/@firebase/auth-compat/-/auth-compat-0.5.12.tgz", + "integrity": "sha512-K47inLqjTREez85D7pP0TmRv5aQcap22cJW67poLwJoJ6BVVH0I2NOfIoMqENetCrgGS+7vXSIZaLjvHFHwS+g==", "license": "Apache-2.0", "dependencies": { - "@firebase/auth": "1.7.5", + "@firebase/auth": "1.7.7", "@firebase/auth-types": "0.12.2", "@firebase/component": "0.6.8", "@firebase/util": "1.9.7", @@ -4425,9 +4423,9 @@ } }, "node_modules/@firebase/auth-compat/node_modules/@firebase/auth": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.5.tgz", - "integrity": "sha512-DMFR1OA/f1/voeuFbSORg9AP36pMgOoSb/DRgiDalLmIJsDTlQNMCu+givjMP4s/XL85+tBk2MerYnK/AscJjw==", + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.7.tgz", + "integrity": "sha512-gMB0uRRNiIvYorEDLtIq1mc7x5D080EsoghTIph9xnbLqcQS3qRBREEC2o21nMEhviAeiGJMelRkKhAkkggjmA==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", @@ -4473,9 +4471,9 @@ } }, "node_modules/@firebase/database": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@firebase/database/-/database-1.0.6.tgz", - "integrity": "sha512-nrexUEG/fpVlHtWKkyfhTC3834kZ1WS7voNyqbBsBCqHXQOvznN5Z0L3nxBqdXSJyltNAf4ndFlQqm5gZiEczQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@firebase/database/-/database-1.0.7.tgz", + "integrity": "sha512-wjXr5AO8RPxVVg7rRCYffT7FMtBjHRfJ9KMwi19MbOf0vBf0H9YqW3WCgcnLpXI6ehiUcU3z3qgPnnU0nK6SnA==", "license": "Apache-2.0", "dependencies": { "@firebase/app-check-interop-types": "0.3.2", @@ -4488,13 +4486,13 @@ } }, "node_modules/@firebase/database-compat": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-1.0.6.tgz", - "integrity": "sha512-1OGA0sLY47mkXjhICCrUTXEYFnSSXoiXWm1SHsN62b+Lzs5aKA3aWTjTUmYIoK93kDAMPkYpulSv8jcbH4Hwew==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@firebase/database-compat/-/database-compat-1.0.7.tgz", + "integrity": "sha512-R/3B+VVzEFN5YcHmfWns3eitA8fHLTL03io+FIoMcTYkajFnrBdS3A+g/KceN9omP7FYYYGTQWF9lvbEx6eMEg==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", - "@firebase/database": "1.0.6", + "@firebase/database": "1.0.7", "@firebase/database-types": "1.0.4", "@firebase/logger": "0.4.2", "@firebase/util": "1.9.7", @@ -4512,9 +4510,9 @@ } }, "node_modules/@firebase/firestore": { - "version": "4.6.4", - "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-4.6.4.tgz", - "integrity": "sha512-vk2MoH5HxYEhiNg1l+yBXq1Fkhue/11bFg4HdlTv6BJHcTnnAj2a+/afPpatcW4MOdYA3Tv+d5nGzWbbOC1SHw==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-4.7.0.tgz", + "integrity": "sha512-wGOp84P1qa1pfpdct6lckfyowTuvIlUDHoiRcN8dFDT4WnZDh0tZW1X77SMiBUVejK8xIRLBCK3yDTejlRVrUA==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", @@ -4534,13 +4532,13 @@ } }, "node_modules/@firebase/firestore-compat": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@firebase/firestore-compat/-/firestore-compat-0.3.33.tgz", - "integrity": "sha512-i42a2l31N95CwYEB7zmfK0FS1mrO6pwOLwxavCrwu1BCFrVVVQhUheTPIda/iGguK/2Nog0RaIR1bo7QkZEz3g==", + "version": "0.3.35", + "resolved": "https://registry.npmjs.org/@firebase/firestore-compat/-/firestore-compat-0.3.35.tgz", + "integrity": "sha512-VdYQtMIrPjsgZpuBwvry6LgcS0vbUhHzpebaKm5oc9oTTvP4K7oxvR/ZJdDjIE5rBugn1SdY++uGMatcIvBkZg==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", - "@firebase/firestore": "4.6.4", + "@firebase/firestore": "4.7.0", "@firebase/firestore-types": "3.0.2", "@firebase/util": "1.9.7", "tslib": "^2.1.0" @@ -4765,9 +4763,9 @@ "license": "Apache-2.0" }, "node_modules/@firebase/storage": { - "version": "0.12.6", - "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.12.6.tgz", - "integrity": "sha512-Zgb9WuehJxzhj7pGXUvkAEaH+3HvLjD9xSZ9nepuXf5f8378xME7oGJtREr/RnepdDA5YW0XIxe0QQBNHpe1nw==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.13.0.tgz", + "integrity": "sha512-3RQaYpkR4TwPnPR1XlmDUAXiYt5QVQRGRGY1+/yNyS9ohHOCNNgbcs6a+QYvaDInbYTywrdddKYMFFXKKb1pRg==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", @@ -4780,13 +4778,13 @@ } }, "node_modules/@firebase/storage-compat": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@firebase/storage-compat/-/storage-compat-0.3.9.tgz", - "integrity": "sha512-WWgAp5bTW961oIsCc9+98m4MIVKpEqztAlIngfHfwO/x3DYoBPRl/awMRG3CAXyVxG+7B7oHC5IsnqM+vTwx2A==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@firebase/storage-compat/-/storage-compat-0.3.10.tgz", + "integrity": "sha512-KcikeV5dK1H1cXi0zEb7gJ3IZ4dKKCjpyucVK8r/Qv5eNAqeQAzPgKKhsSv67wT1N6DTxmqsNEXwMo0dcrKOEg==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", - "@firebase/storage": "0.12.6", + "@firebase/storage": "0.13.0", "@firebase/storage-types": "0.8.2", "@firebase/util": "1.9.7", "tslib": "^2.1.0" @@ -8429,10 +8427,9 @@ } }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - "license": "MIT", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", @@ -8442,7 +8439,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", + "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -8456,7 +8453,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -8465,7 +8461,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -8473,8 +8468,7 @@ "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/bonjour-service": { "version": "1.2.1", @@ -9655,7 +9649,6 @@ "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -11148,7 +11141,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -11163,7 +11155,6 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -11527,8 +11518,7 @@ "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "license": "MIT" + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/ejs": { "version": "3.1.10", @@ -11583,10 +11573,9 @@ } }, "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "license": "MIT", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "engines": { "node": ">= 0.8" } @@ -11846,7 +11835,6 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -11917,37 +11905,36 @@ "license": "Apache-2.0" }, "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - "license": "MIT", + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz", + "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.2", + "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.2.0", + "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", + "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", + "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", + "send": "0.19.0", + "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", @@ -11986,10 +11973,9 @@ "license": "MIT" }, "node_modules/express/node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "license": "MIT" + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" }, "node_modules/express/node_modules/range-parser": { "version": "1.2.1", @@ -12264,13 +12250,12 @@ } }, "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "license": "MIT", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -12285,7 +12270,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -12293,8 +12277,7 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/find-cache-dir": { "version": "3.3.2", @@ -12327,24 +12310,24 @@ } }, "node_modules/firebase": { - "version": "10.12.4", - "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.12.4.tgz", - "integrity": "sha512-SQz49NMpwG4MLTPZ9C8jBp7IyS2haTvsIvjclgu+v/jvzNtjZoxIcoF6A13EIfBHmJ5eiuVlvttxElOf7LnJew==", + "version": "10.13.0", + "resolved": "https://registry.npmjs.org/firebase/-/firebase-10.13.0.tgz", + "integrity": "sha512-a8gm8c9CYO98QuXJn7m5W5Gj7kHV8fme81/mQ9dBs+VMz9uI5HdavnMVPXCILputpZFMFpiKK+u7VVsn5lQg+w==", "license": "Apache-2.0", "dependencies": { - "@firebase/analytics": "0.10.6", - "@firebase/analytics-compat": "0.2.12", - "@firebase/app": "0.10.7", - "@firebase/app-check": "0.8.6", - "@firebase/app-check-compat": "0.3.13", - "@firebase/app-compat": "0.2.37", + "@firebase/analytics": "0.10.7", + "@firebase/analytics-compat": "0.2.13", + "@firebase/app": "0.10.9", + "@firebase/app-check": "0.8.7", + "@firebase/app-check-compat": "0.3.14", + "@firebase/app-compat": "0.2.39", "@firebase/app-types": "0.9.2", - "@firebase/auth": "1.7.5", - "@firebase/auth-compat": "0.5.10", - "@firebase/database": "1.0.6", - "@firebase/database-compat": "1.0.6", - "@firebase/firestore": "4.6.4", - "@firebase/firestore-compat": "0.3.33", + "@firebase/auth": "1.7.7", + "@firebase/auth-compat": "0.5.12", + "@firebase/database": "1.0.7", + "@firebase/database-compat": "1.0.7", + "@firebase/firestore": "4.7.0", + "@firebase/firestore-compat": "0.3.35", "@firebase/functions": "0.11.6", "@firebase/functions-compat": "0.3.12", "@firebase/installations": "0.6.8", @@ -12355,16 +12338,16 @@ "@firebase/performance-compat": "0.2.8", "@firebase/remote-config": "0.4.8", "@firebase/remote-config-compat": "0.2.8", - "@firebase/storage": "0.12.6", - "@firebase/storage-compat": "0.3.9", + "@firebase/storage": "0.13.0", + "@firebase/storage-compat": "0.3.10", "@firebase/util": "1.9.7", "@firebase/vertexai-preview": "0.0.3" } }, "node_modules/firebase/node_modules/@firebase/auth": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.5.tgz", - "integrity": "sha512-DMFR1OA/f1/voeuFbSORg9AP36pMgOoSb/DRgiDalLmIJsDTlQNMCu+givjMP4s/XL85+tBk2MerYnK/AscJjw==", + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-1.7.7.tgz", + "integrity": "sha512-gMB0uRRNiIvYorEDLtIq1mc7x5D080EsoghTIph9xnbLqcQS3qRBREEC2o21nMEhviAeiGJMelRkKhAkkggjmA==", "license": "Apache-2.0", "dependencies": { "@firebase/component": "0.6.8", @@ -12590,7 +12573,6 @@ "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -13693,7 +13675,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -15742,7 +15723,6 @@ "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -15874,10 +15854,12 @@ } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "license": "MIT" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/merge-stream": { "version": "2.0.0", @@ -15944,7 +15926,6 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "license": "MIT", "bin": { "mime": "cli.js" }, @@ -17256,7 +17237,6 @@ "version": "1.13.2", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", - "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -17301,7 +17281,6 @@ "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -19105,9 +19084,9 @@ } }, "node_modules/protobufjs": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.3.2.tgz", - "integrity": "sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==", + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.4.0.tgz", + "integrity": "sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==", "hasInstallScript": true, "license": "BSD-3-Clause", "dependencies": { @@ -19197,12 +19176,11 @@ "license": "MIT" }, "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "license": "BSD-3-Clause", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -19271,7 +19249,6 @@ "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -19286,7 +19263,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -20906,12 +20882,6 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "license": "MIT" }, - "node_modules/safevalues": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/safevalues/-/safevalues-0.6.0.tgz", - "integrity": "sha512-MZ7DcTOcIoPXN36/UONVE9BT0pmwlCr9WcS7Pj/q4FxOwr33FkWC0CUWj/THQXYWxf/F7urbhaHaOeFPSqGqHA==", - "license": "Apache-2.0" - }, "node_modules/sass": { "version": "1.77.8", "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", @@ -21079,10 +21049,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "license": "MIT", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", @@ -21106,7 +21075,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -21114,20 +21082,25 @@ "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } }, "node_modules/send/node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/send/node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "license": "MIT", "engines": { "node": ">= 0.6" } @@ -21275,15 +21248,14 @@ } }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "license": "MIT", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" @@ -21321,8 +21293,7 @@ "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "license": "ISC" + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "node_modules/shallow-clone": { "version": "3.0.1", @@ -21393,7 +21364,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", @@ -21975,7 +21945,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "license": "MIT", "engines": { "node": ">= 0.8" } @@ -22613,7 +22582,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "license": "MIT", "engines": { "node": ">=0.6" } @@ -22969,7 +22937,6 @@ "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "license": "MIT", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -23316,7 +23283,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "license": "MIT", "engines": { "node": ">= 0.8" } diff --git a/website/package.json b/website/package.json index 1ad94604c9..9018983c01 100644 --- a/website/package.json +++ b/website/package.json @@ -51,7 +51,7 @@ "docusaurus-plugin-sass": "^0.2.5", "dotenv": "^16.3.2", "file-loader": "^6.2.0", - "firebase": "^10.11.1", + "firebase": "^10.13.0", "html-react-parser": "^3.0.16", "lerna": "^7.4.2", "lottie-web": "^5.12.2",