From 25300611e32fb1bf72b860b61f54a17d5d524832 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 10:56:26 +0100 Subject: [PATCH 01/15] feat: contracts submodules linting commands --- .eslintignore | 6 +++- .markdownlintignore | 4 +++ .prettierignore | 4 +++ infrastructure/zk/src/fmt.ts | 39 +++++++++++++++++++++--- infrastructure/zk/src/lint.ts | 57 ++++++++++++++++++++++++----------- 5 files changed, 87 insertions(+), 23 deletions(-) diff --git a/.eslintignore b/.eslintignore index 6773d535d8c4..6bde0a2282ed 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,4 +5,8 @@ build/ dist/ volumes/ .tslintrc.js -bellman-cuda \ No newline at end of file +bellman-cuda + +# Ignore contract submodules +contracts +etc/system-contracts \ No newline at end of file diff --git a/.markdownlintignore b/.markdownlintignore index 05ba7370295a..17f362751de3 100644 --- a/.markdownlintignore +++ b/.markdownlintignore @@ -1,2 +1,6 @@ # Ignore submodule bellman-cuda + +# Ignore contract submodules +contracts +etc/system-contracts \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index fd0d65050de8..ca9ce80a5984 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,3 +3,7 @@ bellman-cuda sdk/zksync-web3.js/CHANGELOG.md sdk/zksync-rs/CHANGELOG.md CHANGELOG.md + +# Ignore contract submodules +contracts +etc/system-contracts \ No newline at end of file diff --git a/infrastructure/zk/src/fmt.ts b/infrastructure/zk/src/fmt.ts index de6ed41ac55d..4bb46dba7608 100644 --- a/infrastructure/zk/src/fmt.ts +++ b/infrastructure/zk/src/fmt.ts @@ -20,6 +20,18 @@ export async function prettier(extension: string, check: boolean = false) { await utils.spawn(`yarn --silent prettier --config ${CONFIG_PATH}/${extension}.js --${command} ${files}`); } +async function prettierL1Contracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd contracts/ethereum prettier:${check ? 'check' : 'fix'}`); +} + +async function prettierL2Contracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd contracts/zksync prettier:${check ? 'check' : 'fix'}`); +} + +async function prettierSystemContracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd etc/system-contracts prettier:${check ? 'check' : 'fix'}`); +} + export async function rustfmt(check: boolean = false) { process.chdir(process.env.ZKSYNC_HOME as string); const command = check ? 'cargo fmt -- --check' : 'cargo fmt'; @@ -28,21 +40,38 @@ export async function rustfmt(check: boolean = false) { await utils.spawn(command); } +const ARGS = [...EXTENSIONS, 'rust', 'l1-contracts', 'l2-contracts', 'system-contracts']; + export const command = new Command('fmt') .description('format code with prettier & rustfmt') .option('--check') - .arguments('[extension]') + .arguments(`[extension] ${ARGS.join('|')}`) .action(async (extension: string | null, cmd: Command) => { if (extension) { - if (extension == 'rust') { - await rustfmt(cmd.check); - } else { - await prettier(extension, cmd.check); + switch (extension) { + case 'rust': + await rustfmt(cmd.check); + break; + case 'l1-contracts': + await prettierL1Contracts(cmd.check); + break; + case 'l2-contracts': + await prettierL2Contracts(cmd.check); + break; + case 'system-contracts': + await prettierSystemContracts(cmd.check); + break; + default: + await prettier(extension, cmd.check); + break; } } else { // Run all the checks concurrently. const promises = EXTENSIONS.map((ext) => prettier(ext, cmd.check)); promises.push(rustfmt(cmd.check)); + promises.push(prettierL1Contracts(cmd.check)); + promises.push(prettierL2Contracts(cmd.check)); + promises.push(prettierSystemContracts(cmd.check)); await Promise.all(promises); } }); diff --git a/infrastructure/zk/src/lint.ts b/infrastructure/zk/src/lint.ts index adf2758b65ed..b34cd1000312 100644 --- a/infrastructure/zk/src/lint.ts +++ b/infrastructure/zk/src/lint.ts @@ -13,16 +13,6 @@ const EXTENSIONS = Object.keys(LINT_COMMANDS); const CONFIG_PATH = 'etc/lint-config'; export async function lint(extension: string, check: boolean = false) { - if (extension == 'rust') { - await clippy(); - return; - } - - if (extension == 'prover') { - await proverClippy(); - return; - } - if (!EXTENSIONS.includes(extension)) { throw new Error('Unsupported extension'); } @@ -34,6 +24,18 @@ export async function lint(extension: string, check: boolean = false) { await utils.spawn(`yarn --silent ${command} ${fixOption} --config ${CONFIG_PATH}/${extension}.js ${files}`); } +async function lintL1Contracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd contracts/ethereum lint:${check ? 'check' : 'fix'}`); +} + +async function lintL2Contracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd contracts/zksync lint:${check ? 'check' : 'fix'}`); +} + +async function lintSystemContracts(check: boolean = false) { + await utils.spawn(`yarn --silent --cwd etc/system-contracts lint:${check ? 'check' : 'fix'}`); +} + async function clippy() { process.chdir(process.env.ZKSYNC_HOME!); await utils.spawn('cargo clippy --tests -- -D warnings'); @@ -44,18 +46,39 @@ async function proverClippy() { await utils.spawn('cargo clippy --tests -- -D warnings -A incomplete_features'); } +const ARGS = [...EXTENSIONS, 'rust', 'prover', 'l1-contracts', 'l2-contracts', 'system-contracts']; + export const command = new Command('lint') .description('lint code') .option('--check') - .arguments('[extension] rust|md|sol|js|ts|prover') + .arguments(`[extension] ${ARGS.join('|')}`) .action(async (extension: string | null, cmd: Command) => { if (extension) { - await lint(extension, cmd.check); - } else { - for (const ext of EXTENSIONS) { - await lint(ext, cmd.check); + switch (extension) { + case 'rust': + await clippy(); + break; + case 'prover': + await proverClippy(); + break; + case 'l1-contracts': + await lintL1Contracts(cmd.check); + break; + case 'l2-contracts': + await lintL2Contracts(cmd.check); + break; + case 'system-contracts': + await lintSystemContracts(cmd.check); + break; + default: + await lint(extension, cmd.check); } - - await clippy(); + } else { + const promises = EXTENSIONS.map((ext) => lint(ext, cmd.check)); + promises.push(lintL1Contracts(cmd.check)); + promises.push(lintL2Contracts(cmd.check)); + promises.push(lintSystemContracts(cmd.check)); + promises.push(clippy()); + await Promise.all(promises); } }); From f802bf370c0d0205ffc1f51f4b867f7e672ae795 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 11:24:49 +0100 Subject: [PATCH 02/15] fmt: json, yaml extensions added to prettier --- etc/prettier-config/json.js | 6 ++++++ etc/prettier-config/yaml.js | 4 ++++ infrastructure/zk/src/fmt.ts | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 etc/prettier-config/json.js create mode 100644 etc/prettier-config/yaml.js diff --git a/etc/prettier-config/json.js b/etc/prettier-config/json.js new file mode 100644 index 000000000000..3098dcb47d94 --- /dev/null +++ b/etc/prettier-config/json.js @@ -0,0 +1,6 @@ +module.exports = { + "tabWidth": 2, + "printWidth": 120, + "bracketSpacing": true + }; + \ No newline at end of file diff --git a/etc/prettier-config/yaml.js b/etc/prettier-config/yaml.js new file mode 100644 index 000000000000..2b9a2d0eb13a --- /dev/null +++ b/etc/prettier-config/yaml.js @@ -0,0 +1,4 @@ +module.exports = { + "tabWidth": 2, + "printWidth": 120 +}; diff --git a/infrastructure/zk/src/fmt.ts b/infrastructure/zk/src/fmt.ts index 4bb46dba7608..9abc38e41510 100644 --- a/infrastructure/zk/src/fmt.ts +++ b/infrastructure/zk/src/fmt.ts @@ -1,7 +1,7 @@ import { Command } from 'commander'; import * as utils from './utils'; -const EXTENSIONS = ['ts', 'md', 'sol', 'js']; +const EXTENSIONS = ['js', 'json', 'md', 'sol', 'ts', 'yaml']; const CONFIG_PATH = 'etc/prettier-config'; export async function prettier(extension: string, check: boolean = false) { From 0967ba05469827a371c69d158dfc9517707d8a2a Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 11:27:31 +0100 Subject: [PATCH 03/15] fmt: json and yaml files formatted --- .github/release-please/config.json | 32 +- .github/workflows/cargo-license.yaml | 4 +- .../data/verification_0_key.json | 359 +-- .../data/verification_10_key.json | 359 +-- .../data/verification_11_key.json | 359 +-- .../data/verification_12_key.json | 359 +-- .../data/verification_13_key.json | 359 +-- .../data/verification_14_key.json | 359 +-- .../data/verification_15_key.json | 359 +-- .../data/verification_16_key.json | 359 +-- .../data/verification_17_key.json | 359 +-- .../data/verification_18_key.json | 359 +-- .../data/verification_1_key.json | 359 +-- .../data/verification_2_key.json | 359 +-- .../data/verification_3_key.json | 359 +-- .../data/verification_4_key.json | 359 +-- .../data/verification_5_key.json | 359 +-- .../data/verification_6_key.json | 359 +-- .../data/verification_7_key.json | 359 +-- .../data/verification_8_key.json | 359 +-- .../data/verification_9_key.json | 359 +-- core/lib/dal/sqlx-data.json | 2470 +++-------------- core/tests/revert-test/tsconfig.json | 14 +- core/tests/ts-integration/jest.config.json | 31 +- core/tests/ts-integration/package.json | 62 +- core/tests/ts-integration/tsconfig.json | 24 +- core/tests/upgrade-test/tsconfig.json | 14 +- .../zksync_testharness_test.json | 1 - etc/test_config/constant/api.json | 2 +- etc/test_config/constant/eth.json | 6 +- .../1692195639-upgrade-system/common.json | 2 +- .../mainnet2/facetCuts.json | 42 +- .../mainnet2/facets.json | 2 +- .../mainnet2/l2Upgrade.json | 65 +- .../mainnet2/transactions.json | 49 +- .../stage2/facetCuts.json | 42 +- .../stage2/facets.json | 2 +- .../stage2/l2Upgrade.json | 65 +- .../stage2/transactions.json | 49 +- .../testnet2/facetCuts.json | 42 +- .../testnet2/facets.json | 2 +- .../testnet2/l2Upgrade.json | 65 +- .../testnet2/transactions.json | 49 +- .../common.json | 2 +- .../stage2/facetCuts.json | 50 +- .../stage2/facets.json | 2 +- .../stage2/l2Upgrade.json | 65 +- .../stage2/transactions.json | 57 +- .../testnet2/facetCuts.json | 50 +- .../testnet2/facets.json | 2 +- .../testnet2/l2Upgrade.json | 65 +- .../testnet2/transactions.json | 57 +- .../common.json | 2 +- .../mainnet2/facetCuts.json | 50 +- .../mainnet2/facets.json | 2 +- .../mainnet2/l2Upgrade.json | 65 +- .../mainnet2/transactions.json | 57 +- .../stage2/l2Upgrade.json | 17 +- .../stage2/transactions.json | 9 +- .../testnet2/l2Upgrade.json | 17 +- .../testnet2/transactions.json | 9 +- .../common.json | 2 +- .../mainnet2/crypto.json | 2 +- .../mainnet2/transactions.json | 9 +- .../stage2/crypto.json | 2 +- .../stage2/transactions.json | 9 +- .../testnet2/crypto.json | 2 +- .../testnet2/transactions.json | 9 +- .../mainnet2/transactions.json | 9 +- .../stage2/transactions.json | 9 +- .../testnet2/transactions.json | 9 +- .../local-setup-preparation/tsconfig.json | 4 +- infrastructure/protocol-upgrade/tsconfig.json | 2 +- infrastructure/zk/package.json | 62 +- infrastructure/zk/tsconfig.json | 24 +- .../snark_verification_scheduler_key.json | 359 +-- .../data/verification_basic_10_key.json | 138 +- .../data/verification_basic_11_key.json | 138 +- .../data/verification_basic_12_key.json | 138 +- .../data/verification_basic_13_key.json | 138 +- .../data/verification_basic_1_key.json | 138 +- .../data/verification_basic_2_key.json | 138 +- .../data/verification_basic_3_key.json | 138 +- .../data/verification_basic_4_key.json | 138 +- .../data/verification_basic_5_key.json | 138 +- .../data/verification_basic_6_key.json | 138 +- .../data/verification_basic_7_key.json | 138 +- .../data/verification_basic_8_key.json | 138 +- .../data/verification_basic_9_key.json | 138 +- .../data/verification_leaf_10_key.json | 134 +- .../data/verification_leaf_11_key.json | 134 +- .../data/verification_leaf_12_key.json | 134 +- .../data/verification_leaf_13_key.json | 134 +- .../data/verification_leaf_14_key.json | 134 +- .../data/verification_leaf_15_key.json | 134 +- .../data/verification_leaf_1_key.json | 138 +- .../data/verification_leaf_2_key.json | 134 +- .../data/verification_leaf_3_key.json | 134 +- .../data/verification_leaf_4_key.json | 134 +- .../data/verification_leaf_5_key.json | 134 +- .../data/verification_leaf_6_key.json | 134 +- .../data/verification_leaf_7_key.json | 134 +- .../data/verification_leaf_8_key.json | 134 +- .../data/verification_leaf_9_key.json | 134 +- .../data/verification_node_key.json | 134 +- .../data/verification_scheduler_key.json | 138 +- renovate.json | 9 +- .../src/ethereum/DepositERC20GasLimit.json | 80 +- sdk/zksync-web3.js/abi/IERC1271.json | 50 +- sdk/zksync-web3.js/tsconfig.json | 4 +- 110 files changed, 2542 insertions(+), 12729 deletions(-) diff --git a/.github/release-please/config.json b/.github/release-please/config.json index 59e8b66dcc3f..88d3f9b04f94 100644 --- a/.github/release-please/config.json +++ b/.github/release-please/config.json @@ -5,21 +5,21 @@ "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, "packages": { - "core": { - "release-type": "simple", - "component": "core" - }, - "sdk/zksync-web3.js": { - "release-type": "node", - "component": "web3js" - }, - "sdk/zksync-rs": { - "release-type": "rust", - "component": "zksync-rs" - }, - "prover": { - "release-type": "simple", - "component": "prover" - } + "core": { + "release-type": "simple", + "component": "core" + }, + "sdk/zksync-web3.js": { + "release-type": "node", + "component": "web3js" + }, + "sdk/zksync-rs": { + "release-type": "rust", + "component": "zksync-rs" + }, + "prover": { + "release-type": "simple", + "component": "prover" + } } } diff --git a/.github/workflows/cargo-license.yaml b/.github/workflows/cargo-license.yaml index 189b47163e5d..e326f2966947 100644 --- a/.github/workflows/cargo-license.yaml +++ b/.github/workflows/cargo-license.yaml @@ -4,5 +4,5 @@ jobs: cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: actions/checkout@v3 + - uses: EmbarkStudios/cargo-deny-action@v1 diff --git a/core/bin/verification_key_generator_and_server/data/verification_0_key.json b/core/bin/verification_key_generator_and_server/data/verification_0_key.json index c3262193a4fd..83ff113bc9c1 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_0_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_0_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 14745348174000482855, - 2839037062185937123, - 3369862715588854899, - 1495909583940713128 - ], - "y": [ - 6859454683840363585, - 11340551061368171664, - 9528805406487149561, - 3414144677220223705 - ], + "x": [14745348174000482855, 2839037062185937123, 3369862715588854899, 1495909583940713128], + "y": [6859454683840363585, 11340551061368171664, 9528805406487149561, 3414144677220223705], "infinity": false }, { - "x": [ - 9215749870136224396, - 18418669114332753377, - 13140219601461030180, - 2381098845928447331 - ], - "y": [ - 8834765081837029169, - 4424842234296363904, - 13294547557836067005, - 414624398145171890 - ], + "x": [9215749870136224396, 18418669114332753377, 13140219601461030180, 2381098845928447331], + "y": [8834765081837029169, 4424842234296363904, 13294547557836067005, 414624398145171890], "infinity": false }, { - "x": [ - 2148575411987453084, - 16730180692461995258, - 12423475767707134837, - 3014264170083149730 - ], - "y": [ - 10870860158804422503, - 14060279526953529989, - 2266257082861680293, - 22356173050560284 - ], + "x": [2148575411987453084, 16730180692461995258, 12423475767707134837, 3014264170083149730], + "y": [10870860158804422503, 14060279526953529989, 2266257082861680293, 22356173050560284], "infinity": false }, { - "x": [ - 17803008042411335770, - 5713064950476621403, - 17979342410816871746, - 491265656076548841 - ], - "y": [ - 9823492080506672630, - 3637386621225409615, - 8776978043600973097, - 2514196809208915768 - ], + "x": [17803008042411335770, 5713064950476621403, 17979342410816871746, 491265656076548841], + "y": [9823492080506672630, 3637386621225409615, 8776978043600973097, 2514196809208915768], "infinity": false }, { - "x": [ - 3768479078383323179, - 16153057542709544671, - 10578964798085613273, - 2831188075764800753 - ], - "y": [ - 2387514805820590694, - 15085489652142686165, - 8141513931186597223, - 1582376980242699819 - ], + "x": [3768479078383323179, 16153057542709544671, 10578964798085613273, 2831188075764800753], + "y": [2387514805820590694, 15085489652142686165, 8141513931186597223, 1582376980242699819], "infinity": false }, { - "x": [ - 5395455814671474247, - 5013790368139874617, - 8671649443504728767, - 839142828943885970 - ], - "y": [ - 11231626069154926735, - 5078347962234771017, - 17373886182204596447, - 513647957075879347 - ], + "x": [5395455814671474247, 5013790368139874617, 8671649443504728767, 839142828943885970], + "y": [11231626069154926735, 5078347962234771017, 17373886182204596447, 513647957075879347], "infinity": false }, { - "x": [ - 8940485327950054531, - 9156997542069636576, - 14316753178152000598, - 3357551869664255582 - ], - "y": [ - 14102490706504125272, - 4494991810930729808, - 15532318871086968466, - 1537365238286274178 - ], + "x": [8940485327950054531, 9156997542069636576, 14316753178152000598, 3357551869664255582], + "y": [14102490706504125272, 4494991810930729808, 15532318871086968466, 1537365238286274178], "infinity": false }, { - "x": [ - 13914906478277300859, - 6213896071228541481, - 4364409818367302306, - 659097390118096039 - ], - "y": [ - 7328372274594390887, - 2650332638498669615, - 15455628473476960005, - 3119379427019958230 - ], + "x": [13914906478277300859, 6213896071228541481, 4364409818367302306, 659097390118096039], + "y": [7328372274594390887, 2650332638498669615, 15455628473476960005, 3119379427019958230], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 9438200511694036157, - 11094162170960057340, - 9123678872696723713, - 2950597355117190054 - ], - "y": [ - 6153972960518016517, - 8045683598100955864, - 13410633858416643489, - 988361678931464913 - ], + "x": [9438200511694036157, 11094162170960057340, 9123678872696723713, 2950597355117190054], + "y": [6153972960518016517, 8045683598100955864, 13410633858416643489, 988361678931464913], "infinity": false }, { - "x": [ - 805964423710846142, - 13603470797942296854, - 11292123377140077447, - 1455913517812009773 - ], - "y": [ - 4541622738043214385, - 8186357170000535775, - 4765839113294831637, - 3026863977499737494 - ], + "x": [805964423710846142, 13603470797942296854, 11292123377140077447, 1455913517812009773], + "y": [4541622738043214385, 8186357170000535775, 4765839113294831637, 3026863977499737494], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 1851039213129741497, - 11907960788190413713, - 2882727828085561070, - 1451278944954982956 - ], - "y": [ - 15245785050592773860, - 1774295027236395480, - 3373069120056880915, - 1080245109458702174 - ], + "x": [1851039213129741497, 11907960788190413713, 2882727828085561070, 1451278944954982956], + "y": [15245785050592773860, 1774295027236395480, 3373069120056880915, 1080245109458702174], "infinity": false }, { - "x": [ - 9366052859968548005, - 12275028918364559591, - 2472023927159177225, - 1052535074027277666 - ], - "y": [ - 2428574557555628629, - 15067392861858369528, - 16949255188095910778, - 2297925771936569168 - ], + "x": [9366052859968548005, 12275028918364559591, 2472023927159177225, 1052535074027277666], + "y": [2428574557555628629, 15067392861858369528, 16949255188095910778, 2297925771936569168], "infinity": false }, { - "x": [ - 17016009610362956206, - 4047659663396753591, - 1832464593155416403, - 2725142957049914767 - ], - "y": [ - 12447928856414787240, - 3072280375285720285, - 12294239288643819494, - 613511140380288958 - ], + "x": [17016009610362956206, 4047659663396753591, 1832464593155416403, 2725142957049914767], + "y": [12447928856414787240, 3072280375285720285, 12294239288643819494, 613511140380288958], "infinity": false }, { - "x": [ - 6312774245791141720, - 496150993329472460, - 12773767122915456934, - 3404402910494500531 - ], - "y": [ - 13852578578747731084, - 9030931732410275304, - 17159996848865265705, - 1696956882146098553 - ], + "x": [6312774245791141720, 496150993329472460, 12773767122915456934, 3404402910494500531], + "y": [13852578578747731084, 9030931732410275304, 17159996848865265705, 1696956882146098553], "infinity": false } ], "total_lookup_entries_length": 1073530, "lookup_selector_commitment": { - "x": [ - 4441974708940861232, - 11325614820129407652, - 7273013871150456559, - 2270181644629652201 - ], - "y": [ - 3070631142979677922, - 15247189094202672776, - 12651459662740804392, - 1832216259472686694 - ], + "x": [4441974708940861232, 11325614820129407652, 7273013871150456559, 2270181644629652201], + "y": [3070631142979677922, 15247189094202672776, 12651459662740804392, 1832216259472686694], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 7312875299592476003, - 313526216906044060, - 13914875394436353152, - 3424388477700656316 - ], - "y": [ - 2572062173996296044, - 5984767625164919974, - 12005537293370417131, - 616463121946800406 - ], + "x": [7312875299592476003, 313526216906044060, 13914875394436353152, 3424388477700656316], + "y": [2572062173996296044, 5984767625164919974, 12005537293370417131, 616463121946800406], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_10_key.json b/core/bin/verification_key_generator_and_server/data/verification_10_key.json index ec9d3727bff9..3431c4879d96 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_10_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_10_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 4364720487844379181, - 17010766725144227333, - 1022678199111276314, - 1146578362772127376 - ], - "y": [ - 10340654727439455072, - 12691578856596245032, - 837883495763401146, - 2135776887902289239 - ], + "x": [4364720487844379181, 17010766725144227333, 1022678199111276314, 1146578362772127376], + "y": [10340654727439455072, 12691578856596245032, 837883495763401146, 2135776887902289239], "infinity": false }, { - "x": [ - 14564870240038241482, - 16001391704613609683, - 16397364612792898214, - 1316914335235774452 - ], - "y": [ - 2386942353392090183, - 4642131766714508143, - 16789479723446408276, - 2261353401184907401 - ], + "x": [14564870240038241482, 16001391704613609683, 16397364612792898214, 1316914335235774452], + "y": [2386942353392090183, 4642131766714508143, 16789479723446408276, 2261353401184907401], "infinity": false }, { - "x": [ - 6081056006818109026, - 14051483412950926523, - 8605392534710099348, - 1527183574619010123 - ], - "y": [ - 3896696527234063839, - 12862398541231039501, - 1005646628007936886, - 3479645512156004366 - ], + "x": [6081056006818109026, 14051483412950926523, 8605392534710099348, 1527183574619010123], + "y": [3896696527234063839, 12862398541231039501, 1005646628007936886, 3479645512156004366], "infinity": false }, { - "x": [ - 11266242489999219523, - 8100856016495224488, - 6788749864393617587, - 482299081118345826 - ], - "y": [ - 225211373180020785, - 6498635074385582091, - 4274055525472487569, - 2578651815252093838 - ], + "x": [11266242489999219523, 8100856016495224488, 6788749864393617587, 482299081118345826], + "y": [225211373180020785, 6498635074385582091, 4274055525472487569, 2578651815252093838], "infinity": false }, { - "x": [ - 10378455392293934375, - 13391940670290769236, - 10463014668466536299, - 472544008986099462 - ], - "y": [ - 1502016714118108544, - 14252801754530793876, - 2203844491975584716, - 1116114255465135672 - ], + "x": [10378455392293934375, 13391940670290769236, 10463014668466536299, 472544008986099462], + "y": [1502016714118108544, 14252801754530793876, 2203844491975584716, 1116114255465135672], "infinity": false }, { - "x": [ - 9703616742074407567, - 9691703077434834222, - 7366620887865105973, - 36165572355418066 - ], - "y": [ - 7430304832706471782, - 5173267152399523091, - 14416699599905226230, - 2681204653630184824 - ], + "x": [9703616742074407567, 9691703077434834222, 7366620887865105973, 36165572355418066], + "y": [7430304832706471782, 5173267152399523091, 14416699599905226230, 2681204653630184824], "infinity": false }, { - "x": [ - 9347312215430913530, - 13606433894103359668, - 14013475178334262360, - 2947181048682744075 - ], - "y": [ - 4001199390012145932, - 4622813642635649819, - 16433672063298879053, - 1247842462976799965 - ], + "x": [9347312215430913530, 13606433894103359668, 14013475178334262360, 2947181048682744075], + "y": [4001199390012145932, 4622813642635649819, 16433672063298879053, 1247842462976799965], "infinity": false }, { - "x": [ - 1639425503718708209, - 8242804754724970899, - 11043260258533730377, - 2245145560504199089 - ], - "y": [ - 14202551139064230506, - 4307109380979442947, - 13141687433511141087, - 1913204959448290015 - ], + "x": [1639425503718708209, 8242804754724970899, 11043260258533730377, 2245145560504199089], + "y": [14202551139064230506, 4307109380979442947, 13141687433511141087, 1913204959448290015], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 17540836040216578409, - 14577118461028955096, - 2300935836423716880, - 427649651480863044 - ], - "y": [ - 13066723755606073272, - 17324941433857131282, - 1679499122173566851, - 3298750515604566671 - ], + "x": [17540836040216578409, 14577118461028955096, 2300935836423716880, 427649651480863044], + "y": [13066723755606073272, 17324941433857131282, 1679499122173566851, 3298750515604566671], "infinity": false }, { - "x": [ - 14709152157752642079, - 13510549649315108277, - 3019440420162710858, - 627188607991231846 - ], - "y": [ - 16615706301470133997, - 915024441316023047, - 13798541787831785917, - 3340602253234308653 - ], + "x": [14709152157752642079, 13510549649315108277, 3019440420162710858, 627188607991231846], + "y": [16615706301470133997, 915024441316023047, 13798541787831785917, 3340602253234308653], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 12626704863583094704, - 3308474372162220296, - 16088806788444947642, - 636430705662147361 - ], - "y": [ - 17052785040105865748, - 11203395113497209978, - 2939609765212411460, - 3167290643533167611 - ], + "x": [12626704863583094704, 3308474372162220296, 16088806788444947642, 636430705662147361], + "y": [17052785040105865748, 11203395113497209978, 2939609765212411460, 3167290643533167611], "infinity": false }, { - "x": [ - 3075146465184418179, - 11559452521956513155, - 1656597085428845901, - 1618447062156730856 - ], - "y": [ - 2010693621773175313, - 2977509893150409878, - 9431891659616951962, - 1776222288355278384 - ], + "x": [3075146465184418179, 11559452521956513155, 1656597085428845901, 1618447062156730856], + "y": [2010693621773175313, 2977509893150409878, 9431891659616951962, 1776222288355278384], "infinity": false }, { - "x": [ - 6408318860212838666, - 9847136022608767026, - 18080834927350013528, - 3306285138140631107 - ], - "y": [ - 16064928058583899597, - 461689523483649779, - 13572099112445223829, - 1563453638232968523 - ], + "x": [6408318860212838666, 9847136022608767026, 18080834927350013528, 3306285138140631107], + "y": [16064928058583899597, 461689523483649779, 13572099112445223829, 1563453638232968523], "infinity": false }, { - "x": [ - 327171445663828020, - 12706053900720413614, - 9237483585964880752, - 1960293149538216528 - ], - "y": [ - 11030775691809003651, - 11089052388657955457, - 3209890793790993499, - 1198867574642866523 - ], + "x": [327171445663828020, 12706053900720413614, 9237483585964880752, 1960293149538216528], + "y": [11030775691809003651, 11089052388657955457, 3209890793790993499, 1198867574642866523], "infinity": false } ], "total_lookup_entries_length": 5202052, "lookup_selector_commitment": { - "x": [ - 781239045644769777, - 14316527640474633593, - 2443643435827373112, - 3049372365263474427 - ], - "y": [ - 4073012743593667819, - 16009537994875540924, - 11173412503242869179, - 1513208421597995174 - ], + "x": [781239045644769777, 14316527640474633593, 2443643435827373112, 3049372365263474427], + "y": [4073012743593667819, 16009537994875540924, 11173412503242869179, 1513208421597995174], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 697552212563769686, - 7709943502535418760, - 15019345407325619175, - 3433081085078580257 - ], - "y": [ - 8668947019840357731, - 14698901351824712883, - 15088598879190660424, - 2873081208166433946 - ], + "x": [697552212563769686, 7709943502535418760, 15019345407325619175, 3433081085078580257], + "y": [8668947019840357731, 14698901351824712883, 15088598879190660424, 2873081208166433946], "infinity": false }, { - "x": [ - 7893133928909060673, - 7064922516930129957, - 3592836702741304814, - 2239702595710114437 - ], - "y": [ - 7691360541875191519, - 11379321785127235277, - 6653616064071569031, - 2555434628517540774 - ], + "x": [7893133928909060673, 7064922516930129957, 3592836702741304814, 2239702595710114437], + "y": [7691360541875191519, 11379321785127235277, 6653616064071569031, 2555434628517540774], "infinity": false }, { - "x": [ - 6243944238013052821, - 7908243182210136125, - 17178099109525791299, - 2553622184721264566 - ], - "y": [ - 736121280088239428, - 6158073429758170526, - 11217302997977204117, - 2594798912020899417 - ], + "x": [6243944238013052821, 7908243182210136125, 17178099109525791299, 2553622184721264566], + "y": [736121280088239428, 6158073429758170526, 11217302997977204117, 2594798912020899417], "infinity": false }, { - "x": [ - 2064240298596094591, - 16917726764104887991, - 11042784977532408536, - 3377647228930170830 - ], - "y": [ - 10635525052494768819, - 387400048616497096, - 9379200582543310995, - 1571766153703296253 - ], + "x": [2064240298596094591, 16917726764104887991, 11042784977532408536, 3377647228930170830], + "y": [10635525052494768819, 387400048616497096, 9379200582543310995, 1571766153703296253], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 7603211811706190713, - 2486982239745271096, - 11528266448545919500, - 3080741880407152411 - ], - "y": [ - 7967754771633653173, - 6016822892450616749, - 9688696792558711613, - 2682562048141398047 - ], + "x": [7603211811706190713, 2486982239745271096, 11528266448545919500, 3080741880407152411], + "y": [7967754771633653173, 6016822892450616749, 9688696792558711613, 2682562048141398047], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_11_key.json b/core/bin/verification_key_generator_and_server/data/verification_11_key.json index ec60b1b5c70c..eadd4f9433b1 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_11_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_11_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 6404793958941109752, - 600086648940026770, - 17621036346050218167, - 648286585825030202 - ], - "y": [ - 15536368541166505022, - 13874331483468128999, - 15299774519724050181, - 694528839710637549 - ], + "x": [6404793958941109752, 600086648940026770, 17621036346050218167, 648286585825030202], + "y": [15536368541166505022, 13874331483468128999, 15299774519724050181, 694528839710637549], "infinity": false }, { - "x": [ - 8437895530551083583, - 9515418928119648176, - 13043255827139294721, - 2995712510038409810 - ], - "y": [ - 2599666661350767554, - 5213004864468121936, - 3448071048439343925, - 3372727479169634860 - ], + "x": [8437895530551083583, 9515418928119648176, 13043255827139294721, 2995712510038409810], + "y": [2599666661350767554, 5213004864468121936, 3448071048439343925, 3372727479169634860], "infinity": false }, { - "x": [ - 4949545806128010634, - 7991544258837652527, - 13984289231122041826, - 435264553263929947 - ], - "y": [ - 5315155210033461895, - 5269954775753247626, - 8365554241810378947, - 3038338810517586456 - ], + "x": [4949545806128010634, 7991544258837652527, 13984289231122041826, 435264553263929947], + "y": [5315155210033461895, 5269954775753247626, 8365554241810378947, 3038338810517586456], "infinity": false }, { - "x": [ - 10765735847634894938, - 996016141851615448, - 17905928073714218280, - 1382306444325686451 - ], - "y": [ - 2138154197587423296, - 10332772886666867909, - 18365120064743353477, - 3036329558617382049 - ], + "x": [10765735847634894938, 996016141851615448, 17905928073714218280, 1382306444325686451], + "y": [2138154197587423296, 10332772886666867909, 18365120064743353477, 3036329558617382049], "infinity": false }, { - "x": [ - 10826908009799408310, - 17008417534705779156, - 6763973494549063072, - 2085829964414931488 - ], - "y": [ - 8778528796073273991, - 3575354418973385595, - 7700555759899743641, - 2991788183234680231 - ], + "x": [10826908009799408310, 17008417534705779156, 6763973494549063072, 2085829964414931488], + "y": [8778528796073273991, 3575354418973385595, 7700555759899743641, 2991788183234680231], "infinity": false }, { - "x": [ - 4838537981048085423, - 17733460364049897496, - 2406410363431464143, - 317979983533551325 - ], - "y": [ - 1063783130085451648, - 17468950496650586998, - 1638492556781126884, - 2655791721465286744 - ], + "x": [4838537981048085423, 17733460364049897496, 2406410363431464143, 317979983533551325], + "y": [1063783130085451648, 17468950496650586998, 1638492556781126884, 2655791721465286744], "infinity": false }, { - "x": [ - 9900079822056413611, - 2971494295919434281, - 3851188096409515874, - 1674965457600938162 - ], - "y": [ - 278026997091552202, - 4169606578927284200, - 4285297176993939496, - 1835673146863992148 - ], + "x": [9900079822056413611, 2971494295919434281, 3851188096409515874, 1674965457600938162], + "y": [278026997091552202, 4169606578927284200, 4285297176993939496, 1835673146863992148], "infinity": false }, { - "x": [ - 14972922803706426724, - 1950002897609593521, - 14885502244328862256, - 2711533695106895845 - ], - "y": [ - 6445273103061253271, - 13093783937225622775, - 16913300898726970338, - 3338984185497324237 - ], + "x": [14972922803706426724, 1950002897609593521, 14885502244328862256, 2711533695106895845], + "y": [6445273103061253271, 13093783937225622775, 16913300898726970338, 3338984185497324237], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 7023363902839996761, - 10470701207992157969, - 15655647820064667897, - 1574806151825297776 - ], - "y": [ - 5374465760860613169, - 17808737811039085287, - 9497881147171478776, - 2496973717640690197 - ], + "x": [7023363902839996761, 10470701207992157969, 15655647820064667897, 1574806151825297776], + "y": [5374465760860613169, 17808737811039085287, 9497881147171478776, 2496973717640690197], "infinity": false }, { - "x": [ - 11667333913021610767, - 981513539224109240, - 906325130343873228, - 2938085706999497365 - ], - "y": [ - 12114685726509803851, - 8176447551157079615, - 4677211732718215770, - 612959750791398009 - ], + "x": [11667333913021610767, 981513539224109240, 906325130343873228, 2938085706999497365], + "y": [12114685726509803851, 8176447551157079615, 4677211732718215770, 612959750791398009], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 5178916486603003859, - 12440762249350081718, - 17531240512375127539, - 562979322442547791 - ], - "y": [ - 13269831614205338393, - 14075713698585784838, - 5009519510530479124, - 346033861980045408 - ], + "x": [5178916486603003859, 12440762249350081718, 17531240512375127539, 562979322442547791], + "y": [13269831614205338393, 14075713698585784838, 5009519510530479124, 346033861980045408], "infinity": false }, { - "x": [ - 9815443577325313677, - 10727907015331332054, - 7582395371050260833, - 1746872659838481572 - ], - "y": [ - 3973552805135639320, - 14426732004648741961, - 8133164322153358522, - 2668541869556858228 - ], + "x": [9815443577325313677, 10727907015331332054, 7582395371050260833, 1746872659838481572], + "y": [3973552805135639320, 14426732004648741961, 8133164322153358522, 2668541869556858228], "infinity": false }, { - "x": [ - 4868257934818957423, - 11529848268525929099, - 7089666284160764141, - 796901367628793969 - ], - "y": [ - 991195814042705325, - 1559922382138761102, - 15616159453482282503, - 1031107741111093289 - ], + "x": [4868257934818957423, 11529848268525929099, 7089666284160764141, 796901367628793969], + "y": [991195814042705325, 1559922382138761102, 15616159453482282503, 1031107741111093289], "infinity": false }, { - "x": [ - 17936772813090339705, - 10208762457499980701, - 14796710996322725970, - 638550977107438851 - ], - "y": [ - 5073905611192321777, - 2956648407808816974, - 7778989780119416172, - 2955106321082932072 - ], + "x": [17936772813090339705, 10208762457499980701, 14796710996322725970, 638550977107438851], + "y": [5073905611192321777, 2956648407808816974, 7778989780119416172, 2955106321082932072], "infinity": false } ], "total_lookup_entries_length": 7960377, "lookup_selector_commitment": { - "x": [ - 1083743271968869166, - 3134203175755215736, - 5835502497758804469, - 3010956977291777466 - ], - "y": [ - 3645612220088813035, - 32844736552579976, - 5426466326302260857, - 1489565191618899261 - ], + "x": [1083743271968869166, 3134203175755215736, 5835502497758804469, 3010956977291777466], + "y": [3645612220088813035, 32844736552579976, 5426466326302260857, 1489565191618899261], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 5825422128268478267, - 9219263846299851036, - 3879231702557190566, - 1702488722758880769 - ], - "y": [ - 18311881100262470992, - 5742998199368802392, - 18106865487471159417, - 502191980176920012 - ], + "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], + "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], "infinity": false }, { - "x": [ - 17195892082859417081, - 7890531942603584793, - 2381805632820057528, - 3173232410464566465 - ], - "y": [ - 16359614627947132075, - 3459600273035137079, - 4550762061432972122, - 3394559699318358224 - ], + "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], + "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], "infinity": false }, { - "x": [ - 1716103379277390185, - 18097936269579187542, - 16357329729761063450, - 1508640059338197502 - ], - "y": [ - 11014806739603983364, - 4396503314588777389, - 9397245609635151055, - 1703957955248411380 - ], + "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], + "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], "infinity": false }, { - "x": [ - 4770171350693477354, - 17110558673192292253, - 9799800677557311408, - 761984875463445481 - ], - "y": [ - 1560561403388310063, - 31331275310848146, - 287152055803835484, - 457826332542037277 - ], + "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], + "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 11327495732840772606, - 7407664417001729515, - 9486600059857658309, - 3060296564241189838 - ], - "y": [ - 7624492872489320847, - 18248981556039704277, - 3877205757853252152, - 939885486002612376 - ], + "x": [11327495732840772606, 7407664417001729515, 9486600059857658309, 3060296564241189838], + "y": [7624492872489320847, 18248981556039704277, 3877205757853252152, 939885486002612376], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_12_key.json b/core/bin/verification_key_generator_and_server/data/verification_12_key.json index fec076f39eda..58fbb0a96027 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_12_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_12_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 456514006020943025, - 9595480195714948127, - 12254096252487404245, - 1742692690750856358 - ], - "y": [ - 16294223586064957217, - 3958270970168887906, - 11264067544872898258, - 1692817687935973108 - ], + "x": [456514006020943025, 9595480195714948127, 12254096252487404245, 1742692690750856358], + "y": [16294223586064957217, 3958270970168887906, 11264067544872898258, 1692817687935973108], "infinity": false }, { - "x": [ - 1359655052308122459, - 13840124148496555776, - 1774237333490664500, - 2964872651584750318 - ], - "y": [ - 11907598503482948769, - 8700506041798646988, - 15081040576888859990, - 3096802642049924528 - ], + "x": [1359655052308122459, 13840124148496555776, 1774237333490664500, 2964872651584750318], + "y": [11907598503482948769, 8700506041798646988, 15081040576888859990, 3096802642049924528], "infinity": false }, { - "x": [ - 2884314851670818573, - 13442465544210396156, - 5937955495868181363, - 2486997439179977778 - ], - "y": [ - 9309776793338098458, - 14492906371677122697, - 8837309186596588911, - 1081143755093508499 - ], + "x": [2884314851670818573, 13442465544210396156, 5937955495868181363, 2486997439179977778], + "y": [9309776793338098458, 14492906371677122697, 8837309186596588911, 1081143755093508499], "infinity": false }, { - "x": [ - 2655654413304275855, - 4244723109566147837, - 12150359360501203194, - 3338981627918702615 - ], - "y": [ - 2522870072161287404, - 17341373219317210182, - 13058930363994599297, - 210373422168410518 - ], + "x": [2655654413304275855, 4244723109566147837, 12150359360501203194, 3338981627918702615], + "y": [2522870072161287404, 17341373219317210182, 13058930363994599297, 210373422168410518], "infinity": false }, { - "x": [ - 16728834675380740056, - 2139390496020366235, - 9480389182940223467, - 2279560291896695719 - ], - "y": [ - 12461418813218976432, - 357566005384566098, - 5295578385080568808, - 1801243085576438875 - ], + "x": [16728834675380740056, 2139390496020366235, 9480389182940223467, 2279560291896695719], + "y": [12461418813218976432, 357566005384566098, 5295578385080568808, 1801243085576438875], "infinity": false }, { - "x": [ - 8716201428771436123, - 3392394702404760386, - 9990956922582058945, - 1388317411153212399 - ], - "y": [ - 11666415392681680155, - 10553517485129490455, - 16061047708722635939, - 2386622646140901822 - ], + "x": [8716201428771436123, 3392394702404760386, 9990956922582058945, 1388317411153212399], + "y": [11666415392681680155, 10553517485129490455, 16061047708722635939, 2386622646140901822], "infinity": false }, { - "x": [ - 16162432560623854812, - 15537581062716888632, - 12927223782958923606, - 2800634589869451227 - ], - "y": [ - 5345141365329635916, - 2224393250977631865, - 396527108738048188, - 2298318725146167177 - ], + "x": [16162432560623854812, 15537581062716888632, 12927223782958923606, 2800634589869451227], + "y": [5345141365329635916, 2224393250977631865, 396527108738048188, 2298318725146167177], "infinity": false }, { - "x": [ - 18372685954785469756, - 10436523365152935441, - 15509622927999798123, - 2050428620045833325 - ], - "y": [ - 4996265985148335658, - 6073112270434155721, - 4873288683270752338, - 503179567393027927 - ], + "x": [18372685954785469756, 10436523365152935441, 15509622927999798123, 2050428620045833325], + "y": [4996265985148335658, 6073112270434155721, 4873288683270752338, 503179567393027927], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 4986139828502830074, - 8644425445976253042, - 4851433922656693398, - 1419574698085640872 - ], - "y": [ - 16192186537521161947, - 16183885683582261905, - 1655718756619164666, - 3420236094426390604 - ], + "x": [4986139828502830074, 8644425445976253042, 4851433922656693398, 1419574698085640872], + "y": [16192186537521161947, 16183885683582261905, 1655718756619164666, 3420236094426390604], "infinity": false }, { - "x": [ - 10727231722644915889, - 13777116005624794169, - 1422623412369619026, - 1701279717637612575 - ], - "y": [ - 6503647097427010249, - 6381043883853023011, - 15391366286376907281, - 1261207976874708261 - ], + "x": [10727231722644915889, 13777116005624794169, 1422623412369619026, 1701279717637612575], + "y": [6503647097427010249, 6381043883853023011, 15391366286376907281, 1261207976874708261], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 11852073725466955067, - 179170887563176222, - 17529899074897279348, - 2496783194148289461 - ], - "y": [ - 15490041181991978284, - 6745436372504113852, - 7017978386715410058, - 3482556315200370895 - ], + "x": [11852073725466955067, 179170887563176222, 17529899074897279348, 2496783194148289461], + "y": [15490041181991978284, 6745436372504113852, 7017978386715410058, 3482556315200370895], "infinity": false }, { - "x": [ - 1330152738947291505, - 1668990644246591877, - 6805443255260621096, - 1309987766073890626 - ], - "y": [ - 18322300356676620444, - 8225233874302527542, - 5744327785164342590, - 410571567010522636 - ], + "x": [1330152738947291505, 1668990644246591877, 6805443255260621096, 1309987766073890626], + "y": [18322300356676620444, 8225233874302527542, 5744327785164342590, 410571567010522636], "infinity": false }, { - "x": [ - 13968210937929584911, - 17067601391996082961, - 4861463652254416951, - 2147834012714370408 - ], - "y": [ - 9012483356698219484, - 8660929519763525826, - 17744882010750642463, - 331423342438323189 - ], + "x": [13968210937929584911, 17067601391996082961, 4861463652254416951, 2147834012714370408], + "y": [9012483356698219484, 8660929519763525826, 17744882010750642463, 331423342438323189], "infinity": false }, { - "x": [ - 1352282553299127274, - 8587971715415488300, - 2471024479841756772, - 1239586065229072559 - ], - "y": [ - 1597792022909153930, - 5020991346876715357, - 5622801511814109910, - 1916460940163680567 - ], + "x": [1352282553299127274, 8587971715415488300, 2471024479841756772, 1239586065229072559], + "y": [1597792022909153930, 5020991346876715357, 5622801511814109910, 1916460940163680567], "infinity": false } ], "total_lookup_entries_length": 46287674, "lookup_selector_commitment": { - "x": [ - 11573469000684493293, - 15304040816406013002, - 9206902553183544808, - 2597693769113957036 - ], - "y": [ - 10538181061926273477, - 5239567589495426242, - 3627181047901924882, - 302644994241575377 - ], + "x": [11573469000684493293, 15304040816406013002, 9206902553183544808, 2597693769113957036], + "y": [10538181061926273477, 5239567589495426242, 3627181047901924882, 302644994241575377], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 5134795695995115566, - 12287750992060803275, - 3112021177339560487, - 2737779104829043419 - ], - "y": [ - 12960786984497012138, - 17246059378047870426, - 11486754204718893642, - 46104506716724806 - ], + "x": [5134795695995115566, 12287750992060803275, 3112021177339560487, 2737779104829043419], + "y": [12960786984497012138, 17246059378047870426, 11486754204718893642, 46104506716724806], "infinity": false }, { - "x": [ - 148472607159578301, - 1393814398025790148, - 13651878286378332448, - 3460878321325997474 - ], - "y": [ - 10791022888598424744, - 1931353219232076143, - 12342018346439101174, - 23632989633122111 - ], + "x": [148472607159578301, 1393814398025790148, 13651878286378332448, 3460878321325997474], + "y": [10791022888598424744, 1931353219232076143, 12342018346439101174, 23632989633122111], "infinity": false }, { - "x": [ - 1355031833403957875, - 10754997913401276231, - 8672292473740482178, - 3014145653612856517 - ], - "y": [ - 3728402825933673134, - 16492594359417243041, - 14619929139939206930, - 2894280666048705144 - ], + "x": [1355031833403957875, 10754997913401276231, 8672292473740482178, 3014145653612856517], + "y": [3728402825933673134, 16492594359417243041, 14619929139939206930, 2894280666048705144], "infinity": false }, { - "x": [ - 11362104917939269301, - 3050269804312222606, - 17884269955997757593, - 2804911625130359365 - ], - "y": [ - 9563576475625880180, - 9736108320914226650, - 11545696954602328389, - 1108440262014676246 - ], + "x": [11362104917939269301, 3050269804312222606, 17884269955997757593, 2804911625130359365], + "y": [9563576475625880180, 9736108320914226650, 11545696954602328389, 1108440262014676246], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 5367643753678334453, - 18149093736372716410, - 1335188566370936146, - 668596617655217713 - ], - "y": [ - 9984652217894703540, - 16253861114794085212, - 2139268495406835151, - 710303505771002735 - ], + "x": [5367643753678334453, 18149093736372716410, 1335188566370936146, 668596617655217713], + "y": [9984652217894703540, 16253861114794085212, 2139268495406835151, 710303505771002735], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_13_key.json b/core/bin/verification_key_generator_and_server/data/verification_13_key.json index 73ffbd212002..bfa771167dd0 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_13_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_13_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 17551054392858982554, - 6093238351564742844, - 9461983640740135929, - 665917981733823732 - ], - "y": [ - 5039211542045701927, - 14102316155129161178, - 7599318237652648682, - 1484263542771007309 - ], + "x": [17551054392858982554, 6093238351564742844, 9461983640740135929, 665917981733823732], + "y": [5039211542045701927, 14102316155129161178, 7599318237652648682, 1484263542771007309], "infinity": false }, { - "x": [ - 14015566113565304739, - 12895182424777444911, - 5150482782915031712, - 3280776276671330755 - ], - "y": [ - 5503211683737487414, - 5857977821275887356, - 1294122171191120577, - 2917900236095606783 - ], + "x": [14015566113565304739, 12895182424777444911, 5150482782915031712, 3280776276671330755], + "y": [5503211683737487414, 5857977821275887356, 1294122171191120577, 2917900236095606783], "infinity": false }, { - "x": [ - 11180353512945796758, - 5467792637578213396, - 14862660111090994534, - 1678570344676416345 - ], - "y": [ - 16496106534540891926, - 4355829424666415263, - 8379906815867503783, - 2141225531456729878 - ], + "x": [11180353512945796758, 5467792637578213396, 14862660111090994534, 1678570344676416345], + "y": [16496106534540891926, 4355829424666415263, 8379906815867503783, 2141225531456729878], "infinity": false }, { - "x": [ - 10512618919562577175, - 8909238001556772501, - 8669074760108324520, - 3259590816167766101 - ], - "y": [ - 15477336671232249792, - 10209451912771766896, - 13672268903388741173, - 682487251336397201 - ], + "x": [10512618919562577175, 8909238001556772501, 8669074760108324520, 3259590816167766101], + "y": [15477336671232249792, 10209451912771766896, 13672268903388741173, 682487251336397201], "infinity": false }, { - "x": [ - 14233534177298597555, - 14428793231398751908, - 18070433438826750034, - 1176819688107481869 - ], - "y": [ - 9251234182098356520, - 17131606126090989402, - 17185633762130361526, - 70013401388751862 - ], + "x": [14233534177298597555, 14428793231398751908, 18070433438826750034, 1176819688107481869], + "y": [9251234182098356520, 17131606126090989402, 17185633762130361526, 70013401388751862], "infinity": false }, { - "x": [ - 14148566925658671094, - 812517577375883951, - 5030512299767107864, - 44275794325016754 - ], - "y": [ - 3275438385460491589, - 12366768737850140720, - 10754478223029148744, - 64366431004577735 - ], + "x": [14148566925658671094, 812517577375883951, 5030512299767107864, 44275794325016754], + "y": [3275438385460491589, 12366768737850140720, 10754478223029148744, 64366431004577735], "infinity": false }, { - "x": [ - 5646513434714516506, - 12578668031398681290, - 6956692825033783810, - 536471110695536326 - ], - "y": [ - 876079378616587621, - 9787032999740439668, - 14965634813605966164, - 367083452910738472 - ], + "x": [5646513434714516506, 12578668031398681290, 6956692825033783810, 536471110695536326], + "y": [876079378616587621, 9787032999740439668, 14965634813605966164, 367083452910738472], "infinity": false }, { - "x": [ - 10902302115259229513, - 14044271471332330954, - 14571826360674828773, - 733766328575554031 - ], - "y": [ - 8186695183963076514, - 621472878958955881, - 14756382569165412398, - 3165780226323675661 - ], + "x": [10902302115259229513, 14044271471332330954, 14571826360674828773, 733766328575554031], + "y": [8186695183963076514, 621472878958955881, 14756382569165412398, 3165780226323675661], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 17780673306296332984, - 10355922416617009060, - 5077451999006954761, - 2644291606399153501 - ], - "y": [ - 884498752701137122, - 731399349168706916, - 4286165746592754883, - 3279732117855760703 - ], + "x": [17780673306296332984, 10355922416617009060, 5077451999006954761, 2644291606399153501], + "y": [884498752701137122, 731399349168706916, 4286165746592754883, 3279732117855760703], "infinity": false }, { - "x": [ - 11012802284910829398, - 7859388231941271159, - 17586341808458361180, - 1386364899721133297 - ], - "y": [ - 15634369655108108777, - 3858480397682251762, - 17706291110507066608, - 1663421415693803071 - ], + "x": [11012802284910829398, 7859388231941271159, 17586341808458361180, 1386364899721133297], + "y": [15634369655108108777, 3858480397682251762, 17706291110507066608, 1663421415693803071], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 18134041530736321349, - 4345724579806003155, - 2324407857452293002, - 2319164124977213120 - ], - "y": [ - 14302129084811449335, - 8588677756442252515, - 3323846949783670865, - 2109729211841784387 - ], + "x": [18134041530736321349, 4345724579806003155, 2324407857452293002, 2319164124977213120], + "y": [14302129084811449335, 8588677756442252515, 3323846949783670865, 2109729211841784387], "infinity": false }, { - "x": [ - 14486843004985564085, - 10799247040254992370, - 7658639806933647132, - 2215292564171027727 - ], - "y": [ - 14258341133968554193, - 11685656973533320944, - 14111972937744219524, - 1172604679688980794 - ], + "x": [14486843004985564085, 10799247040254992370, 7658639806933647132, 2215292564171027727], + "y": [14258341133968554193, 11685656973533320944, 14111972937744219524, 1172604679688980794], "infinity": false }, { - "x": [ - 12872375111956991701, - 14049784009914403066, - 15325016171856456312, - 2811875539960405333 - ], - "y": [ - 5711194902040443430, - 13827091592207472460, - 17950028361571343192, - 1672758585097311581 - ], + "x": [12872375111956991701, 14049784009914403066, 15325016171856456312, 2811875539960405333], + "y": [5711194902040443430, 13827091592207472460, 17950028361571343192, 1672758585097311581], "infinity": false }, { - "x": [ - 11717525586585736911, - 730672019767199816, - 3010255132348992613, - 2780587454575324896 - ], - "y": [ - 1473124157542628664, - 1573646910034288561, - 10026766074599473146, - 563223750818543582 - ], + "x": [11717525586585736911, 730672019767199816, 3010255132348992613, 2780587454575324896], + "y": [1473124157542628664, 1573646910034288561, 10026766074599473146, 563223750818543582], "infinity": false } ], "total_lookup_entries_length": 42547753, "lookup_selector_commitment": { - "x": [ - 4539928924349895484, - 2792770915461027618, - 11611697420465472575, - 1384307956752801018 - ], - "y": [ - 8840366360901511807, - 8892919985613263102, - 11941090149541110830, - 1930352681887390920 - ], + "x": [4539928924349895484, 2792770915461027618, 11611697420465472575, 1384307956752801018], + "y": [8840366360901511807, 8892919985613263102, 11941090149541110830, 1930352681887390920], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 4121704254446914578, - 13863658665929861884, - 15362282368839162345, - 2762703036966024619 - ], - "y": [ - 102846692212239082, - 14904466746900448136, - 16872429770359000841, - 1687152581020907098 - ], + "x": [4121704254446914578, 13863658665929861884, 15362282368839162345, 2762703036966024619], + "y": [102846692212239082, 14904466746900448136, 16872429770359000841, 1687152581020907098], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_14_key.json b/core/bin/verification_key_generator_and_server/data/verification_14_key.json index e8c42d407e35..48c1ee6a6a77 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_14_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_14_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 6916434521451934576, - 614815553772638285, - 3742595993843812033, - 2823214088432624432 - ], - "y": [ - 11642815096362884283, - 18063950820723921281, - 6353943092001719992, - 3201898419478369298 - ], + "x": [6916434521451934576, 614815553772638285, 3742595993843812033, 2823214088432624432], + "y": [11642815096362884283, 18063950820723921281, 6353943092001719992, 3201898419478369298], "infinity": false }, { - "x": [ - 10647237757917239762, - 1269177049592707998, - 2650053775033150725, - 582198744757304104 - ], - "y": [ - 9804667267596536998, - 493663115027956828, - 13953159385227792767, - 1568248765042207679 - ], + "x": [10647237757917239762, 1269177049592707998, 2650053775033150725, 582198744757304104], + "y": [9804667267596536998, 493663115027956828, 13953159385227792767, 1568248765042207679], "infinity": false }, { - "x": [ - 7910659438561833906, - 12456422925439856914, - 10869604528749370003, - 1213616301038416610 - ], - "y": [ - 2606202790862698157, - 6809934263763206210, - 17472080335242458272, - 2884639755368519501 - ], + "x": [7910659438561833906, 12456422925439856914, 10869604528749370003, 1213616301038416610], + "y": [2606202790862698157, 6809934263763206210, 17472080335242458272, 2884639755368519501], "infinity": false }, { - "x": [ - 14211325859682683183, - 11018598407116786751, - 10064425366978091674, - 2748595948091261209 - ], - "y": [ - 13960202853590116423, - 1211975538022172568, - 16303435518817750320, - 1634234707214097860 - ], + "x": [14211325859682683183, 11018598407116786751, 10064425366978091674, 2748595948091261209], + "y": [13960202853590116423, 1211975538022172568, 16303435518817750320, 1634234707214097860], "infinity": false }, { - "x": [ - 4528591178982443847, - 16310104707629911601, - 5532120103079323919, - 1347877820087040669 - ], - "y": [ - 17983603511717948746, - 9529659424488112452, - 7820918413906679254, - 1819855238351369466 - ], + "x": [4528591178982443847, 16310104707629911601, 5532120103079323919, 1347877820087040669], + "y": [17983603511717948746, 9529659424488112452, 7820918413906679254, 1819855238351369466], "infinity": false }, { - "x": [ - 14415562798118912210, - 6550719056383417327, - 424281724891761932, - 1264340531903932141 - ], - "y": [ - 7768057951329404686, - 15024442753889769568, - 9676935351692818899, - 1492251668690310932 - ], + "x": [14415562798118912210, 6550719056383417327, 424281724891761932, 1264340531903932141], + "y": [7768057951329404686, 15024442753889769568, 9676935351692818899, 1492251668690310932], "infinity": false }, { - "x": [ - 2619366878850208112, - 12150914745315976156, - 8375197026043390274, - 1935272977563031501 - ], - "y": [ - 5381369692389055354, - 17978011500330472972, - 17420193441326928998, - 479187691463910357 - ], + "x": [2619366878850208112, 12150914745315976156, 8375197026043390274, 1935272977563031501], + "y": [5381369692389055354, 17978011500330472972, 17420193441326928998, 479187691463910357], "infinity": false }, { - "x": [ - 8720830951139717797, - 15985700059986022675, - 11876530273787337931, - 421322430672290976 - ], - "y": [ - 9700690437922183179, - 1976785701667862157, - 16634886936358874061, - 3002178567925406588 - ], + "x": [8720830951139717797, 15985700059986022675, 11876530273787337931, 421322430672290976], + "y": [9700690437922183179, 1976785701667862157, 16634886936358874061, 3002178567925406588], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 8284083154661042764, - 11776500066398184343, - 868620904897679124, - 2988582549909766892 - ], - "y": [ - 10794129605563176627, - 15487634480061313925, - 17194646451372113884, - 2087686927573540537 - ], + "x": [8284083154661042764, 11776500066398184343, 868620904897679124, 2988582549909766892], + "y": [10794129605563176627, 15487634480061313925, 17194646451372113884, 2087686927573540537], "infinity": false }, { - "x": [ - 7916190330285050096, - 11731220788334102406, - 6221883233572429550, - 2552280229203107267 - ], - "y": [ - 10510502959728300366, - 14682539966609739595, - 8275243146917870162, - 164811532254637923 - ], + "x": [7916190330285050096, 11731220788334102406, 6221883233572429550, 2552280229203107267], + "y": [10510502959728300366, 14682539966609739595, 8275243146917870162, 164811532254637923], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 195850038587200624, - 10136289160450054078, - 4386512701252721226, - 219366815902177323 - ], - "y": [ - 12042545079209848932, - 599057886584676736, - 14545610403811537682, - 498958995843318019 - ], + "x": [195850038587200624, 10136289160450054078, 4386512701252721226, 219366815902177323], + "y": [12042545079209848932, 599057886584676736, 14545610403811537682, 498958995843318019], "infinity": false }, { - "x": [ - 4721932753701441297, - 1676671918244393403, - 6943597542294442696, - 50994782040503038 - ], - "y": [ - 8321420884695240511, - 10606883887907326697, - 11471075822795411018, - 1311422627151559437 - ], + "x": [4721932753701441297, 1676671918244393403, 6943597542294442696, 50994782040503038], + "y": [8321420884695240511, 10606883887907326697, 11471075822795411018, 1311422627151559437], "infinity": false }, { - "x": [ - 85448132386017640, - 13016912343020112485, - 11647418800345296605, - 1741562939125330787 - ], - "y": [ - 10753835454658443286, - 8646325836340244979, - 7348777908140142985, - 2196062626460604424 - ], + "x": [85448132386017640, 13016912343020112485, 11647418800345296605, 1741562939125330787], + "y": [10753835454658443286, 8646325836340244979, 7348777908140142985, 2196062626460604424], "infinity": false }, { - "x": [ - 2125624295892265840, - 12754141819506101591, - 8789168208880604752, - 947087620272222934 - ], - "y": [ - 12566258871261234263, - 12307504590191426495, - 6700589767183706452, - 1828704371386663334 - ], + "x": [2125624295892265840, 12754141819506101591, 8789168208880604752, 947087620272222934], + "y": [12566258871261234263, 12307504590191426495, 6700589767183706452, 1828704371386663334], "infinity": false } ], "total_lookup_entries_length": 42212029, "lookup_selector_commitment": { - "x": [ - 7709849601046260359, - 6836713108454667472, - 17360769186231334246, - 2348971634881039863 - ], - "y": [ - 13380830060569421804, - 15446653016734774164, - 17884501636917484387, - 1386904567459265970 - ], + "x": [7709849601046260359, 6836713108454667472, 17360769186231334246, 2348971634881039863], + "y": [13380830060569421804, 15446653016734774164, 17884501636917484387, 1386904567459265970], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 6960699536013090594, - 2075384204892265266, - 12053931571725248687, - 1371193846897305849 - ], - "y": [ - 8904850119058507432, - 10465598889525773001, - 16159541505228012497, - 1982452464017823539 - ], + "x": [6960699536013090594, 2075384204892265266, 12053931571725248687, 1371193846897305849], + "y": [8904850119058507432, 10465598889525773001, 16159541505228012497, 1982452464017823539], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_15_key.json b/core/bin/verification_key_generator_and_server/data/verification_15_key.json index 356dbb3c531a..674c931f1bd8 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_15_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_15_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 3227382513538635502, - 10189582412003011525, - 1928710987967879299, - 1641062823248805930 - ], - "y": [ - 3271795224553087841, - 14036363906521936156, - 10253705337161624780, - 3091191233208402889 - ], + "x": [3227382513538635502, 10189582412003011525, 1928710987967879299, 1641062823248805930], + "y": [3271795224553087841, 14036363906521936156, 10253705337161624780, 3091191233208402889], "infinity": false }, { - "x": [ - 3541471743181642086, - 8117051273006688414, - 685909872467163024, - 2614724468827209722 - ], - "y": [ - 1096952120887201428, - 8197980407203032569, - 3949713006885563085, - 2838982585728277197 - ], + "x": [3541471743181642086, 8117051273006688414, 685909872467163024, 2614724468827209722], + "y": [1096952120887201428, 8197980407203032569, 3949713006885563085, 2838982585728277197], "infinity": false }, { - "x": [ - 12432945880074879560, - 13444859845042471186, - 16599097070979057001, - 3064039790213026567 - ], - "y": [ - 3745088406100356357, - 11715355314289478148, - 2282946417129489745, - 1619614407449915711 - ], + "x": [12432945880074879560, 13444859845042471186, 16599097070979057001, 3064039790213026567], + "y": [3745088406100356357, 11715355314289478148, 2282946417129489745, 1619614407449915711], "infinity": false }, { - "x": [ - 6864310053920223866, - 11095455024311706186, - 12229748247000682102, - 2475016349586561501 - ], - "y": [ - 2946781066962542712, - 14275500021265062654, - 7624481756022778467, - 1439658776940615826 - ], + "x": [6864310053920223866, 11095455024311706186, 12229748247000682102, 2475016349586561501], + "y": [2946781066962542712, 14275500021265062654, 7624481756022778467, 1439658776940615826], "infinity": false }, { - "x": [ - 13589273139905087785, - 10411035015021574213, - 7322465558208873130, - 1805943743448229826 - ], - "y": [ - 13035238946064559886, - 8309482746549063820, - 14229757515324464781, - 1676135665275665956 - ], + "x": [13589273139905087785, 10411035015021574213, 7322465558208873130, 1805943743448229826], + "y": [13035238946064559886, 8309482746549063820, 14229757515324464781, 1676135665275665956], "infinity": false }, { - "x": [ - 84006308859404982, - 13783127238980064918, - 14101945786439708601, - 3343881426944938693 - ], - "y": [ - 11959320721291234482, - 7288504259378326725, - 9638777183731403514, - 1648453409181088010 - ], + "x": [84006308859404982, 13783127238980064918, 14101945786439708601, 3343881426944938693], + "y": [11959320721291234482, 7288504259378326725, 9638777183731403514, 1648453409181088010], "infinity": false }, { - "x": [ - 10987163680360734145, - 3374907765066907489, - 14421201974855570464, - 3148542489906320493 - ], - "y": [ - 17180031485000081847, - 1609372527008367113, - 6050341427989573858, - 477684541505306009 - ], + "x": [10987163680360734145, 3374907765066907489, 14421201974855570464, 3148542489906320493], + "y": [17180031485000081847, 1609372527008367113, 6050341427989573858, 477684541505306009], "infinity": false }, { - "x": [ - 2257028353691713628, - 6330174784373016532, - 1686021628649718039, - 2159927805963705967 - ], - "y": [ - 10814125155819336479, - 9673780307204445954, - 7995606758095566598, - 2252251279727988680 - ], + "x": [2257028353691713628, 6330174784373016532, 1686021628649718039, 2159927805963705967], + "y": [10814125155819336479, 9673780307204445954, 7995606758095566598, 2252251279727988680], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 12209724104183572477, - 11631007075974892904, - 18407423517909669447, - 1123848354500646471 - ], - "y": [ - 4749227851055533192, - 16918951234067984229, - 5345146076707243019, - 2836719468222132526 - ], + "x": [12209724104183572477, 11631007075974892904, 18407423517909669447, 1123848354500646471], + "y": [4749227851055533192, 16918951234067984229, 5345146076707243019, 2836719468222132526], "infinity": false }, { - "x": [ - 7250866110466496804, - 16022969863388101391, - 16334300930347324147, - 2232272485807431638 - ], - "y": [ - 257675104580526310, - 8044331403028603186, - 2070174268860891010, - 412313474208091695 - ], + "x": [7250866110466496804, 16022969863388101391, 16334300930347324147, 2232272485807431638], + "y": [257675104580526310, 8044331403028603186, 2070174268860891010, 412313474208091695], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 6736882681315025594, - 13400430183084617843, - 17182588928882896917, - 413858188107207402 - ], - "y": [ - 11944170108613027081, - 10598841640624895850, - 9086311820289524704, - 994240611047161478 - ], + "x": [6736882681315025594, 13400430183084617843, 17182588928882896917, 413858188107207402], + "y": [11944170108613027081, 10598841640624895850, 9086311820289524704, 994240611047161478], "infinity": false }, { - "x": [ - 9500318283622871785, - 5480449932874899465, - 13224510306395939252, - 1891329668301281157 - ], - "y": [ - 7314078756040350933, - 1023294602177498218, - 16475078688698425911, - 1793945182112302214 - ], + "x": [9500318283622871785, 5480449932874899465, 13224510306395939252, 1891329668301281157], + "y": [7314078756040350933, 1023294602177498218, 16475078688698425911, 1793945182112302214], "infinity": false }, { - "x": [ - 17207548058425781429, - 2519222249126358251, - 16087595361924038018, - 3470846273906312296 - ], - "y": [ - 7578361094884620755, - 7082109151721400218, - 13675372677342046523, - 3204472226310685459 - ], + "x": [17207548058425781429, 2519222249126358251, 16087595361924038018, 3470846273906312296], + "y": [7578361094884620755, 7082109151721400218, 13675372677342046523, 3204472226310685459], "infinity": false }, { - "x": [ - 7036282717341939568, - 3035419720331773758, - 6765191455902729185, - 1301973211946290083 - ], - "y": [ - 697377419426635450, - 14612037890797520515, - 11746079616766057625, - 1031190413179598818 - ], + "x": [7036282717341939568, 3035419720331773758, 6765191455902729185, 1301973211946290083], + "y": [697377419426635450, 14612037890797520515, 11746079616766057625, 1031190413179598818], "infinity": false } ], "total_lookup_entries_length": 6391155, "lookup_selector_commitment": { - "x": [ - 17111915492430945419, - 17971275185478677346, - 14211391044159602918, - 2381455978713737016 - ], - "y": [ - 13971515893527127207, - 7078722574057096191, - 6337080743811431820, - 757015217034494132 - ], + "x": [17111915492430945419, 17971275185478677346, 14211391044159602918, 2381455978713737016], + "y": [13971515893527127207, 7078722574057096191, 6337080743811431820, 757015217034494132], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 5825422128268478267, - 9219263846299851036, - 3879231702557190566, - 1702488722758880769 - ], - "y": [ - 18311881100262470992, - 5742998199368802392, - 18106865487471159417, - 502191980176920012 - ], + "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], + "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], "infinity": false }, { - "x": [ - 17195892082859417081, - 7890531942603584793, - 2381805632820057528, - 3173232410464566465 - ], - "y": [ - 16359614627947132075, - 3459600273035137079, - 4550762061432972122, - 3394559699318358224 - ], + "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], + "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], "infinity": false }, { - "x": [ - 1716103379277390185, - 18097936269579187542, - 16357329729761063450, - 1508640059338197502 - ], - "y": [ - 11014806739603983364, - 4396503314588777389, - 9397245609635151055, - 1703957955248411380 - ], + "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], + "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], "infinity": false }, { - "x": [ - 4770171350693477354, - 17110558673192292253, - 9799800677557311408, - 761984875463445481 - ], - "y": [ - 1560561403388310063, - 31331275310848146, - 287152055803835484, - 457826332542037277 - ], + "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], + "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 12452920133699897102, - 6896642231513345496, - 4655495116895575043, - 1453525729114564853 - ], - "y": [ - 3574087764464303986, - 10141819911397868785, - 2342639320036978232, - 556196027732983028 - ], + "x": [12452920133699897102, 6896642231513345496, 4655495116895575043, 1453525729114564853], + "y": [3574087764464303986, 10141819911397868785, 2342639320036978232, 556196027732983028], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_16_key.json b/core/bin/verification_key_generator_and_server/data/verification_16_key.json index 356dbb3c531a..674c931f1bd8 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_16_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_16_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 3227382513538635502, - 10189582412003011525, - 1928710987967879299, - 1641062823248805930 - ], - "y": [ - 3271795224553087841, - 14036363906521936156, - 10253705337161624780, - 3091191233208402889 - ], + "x": [3227382513538635502, 10189582412003011525, 1928710987967879299, 1641062823248805930], + "y": [3271795224553087841, 14036363906521936156, 10253705337161624780, 3091191233208402889], "infinity": false }, { - "x": [ - 3541471743181642086, - 8117051273006688414, - 685909872467163024, - 2614724468827209722 - ], - "y": [ - 1096952120887201428, - 8197980407203032569, - 3949713006885563085, - 2838982585728277197 - ], + "x": [3541471743181642086, 8117051273006688414, 685909872467163024, 2614724468827209722], + "y": [1096952120887201428, 8197980407203032569, 3949713006885563085, 2838982585728277197], "infinity": false }, { - "x": [ - 12432945880074879560, - 13444859845042471186, - 16599097070979057001, - 3064039790213026567 - ], - "y": [ - 3745088406100356357, - 11715355314289478148, - 2282946417129489745, - 1619614407449915711 - ], + "x": [12432945880074879560, 13444859845042471186, 16599097070979057001, 3064039790213026567], + "y": [3745088406100356357, 11715355314289478148, 2282946417129489745, 1619614407449915711], "infinity": false }, { - "x": [ - 6864310053920223866, - 11095455024311706186, - 12229748247000682102, - 2475016349586561501 - ], - "y": [ - 2946781066962542712, - 14275500021265062654, - 7624481756022778467, - 1439658776940615826 - ], + "x": [6864310053920223866, 11095455024311706186, 12229748247000682102, 2475016349586561501], + "y": [2946781066962542712, 14275500021265062654, 7624481756022778467, 1439658776940615826], "infinity": false }, { - "x": [ - 13589273139905087785, - 10411035015021574213, - 7322465558208873130, - 1805943743448229826 - ], - "y": [ - 13035238946064559886, - 8309482746549063820, - 14229757515324464781, - 1676135665275665956 - ], + "x": [13589273139905087785, 10411035015021574213, 7322465558208873130, 1805943743448229826], + "y": [13035238946064559886, 8309482746549063820, 14229757515324464781, 1676135665275665956], "infinity": false }, { - "x": [ - 84006308859404982, - 13783127238980064918, - 14101945786439708601, - 3343881426944938693 - ], - "y": [ - 11959320721291234482, - 7288504259378326725, - 9638777183731403514, - 1648453409181088010 - ], + "x": [84006308859404982, 13783127238980064918, 14101945786439708601, 3343881426944938693], + "y": [11959320721291234482, 7288504259378326725, 9638777183731403514, 1648453409181088010], "infinity": false }, { - "x": [ - 10987163680360734145, - 3374907765066907489, - 14421201974855570464, - 3148542489906320493 - ], - "y": [ - 17180031485000081847, - 1609372527008367113, - 6050341427989573858, - 477684541505306009 - ], + "x": [10987163680360734145, 3374907765066907489, 14421201974855570464, 3148542489906320493], + "y": [17180031485000081847, 1609372527008367113, 6050341427989573858, 477684541505306009], "infinity": false }, { - "x": [ - 2257028353691713628, - 6330174784373016532, - 1686021628649718039, - 2159927805963705967 - ], - "y": [ - 10814125155819336479, - 9673780307204445954, - 7995606758095566598, - 2252251279727988680 - ], + "x": [2257028353691713628, 6330174784373016532, 1686021628649718039, 2159927805963705967], + "y": [10814125155819336479, 9673780307204445954, 7995606758095566598, 2252251279727988680], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 12209724104183572477, - 11631007075974892904, - 18407423517909669447, - 1123848354500646471 - ], - "y": [ - 4749227851055533192, - 16918951234067984229, - 5345146076707243019, - 2836719468222132526 - ], + "x": [12209724104183572477, 11631007075974892904, 18407423517909669447, 1123848354500646471], + "y": [4749227851055533192, 16918951234067984229, 5345146076707243019, 2836719468222132526], "infinity": false }, { - "x": [ - 7250866110466496804, - 16022969863388101391, - 16334300930347324147, - 2232272485807431638 - ], - "y": [ - 257675104580526310, - 8044331403028603186, - 2070174268860891010, - 412313474208091695 - ], + "x": [7250866110466496804, 16022969863388101391, 16334300930347324147, 2232272485807431638], + "y": [257675104580526310, 8044331403028603186, 2070174268860891010, 412313474208091695], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 6736882681315025594, - 13400430183084617843, - 17182588928882896917, - 413858188107207402 - ], - "y": [ - 11944170108613027081, - 10598841640624895850, - 9086311820289524704, - 994240611047161478 - ], + "x": [6736882681315025594, 13400430183084617843, 17182588928882896917, 413858188107207402], + "y": [11944170108613027081, 10598841640624895850, 9086311820289524704, 994240611047161478], "infinity": false }, { - "x": [ - 9500318283622871785, - 5480449932874899465, - 13224510306395939252, - 1891329668301281157 - ], - "y": [ - 7314078756040350933, - 1023294602177498218, - 16475078688698425911, - 1793945182112302214 - ], + "x": [9500318283622871785, 5480449932874899465, 13224510306395939252, 1891329668301281157], + "y": [7314078756040350933, 1023294602177498218, 16475078688698425911, 1793945182112302214], "infinity": false }, { - "x": [ - 17207548058425781429, - 2519222249126358251, - 16087595361924038018, - 3470846273906312296 - ], - "y": [ - 7578361094884620755, - 7082109151721400218, - 13675372677342046523, - 3204472226310685459 - ], + "x": [17207548058425781429, 2519222249126358251, 16087595361924038018, 3470846273906312296], + "y": [7578361094884620755, 7082109151721400218, 13675372677342046523, 3204472226310685459], "infinity": false }, { - "x": [ - 7036282717341939568, - 3035419720331773758, - 6765191455902729185, - 1301973211946290083 - ], - "y": [ - 697377419426635450, - 14612037890797520515, - 11746079616766057625, - 1031190413179598818 - ], + "x": [7036282717341939568, 3035419720331773758, 6765191455902729185, 1301973211946290083], + "y": [697377419426635450, 14612037890797520515, 11746079616766057625, 1031190413179598818], "infinity": false } ], "total_lookup_entries_length": 6391155, "lookup_selector_commitment": { - "x": [ - 17111915492430945419, - 17971275185478677346, - 14211391044159602918, - 2381455978713737016 - ], - "y": [ - 13971515893527127207, - 7078722574057096191, - 6337080743811431820, - 757015217034494132 - ], + "x": [17111915492430945419, 17971275185478677346, 14211391044159602918, 2381455978713737016], + "y": [13971515893527127207, 7078722574057096191, 6337080743811431820, 757015217034494132], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 5825422128268478267, - 9219263846299851036, - 3879231702557190566, - 1702488722758880769 - ], - "y": [ - 18311881100262470992, - 5742998199368802392, - 18106865487471159417, - 502191980176920012 - ], + "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], + "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], "infinity": false }, { - "x": [ - 17195892082859417081, - 7890531942603584793, - 2381805632820057528, - 3173232410464566465 - ], - "y": [ - 16359614627947132075, - 3459600273035137079, - 4550762061432972122, - 3394559699318358224 - ], + "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], + "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], "infinity": false }, { - "x": [ - 1716103379277390185, - 18097936269579187542, - 16357329729761063450, - 1508640059338197502 - ], - "y": [ - 11014806739603983364, - 4396503314588777389, - 9397245609635151055, - 1703957955248411380 - ], + "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], + "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], "infinity": false }, { - "x": [ - 4770171350693477354, - 17110558673192292253, - 9799800677557311408, - 761984875463445481 - ], - "y": [ - 1560561403388310063, - 31331275310848146, - 287152055803835484, - 457826332542037277 - ], + "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], + "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 12452920133699897102, - 6896642231513345496, - 4655495116895575043, - 1453525729114564853 - ], - "y": [ - 3574087764464303986, - 10141819911397868785, - 2342639320036978232, - 556196027732983028 - ], + "x": [12452920133699897102, 6896642231513345496, 4655495116895575043, 1453525729114564853], + "y": [3574087764464303986, 10141819911397868785, 2342639320036978232, 556196027732983028], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_17_key.json b/core/bin/verification_key_generator_and_server/data/verification_17_key.json index 4886f501712e..274d4625f42b 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_17_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_17_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 17914331890341023175, - 5200903915088916638, - 7417971632353510341, - 989671567770015891 - ], - "y": [ - 2927207345798721401, - 12686845373576710402, - 977520799157489114, - 1882223742569339495 - ], + "x": [17914331890341023175, 5200903915088916638, 7417971632353510341, 989671567770015891], + "y": [2927207345798721401, 12686845373576710402, 977520799157489114, 1882223742569339495], "infinity": false }, { - "x": [ - 17162848902278956536, - 16169550484471334725, - 10830640611178609260, - 1347016616567630867 - ], - "y": [ - 6224316231648682710, - 10518372790293065661, - 4887066336660303630, - 703109868065750569 - ], + "x": [17162848902278956536, 16169550484471334725, 10830640611178609260, 1347016616567630867], + "y": [6224316231648682710, 10518372790293065661, 4887066336660303630, 703109868065750569], "infinity": false }, { - "x": [ - 15783141083967762454, - 16153855592853073081, - 5667838393811413602, - 1552498518850981979 - ], - "y": [ - 4220445586486275972, - 13196202402039716924, - 17506868028821343237, - 2718319833724164541 - ], + "x": [15783141083967762454, 16153855592853073081, 5667838393811413602, 1552498518850981979], + "y": [4220445586486275972, 13196202402039716924, 17506868028821343237, 2718319833724164541], "infinity": false }, { - "x": [ - 4896615254637588846, - 5804270398165250639, - 10274952983674590649, - 1937027782721476561 - ], - "y": [ - 14180244016629518742, - 1376497406583367686, - 11268467489552574214, - 2331396669725958189 - ], + "x": [4896615254637588846, 5804270398165250639, 10274952983674590649, 1937027782721476561], + "y": [14180244016629518742, 1376497406583367686, 11268467489552574214, 2331396669725958189], "infinity": false }, { - "x": [ - 191294939748295885, - 2804205121966814820, - 3897841028303648224, - 3406986167359695085 - ], - "y": [ - 6000542982074572633, - 1697448874567677325, - 10313504031977824294, - 320347014349001728 - ], + "x": [191294939748295885, 2804205121966814820, 3897841028303648224, 3406986167359695085], + "y": [6000542982074572633, 1697448874567677325, 10313504031977824294, 320347014349001728], "infinity": false }, { - "x": [ - 6817435454105168413, - 15823888625999007373, - 9766931118761036330, - 3392959293697897728 - ], - "y": [ - 3549039265311512008, - 4758653036115592629, - 219467419355603781, - 83059544477934848 - ], + "x": [6817435454105168413, 15823888625999007373, 9766931118761036330, 3392959293697897728], + "y": [3549039265311512008, 4758653036115592629, 219467419355603781, 83059544477934848], "infinity": false }, { - "x": [ - 5038171725639341807, - 6859992384823395611, - 15284967171349293554, - 16807092603996758 - ], - "y": [ - 16504201956683368367, - 12931995037356002803, - 16812826192957092842, - 3169839139097845275 - ], + "x": [5038171725639341807, 6859992384823395611, 15284967171349293554, 16807092603996758], + "y": [16504201956683368367, 12931995037356002803, 16812826192957092842, 3169839139097845275], "infinity": false }, { - "x": [ - 7140480682142203727, - 9518528852331365100, - 6189914959408603471, - 535939568308325781 - ], - "y": [ - 5944679084532939174, - 17280810090456322382, - 3743919877743496107, - 1235924204609568068 - ], + "x": [7140480682142203727, 9518528852331365100, 6189914959408603471, 535939568308325781], + "y": [5944679084532939174, 17280810090456322382, 3743919877743496107, 1235924204609568068], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 1929812895882850703, - 10386198218814398503, - 17007521659662498274, - 1093092717342753672 - ], - "y": [ - 14834187133095267171, - 15506032964234961178, - 7626816120460943443, - 871778379365004315 - ], + "x": [1929812895882850703, 10386198218814398503, 17007521659662498274, 1093092717342753672], + "y": [14834187133095267171, 15506032964234961178, 7626816120460943443, 871778379365004315], "infinity": false }, { - "x": [ - 15660406110329165813, - 8146521122567923995, - 2421739551937359002, - 3037598346026174089 - ], - "y": [ - 526124545966722472, - 1168331442853419483, - 4128095883471549051, - 2951909971734725955 - ], + "x": [15660406110329165813, 8146521122567923995, 2421739551937359002, 3037598346026174089], + "y": [526124545966722472, 1168331442853419483, 4128095883471549051, 2951909971734725955], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 6206240620508019400, - 3690935139087147193, - 15230272164329216928, - 2140680869789406894 - ], - "y": [ - 14967331981004447304, - 1624146052760537503, - 8986435052862626311, - 334011853307313390 - ], + "x": [6206240620508019400, 3690935139087147193, 15230272164329216928, 2140680869789406894], + "y": [14967331981004447304, 1624146052760537503, 8986435052862626311, 334011853307313390], "infinity": false }, { - "x": [ - 4342223064246074020, - 2037946044543710684, - 9057698479075332373, - 1955362957846693345 - ], - "y": [ - 13253375713250043938, - 6754658208742468331, - 9339617748652368850, - 3066524060291544175 - ], + "x": [4342223064246074020, 2037946044543710684, 9057698479075332373, 1955362957846693345], + "y": [13253375713250043938, 6754658208742468331, 9339617748652368850, 3066524060291544175], "infinity": false }, { - "x": [ - 17765629723696241082, - 14243015821582305127, - 922013493526048847, - 186830516636733479 - ], - "y": [ - 14465184942185208224, - 11235596895177038197, - 5490682932088517686, - 1253279069662324930 - ], + "x": [17765629723696241082, 14243015821582305127, 922013493526048847, 186830516636733479], + "y": [14465184942185208224, 11235596895177038197, 5490682932088517686, 1253279069662324930], "infinity": false }, { - "x": [ - 9369367805867402420, - 12663806522952881709, - 10184609326459106945, - 1664572000409921348 - ], - "y": [ - 4383960972942823390, - 6526609131568596717, - 1343118583674917141, - 113408414321095416 - ], + "x": [9369367805867402420, 12663806522952881709, 10184609326459106945, 1664572000409921348], + "y": [4383960972942823390, 6526609131568596717, 1343118583674917141, 113408414321095416], "infinity": false } ], "total_lookup_entries_length": 6306340, "lookup_selector_commitment": { - "x": [ - 8662938005624859815, - 9126108646717466191, - 14321121874090966307, - 2777446762308933634 - ], - "y": [ - 12555265159079607081, - 9054928862248682392, - 2784170007581120117, - 1769718192676345815 - ], + "x": [8662938005624859815, 9126108646717466191, 14321121874090966307, 2777446762308933634], + "y": [12555265159079607081, 9054928862248682392, 2784170007581120117, 1769718192676345815], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 12644448349947379666, - 16345179309557779118, - 10854030671875297787, - 1358228639202695992 - ], - "y": [ - 2673142241557152443, - 11674634738064487673, - 12992693662201776412, - 1888958170754620568 - ], + "x": [12644448349947379666, 16345179309557779118, 10854030671875297787, 1358228639202695992], + "y": [2673142241557152443, 11674634738064487673, 12992693662201776412, 1888958170754620568], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_18_key.json b/core/bin/verification_key_generator_and_server/data/verification_18_key.json index 0987039dd1fa..68457e3688f9 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_18_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_18_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 8828437332483635107, - 13777915698231175292, - 11504510351588004199, - 2516385517175522236 - ], - "y": [ - 1530453459325046685, - 2126477283125660971, - 6874073688275717548, - 2971751478402184988 - ], + "x": [8828437332483635107, 13777915698231175292, 11504510351588004199, 2516385517175522236], + "y": [1530453459325046685, 2126477283125660971, 6874073688275717548, 2971751478402184988], "infinity": false }, { - "x": [ - 3490885152333630169, - 4123320877294819459, - 5138828731030738163, - 3039569146695764058 - ], - "y": [ - 10725322881860790776, - 1512262420257872325, - 10563843054743673205, - 447776577449487981 - ], + "x": [3490885152333630169, 4123320877294819459, 5138828731030738163, 3039569146695764058], + "y": [10725322881860790776, 1512262420257872325, 10563843054743673205, 447776577449487981], "infinity": false }, { - "x": [ - 14957646468235752771, - 6216555943494703122, - 7827110015048654177, - 2702223139144227095 - ], - "y": [ - 505353369980003046, - 9687811614109626117, - 5346740791392836415, - 1340467989233731971 - ], + "x": [14957646468235752771, 6216555943494703122, 7827110015048654177, 2702223139144227095], + "y": [505353369980003046, 9687811614109626117, 5346740791392836415, 1340467989233731971], "infinity": false }, { - "x": [ - 3201028595190213325, - 9659059230246338206, - 901122635500995415, - 765851963674764103 - ], - "y": [ - 10609226610841230792, - 8145519080052709505, - 17851750066177581293, - 362176586681460505 - ], + "x": [3201028595190213325, 9659059230246338206, 901122635500995415, 765851963674764103], + "y": [10609226610841230792, 8145519080052709505, 17851750066177581293, 362176586681460505], "infinity": false }, { - "x": [ - 13374935211181268625, - 1347742735582506393, - 4588995338963087243, - 94453217016201562 - ], - "y": [ - 4077548225372117006, - 11859845367084549583, - 2736752177668563039, - 1134818940315684409 - ], + "x": [13374935211181268625, 1347742735582506393, 4588995338963087243, 94453217016201562], + "y": [4077548225372117006, 11859845367084549583, 2736752177668563039, 1134818940315684409], "infinity": false }, { - "x": [ - 9467178015658262369, - 10545965721679492606, - 5726831550010619228, - 2051827871593168334 - ], - "y": [ - 6169140154733194545, - 5574043976386236933, - 12140759986363309479, - 1521273866181786590 - ], + "x": [9467178015658262369, 10545965721679492606, 5726831550010619228, 2051827871593168334], + "y": [6169140154733194545, 5574043976386236933, 12140759986363309479, 1521273866181786590], "infinity": false }, { - "x": [ - 9642818207174528085, - 15617465062711953088, - 11263174413902929450, - 639683138088730423 - ], - "y": [ - 15150652293369779803, - 11338278639695990684, - 12204993260723588081, - 2039902155290309382 - ], + "x": [9642818207174528085, 15617465062711953088, 11263174413902929450, 639683138088730423], + "y": [15150652293369779803, 11338278639695990684, 12204993260723588081, 2039902155290309382], "infinity": false }, { - "x": [ - 7292405600450693833, - 573142590034645775, - 1583019100043676600, - 1978695840953226358 - ], - "y": [ - 5154489367309996043, - 8763740977657654022, - 9821219773990064941, - 2636875463267519559 - ], + "x": [7292405600450693833, 573142590034645775, 1583019100043676600, 1978695840953226358], + "y": [5154489367309996043, 8763740977657654022, 9821219773990064941, 2636875463267519559], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 2075450237700219880, - 2920304484074114568, - 8294843245052708759, - 555293007149161182 - ], - "y": [ - 6360019558055677441, - 7673047654179899818, - 10263007591992092214, - 2148859098846651643 - ], + "x": [2075450237700219880, 2920304484074114568, 8294843245052708759, 555293007149161182], + "y": [6360019558055677441, 7673047654179899818, 10263007591992092214, 2148859098846651643], "infinity": false }, { - "x": [ - 3970783323754285443, - 13019363829879217592, - 18197490676081603277, - 630296172623407012 - ], - "y": [ - 7987745494904024640, - 9631048689610078757, - 1592818072678520163, - 2678374240960081558 - ], + "x": [3970783323754285443, 13019363829879217592, 18197490676081603277, 630296172623407012], + "y": [7987745494904024640, 9631048689610078757, 1592818072678520163, 2678374240960081558], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 3055966415338102721, - 18231075292903695376, - 9187400351012014001, - 2311743062653684305 - ], - "y": [ - 2553578246375478674, - 930511927228692161, - 2271826946385879571, - 3124263363559878329 - ], + "x": [3055966415338102721, 18231075292903695376, 9187400351012014001, 2311743062653684305], + "y": [2553578246375478674, 930511927228692161, 2271826946385879571, 3124263363559878329], "infinity": false }, { - "x": [ - 6936812562216228782, - 15195638439305648290, - 17827467578192758430, - 2674740411261002393 - ], - "y": [ - 9738743088557108685, - 17225541903460577384, - 16627013813461429872, - 494410407050490065 - ], + "x": [6936812562216228782, 15195638439305648290, 17827467578192758430, 2674740411261002393], + "y": [9738743088557108685, 17225541903460577384, 16627013813461429872, 494410407050490065], "infinity": false }, { - "x": [ - 10570962909758341245, - 18167360144953681397, - 2744925075742623060, - 736412139310579435 - ], - "y": [ - 13849279071386536985, - 10093748777935480433, - 904764951143479286, - 138814932031469939 - ], + "x": [10570962909758341245, 18167360144953681397, 2744925075742623060, 736412139310579435], + "y": [13849279071386536985, 10093748777935480433, 904764951143479286, 138814932031469939], "infinity": false }, { - "x": [ - 4533871929444677010, - 10106157783629999301, - 4178648893377901718, - 3164693318611048089 - ], - "y": [ - 12699039702383686311, - 4388078229442418460, - 8961813905523894854, - 570254591975307765 - ], + "x": [4533871929444677010, 10106157783629999301, 4178648893377901718, 3164693318611048089], + "y": [12699039702383686311, 4388078229442418460, 8961813905523894854, 570254591975307765], "infinity": false } ], "total_lookup_entries_length": 18884644, "lookup_selector_commitment": { - "x": [ - 15022814412717317376, - 17444332185630324119, - 14685665421775887958, - 906494215348891007 - ], - "y": [ - 9833778905776399360, - 1648124311168457783, - 3500435402371619753, - 2370413643071351216 - ], + "x": [15022814412717317376, 17444332185630324119, 14685665421775887958, 906494215348891007], + "y": [9833778905776399360, 1648124311168457783, 3500435402371619753, 2370413643071351216], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 8321950609730151216, - 18010887235457883784, - 17038267498493175776, - 1380842840607309871 - ], - "y": [ - 3264160671000273944, - 16611917363401804468, - 8505391859632632917, - 2149881676646664319 - ], + "x": [8321950609730151216, 18010887235457883784, 17038267498493175776, 1380842840607309871], + "y": [3264160671000273944, 16611917363401804468, 8505391859632632917, 2149881676646664319], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_1_key.json b/core/bin/verification_key_generator_and_server/data/verification_1_key.json index 0310303d2a53..03b5467f0979 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_1_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_1_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 7601801432079276288, - 15201863322122857773, - 8806193975262404580, - 2590787273683229105 - ], - "y": [ - 16702527967956763728, - 6181870639994435984, - 1867123357108619315, - 2767403024411663364 - ], + "x": [7601801432079276288, 15201863322122857773, 8806193975262404580, 2590787273683229105], + "y": [16702527967956763728, 6181870639994435984, 1867123357108619315, 2767403024411663364], "infinity": false }, { - "x": [ - 2455316591212726341, - 2027771240685247927, - 10685588854446154162, - 3030775657966372875 - ], - "y": [ - 18300009037843703356, - 1612973442135305251, - 10693350009422283513, - 1442590213691840716 - ], + "x": [2455316591212726341, 2027771240685247927, 10685588854446154162, 3030775657966372875], + "y": [18300009037843703356, 1612973442135305251, 10693350009422283513, 1442590213691840716], "infinity": false }, { - "x": [ - 12311884457715965312, - 10390638194798557018, - 11306832124741148566, - 300716765354847473 - ], - "y": [ - 9707964220031061231, - 14753080439380196493, - 5717535245627190368, - 702219636062983319 - ], + "x": [12311884457715965312, 10390638194798557018, 11306832124741148566, 300716765354847473], + "y": [9707964220031061231, 14753080439380196493, 5717535245627190368, 702219636062983319], "infinity": false }, { - "x": [ - 7758453297146426337, - 1673770484163252092, - 14607544807007157753, - 857313958429629763 - ], - "y": [ - 14921629410308576937, - 15298335487420996140, - 2704982045392946878, - 2611590721009022852 - ], + "x": [7758453297146426337, 1673770484163252092, 14607544807007157753, 857313958429629763], + "y": [14921629410308576937, 15298335487420996140, 2704982045392946878, 2611590721009022852], "infinity": false }, { - "x": [ - 14311011031579784592, - 15625526098906078640, - 1319146597092063841, - 774276845418764858 - ], - "y": [ - 3893523842912943845, - 18146056093503974553, - 11030513442747849089, - 389965813625175232 - ], + "x": [14311011031579784592, 15625526098906078640, 1319146597092063841, 774276845418764858], + "y": [3893523842912943845, 18146056093503974553, 11030513442747849089, 389965813625175232], "infinity": false }, { - "x": [ - 7007915445081129178, - 2401922490835966325, - 418720827124106725, - 2770268368066902308 - ], - "y": [ - 12116308634970006696, - 14528630571959109449, - 9950799281726780069, - 724152027617190422 - ], + "x": [7007915445081129178, 2401922490835966325, 418720827124106725, 2770268368066902308], + "y": [12116308634970006696, 14528630571959109449, 9950799281726780069, 724152027617190422], "infinity": false }, { - "x": [ - 2442021019274420960, - 16295185893380203674, - 2439146651414642189, - 2243335375830582173 - ], - "y": [ - 3782090054162740071, - 4704457281172608987, - 4410900061257118309, - 764611777065564766 - ], + "x": [2442021019274420960, 16295185893380203674, 2439146651414642189, 2243335375830582173], + "y": [3782090054162740071, 4704457281172608987, 4410900061257118309, 764611777065564766], "infinity": false }, { - "x": [ - 17964884224938230037, - 7876675311267561320, - 16762398450655445790, - 1210707988542142007 - ], - "y": [ - 10470358785861361347, - 9485656365593190672, - 6046378362748740079, - 2457285875935475197 - ], + "x": [17964884224938230037, 7876675311267561320, 16762398450655445790, 1210707988542142007], + "y": [10470358785861361347, 9485656365593190672, 6046378362748740079, 2457285875935475197], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 17157526827088368172, - 11284084393440625999, - 9351565798611728109, - 3234841809825307363 - ], - "y": [ - 8319704714678793930, - 4159327153032521498, - 15356346081767327573, - 3239913585027348493 - ], + "x": [17157526827088368172, 11284084393440625999, 9351565798611728109, 3234841809825307363], + "y": [8319704714678793930, 4159327153032521498, 15356346081767327573, 3239913585027348493], "infinity": false }, { - "x": [ - 15456321646261647359, - 15891438700803416959, - 3317730603133051465, - 2641175705943818316 - ], - "y": [ - 1411951218052246200, - 1661720531643832913, - 13537400120511760371, - 2292851110898807736 - ], + "x": [15456321646261647359, 15891438700803416959, 3317730603133051465, 2641175705943818316], + "y": [1411951218052246200, 1661720531643832913, 13537400120511760371, 2292851110898807736], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 10328956753700766823, - 2827084848292920926, - 6753362467616392790, - 3266354497443915853 - ], - "y": [ - 4786671171082888838, - 11071539213550223285, - 3886224490311829958, - 1435384580945051012 - ], + "x": [10328956753700766823, 2827084848292920926, 6753362467616392790, 3266354497443915853], + "y": [4786671171082888838, 11071539213550223285, 3886224490311829958, 1435384580945051012], "infinity": false }, { - "x": [ - 6970901872301032061, - 11845499850875638451, - 12523013241874863158, - 564589203700245768 - ], - "y": [ - 9149991346853645253, - 10833082414663634622, - 10032445307744641248, - 3184550747076826571 - ], + "x": [6970901872301032061, 11845499850875638451, 12523013241874863158, 564589203700245768], + "y": [9149991346853645253, 10833082414663634622, 10032445307744641248, 3184550747076826571], "infinity": false }, { - "x": [ - 2899501934612768796, - 7289832407727333580, - 15398305180487198919, - 2955735241334744486 - ], - "y": [ - 4963499698281910643, - 5723522390488208800, - 3637467607919864741, - 339118267031086794 - ], + "x": [2899501934612768796, 7289832407727333580, 15398305180487198919, 2955735241334744486], + "y": [4963499698281910643, 5723522390488208800, 3637467607919864741, 339118267031086794], "infinity": false }, { - "x": [ - 16561673014946600686, - 6893642268089467710, - 11554023210615815565, - 122477375056362239 - ], - "y": [ - 15978560303000591303, - 6087766803442805629, - 6114779478264008006, - 2753348573959524636 - ], + "x": [16561673014946600686, 6893642268089467710, 11554023210615815565, 122477375056362239], + "y": [15978560303000591303, 6087766803442805629, 6114779478264008006, 2753348573959524636], "infinity": false } ], "total_lookup_entries_length": 30899639, "lookup_selector_commitment": { - "x": [ - 4819118611809066421, - 16205075690681881406, - 8088108199972047891, - 2462381205202312681 - ], - "y": [ - 9403235417076804812, - 11746452954984920263, - 5479393366572364588, - 2168476120537571525 - ], + "x": [4819118611809066421, 16205075690681881406, 8088108199972047891, 2462381205202312681], + "y": [9403235417076804812, 11746452954984920263, 5479393366572364588, 2168476120537571525], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 1589280911861251894, - 2000192568988587993, - 18399902493387281635, - 1843483375839232315 - ], - "y": [ - 14712825033319581746, - 11500494123399487569, - 4370642671010258701, - 567620704393396341 - ], + "x": [1589280911861251894, 2000192568988587993, 18399902493387281635, 1843483375839232315], + "y": [14712825033319581746, 11500494123399487569, 4370642671010258701, 567620704393396341], "infinity": false }, { - "x": [ - 0, - 0, - 0, - 0 - ], - "y": [ - 1, - 0, - 0, - 0 - ], + "x": [0, 0, 0, 0], + "y": [1, 0, 0, 0], "infinity": true }, { - "x": [ - 0, - 0, - 0, - 0 - ], - "y": [ - 1, - 0, - 0, - 0 - ], + "x": [0, 0, 0, 0], + "y": [1, 0, 0, 0], "infinity": true }, { - "x": [ - 5989740765536181742, - 7510673671757970234, - 7988398980529338112, - 2047433943537325290 - ], - "y": [ - 14952889876146512965, - 17141012675484923048, - 328206788961236528, - 866564802795139 - ], + "x": [5989740765536181742, 7510673671757970234, 7988398980529338112, 2047433943537325290], + "y": [14952889876146512965, 17141012675484923048, 328206788961236528, 866564802795139], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 4824978155651454377, - 12191454623887257586, - 12973919510878979890, - 52932438992466171 - ], - "y": [ - 17857145998747603901, - 2092039184434926372, - 11018504664231591204, - 1321736242331612854 - ], + "x": [4824978155651454377, 12191454623887257586, 12973919510878979890, 52932438992466171], + "y": [17857145998747603901, 2092039184434926372, 11018504664231591204, 1321736242331612854], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_2_key.json b/core/bin/verification_key_generator_and_server/data/verification_2_key.json index 79b16257213f..2937d676ad95 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_2_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_2_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 5518783475412319303, - 13900056820557691891, - 3293972357974626054, - 2215936931279678502 - ], - "y": [ - 7955917949806788616, - 13341003959544330056, - 2090626280536970058, - 340565138339520735 - ], + "x": [5518783475412319303, 13900056820557691891, 3293972357974626054, 2215936931279678502], + "y": [7955917949806788616, 13341003959544330056, 2090626280536970058, 340565138339520735], "infinity": false }, { - "x": [ - 14185170917510557830, - 8046892618400404954, - 16599645397148333553, - 2994187418830549588 - ], - "y": [ - 7234254448777026502, - 8445782435526889669, - 14116370103157060862, - 2248206929083565209 - ], + "x": [14185170917510557830, 8046892618400404954, 16599645397148333553, 2994187418830549588], + "y": [7234254448777026502, 8445782435526889669, 14116370103157060862, 2248206929083565209], "infinity": false }, { - "x": [ - 11154659552703848544, - 12941656139895069323, - 17062140236305086427, - 722110816848028084 - ], - "y": [ - 5009717036998782771, - 827592822749515890, - 15966856850732642654, - 618036931564479654 - ], + "x": [11154659552703848544, 12941656139895069323, 17062140236305086427, 722110816848028084], + "y": [5009717036998782771, 827592822749515890, 15966856850732642654, 618036931564479654], "infinity": false }, { - "x": [ - 5157594213696692987, - 15014090155482426422, - 706425002062263449, - 3203486979181293219 - ], - "y": [ - 14363949081622225749, - 9001876918808042476, - 1615414451418136701, - 444697301726425121 - ], + "x": [5157594213696692987, 15014090155482426422, 706425002062263449, 3203486979181293219], + "y": [14363949081622225749, 9001876918808042476, 1615414451418136701, 444697301726425121], "infinity": false }, { - "x": [ - 9176460251336839321, - 17295305184785757140, - 7831134341003191604, - 2666806971657364559 - ], - "y": [ - 2598277252699259004, - 11916936738177575234, - 2912317122505195338, - 2404138220482962548 - ], + "x": [9176460251336839321, 17295305184785757140, 7831134341003191604, 2666806971657364559], + "y": [2598277252699259004, 11916936738177575234, 2912317122505195338, 2404138220482962548], "infinity": false }, { - "x": [ - 11575910134534349159, - 14192914809594698195, - 18267718409201448839, - 142641722814285206 - ], - "y": [ - 5883506329268908990, - 2832339585209792351, - 14642260147093833347, - 392817691249359885 - ], + "x": [11575910134534349159, 14192914809594698195, 18267718409201448839, 142641722814285206], + "y": [5883506329268908990, 2832339585209792351, 14642260147093833347, 392817691249359885], "infinity": false }, { - "x": [ - 12908012748245269010, - 6525727331816152736, - 16979431824428028279, - 2845131870310951239 - ], - "y": [ - 1571963770034876851, - 17602700402136611105, - 13310928253737079884, - 3347891464097055062 - ], + "x": [12908012748245269010, 6525727331816152736, 16979431824428028279, 2845131870310951239], + "y": [1571963770034876851, 17602700402136611105, 13310928253737079884, 3347891464097055062], "infinity": false }, { - "x": [ - 832167803175150309, - 11457734167413059640, - 13250442890410377059, - 2814079984479722654 - ], - "y": [ - 1463471541691279258, - 1744973157713476297, - 1204969522442685286, - 1269233371856967282 - ], + "x": [832167803175150309, 11457734167413059640, 13250442890410377059, 2814079984479722654], + "y": [1463471541691279258, 1744973157713476297, 1204969522442685286, 1269233371856967282], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 10352656458395970023, - 3995520406692994966, - 13084432248093257522, - 2302839365715839904 - ], - "y": [ - 8225034751786073151, - 16771047952615636124, - 616708265068224682, - 186403683175385821 - ], + "x": [10352656458395970023, 3995520406692994966, 13084432248093257522, 2302839365715839904], + "y": [8225034751786073151, 16771047952615636124, 616708265068224682, 186403683175385821], "infinity": false }, { - "x": [ - 4270731028924703792, - 3128341040439802084, - 15083522049785140229, - 2261189689222904761 - ], - "y": [ - 8781157350107493893, - 14766318733918494793, - 9428422381369337621, - 419743052593117743 - ], + "x": [4270731028924703792, 3128341040439802084, 15083522049785140229, 2261189689222904761], + "y": [8781157350107493893, 14766318733918494793, 9428422381369337621, 419743052593117743], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 11112968480130414212, - 11913364106966677596, - 36671493864905181, - 496058283903160224 - ], - "y": [ - 9691136012048916590, - 12909186572206021308, - 1700657689434945171, - 3072265811815532764 - ], + "x": [11112968480130414212, 11913364106966677596, 36671493864905181, 496058283903160224], + "y": [9691136012048916590, 12909186572206021308, 1700657689434945171, 3072265811815532764], "infinity": false }, { - "x": [ - 11360744654540534278, - 9830357778413675465, - 5192069313646589173, - 113131628631742646 - ], - "y": [ - 5515513518975242303, - 323890392099446701, - 2255482865429449468, - 2322464724330067577 - ], + "x": [11360744654540534278, 9830357778413675465, 5192069313646589173, 113131628631742646], + "y": [5515513518975242303, 323890392099446701, 2255482865429449468, 2322464724330067577], "infinity": false }, { - "x": [ - 3414259545645111239, - 5416149397109634837, - 12993204506510556426, - 2894091844446687144 - ], - "y": [ - 4731949297479191167, - 1043460441127916951, - 16890401788673829290, - 1356564712828723527 - ], + "x": [3414259545645111239, 5416149397109634837, 12993204506510556426, 2894091844446687144], + "y": [4731949297479191167, 1043460441127916951, 16890401788673829290, 1356564712828723527], "infinity": false }, { - "x": [ - 8993182433738017869, - 11441314659459910136, - 8181494681500166120, - 1591321336872387140 - ], - "y": [ - 5278254820002084488, - 17932571960593236295, - 7626453034762681225, - 3463596506399756742 - ], + "x": [8993182433738017869, 11441314659459910136, 8181494681500166120, 1591321336872387140], + "y": [5278254820002084488, 17932571960593236295, 7626453034762681225, 3463596506399756742], "infinity": false } ], "total_lookup_entries_length": 30783671, "lookup_selector_commitment": { - "x": [ - 1336161834228740427, - 15823221750660268452, - 13689567356831376139, - 1839611883700311389 - ], - "y": [ - 14875759795137726191, - 20318096045504920, - 8816565555629805366, - 75556627728969178 - ], + "x": [1336161834228740427, 15823221750660268452, 13689567356831376139, 1839611883700311389], + "y": [14875759795137726191, 20318096045504920, 8816565555629805366, 75556627728969178], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 1589280911861251894, - 2000192568988587993, - 18399902493387281635, - 1843483375839232315 - ], - "y": [ - 14712825033319581746, - 11500494123399487569, - 4370642671010258701, - 567620704393396341 - ], + "x": [1589280911861251894, 2000192568988587993, 18399902493387281635, 1843483375839232315], + "y": [14712825033319581746, 11500494123399487569, 4370642671010258701, 567620704393396341], "infinity": false }, { - "x": [ - 0, - 0, - 0, - 0 - ], - "y": [ - 1, - 0, - 0, - 0 - ], + "x": [0, 0, 0, 0], + "y": [1, 0, 0, 0], "infinity": true }, { - "x": [ - 0, - 0, - 0, - 0 - ], - "y": [ - 1, - 0, - 0, - 0 - ], + "x": [0, 0, 0, 0], + "y": [1, 0, 0, 0], "infinity": true }, { - "x": [ - 5989740765536181742, - 7510673671757970234, - 7988398980529338112, - 2047433943537325290 - ], - "y": [ - 14952889876146512965, - 17141012675484923048, - 328206788961236528, - 866564802795139 - ], + "x": [5989740765536181742, 7510673671757970234, 7988398980529338112, 2047433943537325290], + "y": [14952889876146512965, 17141012675484923048, 328206788961236528, 866564802795139], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 3408213281770836085, - 15382444791373914560, - 16110552627056571461, - 1161688479331593061 - ], - "y": [ - 13379188756114722390, - 12926267823879081751, - 14282599792449107495, - 3244837013658545871 - ], + "x": [3408213281770836085, 15382444791373914560, 16110552627056571461, 1161688479331593061], + "y": [13379188756114722390, 12926267823879081751, 14282599792449107495, 3244837013658545871], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_3_key.json b/core/bin/verification_key_generator_and_server/data/verification_3_key.json index efc3726eccd1..88657dcb5cb8 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_3_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_3_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 974750104498669965, - 8834694375170731028, - 17769568165179068263, - 1849964290686413257 - ], - "y": [ - 2843958502709968021, - 14935491193053445350, - 17474331455917570677, - 3480256926594645294 - ], + "x": [974750104498669965, 8834694375170731028, 17769568165179068263, 1849964290686413257], + "y": [2843958502709968021, 14935491193053445350, 17474331455917570677, 3480256926594645294], "infinity": false }, { - "x": [ - 12247266302470255326, - 5464334033464606744, - 14546720066962635103, - 3390803970213094244 - ], - "y": [ - 1712883459777313087, - 8894684513803091578, - 7336029034040207862, - 1084942733964754038 - ], + "x": [12247266302470255326, 5464334033464606744, 14546720066962635103, 3390803970213094244], + "y": [1712883459777313087, 8894684513803091578, 7336029034040207862, 1084942733964754038], "infinity": false }, { - "x": [ - 11977576082511042092, - 13911318721427630536, - 319094179978428102, - 953394664847088490 - ], - "y": [ - 5661602966428088380, - 18066888770140331931, - 10148625466830766086, - 532999801462127665 - ], + "x": [11977576082511042092, 13911318721427630536, 319094179978428102, 953394664847088490], + "y": [5661602966428088380, 18066888770140331931, 10148625466830766086, 532999801462127665], "infinity": false }, { - "x": [ - 10638316621700142822, - 6209825954391834011, - 6018402549491433521, - 2545954919587131385 - ], - "y": [ - 3871396302214628234, - 10421121582832311901, - 3487262368594849688, - 47097530491220969 - ], + "x": [10638316621700142822, 6209825954391834011, 6018402549491433521, 2545954919587131385], + "y": [3871396302214628234, 10421121582832311901, 3487262368594849688, 47097530491220969], "infinity": false }, { - "x": [ - 5177078736350587057, - 913561536392131154, - 5845225668116211782, - 1148177573394811202 - ], - "y": [ - 8211065483139055749, - 11150796128594731149, - 12060516803886544192, - 1369115203017663219 - ], + "x": [5177078736350587057, 913561536392131154, 5845225668116211782, 1148177573394811202], + "y": [8211065483139055749, 11150796128594731149, 12060516803886544192, 1369115203017663219], "infinity": false }, { - "x": [ - 13164869081104983842, - 8055457852373227775, - 14586708642322040767, - 1635508642571745116 - ], - "y": [ - 13200963466266892674, - 5743120645853669652, - 13845956436885115425, - 190245686570654182 - ], + "x": [13164869081104983842, 8055457852373227775, 14586708642322040767, 1635508642571745116], + "y": [13200963466266892674, 5743120645853669652, 13845956436885115425, 190245686570654182], "infinity": false }, { - "x": [ - 14509622964666644543, - 14326815147327339718, - 14403865749203816615, - 3250250446651605086 - ], - "y": [ - 16982880826411734238, - 7223038929743846372, - 13243677057981888895, - 3343376109946605946 - ], + "x": [14509622964666644543, 14326815147327339718, 14403865749203816615, 3250250446651605086], + "y": [16982880826411734238, 7223038929743846372, 13243677057981888895, 3343376109946605946], "infinity": false }, { - "x": [ - 2186705028467599783, - 10754157155083578321, - 9835223072941921904, - 622934131449235283 - ], - "y": [ - 18146384691082289702, - 3710418457832183420, - 9065618198278602094, - 1385809660894704773 - ], + "x": [2186705028467599783, 10754157155083578321, 9835223072941921904, 622934131449235283], + "y": [18146384691082289702, 3710418457832183420, 9065618198278602094, 1385809660894704773], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 17931943108498820694, - 4676695383650659094, - 9553383984112211657, - 2582659305204352628 - ], - "y": [ - 12954711565738560879, - 8077826911980788091, - 11395265968148743331, - 2855607571527172113 - ], + "x": [17931943108498820694, 4676695383650659094, 9553383984112211657, 2582659305204352628], + "y": [12954711565738560879, 8077826911980788091, 11395265968148743331, 2855607571527172113], "infinity": false }, { - "x": [ - 1579731699170899555, - 2930979681521170129, - 14423227389748779725, - 3843483067412713 - ], - "y": [ - 12757858203360676100, - 11658617912640524507, - 18404463112235833117, - 216398038700598122 - ], + "x": [1579731699170899555, 2930979681521170129, 14423227389748779725, 3843483067412713], + "y": [12757858203360676100, 11658617912640524507, 18404463112235833117, 216398038700598122], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 17803109611249396349, - 11283859494780689211, - 13999735262776985506, - 1616317395767274315 - ], - "y": [ - 4702080082438660327, - 10318021266807502248, - 1343468927015043909, - 1458947702127238817 - ], + "x": [17803109611249396349, 11283859494780689211, 13999735262776985506, 1616317395767274315], + "y": [4702080082438660327, 10318021266807502248, 1343468927015043909, 1458947702127238817], "infinity": false }, { - "x": [ - 13991248091180946539, - 9572452770464844385, - 7281256466642465445, - 1589821161594539260 - ], - "y": [ - 16330872592308522669, - 11643961078499332590, - 7621286777424912214, - 1961788650881680195 - ], + "x": [13991248091180946539, 9572452770464844385, 7281256466642465445, 1589821161594539260], + "y": [16330872592308522669, 11643961078499332590, 7621286777424912214, 1961788650881680195], "infinity": false }, { - "x": [ - 14854997120241085994, - 893859077870132655, - 10853933192917459827, - 2671373989840251193 - ], - "y": [ - 11492939649862087988, - 1925620351626108277, - 12007636802682139817, - 1315346956977275889 - ], + "x": [14854997120241085994, 893859077870132655, 10853933192917459827, 2671373989840251193], + "y": [11492939649862087988, 1925620351626108277, 12007636802682139817, 1315346956977275889], "infinity": false }, { - "x": [ - 13343929807426311972, - 3234215523073799496, - 4658804614957804350, - 123243726695066707 - ], - "y": [ - 14958243475655956241, - 4034118281425140294, - 1019154098165161379, - 2657524750158613958 - ], + "x": [13343929807426311972, 3234215523073799496, 4658804614957804350, 123243726695066707], + "y": [14958243475655956241, 4034118281425140294, 1019154098165161379, 2657524750158613958], "infinity": false } ], "total_lookup_entries_length": 15208907, "lookup_selector_commitment": { - "x": [ - 3869759959209659371, - 17545310949245876386, - 6597968549104995840, - 1547642766729861753 - ], - "y": [ - 5629222579571396955, - 16315207580711001852, - 15947168783307514478, - 2534006098464270073 - ], + "x": [3869759959209659371, 17545310949245876386, 6597968549104995840, 1547642766729861753], + "y": [5629222579571396955, 16315207580711001852, 15947168783307514478, 2534006098464270073], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 12925597216490182210, - 13030942092034120135, - 17733316148446765999, - 112547709703624791 - ], - "y": [ - 13293415162200038331, - 13010565234555563811, - 15476251035925496743, - 2588541998389664114 - ], + "x": [12925597216490182210, 13030942092034120135, 17733316148446765999, 112547709703624791], + "y": [13293415162200038331, 13010565234555563811, 15476251035925496743, 2588541998389664114], "infinity": false }, { - "x": [ - 11118240121224901946, - 9394562257959111170, - 9026436993514314918, - 1751747619588842429 - ], - "y": [ - 6039590802345873394, - 17531716309156986038, - 1711770599161550805, - 1941094644175870288 - ], + "x": [11118240121224901946, 9394562257959111170, 9026436993514314918, 1751747619588842429], + "y": [6039590802345873394, 17531716309156986038, 1711770599161550805, 1941094644175870288], "infinity": false }, { - "x": [ - 17999903301086933877, - 10468070608989378923, - 3479353092436121335, - 607756992244480908 - ], - "y": [ - 10863079642303790364, - 4737012301447477097, - 4605789209164294308, - 1430572887755557386 - ], + "x": [17999903301086933877, 10468070608989378923, 3479353092436121335, 607756992244480908], + "y": [10863079642303790364, 4737012301447477097, 4605789209164294308, 1430572887755557386], "infinity": false }, { - "x": [ - 4609762018249049814, - 4113097757442144437, - 4725434011535510809, - 2977599521231955696 - ], - "y": [ - 14636094180551257630, - 8819447661702130886, - 1091706295519429215, - 56675985696303183 - ], + "x": [4609762018249049814, 4113097757442144437, 4725434011535510809, 2977599521231955696], + "y": [14636094180551257630, 8819447661702130886, 1091706295519429215, 56675985696303183], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 6380759427317126685, - 6672737265924091686, - 14552369645196037262, - 1668823783737500912 - ], - "y": [ - 4951884449279236371, - 16324193898368483526, - 10792452284404778772, - 929770155761471462 - ], + "x": [6380759427317126685, 6672737265924091686, 14552369645196037262, 1668823783737500912], + "y": [4951884449279236371, 16324193898368483526, 10792452284404778772, 929770155761471462], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_4_key.json b/core/bin/verification_key_generator_and_server/data/verification_4_key.json index 8d42dcd66a75..dc0c5da74a6f 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_4_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_4_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 15923176050075197, - 8963905519117333456, - 5333091548039957996, - 1660697180439834807 - ], - "y": [ - 13105864494044341635, - 10079874572012628853, - 4164109084931753781, - 1860950003357484648 - ], + "x": [15923176050075197, 8963905519117333456, 5333091548039957996, 1660697180439834807], + "y": [13105864494044341635, 10079874572012628853, 4164109084931753781, 1860950003357484648], "infinity": false }, { - "x": [ - 8216018177730810417, - 13660800917029254431, - 2933384097067755755, - 2823425599268575868 - ], - "y": [ - 8768863192718196559, - 10146282684570870426, - 8275806247588563419, - 605489936306033583 - ], + "x": [8216018177730810417, 13660800917029254431, 2933384097067755755, 2823425599268575868], + "y": [8768863192718196559, 10146282684570870426, 8275806247588563419, 605489936306033583], "infinity": false }, { - "x": [ - 4277344855257545209, - 11172040917478096607, - 4489086903928758598, - 289283798032159440 - ], - "y": [ - 10444137083253378550, - 12133212848977612596, - 6748791972701343485, - 286274227999569844 - ], + "x": [4277344855257545209, 11172040917478096607, 4489086903928758598, 289283798032159440], + "y": [10444137083253378550, 12133212848977612596, 6748791972701343485, 286274227999569844], "infinity": false }, { - "x": [ - 8861797510071553254, - 12734094237204882518, - 13692967202881086499, - 641906135411222522 - ], - "y": [ - 6831762763487302461, - 11965405347371646114, - 6218256502970252800, - 3201462388136754725 - ], + "x": [8861797510071553254, 12734094237204882518, 13692967202881086499, 641906135411222522], + "y": [6831762763487302461, 11965405347371646114, 6218256502970252800, 3201462388136754725], "infinity": false }, { - "x": [ - 12385743015818134054, - 16282219738575446638, - 3256359841301423419, - 505673042938576760 - ], - "y": [ - 6744956686738207932, - 8994291190634790001, - 16789606231722015883, - 2027930268272962928 - ], + "x": [12385743015818134054, 16282219738575446638, 3256359841301423419, 505673042938576760], + "y": [6744956686738207932, 8994291190634790001, 16789606231722015883, 2027930268272962928], "infinity": false }, { - "x": [ - 13671822069226357541, - 818021157447551159, - 10542481209144358852, - 2459295197762128786 - ], - "y": [ - 1072649761929447549, - 6089126583512618706, - 1178131210084507361, - 1066836948212725576 - ], + "x": [13671822069226357541, 818021157447551159, 10542481209144358852, 2459295197762128786], + "y": [1072649761929447549, 6089126583512618706, 1178131210084507361, 1066836948212725576], "infinity": false }, { - "x": [ - 16878956366815094090, - 364977461173568122, - 5439594588743996145, - 1265442855735725449 - ], - "y": [ - 11461704536083653156, - 660278441271820299, - 4314245569905306892, - 1438663846765259508 - ], + "x": [16878956366815094090, 364977461173568122, 5439594588743996145, 1265442855735725449], + "y": [11461704536083653156, 660278441271820299, 4314245569905306892, 1438663846765259508], "infinity": false }, { - "x": [ - 9038539654045396650, - 539827912679485452, - 15399544523862100757, - 1256406598444490417 - ], - "y": [ - 5422113905848106255, - 4943961807853536385, - 10022409325033689104, - 3200702511424842211 - ], + "x": [9038539654045396650, 539827912679485452, 15399544523862100757, 1256406598444490417], + "y": [5422113905848106255, 4943961807853536385, 10022409325033689104, 3200702511424842211], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 7750990741566547331, - 12040155777441846781, - 3000981333322867315, - 2393292192734976436 - ], - "y": [ - 3394853839941291504, - 944019051205640111, - 1104911864338577098, - 2127308956089601096 - ], + "x": [7750990741566547331, 12040155777441846781, 3000981333322867315, 2393292192734976436], + "y": [3394853839941291504, 944019051205640111, 1104911864338577098, 2127308956089601096], "infinity": false }, { - "x": [ - 4735140124663926465, - 16935779121597983173, - 17111626619540374574, - 2327973550601526140 - ], - "y": [ - 8990848735371189388, - 4589751206662798166, - 7575424772436241307, - 2798852347400154642 - ], + "x": [4735140124663926465, 16935779121597983173, 17111626619540374574, 2327973550601526140], + "y": [8990848735371189388, 4589751206662798166, 7575424772436241307, 2798852347400154642], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 4765077060699177749, - 15235935045874519477, - 2022237788491579392, - 354385727984957703 - ], - "y": [ - 11620113321350620961, - 2521830680983779826, - 14047226057605943635, - 2718701882953208503 - ], + "x": [4765077060699177749, 15235935045874519477, 2022237788491579392, 354385727984957703], + "y": [11620113321350620961, 2521830680983779826, 14047226057605943635, 2718701882953208503], "infinity": false }, { - "x": [ - 12967015398643083015, - 1100660813730542482, - 7835181433213557652, - 803165211156388599 - ], - "y": [ - 8557385569712401227, - 535900682745452035, - 16083571717847325979, - 396765644246918860 - ], + "x": [12967015398643083015, 1100660813730542482, 7835181433213557652, 803165211156388599], + "y": [8557385569712401227, 535900682745452035, 16083571717847325979, 396765644246918860], "infinity": false }, { - "x": [ - 6868107733370365435, - 17106601841261210672, - 12219407605084986215, - 2345246684976405066 - ], - "y": [ - 17532412968783851743, - 9996315626158111485, - 17970945522106166231, - 1003764081419207606 - ], + "x": [6868107733370365435, 17106601841261210672, 12219407605084986215, 2345246684976405066], + "y": [17532412968783851743, 9996315626158111485, 17970945522106166231, 1003764081419207606], "infinity": false }, { - "x": [ - 7011201477832405407, - 8818123127103997131, - 2979445003396953339, - 318603240233076406 - ], - "y": [ - 11712108043964996282, - 3474989587891133574, - 3983451673298542860, - 1181581919257021598 - ], + "x": [7011201477832405407, 8818123127103997131, 2979445003396953339, 318603240233076406], + "y": [11712108043964996282, 3474989587891133574, 3983451673298542860, 1181581919257021598], "infinity": false } ], "total_lookup_entries_length": 8484642, "lookup_selector_commitment": { - "x": [ - 27459247093738343, - 1785927757103538268, - 14972116880195568621, - 1034224917068963325 - ], - "y": [ - 17453858127001596558, - 6200103235089742197, - 16245568162666829501, - 651193715230511441 - ], + "x": [27459247093738343, 1785927757103538268, 14972116880195568621, 1034224917068963325], + "y": [17453858127001596558, 6200103235089742197, 16245568162666829501, 651193715230511441], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 697552212563769686, - 7709943502535418760, - 15019345407325619175, - 3433081085078580257 - ], - "y": [ - 8668947019840357731, - 14698901351824712883, - 15088598879190660424, - 2873081208166433946 - ], + "x": [697552212563769686, 7709943502535418760, 15019345407325619175, 3433081085078580257], + "y": [8668947019840357731, 14698901351824712883, 15088598879190660424, 2873081208166433946], "infinity": false }, { - "x": [ - 7893133928909060673, - 7064922516930129957, - 3592836702741304814, - 2239702595710114437 - ], - "y": [ - 7691360541875191519, - 11379321785127235277, - 6653616064071569031, - 2555434628517540774 - ], + "x": [7893133928909060673, 7064922516930129957, 3592836702741304814, 2239702595710114437], + "y": [7691360541875191519, 11379321785127235277, 6653616064071569031, 2555434628517540774], "infinity": false }, { - "x": [ - 6243944238013052821, - 7908243182210136125, - 17178099109525791299, - 2553622184721264566 - ], - "y": [ - 736121280088239428, - 6158073429758170526, - 11217302997977204117, - 2594798912020899417 - ], + "x": [6243944238013052821, 7908243182210136125, 17178099109525791299, 2553622184721264566], + "y": [736121280088239428, 6158073429758170526, 11217302997977204117, 2594798912020899417], "infinity": false }, { - "x": [ - 2064240298596094591, - 16917726764104887991, - 11042784977532408536, - 3377647228930170830 - ], - "y": [ - 10635525052494768819, - 387400048616497096, - 9379200582543310995, - 1571766153703296253 - ], + "x": [2064240298596094591, 16917726764104887991, 11042784977532408536, 3377647228930170830], + "y": [10635525052494768819, 387400048616497096, 9379200582543310995, 1571766153703296253], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 14868101692362122308, - 8135288013508071846, - 9460482611527381887, - 512823635961282598 - ], - "y": [ - 8358211286664762188, - 3532634521932288534, - 5862145521507736138, - 1807935137626658536 - ], + "x": [14868101692362122308, 8135288013508071846, 9460482611527381887, 512823635961282598], + "y": [8358211286664762188, 3532634521932288534, 5862145521507736138, 1807935137626658536], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_5_key.json b/core/bin/verification_key_generator_and_server/data/verification_5_key.json index b9a31b919f1c..a76fe1018e5a 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_5_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_5_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 12322129650547620518, - 4320033807979823995, - 4503809593276792861, - 630958448551597950 - ], - "y": [ - 4947307957322067889, - 1897773243457379956, - 1563584362302565484, - 802109862761172056 - ], + "x": [12322129650547620518, 4320033807979823995, 4503809593276792861, 630958448551597950], + "y": [4947307957322067889, 1897773243457379956, 1563584362302565484, 802109862761172056], "infinity": false }, { - "x": [ - 5860641327684713918, - 16885915425353665713, - 7037370194263044401, - 1837438863045303696 - ], - "y": [ - 13386292219804271609, - 4960073609197619993, - 7328379249582994262, - 191728769121948464 - ], + "x": [5860641327684713918, 16885915425353665713, 7037370194263044401, 1837438863045303696], + "y": [13386292219804271609, 4960073609197619993, 7328379249582994262, 191728769121948464], "infinity": false }, { - "x": [ - 9390502900121613993, - 17218409610830310329, - 4830832371938391322, - 1805131323553685028 - ], - "y": [ - 15707040961083920686, - 16216062707384374953, - 16957058843586642758, - 1341814870249072628 - ], + "x": [9390502900121613993, 17218409610830310329, 4830832371938391322, 1805131323553685028], + "y": [15707040961083920686, 16216062707384374953, 16957058843586642758, 1341814870249072628], "infinity": false }, { - "x": [ - 969252611989285232, - 181405773082212747, - 11110666465356509832, - 1888802363524687207 - ], - "y": [ - 5293477339288357424, - 12076391347720360980, - 11422893229655154394, - 3165450734777404812 - ], + "x": [969252611989285232, 181405773082212747, 11110666465356509832, 1888802363524687207], + "y": [5293477339288357424, 12076391347720360980, 11422893229655154394, 3165450734777404812], "infinity": false }, { - "x": [ - 642192487369089358, - 9585449571929647331, - 3847960352134961209, - 984199510163128792 - ], - "y": [ - 13950390676065893881, - 975256099594703300, - 253120832016214204, - 1860679841584192219 - ], + "x": [642192487369089358, 9585449571929647331, 3847960352134961209, 984199510163128792], + "y": [13950390676065893881, 975256099594703300, 253120832016214204, 1860679841584192219], "infinity": false }, { - "x": [ - 3564548447861991296, - 6278944799487206913, - 1163701992635366786, - 3214877162977671335 - ], - "y": [ - 13131873482361140204, - 14012120801722220187, - 13254371011592477950, - 1082108070640175604 - ], + "x": [3564548447861991296, 6278944799487206913, 1163701992635366786, 3214877162977671335], + "y": [13131873482361140204, 14012120801722220187, 13254371011592477950, 1082108070640175604], "infinity": false }, { - "x": [ - 14190764189814537607, - 18412181832598818289, - 17213387738194113336, - 1662783623959823461 - ], - "y": [ - 7987199081435644988, - 17119136750046780209, - 8770669323846078492, - 3183489396270587333 - ], + "x": [14190764189814537607, 18412181832598818289, 17213387738194113336, 1662783623959823461], + "y": [7987199081435644988, 17119136750046780209, 8770669323846078492, 3183489396270587333], "infinity": false }, { - "x": [ - 14638218826597535389, - 16409988612234258347, - 5025411344133541245, - 603088654230685360 - ], - "y": [ - 12538363432956258836, - 6558875956959901550, - 2415879426147965883, - 750702584304895055 - ], + "x": [14638218826597535389, 16409988612234258347, 5025411344133541245, 603088654230685360], + "y": [12538363432956258836, 6558875956959901550, 2415879426147965883, 750702584304895055], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 2599908293582905760, - 13534206398743622493, - 15926090086034346074, - 467418127379229858 - ], - "y": [ - 9529512934078774185, - 1459270552041127965, - 13418846370362665102, - 2270996612016337371 - ], + "x": [2599908293582905760, 13534206398743622493, 15926090086034346074, 467418127379229858], + "y": [9529512934078774185, 1459270552041127965, 13418846370362665102, 2270996612016337371], "infinity": false }, { - "x": [ - 7264275706530137047, - 5590205367072257545, - 17891440127697345143, - 360638857846382524 - ], - "y": [ - 17983779934218975397, - 1625779403076670241, - 1474025795387210129, - 1716171421120825643 - ], + "x": [7264275706530137047, 5590205367072257545, 17891440127697345143, 360638857846382524], + "y": [17983779934218975397, 1625779403076670241, 1474025795387210129, 1716171421120825643], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 9354841115000244260, - 12887310615208346489, - 1120617137774653400, - 424227936372254439 - ], - "y": [ - 3626714025954019309, - 4480975902927818206, - 10093567956580931634, - 2779897825000836477 - ], + "x": [9354841115000244260, 12887310615208346489, 1120617137774653400, 424227936372254439], + "y": [3626714025954019309, 4480975902927818206, 10093567956580931634, 2779897825000836477], "infinity": false }, { - "x": [ - 1864884782104066211, - 1247154271168453374, - 9982166936353409582, - 1177339527115773898 - ], - "y": [ - 9932597332303163060, - 1888682277213109000, - 11684220277443154622, - 3062389133489783806 - ], + "x": [1864884782104066211, 1247154271168453374, 9982166936353409582, 1177339527115773898], + "y": [9932597332303163060, 1888682277213109000, 11684220277443154622, 3062389133489783806], "infinity": false }, { - "x": [ - 9943021177878836437, - 9004866876172522532, - 14085451328492136137, - 1567186274425392936 - ], - "y": [ - 7148906168793986389, - 4780330524752436486, - 10067456648871712650, - 179752856567560382 - ], + "x": [9943021177878836437, 9004866876172522532, 14085451328492136137, 1567186274425392936], + "y": [7148906168793986389, 4780330524752436486, 10067456648871712650, 179752856567560382], "infinity": false }, { - "x": [ - 14745822832390509907, - 13862030626549782961, - 10000268356302875837, - 705042314567833799 - ], - "y": [ - 11091254259539384938, - 11733968109785394056, - 11099103738494585500, - 1527456782567955191 - ], + "x": [14745822832390509907, 13862030626549782961, 10000268356302875837, 705042314567833799], + "y": [11091254259539384938, 11733968109785394056, 11099103738494585500, 1527456782567955191], "infinity": false } ], "total_lookup_entries_length": 35330543, "lookup_selector_commitment": { - "x": [ - 12333191731462980214, - 17841370099698959347, - 12878670991018181621, - 2894319630687016858 - ], - "y": [ - 76816727314643395, - 3214684791046221459, - 878301108738499830, - 126016925902987736 - ], + "x": [12333191731462980214, 17841370099698959347, 12878670991018181621, 2894319630687016858], + "y": [76816727314643395, 3214684791046221459, 878301108738499830, 126016925902987736], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 911668445361375614, - 12752365066512000136, - 11550232015863976467, - 2053619216798992367 - ], - "y": [ - 4194339833917391280, - 1643071887467668153, - 3377480965202592691, - 1664272901450533719 - ], + "x": [911668445361375614, 12752365066512000136, 11550232015863976467, 2053619216798992367], + "y": [4194339833917391280, 1643071887467668153, 3377480965202592691, 1664272901450533719], "infinity": false }, { - "x": [ - 2999316735203966181, - 5189676006781764591, - 14324679313847304783, - 1264086978509739587 - ], - "y": [ - 8714172036038650967, - 10907167170124829028, - 8950970593162102458, - 1596853051185997037 - ], + "x": [2999316735203966181, 5189676006781764591, 14324679313847304783, 1264086978509739587], + "y": [8714172036038650967, 10907167170124829028, 8950970593162102458, 1596853051185997037], "infinity": false }, { - "x": [ - 1146500486770850326, - 13562754408872334896, - 14063471769392190265, - 3387351506820193517 - ], - "y": [ - 6677788829230735422, - 15425668102208730571, - 5341291772716012975, - 539156410041791428 - ], + "x": [1146500486770850326, 13562754408872334896, 14063471769392190265, 3387351506820193517], + "y": [6677788829230735422, 15425668102208730571, 5341291772716012975, 539156410041791428], "infinity": false }, { - "x": [ - 18159886519320172405, - 4286826840324377773, - 16364826089434525345, - 228697666397725767 - ], - "y": [ - 4850633487261444791, - 6327421534074497160, - 12883776034588695446, - 1510314148471267214 - ], + "x": [18159886519320172405, 4286826840324377773, 16364826089434525345, 228697666397725767], + "y": [4850633487261444791, 6327421534074497160, 12883776034588695446, 1510314148471267214], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 18245233954308230592, - 8193493714287610439, - 6521078295132558240, - 861511081336275611 - ], - "y": [ - 4275834222266292944, - 13179071278128968874, - 5943013356852335765, - 2456639561657053045 - ], + "x": [18245233954308230592, 8193493714287610439, 6521078295132558240, 861511081336275611], + "y": [4275834222266292944, 13179071278128968874, 5943013356852335765, 2456639561657053045], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_6_key.json b/core/bin/verification_key_generator_and_server/data/verification_6_key.json index 34419df17702..7c8fbc650bb8 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_6_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_6_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 11033020679838791108, - 14920056278440370765, - 8156477685651219112, - 2935096142913695825 - ], - "y": [ - 12780055516709256833, - 966513406268819160, - 9584266886886532866, - 892347068344972829 - ], + "x": [11033020679838791108, 14920056278440370765, 8156477685651219112, 2935096142913695825], + "y": [12780055516709256833, 966513406268819160, 9584266886886532866, 892347068344972829], "infinity": false }, { - "x": [ - 4044870432040348042, - 10630300946926732771, - 3143480015080245177, - 323917785885883620 - ], - "y": [ - 2297905282612888789, - 8206728682979815807, - 10628767928228215441, - 3062326525278498604 - ], + "x": [4044870432040348042, 10630300946926732771, 3143480015080245177, 323917785885883620], + "y": [2297905282612888789, 8206728682979815807, 10628767928228215441, 3062326525278498604], "infinity": false }, { - "x": [ - 14760731158538087565, - 9176522400170689419, - 9855180338242634009, - 2456568616568530201 - ], - "y": [ - 5168103953295979961, - 397013651969935557, - 13864468728668213717, - 2925074735515169158 - ], + "x": [14760731158538087565, 9176522400170689419, 9855180338242634009, 2456568616568530201], + "y": [5168103953295979961, 397013651969935557, 13864468728668213717, 2925074735515169158], "infinity": false }, { - "x": [ - 13613691592548742743, - 11339389230513898784, - 4864282628000142183, - 2568915564796772962 - ], - "y": [ - 13074021698952750513, - 14891339562597317806, - 6145754680491802845, - 913243322463864468 - ], + "x": [13613691592548742743, 11339389230513898784, 4864282628000142183, 2568915564796772962], + "y": [13074021698952750513, 14891339562597317806, 6145754680491802845, 913243322463864468], "infinity": false }, { - "x": [ - 9607983563343027008, - 1604609357347728263, - 6735137627175405143, - 91305611485454778 - ], - "y": [ - 2068449139446365265, - 6171753015906067998, - 16290186276604645197, - 420889087081901603 - ], + "x": [9607983563343027008, 1604609357347728263, 6735137627175405143, 91305611485454778], + "y": [2068449139446365265, 6171753015906067998, 16290186276604645197, 420889087081901603], "infinity": false }, { - "x": [ - 15994614598808477960, - 5137738490508028659, - 6599503545391493738, - 3293094250487745346 - ], - "y": [ - 3246688300070721763, - 8836841286539929132, - 1231014124908407748, - 3042941126579517307 - ], + "x": [15994614598808477960, 5137738490508028659, 6599503545391493738, 3293094250487745346], + "y": [3246688300070721763, 8836841286539929132, 1231014124908407748, 3042941126579517307], "infinity": false }, { - "x": [ - 12550390789117808745, - 14001030013656521177, - 16383284077678821701, - 1815317458772356897 - ], - "y": [ - 10125044837604978181, - 7468984969058409331, - 592554137766258541, - 2877688586321491725 - ], + "x": [12550390789117808745, 14001030013656521177, 16383284077678821701, 1815317458772356897], + "y": [10125044837604978181, 7468984969058409331, 592554137766258541, 2877688586321491725], "infinity": false }, { - "x": [ - 12238091769471133989, - 184716847866634800, - 5888077423956723698, - 609118759536864800 - ], - "y": [ - 7725369615076384544, - 7561073323636510559, - 10473734750023783127, - 861766554781597742 - ], + "x": [12238091769471133989, 184716847866634800, 5888077423956723698, 609118759536864800], + "y": [7725369615076384544, 7561073323636510559, 10473734750023783127, 861766554781597742], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 1206127807467530207, - 3510053718168412786, - 7933459343694333819, - 3179950874373950282 - ], - "y": [ - 5784856107466398982, - 395767970566909293, - 11244200096534021583, - 2068407511544404377 - ], + "x": [1206127807467530207, 3510053718168412786, 7933459343694333819, 3179950874373950282], + "y": [5784856107466398982, 395767970566909293, 11244200096534021583, 2068407511544404377], "infinity": false }, { - "x": [ - 4044617248058764838, - 11957266999135308674, - 17621747993137866783, - 990156155955733134 - ], - "y": [ - 17234504892477991728, - 17558826298225495489, - 9349531438753716103, - 2656409262947709594 - ], + "x": [4044617248058764838, 11957266999135308674, 17621747993137866783, 990156155955733134], + "y": [17234504892477991728, 17558826298225495489, 9349531438753716103, 2656409262947709594], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 4308597000331285311, - 12130199317436319902, - 3842336010209461436, - 191866453597778475 - ], - "y": [ - 2144400171783010971, - 13016087318985913183, - 7166370365336301922, - 2216888390030560212 - ], + "x": [4308597000331285311, 12130199317436319902, 3842336010209461436, 191866453597778475], + "y": [2144400171783010971, 13016087318985913183, 7166370365336301922, 2216888390030560212], "infinity": false }, { - "x": [ - 4661184458541745063, - 12423889401726065791, - 11959346001895915074, - 779668716585305501 - ], - "y": [ - 16401363790535442499, - 7367694133722005848, - 8015837005184593399, - 454166987511489961 - ], + "x": [4661184458541745063, 12423889401726065791, 11959346001895915074, 779668716585305501], + "y": [16401363790535442499, 7367694133722005848, 8015837005184593399, 454166987511489961], "infinity": false }, { - "x": [ - 858215262803403659, - 1405268530667707386, - 7763962169005921611, - 2845435536097215865 - ], - "y": [ - 10639490331338262540, - 6397733211512468794, - 968161689973799899, - 2054756257253905633 - ], + "x": [858215262803403659, 1405268530667707386, 7763962169005921611, 2845435536097215865], + "y": [10639490331338262540, 6397733211512468794, 968161689973799899, 2054756257253905633], "infinity": false }, { - "x": [ - 17338818659525246480, - 13318488425310212471, - 10548319374858973842, - 87084958643052105 - ], - "y": [ - 2279840344577984658, - 15197280761751903251, - 16019225334594459873, - 149925650787595538 - ], + "x": [17338818659525246480, 13318488425310212471, 10548319374858973842, 87084958643052105], + "y": [2279840344577984658, 15197280761751903251, 16019225334594459873, 149925650787595538], "infinity": false } ], "total_lookup_entries_length": 3054916, "lookup_selector_commitment": { - "x": [ - 4844230422625825285, - 956290027823441223, - 763010695794739308, - 2426170829255106638 - ], - "y": [ - 13850520521470006763, - 9003994589054655373, - 10310690204425503422, - 3012516431885755457 - ], + "x": [4844230422625825285, 956290027823441223, 763010695794739308, 2426170829255106638], + "y": [13850520521470006763, 9003994589054655373, 10310690204425503422, 3012516431885755457], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 5825422128268478267, - 9219263846299851036, - 3879231702557190566, - 1702488722758880769 - ], - "y": [ - 18311881100262470992, - 5742998199368802392, - 18106865487471159417, - 502191980176920012 - ], + "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], + "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], "infinity": false }, { - "x": [ - 17195892082859417081, - 7890531942603584793, - 2381805632820057528, - 3173232410464566465 - ], - "y": [ - 16359614627947132075, - 3459600273035137079, - 4550762061432972122, - 3394559699318358224 - ], + "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], + "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], "infinity": false }, { - "x": [ - 1716103379277390185, - 18097936269579187542, - 16357329729761063450, - 1508640059338197502 - ], - "y": [ - 11014806739603983364, - 4396503314588777389, - 9397245609635151055, - 1703957955248411380 - ], + "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], + "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], "infinity": false }, { - "x": [ - 4770171350693477354, - 17110558673192292253, - 9799800677557311408, - 761984875463445481 - ], - "y": [ - 1560561403388310063, - 31331275310848146, - 287152055803835484, - 457826332542037277 - ], + "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], + "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 16775586915653722908, - 9787338077086882544, - 8381721730521821042, - 2974660093975661578 - ], - "y": [ - 3011389235487891234, - 15409507493813096391, - 17416460976276029026, - 324418288749844627 - ], + "x": [16775586915653722908, 9787338077086882544, 8381721730521821042, 2974660093975661578], + "y": [3011389235487891234, 15409507493813096391, 17416460976276029026, 324418288749844627], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_7_key.json b/core/bin/verification_key_generator_and_server/data/verification_7_key.json index 406afcf4f0fe..056dd64ad54b 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_7_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_7_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 14104278525941001335, - 6652111379088654370, - 12369045377338511525, - 969809670184836151 - ], - "y": [ - 10111598525423302991, - 15018239425425696172, - 3683372413830991953, - 1023765059890131543 - ], + "x": [14104278525941001335, 6652111379088654370, 12369045377338511525, 969809670184836151], + "y": [10111598525423302991, 15018239425425696172, 3683372413830991953, 1023765059890131543], "infinity": false }, { - "x": [ - 11576486884237685781, - 16315823052257401029, - 9860864515877414033, - 3179959598270002012 - ], - "y": [ - 487035971539979311, - 5573003039451484772, - 15711637819381564577, - 1904127920269177012 - ], + "x": [11576486884237685781, 16315823052257401029, 9860864515877414033, 3179959598270002012], + "y": [487035971539979311, 5573003039451484772, 15711637819381564577, 1904127920269177012], "infinity": false }, { - "x": [ - 18299921128106602792, - 211731469708793711, - 17645028854462121436, - 675870769139913517 - ], - "y": [ - 15146647508675165454, - 18353083579110652488, - 12704645658780892142, - 2929235299763077823 - ], + "x": [18299921128106602792, 211731469708793711, 17645028854462121436, 675870769139913517], + "y": [15146647508675165454, 18353083579110652488, 12704645658780892142, 2929235299763077823], "infinity": false }, { - "x": [ - 11570586127780196277, - 2363872676317471379, - 7386811009552915084, - 959006902628416514 - ], - "y": [ - 17455735716787098890, - 14879699386306994564, - 5628100821420984321, - 2862659911936763739 - ], + "x": [11570586127780196277, 2363872676317471379, 7386811009552915084, 959006902628416514], + "y": [17455735716787098890, 14879699386306994564, 5628100821420984321, 2862659911936763739], "infinity": false }, { - "x": [ - 8746328571248006135, - 17089435014355939378, - 8764506524471462449, - 1810135458362589443 - ], - "y": [ - 14070512019208911265, - 8756287737315170424, - 14821473955626613, - 1559545289765661890 - ], + "x": [8746328571248006135, 17089435014355939378, 8764506524471462449, 1810135458362589443], + "y": [14070512019208911265, 8756287737315170424, 14821473955626613, 1559545289765661890], "infinity": false }, { - "x": [ - 2113591086436573082, - 12629483649401688389, - 11845953673798951216, - 3081238281103628853 - ], - "y": [ - 727696133406005469, - 14413827745813557208, - 6425035421156126073, - 291513487083052109 - ], + "x": [2113591086436573082, 12629483649401688389, 11845953673798951216, 3081238281103628853], + "y": [727696133406005469, 14413827745813557208, 6425035421156126073, 291513487083052109], "infinity": false }, { - "x": [ - 15346257923988607256, - 10403316660718504706, - 7158515894996917286, - 2702098910103276762 - ], - "y": [ - 16559143492878738107, - 12716298061927369795, - 12296985344891017351, - 2814996798832983835 - ], + "x": [15346257923988607256, 10403316660718504706, 7158515894996917286, 2702098910103276762], + "y": [16559143492878738107, 12716298061927369795, 12296985344891017351, 2814996798832983835], "infinity": false }, { - "x": [ - 2213195001372039295, - 8878300942582564036, - 10524986226191936528, - 1815326540993196034 - ], - "y": [ - 11397120982692424098, - 4455537142488107627, - 14205354993332845055, - 2313809587433567240 - ], + "x": [2213195001372039295, 8878300942582564036, 10524986226191936528, 1815326540993196034], + "y": [11397120982692424098, 4455537142488107627, 14205354993332845055, 2313809587433567240], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 14849046431510808003, - 11699893139960418168, - 6000246307731364190, - 3362832011707902866 - ], - "y": [ - 3242560497217933852, - 11672398501106836413, - 987926723326096281, - 2451226739475091625 - ], + "x": [14849046431510808003, 11699893139960418168, 6000246307731364190, 3362832011707902866], + "y": [3242560497217933852, 11672398501106836413, 987926723326096281, 2451226739475091625], "infinity": false }, { - "x": [ - 9272095445402359796, - 1201046264826394411, - 7424934554242366462, - 1125893484262333608 - ], - "y": [ - 15903920299684884420, - 17703294385387204708, - 2256937129195345942, - 1905295733884217610 - ], + "x": [9272095445402359796, 1201046264826394411, 7424934554242366462, 1125893484262333608], + "y": [15903920299684884420, 17703294385387204708, 2256937129195345942, 1905295733884217610], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 7591926766688292250, - 10457199375342460747, - 3214976192729961314, - 1412860682249358355 - ], - "y": [ - 16894260140402496006, - 3666374878391815131, - 15124268261678582348, - 1340579262756129480 - ], + "x": [7591926766688292250, 10457199375342460747, 3214976192729961314, 1412860682249358355], + "y": [16894260140402496006, 3666374878391815131, 15124268261678582348, 1340579262756129480], "infinity": false }, { - "x": [ - 2963934507934439034, - 17415763666461861018, - 6331792462137338053, - 3122358526111186727 - ], - "y": [ - 15040784043381591388, - 7188410244350767315, - 14077554108063383431, - 1704329843327300001 - ], + "x": [2963934507934439034, 17415763666461861018, 6331792462137338053, 3122358526111186727], + "y": [15040784043381591388, 7188410244350767315, 14077554108063383431, 1704329843327300001], "infinity": false }, { - "x": [ - 7967507884960122293, - 13509230570773443525, - 11125712791473385552, - 2241808950326876268 - ], - "y": [ - 10594180941877323940, - 17179032413109513856, - 17941607623778808075, - 646138820984886096 - ], + "x": [7967507884960122293, 13509230570773443525, 11125712791473385552, 2241808950326876268], + "y": [10594180941877323940, 17179032413109513856, 17941607623778808075, 646138820984886096], "infinity": false }, { - "x": [ - 4729534828155895283, - 15489050734511381239, - 4847364931161261393, - 2461584260035042491 - ], - "y": [ - 15255817542606978857, - 6517429187947361297, - 17127878630247240853, - 3389541567226838859 - ], + "x": [4729534828155895283, 15489050734511381239, 4847364931161261393, 2461584260035042491], + "y": [15255817542606978857, 6517429187947361297, 17127878630247240853, 3389541567226838859], "infinity": false } ], "total_lookup_entries_length": 40724289, "lookup_selector_commitment": { - "x": [ - 5449769839889646584, - 2072406321611922291, - 9391796773218391195, - 2377769168011090955 - ], - "y": [ - 1789189431152658324, - 2639430755172378798, - 136577695530283091, - 3045539535973502646 - ], + "x": [5449769839889646584, 2072406321611922291, 9391796773218391195, 2377769168011090955], + "y": [1789189431152658324, 2639430755172378798, 136577695530283091, 3045539535973502646], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 12639039925867405095, - 9606685454938605275, - 7802675863289639223, - 1948831418843225802 - ], - "y": [ - 11059150608777595761, - 10458812733010634961, - 16772660325487078311, - 340608886692078192 - ], + "x": [12639039925867405095, 9606685454938605275, 7802675863289639223, 1948831418843225802], + "y": [11059150608777595761, 10458812733010634961, 16772660325487078311, 340608886692078192], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_8_key.json b/core/bin/verification_key_generator_and_server/data/verification_8_key.json index b8511e17b755..23d632840eca 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_8_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_8_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 1834112096176967541, - 5137529514715617427, - 6540843391881340212, - 3033401888759110412 - ], - "y": [ - 8910602970094475216, - 13169513767982514776, - 5761530093694221441, - 2733318557350866268 - ], + "x": [1834112096176967541, 5137529514715617427, 6540843391881340212, 3033401888759110412], + "y": [8910602970094475216, 13169513767982514776, 5761530093694221441, 2733318557350866268], "infinity": false }, { - "x": [ - 4701064149158432365, - 5425087325981406309, - 7911131985858828309, - 1683257627049186617 - ], - "y": [ - 13565328904521460918, - 17013189171844282257, - 4897087111183007258, - 2345861178674095559 - ], + "x": [4701064149158432365, 5425087325981406309, 7911131985858828309, 1683257627049186617], + "y": [13565328904521460918, 17013189171844282257, 4897087111183007258, 2345861178674095559], "infinity": false }, { - "x": [ - 17285353863442654170, - 17787410547699779811, - 4803131526909484890, - 1607731426619418092 - ], - "y": [ - 3219378920021652314, - 11046862703797106703, - 10595836629242151972, - 2970963661532337787 - ], + "x": [17285353863442654170, 17787410547699779811, 4803131526909484890, 1607731426619418092], + "y": [3219378920021652314, 11046862703797106703, 10595836629242151972, 2970963661532337787], "infinity": false }, { - "x": [ - 6619857367954187649, - 8023974497004524989, - 10088058961892288757, - 938018804109053807 - ], - "y": [ - 15549411064757453720, - 1776820811429478220, - 8222111141823917842, - 290593315633281086 - ], + "x": [6619857367954187649, 8023974497004524989, 10088058961892288757, 938018804109053807], + "y": [15549411064757453720, 1776820811429478220, 8222111141823917842, 290593315633281086], "infinity": false }, { - "x": [ - 3338931670632164423, - 11330459786926502111, - 13560408114559586439, - 233279858410037466 - ], - "y": [ - 9757980615881472290, - 6475296714459436577, - 15954545788543926629, - 2522580407814024231 - ], + "x": [3338931670632164423, 11330459786926502111, 13560408114559586439, 233279858410037466], + "y": [9757980615881472290, 6475296714459436577, 15954545788543926629, 2522580407814024231], "infinity": false }, { - "x": [ - 2168501453409628158, - 16417992951888116942, - 1994813140597965849, - 1938552030580060698 - ], - "y": [ - 2393885012813093493, - 5109365147685051030, - 4449898145078443978, - 996506294158321126 - ], + "x": [2168501453409628158, 16417992951888116942, 1994813140597965849, 1938552030580060698], + "y": [2393885012813093493, 5109365147685051030, 4449898145078443978, 996506294158321126], "infinity": false }, { - "x": [ - 8163446935422765754, - 17127634458571165785, - 18101155318188210010, - 1502677094108070955 - ], - "y": [ - 4184320355428455210, - 15479528531137595907, - 8455846016430686855, - 2570922865513301289 - ], + "x": [8163446935422765754, 17127634458571165785, 18101155318188210010, 1502677094108070955], + "y": [4184320355428455210, 15479528531137595907, 8455846016430686855, 2570922865513301289], "infinity": false }, { - "x": [ - 407579941387952352, - 17088458915370169940, - 16892753644011369852, - 2421666516533613805 - ], - "y": [ - 597435837737447683, - 18122233368438707442, - 4844832744563923839, - 396103093107107006 - ], + "x": [407579941387952352, 17088458915370169940, 16892753644011369852, 2421666516533613805], + "y": [597435837737447683, 18122233368438707442, 4844832744563923839, 396103093107107006], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 16242434178832819081, - 2218928756172422054, - 5871927983870638422, - 810020555846721779 - ], - "y": [ - 9387856576677982883, - 5119490172321159350, - 14295435318421985120, - 1325809191818871673 - ], + "x": [16242434178832819081, 2218928756172422054, 5871927983870638422, 810020555846721779], + "y": [9387856576677982883, 5119490172321159350, 14295435318421985120, 1325809191818871673], "infinity": false }, { - "x": [ - 5933965238687071287, - 10681704800081225943, - 14555731010498897395, - 959799154476325145 - ], - "y": [ - 1501632601560034962, - 9401704677918783964, - 12292111854761501889, - 858616662661742045 - ], + "x": [5933965238687071287, 10681704800081225943, 14555731010498897395, 959799154476325145], + "y": [1501632601560034962, 9401704677918783964, 12292111854761501889, 858616662661742045], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 12841507457971520539, - 6525486152471484441, - 3744486588589217686, - 2769451038405535407 - ], - "y": [ - 14145668232228974364, - 9864097401535863500, - 12665512227995054273, - 1710776254334161256 - ], + "x": [12841507457971520539, 6525486152471484441, 3744486588589217686, 2769451038405535407], + "y": [14145668232228974364, 9864097401535863500, 12665512227995054273, 1710776254334161256], "infinity": false }, { - "x": [ - 12108157388466567796, - 12008825937320240484, - 11228446795405478904, - 1520424921904150640 - ], - "y": [ - 18157047055378899649, - 10836823561088895074, - 583613418617515639, - 2570085764232471205 - ], + "x": [12108157388466567796, 12008825937320240484, 11228446795405478904, 1520424921904150640], + "y": [18157047055378899649, 10836823561088895074, 583613418617515639, 2570085764232471205], "infinity": false }, { - "x": [ - 3117226099128838157, - 10181632193024509490, - 1215328570209780930, - 1536961491401844084 - ], - "y": [ - 11646905141441654681, - 6168936708987385450, - 14459621573162108487, - 2047975568887748173 - ], + "x": [3117226099128838157, 10181632193024509490, 1215328570209780930, 1536961491401844084], + "y": [11646905141441654681, 6168936708987385450, 14459621573162108487, 2047975568887748173], "infinity": false }, { - "x": [ - 12034664246790330785, - 12032082546920592595, - 12002839514296456095, - 3009479689157977152 - ], - "y": [ - 180421277197569955, - 5815678523367268562, - 11718416396488597085, - 408186057258055191 - ], + "x": [12034664246790330785, 12032082546920592595, 12002839514296456095, 3009479689157977152], + "y": [180421277197569955, 5815678523367268562, 11718416396488597085, 408186057258055191], "infinity": false } ], "total_lookup_entries_length": 34384753, "lookup_selector_commitment": { - "x": [ - 3872970821419373956, - 13556503327407661223, - 12832313376327677595, - 211677646774476601 - ], - "y": [ - 17281673428499585093, - 235933066531227024, - 17890327653152417391, - 2551853991532334733 - ], + "x": [3872970821419373956, 13556503327407661223, 12832313376327677595, 211677646774476601], + "y": [17281673428499585093, 235933066531227024, 17890327653152417391, 2551853991532334733], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 14943975734974680929, - 9516136771242606543, - 6695719565456036638, - 3449077049666620393 - ], - "y": [ - 11678209093898264827, - 4499447145490933412, - 6317798459829178953, - 1439219764789809864 - ], + "x": [14943975734974680929, 9516136771242606543, 6695719565456036638, 3449077049666620393], + "y": [11678209093898264827, 4499447145490933412, 6317798459829178953, 1439219764789809864], "infinity": false }, { - "x": [ - 13501290183905491407, - 17914451638435951710, - 5188762915201956497, - 1220375585898114161 - ], - "y": [ - 14519533874806433487, - 409100046306023, - 2203176115240501563, - 3105700623762337563 - ], + "x": [13501290183905491407, 17914451638435951710, 5188762915201956497, 1220375585898114161], + "y": [14519533874806433487, 409100046306023, 2203176115240501563, 3105700623762337563], "infinity": false }, { - "x": [ - 13968159480895722732, - 6973568812120893251, - 6250254745096478587, - 2299355969860561070 - ], - "y": [ - 7695944005480078577, - 12009671787784557856, - 13727042561077817002, - 219052945806305675 - ], + "x": [13968159480895722732, 6973568812120893251, 6250254745096478587, 2299355969860561070], + "y": [7695944005480078577, 12009671787784557856, 13727042561077817002, 219052945806305675], "infinity": false }, { - "x": [ - 4871629130106420314, - 4091595855728790015, - 1851744390500340594, - 3123168382710331270 - ], - "y": [ - 9703969956757970162, - 1215036492891076659, - 11876727836856213678, - 2640893636590396388 - ], + "x": [4871629130106420314, 4091595855728790015, 1851744390500340594, 3123168382710331270], + "y": [9703969956757970162, 1215036492891076659, 11876727836856213678, 2640893636590396388], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 10299044894603982393, - 4664166516779563250, - 13124827128688646542, - 3361599897730972314 - ], - "y": [ - 18259946931458798404, - 10145479316480429602, - 15446978899103328376, - 265382288883021070 - ], + "x": [10299044894603982393, 4664166516779563250, 13124827128688646542, 3361599897730972314], + "y": [18259946931458798404, 10145479316480429602, 15446978899103328376, 265382288883021070], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/bin/verification_key_generator_and_server/data/verification_9_key.json b/core/bin/verification_key_generator_and_server/data/verification_9_key.json index 75de5f75c78d..598f2083b410 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_9_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_9_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 15041888416700822899, - 15908701850433687369, - 6928173929840686173, - 501601364708497325 - ], - "y": [ - 9443860646360881208, - 15174745959183347299, - 3341918218952258763, - 1470216750942469587 - ], + "x": [15041888416700822899, 15908701850433687369, 6928173929840686173, 501601364708497325], + "y": [9443860646360881208, 15174745959183347299, 3341918218952258763, 1470216750942469587], "infinity": false }, { - "x": [ - 1713492202424532619, - 5921868784153327820, - 3919870428680620477, - 2459274846398943915 - ], - "y": [ - 8012717129874416534, - 13032363221581987781, - 9462161206147300944, - 1151760065513271967 - ], + "x": [1713492202424532619, 5921868784153327820, 3919870428680620477, 2459274846398943915], + "y": [8012717129874416534, 13032363221581987781, 9462161206147300944, 1151760065513271967], "infinity": false }, { - "x": [ - 6636128327108235840, - 9362733145474272574, - 7779132015244601843, - 474802631021936400 - ], - "y": [ - 3900992471196218787, - 113851245079995197, - 7493904056590361535, - 3140468871801097229 - ], + "x": [6636128327108235840, 9362733145474272574, 7779132015244601843, 474802631021936400], + "y": [3900992471196218787, 113851245079995197, 7493904056590361535, 3140468871801097229], "infinity": false }, { - "x": [ - 4340102674797800902, - 8715432707094353745, - 4331145745081713603, - 45456583984841487 - ], - "y": [ - 18326546742044058782, - 15443239165658185296, - 9765917874876721196, - 687859761729374839 - ], + "x": [4340102674797800902, 8715432707094353745, 4331145745081713603, 45456583984841487], + "y": [18326546742044058782, 15443239165658185296, 9765917874876721196, 687859761729374839], "infinity": false }, { - "x": [ - 10804694580890857975, - 10550068287306981825, - 14956274043654722561, - 3060589920124935341 - ], - "y": [ - 17010223672048359580, - 263749806111642373, - 8349695975133446526, - 2826070525773268002 - ], + "x": [10804694580890857975, 10550068287306981825, 14956274043654722561, 3060589920124935341], + "y": [17010223672048359580, 263749806111642373, 8349695975133446526, 2826070525773268002], "infinity": false }, { - "x": [ - 16133249269780245267, - 4275571784340824698, - 6262619645627758753, - 3231281899173719188 - ], - "y": [ - 11839616617849449709, - 7142633755989890055, - 10840735473548209733, - 2847350786075278882 - ], + "x": [16133249269780245267, 4275571784340824698, 6262619645627758753, 3231281899173719188], + "y": [11839616617849449709, 7142633755989890055, 10840735473548209733, 2847350786075278882], "infinity": false }, { - "x": [ - 16258572583186965203, - 1354691125575792689, - 17235265854934968790, - 1252220109588505888 - ], - "y": [ - 9336541637487074271, - 18402912967310224930, - 13223187653117829136, - 2979297976786733465 - ], + "x": [16258572583186965203, 1354691125575792689, 17235265854934968790, 1252220109588505888], + "y": [9336541637487074271, 18402912967310224930, 13223187653117829136, 2979297976786733465], "infinity": false }, { - "x": [ - 8525686695522099028, - 4103157564078645049, - 18392570749492199187, - 2911539491816599180 - ], - "y": [ - 114653447583918953, - 10470307038453386601, - 11189850644566793538, - 1298227034210846592 - ], + "x": [8525686695522099028, 4103157564078645049, 18392570749492199187, 2911539491816599180], + "y": [114653447583918953, 10470307038453386601, 11189850644566793538, 1298227034210846592], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 2069700145549311928, - 4250782333685017927, - 14207216715687122978, - 1145927286048477791 - ], - "y": [ - 9341202692364554712, - 12346939747104737180, - 2826478533799125818, - 2279570556437452275 - ], + "x": [2069700145549311928, 4250782333685017927, 14207216715687122978, 1145927286048477791], + "y": [9341202692364554712, 12346939747104737180, 2826478533799125818, 2279570556437452275], "infinity": false }, { - "x": [ - 12388902775325386546, - 1277383964095999647, - 10535796018183893831, - 3359866702323175506 - ], - "y": [ - 16500893366957272235, - 2806147688388338314, - 8233156072220488773, - 2867848844627212711 - ], + "x": [12388902775325386546, 1277383964095999647, 10535796018183893831, 3359866702323175506], + "y": [16500893366957272235, 2806147688388338314, 8233156072220488773, 2867848844627212711], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 17521183961631816299, - 18327810537117645266, - 16586212795163003556, - 3052771534158410452 - ], - "y": [ - 8441310283734453731, - 14146088755801181801, - 17480253356603213989, - 3217948944323396651 - ], + "x": [17521183961631816299, 18327810537117645266, 16586212795163003556, 3052771534158410452], + "y": [8441310283734453731, 14146088755801181801, 17480253356603213989, 3217948944323396651], "infinity": false }, { - "x": [ - 16076801532842923524, - 7514743296775639295, - 2571323986448120255, - 184367540214459973 - ], - "y": [ - 13389643967183613114, - 17108261756464256828, - 11145735340309739417, - 2142196980030893874 - ], + "x": [16076801532842923524, 7514743296775639295, 2571323986448120255, 184367540214459973], + "y": [13389643967183613114, 17108261756464256828, 11145735340309739417, 2142196980030893874], "infinity": false }, { - "x": [ - 8034683328666433725, - 5436036566901194392, - 18053257213361014053, - 2821377847227509494 - ], - "y": [ - 14471305228212723444, - 8894846184648865892, - 7047725473055235530, - 2413388400332075493 - ], + "x": [8034683328666433725, 5436036566901194392, 18053257213361014053, 2821377847227509494], + "y": [14471305228212723444, 8894846184648865892, 7047725473055235530, 2413388400332075493], "infinity": false }, { - "x": [ - 14026981588443304814, - 14671946927765496183, - 13387079215022495926, - 2554705188091675830 - ], - "y": [ - 440116222237740520, - 1630168477189852269, - 17833425794232523381, - 908824471705597078 - ], + "x": [14026981588443304814, 14671946927765496183, 13387079215022495926, 2554705188091675830], + "y": [440116222237740520, 1630168477189852269, 17833425794232523381, 908824471705597078], "infinity": false } ], "total_lookup_entries_length": 41494904, "lookup_selector_commitment": { - "x": [ - 13889323383351416990, - 17887386740570674124, - 5463612855590268091, - 2434255340534820869 - ], - "y": [ - 2436699678434218349, - 11251365794004058995, - 11023509005141034197, - 2867854671852170604 - ], + "x": [13889323383351416990, 17887386740570674124, 5463612855590268091, 2434255340534820869], + "y": [2436699678434218349, 11251365794004058995, 11023509005141034197, 2867854671852170604], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 631990924006796604, - 16139625628991115157, - 13331739325995827711, - 1062301837743594995 - ], - "y": [ - 15303054606290800139, - 15906872095881647437, - 7093896572295020249, - 1342952934989901142 - ], + "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], + "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], "infinity": false }, { - "x": [ - 7983921919542246393, - 13296544189644416678, - 17081022784392007697, - 1980832835348244027 - ], - "y": [ - 10874958134865200330, - 7702740658637630534, - 14052057929798961943, - 3193353539419869016 - ], + "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], + "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], "infinity": false }, { - "x": [ - 1114587284824996932, - 4636906500482867924, - 15328247172597030456, - 87946895873973686 - ], - "y": [ - 15573033830207915877, - 5194694185599035278, - 2562407345425607214, - 2782078999306862675 - ], + "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], + "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], "infinity": false }, { - "x": [ - 18225112781127431982, - 18048613958187123807, - 7325490730844456621, - 1953409020724855888 - ], - "y": [ - 7577000130125917198, - 6193701449695751861, - 4102082927677054717, - 395350071385269650 - ], + "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], + "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 3832160677272803715, - 2122279734318217808, - 811690144328522684, - 1416829483108546006 - ], - "y": [ - 10041279311991435550, - 14702496983143623186, - 4419862575487552747, - 1429817244630465543 - ], + "x": [3832160677272803715, 2122279734318217808, 811690144328522684, 1416829483108546006], + "y": [10041279311991435550, 14702496983143623186, 4419862575487552747, 1429817244630465543], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/core/lib/dal/sqlx-data.json b/core/lib/dal/sqlx-data.json index 6b47021e2f01..7f683ac7fce7 100644 --- a/core/lib/dal/sqlx-data.json +++ b/core/lib/dal/sqlx-data.json @@ -5,10 +5,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "UPDATE proof_generation_details SET status=$1, updated_at = now() WHERE l1_batch_number = $2" @@ -92,28 +89,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - true, - true, - true, - true, - false, - false, - true, - true, - true - ], + "nullable": [false, false, false, false, false, false, true, true, true, true, false, false, true, true, true], "parameters": { - "Left": [ - "Int4Array", - "Text" - ] + "Left": ["Int4Array", "Text"] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM node_aggregation_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC, depth ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING node_aggregation_witness_jobs_fri.*\n " @@ -123,11 +101,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int4", - "Text" - ] + "Left": ["Text", "Int4", "Text"] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = 'available', updated_at = now() WHERE instance_host = $1::text::inet AND instance_port = $2 AND instance_status = 'full' AND zone = $3\n " @@ -141,13 +115,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT bytecode_hash FROM factory_deps WHERE miniblock_number > $1" @@ -221,25 +191,9 @@ "type_info": "Int4" } ], - "nullable": [ - true, - true, - true, - true, - true, - true, - true, - true, - true, - true, - true, - true, - true - ], + "nullable": [true, true, true, true, true, true, true, true, true, true, true, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n WITH events_select AS (\n SELECT\n address, topic1, topic2, topic3, topic4, value,\n miniblock_number, tx_hash, tx_index_in_block,\n event_index_in_block, event_index_in_tx\n FROM events\n WHERE miniblock_number > $1\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n )\n SELECT miniblocks.hash as \"block_hash?\",\n address as \"address!\", topic1 as \"topic1!\", topic2 as \"topic2!\", topic3 as \"topic3!\", topic4 as \"topic4!\", value as \"value!\",\n miniblock_number as \"miniblock_number!\", miniblocks.l1_batch_number as \"l1_batch_number?\", tx_hash as \"tx_hash!\",\n tx_index_in_block as \"tx_index_in_block!\", event_index_in_block as \"event_index_in_block!\", event_index_in_tx as \"event_index_in_tx!\"\n FROM events_select\n INNER JOIN miniblocks ON events_select.miniblock_number = miniblocks.number\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n " @@ -249,12 +203,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Bytea", - "Text", - "Int4" - ] + "Left": ["Int8", "Bytea", "Text", "Int4"] } }, "query": "INSERT INTO witness_inputs(l1_batch_number, merkle_tree_paths, merkel_tree_paths_blob_url, status, protocol_version, created_at, updated_at) VALUES ($1, $2, $3, 'queued', $4, now(), now())\n ON CONFLICT (l1_batch_number) DO NOTHING" @@ -264,10 +213,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int4" - ] + "Left": ["Int4", "Int4"] } }, "query": "UPDATE eth_txs\n SET confirmed_eth_tx_history_id = $1\n WHERE id = $2" @@ -277,10 +223,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int4" - ] + "Left": ["Int8", "Int4"] } }, "query": "\n INSERT INTO node_aggregation_witness_jobs\n (l1_batch_number, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, 'waiting_for_artifacts', now(), now())\n " @@ -304,11 +247,7 @@ "type_info": "Int2" } ], - "nullable": [ - null, - false, - false - ], + "nullable": [null, false, false], "parameters": { "Left": [] } @@ -320,9 +259,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "UPDATE transactions SET in_mempool = FALSE FROM UNNEST ($1::bytea[]) AS s(address) WHERE transactions.in_mempool = TRUE AND transactions.initiator_address = s.address" @@ -336,9 +273,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -354,17 +289,9 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Int8", - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Int8", "Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "SELECT COUNT(*) as \"count!\" FROM l1_batches WHERE number = $1 AND hash = $2 AND merkle_root_hash = $3 AND parent_hash = $4 AND l2_l1_merkle_root = $5" @@ -418,23 +345,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false, - false, - true - ], + "nullable": [false, false, false, false, false, true, false, false, true], "parameters": { - "Left": [ - "Interval", - "Int2", - "Text" - ] + "Left": ["Interval", "Int2", "Text"] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = 'reserved', updated_at = now(), processing_started_at = now() WHERE id in ( SELECT id FROM gpu_prover_queue_fri WHERE specialized_prover_group_id=$2 AND zone=$3 AND ( instance_status = 'available' OR (instance_status = 'reserved' AND processing_started_at < now() - $1::interval) ) ORDER BY updated_at ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING gpu_prover_queue_fri.*\n " @@ -448,14 +361,9 @@ "type_info": "Int8" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Bytea", - "Int8" - ] + "Left": ["Bytea", "Int8"] } }, "query": "SELECT nonce as \"nonce!\" FROM transactions WHERE initiator_address = $1 AND nonce >= $2 AND is_priority = FALSE AND (miniblock_number IS NOT NULL OR error IS NULL) ORDER BY nonce" @@ -469,13 +377,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT timestamp FROM miniblocks WHERE number = $1" @@ -494,10 +398,7 @@ "type_info": "Text" } ], - "nullable": [ - null, - false - ], + "nullable": [null, false], "parameters": { "Left": [] } @@ -583,30 +484,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - true, - true, - false, - false, - false, - true, - true, - false, - true - ], + "nullable": [false, false, false, false, false, true, true, true, false, false, false, true, true, false, true], "parameters": { - "Left": [ - "Interval", - "Int4", - "Int8", - "Int4Array" - ] + "Left": ["Interval", "Int4", "Int8", "Int4Array"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM leaf_aggregation_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING leaf_aggregation_witness_jobs.*\n " @@ -620,14 +500,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT DISTINCT hashed_key FROM storage_logs WHERE miniblock_number BETWEEN $1 and $2" @@ -641,13 +516,9 @@ "type_info": "Text" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT tx_hash FROM eth_txs_history\n WHERE eth_tx_id = $1 AND confirmed_at IS NOT NULL" @@ -661,9 +532,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -679,13 +548,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number from miniblocks where timestamp > $1 ORDER BY number ASC LIMIT 1" @@ -695,9 +560,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -711,13 +574,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Numeric" - ] + "Left": ["Numeric"] } }, "query": "SELECT l1_address FROM tokens WHERE market_volume > $1" @@ -727,9 +586,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM storage_logs WHERE miniblock_number > $1" @@ -743,13 +600,9 @@ "type_info": "Jsonb" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT serialized_events_queue FROM events_queue WHERE l1_batch_number = $1" @@ -768,15 +621,9 @@ "type_info": "Bytea" } ], - "nullable": [ - null, - null - ], + "nullable": [null, null], "parameters": { - "Left": [ - "ByteaArray", - "Int8" - ] + "Left": ["ByteaArray", "Int8"] } }, "query": "SELECT u.hashed_key as \"hashed_key!\", (SELECT value FROM storage_logs WHERE hashed_key = u.hashed_key AND miniblock_number <= $2 ORDER BY miniblock_number DESC, operation_number DESC LIMIT 1) as \"value?\" FROM UNNEST($1::bytea[]) AS u(hashed_key)" @@ -790,13 +637,9 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT sent_at_block FROM eth_txs_history WHERE eth_tx_id = $1 AND sent_at_block IS NOT NULL ORDER BY created_at ASC LIMIT 1" @@ -840,22 +683,9 @@ "type_info": "Numeric" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - true - ], + "nullable": [false, false, false, false, false, false, true], "parameters": { - "Left": [ - "ByteaArray", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["ByteaArray", "Bytea", "Bytea", "Bytea"] } }, "query": "\n SELECT storage.value as \"value!\",\n tokens.l1_address as \"l1_address!\", tokens.l2_address as \"l2_address!\",\n tokens.symbol as \"symbol!\", tokens.name as \"name!\", tokens.decimals as \"decimals!\", tokens.usd_price as \"usd_price?\"\n FROM storage\n INNER JOIN tokens ON\n storage.address = tokens.l2_address OR (storage.address = $2 AND tokens.l2_address = $3)\n WHERE storage.hashed_key = ANY($1) AND storage.value != $4\n " @@ -939,29 +769,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - true, - true, - true, - true, - true, - false, - null, - null, - true, - false, - true, - false, - true, - false - ], + "nullable": [false, true, true, true, true, true, false, null, null, true, false, true, false, true, false], "parameters": { - "Left": [ - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Bytea", "Bytea", "Bytea"] } }, "query": "\n WITH sl AS (\n SELECT * FROM storage_logs\n WHERE storage_logs.address = $1 AND storage_logs.tx_hash = $2\n ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n )\n SELECT\n transactions.hash as tx_hash,\n transactions.index_in_block as index_in_block,\n transactions.l1_batch_tx_index as l1_batch_tx_index,\n transactions.miniblock_number as block_number,\n transactions.error as error,\n transactions.effective_gas_price as effective_gas_price,\n transactions.initiator_address as initiator_address,\n transactions.data->'to' as \"transfer_to?\",\n transactions.data->'contractAddress' as \"execute_contract_address?\",\n transactions.tx_format as \"tx_format?\",\n transactions.refunded_gas as refunded_gas,\n transactions.gas_limit as gas_limit,\n miniblocks.hash as \"block_hash?\",\n miniblocks.l1_batch_number as \"l1_batch_number?\",\n sl.key as \"contract_address?\"\n FROM transactions\n LEFT JOIN miniblocks\n ON miniblocks.number = transactions.miniblock_number\n LEFT JOIN sl\n ON sl.value != $3\n WHERE transactions.hash = $2\n " @@ -1045,27 +855,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false, - false, - false, - true, - false, - true, - false, - true, - false, - true, - false, - false, - true, - true - ], + "nullable": [false, false, false, false, true, false, true, false, true, false, true, false, false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT l1_batches.number,\n l1_batches.timestamp,\n l1_batches.l1_tx_count,\n l1_batches.l2_tx_count,\n l1_batches.hash as \"root_hash?\",\n commit_tx.tx_hash as \"commit_tx_hash?\",\n commit_tx.confirmed_at as \"committed_at?\",\n prove_tx.tx_hash as \"prove_tx_hash?\",\n prove_tx.confirmed_at as \"proven_at?\",\n execute_tx.tx_hash as \"execute_tx_hash?\",\n execute_tx.confirmed_at as \"executed_at?\",\n l1_batches.l1_gas_price,\n l1_batches.l2_fair_gas_price,\n l1_batches.bootloader_code_hash,\n l1_batches.default_aa_code_hash\n FROM l1_batches\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE l1_batches.number = $1\n " @@ -1075,10 +867,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE witness_inputs_fri SET status =$1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -1088,10 +877,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE prover_jobs\n SET status = $1, updated_at = now()\n WHERE id = $2\n " @@ -1115,11 +901,7 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { "Left": [] } @@ -1150,12 +932,7 @@ "type_info": "Text" } ], - "nullable": [ - null, - false, - false, - false - ], + "nullable": [null, false, false, false], "parameters": { "Left": [] } @@ -1167,10 +944,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text" - ] + "Left": ["Int8", "Text"] } }, "query": "INSERT INTO proof_compression_jobs_fri(l1_batch_number, status, created_at, updated_at) VALUES ($1, $2, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -1294,9 +1068,7 @@ true ], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT number, l1_tx_count, l2_tx_count, timestamp, is_finished, fee_account_address, l2_to_l1_logs, l2_to_l1_messages, bloom, priority_ops_onchain_data, used_contract_hashes, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version FROM l1_batches WHERE eth_commit_tx_id = $1 OR eth_prove_tx_id = $1 OR eth_execute_tx_id = $1" @@ -1310,13 +1082,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Text" - ] + "Left": ["Text"] } }, "query": "SELECT eth_txs.id FROM eth_txs_history JOIN eth_txs\n ON eth_txs.confirmed_eth_tx_history_id = eth_txs_history.id\n WHERE eth_txs_history.tx_hash = $1" @@ -1436,9 +1204,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT * from prover_jobs where id=$1" @@ -1467,16 +1233,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false, - false, - false - ], + "nullable": [false, false, false, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash\n FROM protocol_versions\n WHERE id = $1\n " @@ -1490,9 +1249,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -1504,11 +1261,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text", - "Text" - ] + "Left": ["Int8", "Text", "Text"] } }, "query": "INSERT INTO proof_compression_jobs_fri(l1_batch_number, fri_proof_blob_url, status, created_at, updated_at) VALUES ($1, $2, $3, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -1537,16 +1290,9 @@ "type_info": "Int4" } ], - "nullable": [ - true, - false, - true, - true - ], + "nullable": [true, false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT miniblock_number as \"miniblock_number!\",\n hash, index_in_block as \"index_in_block!\", l1_batch_tx_index as \"l1_batch_tx_index!\"\n FROM transactions\n WHERE l1_batch_number = $1\n ORDER BY miniblock_number, index_in_block\n " @@ -1556,11 +1302,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Text", - "Int8" - ] + "Left": ["Text", "Text", "Int8"] } }, "query": "UPDATE proof_compression_jobs_fri SET status =$1, error= $2, updated_at = now() WHERE l1_batch_number = $3" @@ -1570,10 +1312,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -1587,13 +1326,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Text" - ] + "Left": ["Text"] } }, "query": "INSERT INTO eth_txs (raw_tx, nonce, tx_type, contract_address, predicted_gas_cost, created_at, updated_at)\n VALUES ('\\x00', 0, $1, '', 0, now(), now())\n RETURNING id" @@ -1617,15 +1352,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true, - true - ], + "nullable": [false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT l1_batch_number, scheduler_witness_blob_url, final_node_aggregations_blob_url FROM scheduler_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND updated_at < NOW() - INTERVAL '30 days'\n AND scheduler_witness_blob_url is NOT NULL\n AND final_node_aggregations_blob_url is NOT NULL\n LIMIT $1;\n " @@ -1649,15 +1378,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT hash, number, timestamp FROM miniblocks WHERE number > $1 ORDER BY number ASC" @@ -1721,23 +1444,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, false, true, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM protocol_versions WHERE id = $1" @@ -1751,13 +1460,9 @@ "type_info": "Jsonb" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT verification_info FROM contracts_verification_info WHERE address = $1" @@ -1767,10 +1472,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Time", - "Int8" - ] + "Left": ["Time", "Int8"] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE id = $2\n " @@ -1839,24 +1541,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - true, - true, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, true, true, true, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number, timestamp, hash, l1_tx_count, l2_tx_count, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version, virtual_blocks\n FROM miniblocks WHERE number = $1" @@ -1870,14 +1557,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Int2" - ] + "Left": ["Int8", "Int2"] } }, "query": "SELECT id from prover_jobs_fri WHERE l1_batch_number = $1 AND status = 'successful' AND aggregation_round = $2" @@ -1891,9 +1573,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -1929,13 +1609,7 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, false], "parameters": { "Left": [] } @@ -1956,10 +1630,7 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { "Left": [] } @@ -1971,10 +1642,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Jsonb" - ] + "Left": ["Bytea", "Jsonb"] } }, "query": "INSERT INTO transaction_traces (tx_hash, trace, created_at, updated_at) VALUES ($1, $2, now(), now())" @@ -2202,12 +1870,7 @@ true ], "parameters": { - "Left": [ - "Int8", - "Numeric", - "Numeric", - "Int4" - ] + "Left": ["Int8", "Numeric", "Numeric", "Int4"] } }, "query": "UPDATE transactions\n SET in_mempool = TRUE\n FROM (\n SELECT hash FROM (\n SELECT hash\n FROM transactions\n WHERE miniblock_number IS NULL AND in_mempool = FALSE AND error IS NULL\n AND (is_priority = TRUE OR (max_fee_per_gas >= $2 and gas_per_pubdata_limit >= $3))\n AND tx_format != $4\n ORDER BY is_priority DESC, priority_op_id, received_at\n LIMIT $1\n ) as subquery1\n ORDER BY hash\n ) as subquery2\n WHERE transactions.hash = subquery2.hash\n RETURNING transactions.*" @@ -2217,10 +1880,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int4Array" - ] + "Left": ["Int8", "Int4Array"] } }, "query": "DELETE FROM storage_logs WHERE miniblock_number = $1 AND operation_number != ALL($2)" @@ -2230,10 +1890,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Int8" - ] + "Left": ["Bytea", "Int8"] } }, "query": "UPDATE l1_batches SET hash = $1 WHERE number = $2" @@ -2247,13 +1904,9 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "\n SELECT COUNT(*) as \"count!\"\n FROM contracts_verification_info\n WHERE address = $1\n " @@ -2267,14 +1920,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Int8" - ] + "Left": ["Bytea", "Int8"] } }, "query": "SELECT bytecode FROM factory_deps WHERE bytecode_hash = $1 AND miniblock_number <= $2" @@ -2512,14 +2160,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int2", - "Int4", - "Text", - "Int4", - "Int4" - ] + "Left": ["Int8", "Int2", "Int4", "Text", "Int4", "Int4"] } }, "query": "INSERT INTO node_aggregation_witness_jobs_fri (l1_batch_number, circuit_id, depth, aggregations_url, number_of_dependent_jobs, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number, circuit_id, depth)\n DO UPDATE SET updated_at=now()" @@ -2533,13 +2174,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "SELECT hashed_key FROM initial_writes WHERE hashed_key = ANY($1)" @@ -2553,9 +2190,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -2621,19 +2256,7 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, false, true, false], "parameters": { "Left": [] } @@ -2659,15 +2282,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true, - true - ], + "nullable": [false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT l1_batch_number, leaf_layer_subqueues_blob_url, aggregation_outputs_blob_url FROM node_aggregation_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND leaf_layer_subqueues_blob_url is NOT NULL\n AND aggregation_outputs_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -2681,9 +2298,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -2699,15 +2314,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int4", - "Text", - "Timestamp" - ] + "Left": ["Int4", "Text", "Timestamp"] } }, "query": "INSERT INTO eth_txs_history\n (eth_tx_id, base_fee_per_gas, priority_fee_per_gas, tx_hash, signed_raw_tx, created_at, updated_at, confirmed_at)\n VALUES ($1, 0, 0, $2, '\\x00', now(), now(), $3)\n RETURNING id" @@ -2726,14 +2335,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "\n SELECT * FROM call_traces\n WHERE tx_hash = $1\n " @@ -2802,26 +2406,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true, - false, - false, - true, - false, - false, - true, - true, - true, - true, - true - ], + "nullable": [false, true, false, false, true, false, false, true, true, true, true, true], "parameters": { - "Left": [ - "Int8", - "Int4Array", - "Text" - ] + "Left": ["Int8", "Int4Array", "Text"] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $3\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM witness_inputs_fri\n WHERE l1_batch_number <= $1\n AND status = 'queued'\n AND protocol_version = ANY($2)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING witness_inputs_fri.*\n " @@ -2831,9 +2418,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "DELETE FROM call_traces\n WHERE tx_hash = ANY($1)" @@ -2917,30 +2502,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - true, - false, - true, - true, - true, - false, - false, - false, - true, - true, - true, - false, - true - ], + "nullable": [false, false, true, false, true, true, true, false, false, false, true, true, true, false, true], "parameters": { - "Left": [ - "Interval", - "Int4", - "Int8", - "Int4Array" - ] + "Left": ["Interval", "Int4", "Int8", "Int4Array"] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM scheduler_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING scheduler_witness_jobs.*\n " @@ -2950,11 +2514,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4Array", - "ByteaArray", - "Int8" - ] + "Left": ["Int4Array", "ByteaArray", "Int8"] } }, "query": "\n UPDATE transactions\n SET \n l1_batch_number = $3,\n l1_batch_tx_index = data_table.l1_batch_tx_index,\n updated_at = now()\n FROM\n (SELECT\n UNNEST($1::int[]) AS l1_batch_tx_index,\n UNNEST($2::bytea[]) AS hash\n ) AS data_table\n WHERE transactions.hash=data_table.hash \n " @@ -2964,9 +2524,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM events WHERE miniblock_number > $1" @@ -2976,9 +2534,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text" - ] + "Left": ["Text"] } }, "query": "DELETE FROM compiler_versions WHERE compiler = $1" @@ -2988,10 +2544,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray", - "ByteaArray" - ] + "Left": ["ByteaArray", "ByteaArray"] } }, "query": "UPDATE storage SET value = u.value FROM UNNEST($1::bytea[], $2::bytea[]) AS u(key, value) WHERE u.key = hashed_key" @@ -3010,15 +2563,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int4", - "Int8" - ] + "Left": ["Int4", "Int8"] } }, "query": "SELECT number, hash FROM miniblocks WHERE protocol_version = $1 ORDER BY number DESC LIMIT $2" @@ -3028,10 +2575,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text" - ] + "Left": ["Int8", "Text"] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET final_node_aggregations_blob_url = $2,\n status = 'waiting_for_proofs',\n updated_at = now()\n WHERE l1_batch_number = $1 AND status != 'queued'\n " @@ -3275,12 +2819,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int8", - "Text", - "Text" - ] + "Left": ["Int4", "Int8", "Text", "Text"] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET number_of_leaf_circuits = $1,\n leaf_layer_subqueues_blob_url = $3,\n aggregation_outputs_blob_url = $4,\n status = 'waiting_for_proofs',\n updated_at = now()\n WHERE l1_batch_number = $2 AND status != 'queued'\n " @@ -3294,13 +2833,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT hash FROM miniblocks WHERE number = $1" @@ -3310,9 +2845,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "\n UPDATE scheduler_dependency_tracker_fri\n SET status='queued'\n WHERE l1_batch_number = ANY($1)\n " @@ -3336,13 +2869,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Interval" - ] + "Left": ["Interval"] } }, "query": "DELETE FROM transactions WHERE miniblock_number IS NULL AND received_at < now() - $1::interval AND is_priority=false AND error IS NULL RETURNING hash" @@ -3356,9 +2885,7 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -3379,14 +2906,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "SELECT hashed_key, value as \"value!\" FROM storage WHERE hashed_key = ANY($1)" @@ -3396,13 +2918,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int2", - "Text", - "Int4", - "Int4" - ] + "Left": ["Int8", "Int2", "Text", "Int4", "Int4"] } }, "query": "\n INSERT INTO leaf_aggregation_witness_jobs_fri\n (l1_batch_number, circuit_id, closed_form_inputs_blob_url, number_of_basic_circuits, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number, circuit_id)\n DO UPDATE SET updated_at=now()\n " @@ -3466,23 +2982,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, false, true, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM protocol_versions\n WHERE id = $1\n " @@ -3501,10 +3003,7 @@ "type_info": "Text" } ], - "nullable": [ - null, - false - ], + "nullable": [null, false], "parameters": { "Left": [] } @@ -3516,9 +3015,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM l2_to_l1_logs WHERE miniblock_number > $1" @@ -3532,9 +3029,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -3550,9 +3045,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -3568,9 +3061,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -3646,28 +3137,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - true, - true, - true, - true, - false, - false, - true - ], + "nullable": [false, false, false, false, false, false, true, true, true, true, false, false, true], "parameters": { - "Left": [ - "Interval", - "Int2", - "Text", - "Text" - ] + "Left": ["Interval", "Int2", "Text", "Text"] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = 'reserved',\n updated_at = now(),\n processing_started_at = now()\n WHERE id in (\n SELECT id\n FROM gpu_prover_queue\n WHERE specialized_prover_group_id=$2\n AND region=$3\n AND zone=$4\n AND (\n instance_status = 'available'\n OR (instance_status = 'reserved' AND processing_started_at < now() - $1::interval)\n )\n ORDER BY updated_at ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING gpu_prover_queue.*\n " @@ -3691,16 +3163,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "UPDATE proof_compression_jobs_fri SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now() WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2) OR (status = 'failed' AND attempts < $2) RETURNING l1_batch_number, status, attempts" @@ -3710,9 +3175,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "UPDATE eth_txs SET has_failed = TRUE WHERE id = $1" @@ -3786,25 +3249,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - null, - null, - false, - false, - false, - false, - true, - true, - false, - false, - true, - false - ], + "nullable": [false, null, null, false, false, false, false, true, true, false, false, true, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT miniblocks.number,\n COALESCE(miniblocks.l1_batch_number, (SELECT (max(number) + 1) FROM l1_batches)) as \"l1_batch_number!\",\n (SELECT max(m2.number) FROM miniblocks m2 WHERE miniblocks.l1_batch_number = m2.l1_batch_number) as \"last_batch_miniblock?\",\n miniblocks.timestamp,\n miniblocks.hash as \"root_hash?\",\n miniblocks.l1_gas_price,\n miniblocks.l2_fair_gas_price,\n miniblocks.bootloader_code_hash,\n miniblocks.default_aa_code_hash,\n miniblocks.virtual_blocks,\n miniblocks.hash,\n miniblocks.protocol_version as \"protocol_version!\",\n l1_batches.fee_account_address as \"fee_account_address?\"\n FROM miniblocks\n LEFT JOIN l1_batches ON miniblocks.l1_batch_number = l1_batches.number\n WHERE miniblocks.number = $1\n " @@ -3823,14 +3270,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT bootloader_code_hash, default_account_code_hash FROM protocol_versions\n WHERE id = $1\n " @@ -3844,9 +3286,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -3912,23 +3352,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, false, true, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM protocol_versions\n WHERE id < $1\n ORDER BY id DESC\n LIMIT 1\n " @@ -3947,14 +3373,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT bytecode_hash, bytecode FROM factory_deps INNER JOIN miniblocks ON miniblocks.number = factory_deps.miniblock_number WHERE miniblocks.l1_batch_number = $1" @@ -3978,11 +3399,7 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - null - ], + "nullable": [false, false, null], "parameters": { "Left": [] } @@ -3994,9 +3411,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "UPDATE miniblocks SET protocol_version = $1 WHERE l1_batch_number IS NULL" @@ -4006,11 +3421,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int8", - "Int8" - ] + "Left": ["Int4", "Int8", "Int8"] } }, "query": "UPDATE l1_batches SET eth_commit_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -4020,10 +3431,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int4" - ] + "Left": ["Int4", "Int4"] } }, "query": "UPDATE eth_txs_history SET sent_at_block = $2, sent_at = now()\n WHERE id = $1 AND sent_at_block IS NULL" @@ -4037,14 +3445,9 @@ "type_info": "Numeric" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT base_fee_per_gas FROM miniblocks WHERE number <= $1 ORDER BY number DESC LIMIT $2" @@ -4058,14 +3461,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Numeric" - ] + "Left": ["Int8", "Numeric"] } }, "query": "SELECT number FROM ( SELECT number, sum(virtual_blocks) OVER(ORDER BY number) AS virtual_block_sum FROM miniblocks WHERE l1_batch_number >= $1 ) AS vts WHERE virtual_block_sum <= $2 ORDER BY number DESC LIMIT 1" @@ -4089,15 +3487,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT bootloader_code_hash, default_account_code_hash, id FROM protocol_versions\n WHERE timestamp <= $1\n ORDER BY id DESC\n LIMIT 1\n " @@ -4116,14 +3508,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT hashed_key, index FROM initial_writes WHERE l1_batch_number = $1 ORDER BY index" @@ -4137,9 +3524,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -4155,14 +3540,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Numeric" - ] + "Left": ["Int8", "Numeric"] } }, "query": "SELECT number FROM ( SELECT number, sum(virtual_blocks) OVER(ORDER BY number) AS virtual_block_sum FROM miniblocks WHERE l1_batch_number >= $1 ) AS vts WHERE virtual_block_sum >= $2 ORDER BY number LIMIT 1" @@ -4181,15 +3561,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE prover_jobs\n SET status = 'failed', error = $1, updated_at = now()\n WHERE id = $2\n RETURNING l1_batch_number, attempts\n " @@ -4203,13 +3577,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT value FROM storage WHERE hashed_key = $1" @@ -4219,10 +3589,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'failed', error = $1, updated_at = now()\n WHERE id = $2\n " @@ -4241,10 +3608,7 @@ "type_info": "Int4" } ], - "nullable": [ - null, - false - ], + "nullable": [null, false], "parameters": { "Left": [] } @@ -4260,9 +3624,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -4274,13 +3636,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8", - "Int2", - "Int4", - "Int4" - ] + "Left": ["Text", "Int8", "Int2", "Int4", "Int4"] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET aggregations_url = $1, number_of_dependent_jobs = $5, updated_at = now()\n WHERE l1_batch_number = $2\n AND circuit_id = $3\n AND depth = $4\n " @@ -4294,9 +3650,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -4382,30 +3736,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - true, - true, - true, - false, - true, - true, - true, - false, - false, - false, - true, - true, - false, - true - ], + "nullable": [false, true, true, true, false, true, true, true, false, false, false, true, true, false, true], "parameters": { - "Left": [ - "Interval", - "Int4", - "Int8", - "Int4Array" - ] + "Left": ["Interval", "Int4", "Int8", "Int4Array"] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM node_aggregation_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING node_aggregation_witness_jobs.*\n " @@ -4424,14 +3757,9 @@ "type_info": "Int8" } ], - "nullable": [ - null, - null - ], + "nullable": [null, null], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT (SELECT l1_batch_number FROM miniblocks WHERE number = $1) as \"block_batch?\", (SELECT MAX(number) + 1 FROM l1_batches) as \"max_batch?\"" @@ -4445,9 +3773,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -4459,10 +3785,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Jsonb" - ] + "Left": ["Int8", "Jsonb"] } }, "query": "INSERT INTO events_queue (l1_batch_number, serialized_events_queue) VALUES ($1, $2)" @@ -4472,9 +3795,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "DELETE FROM eth_txs_history\n WHERE id = $1" @@ -4486,15 +3807,11 @@ "name": "version", "ordinal": 0, "type_info": "Text" - } - ], - "nullable": [ - false + } ], + "nullable": [false], "parameters": { - "Left": [ - "Text" - ] + "Left": ["Text"] } }, "query": "SELECT version FROM compiler_versions WHERE compiler = $1 ORDER by version" @@ -4504,10 +3821,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "TextArray", - "Text" - ] + "Left": ["TextArray", "Text"] } }, "query": "\n INSERT INTO compiler_versions (version, compiler, created_at, updated_at)\n SELECT u.version, $2, now(), now()\n FROM UNNEST($1::text[])\n AS u(version)\n ON CONFLICT (version, compiler) DO NOTHING" @@ -4531,15 +3845,9 @@ "type_info": "Jsonb" } ], - "nullable": [ - false, - true, - true - ], + "nullable": [false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT status, error, compilation_errors FROM contract_verification_requests\n WHERE id = $1\n " @@ -4583,22 +3891,9 @@ "type_info": "Bool" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, false, false, false], "parameters": { - "Left": [ - "Int2Array", - "Int2Array", - "Int4Array", - "Text" - ] + "Left": ["Int2Array", "Int2Array", "Int4Array", "Text"] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $4\n WHERE id = (\n SELECT id\n FROM prover_jobs_fri\n WHERE status = 'queued'\n AND (circuit_id, aggregation_round) IN (\n SELECT * FROM UNNEST($1::smallint[], $2::smallint[])\n )\n AND protocol_version = ANY($3)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -4608,10 +3903,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE id = $2\n " @@ -4621,12 +3913,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Time", - "Bytea", - "Text", - "Int8" - ] + "Left": ["Time", "Bytea", "Text", "Int8"] } }, "query": "\n UPDATE prover_jobs\n SET status = 'successful', updated_at = now(), time_taken = $1, result = $2, proccesed_by = $3\n WHERE id = $4\n " @@ -4640,13 +3927,9 @@ "type_info": "ByteaArray" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT l2_to_l1_logs FROM l1_batches WHERE number = $1" @@ -4660,9 +3943,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -4898,9 +4179,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE number = $1" @@ -4910,11 +4189,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Bytea", - "Bytea" - ] + "Left": ["Int8", "Bytea", "Bytea"] } }, "query": "INSERT INTO commitments (l1_batch_number, events_queue_commitment, bootloader_initial_content_commitment) VALUES ($1, $2, $3) ON CONFLICT (l1_batch_number) DO UPDATE SET events_queue_commitment = $2, bootloader_initial_content_commitment = $3" @@ -4958,21 +4233,9 @@ "type_info": "Bool" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, false, false, false], "parameters": { - "Left": [ - "Time", - "Text", - "Int8" - ] + "Left": ["Time", "Text", "Int8"] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1, proof_blob_url=$2\n WHERE id = $3\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -4986,9 +4249,7 @@ "type_info": "Int4" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -5004,16 +4265,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "SELECT id FROM prover_fri_protocol_versions WHERE recursion_circuits_set_vks_hash = $1 AND recursion_leaf_level_vk_hash = $2 AND recursion_node_level_vk_hash = $3 AND recursion_scheduler_level_vk_hash = $4 " @@ -5037,16 +4291,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false, - true - ], + "nullable": [false, false, true], "parameters": { - "Left": [ - "Bytea", - "Bytea" - ] + "Left": ["Bytea", "Bytea"] } }, "query": "\n SELECT factory_deps.bytecode, transactions.data as \"data?\", transactions.contract_address as \"contract_address?\"\n FROM (\n SELECT * FROM storage_logs\n WHERE storage_logs.hashed_key = $1\n ORDER BY miniblock_number DESC, operation_number DESC\n LIMIT 1\n ) storage_logs\n JOIN factory_deps ON factory_deps.bytecode_hash = storage_logs.value\n LEFT JOIN transactions ON transactions.hash = storage_logs.tx_hash\n WHERE storage_logs.value != $2\n " @@ -5060,14 +4307,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT hash FROM miniblocks WHERE number BETWEEN $1 AND $2 ORDER BY number" @@ -5105,13 +4347,9 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT protocol_version\n FROM witness_inputs\n WHERE l1_batch_number = $1\n " @@ -5345,11 +4583,7 @@ true ], "parameters": { - "Left": [ - "Int8", - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8", "Int8"] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE number BETWEEN $1 AND $2 ORDER BY number LIMIT $3" @@ -5359,11 +4593,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray", - "ByteaArray", - "Int8" - ] + "Left": ["ByteaArray", "ByteaArray", "Int8"] } }, "query": "INSERT INTO factory_deps (bytecode_hash, bytecode, miniblock_number, created_at, updated_at) SELECT u.bytecode_hash, u.bytecode, $3, now(), now() FROM UNNEST($1::bytea[], $2::bytea[]) AS u(bytecode_hash, bytecode) ON CONFLICT (bytecode_hash) DO NOTHING" @@ -5387,15 +4617,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true, - true - ], + "nullable": [false, true, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT l1_batch_number, basic_circuits_blob_url, basic_circuits_inputs_blob_url FROM leaf_aggregation_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND basic_circuits_blob_url is NOT NULL\n AND basic_circuits_inputs_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -5414,14 +4638,9 @@ "type_info": "Int8" } ], - "nullable": [ - null, - null - ], + "nullable": [null, null], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT MIN(miniblocks.number) as \"min?\", MAX(miniblocks.number) as \"max?\" FROM miniblocks WHERE l1_batch_number = $1" @@ -5435,13 +4654,9 @@ "type_info": "Int8" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT l1_batch_number FROM miniblocks WHERE number = $1" @@ -5455,9 +4670,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -5473,13 +4686,9 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Numeric" - ] + "Left": ["Numeric"] } }, "query": "SELECT max(l1_batches.number) FROM l1_batches JOIN eth_txs ON (l1_batches.eth_commit_tx_id = eth_txs.id) JOIN eth_txs_history AS commit_tx ON (eth_txs.confirmed_eth_tx_history_id = commit_tx.id) WHERE commit_tx.confirmed_at IS NOT NULL AND eth_prove_tx_id IS NOT NULL AND eth_execute_tx_id IS NULL AND EXTRACT(epoch FROM commit_tx.confirmed_at) < $1" @@ -5493,13 +4702,9 @@ "type_info": "ByteaArray" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "SELECT (SELECT ARRAY[address,key] FROM storage_logs WHERE hashed_key = u.hashed_key ORDER BY miniblock_number, operation_number LIMIT 1) as \"address_and_key?\" FROM UNNEST($1::bytea[]) AS u(hashed_key)" @@ -5513,9 +4718,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -5536,14 +4739,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT * FROM call_traces WHERE tx_hash IN (SELECT hash FROM transactions WHERE miniblock_number = $1)" @@ -5553,15 +4751,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Bytea", - "Bytea", - "Text", - "Text", - "Int4", - "Int4" - ] + "Left": ["Int8", "Bytea", "Bytea", "Text", "Text", "Int4", "Int4"] } }, "query": "\n INSERT INTO leaf_aggregation_witness_jobs\n (l1_batch_number, basic_circuits, basic_circuits_inputs, basic_circuits_blob_url, basic_circuits_inputs_blob_url, number_of_basic_circuits, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, 'waiting_for_proofs', now(), now())\n " @@ -5580,14 +4770,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true - ], + "nullable": [false, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT l1_batch_number, merkel_tree_paths_blob_url FROM witness_inputs WHERE status = 'successful' AND is_blob_cleaned = FALSE AND merkel_tree_paths_blob_url is NOT NULL AND updated_at < NOW() - INTERVAL '30 days' LIMIT $1" @@ -5821,12 +5006,7 @@ true ], "parameters": { - "Left": [ - "Bytea", - "Bytea", - "Int4", - "Int8" - ] + "Left": ["Bytea", "Bytea", "Int4", "Int8"] } }, "query": "SELECT number, l1_batches.timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, l1_batches.bootloader_code_hash, l1_batches.default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number JOIN protocol_versions ON protocol_versions.id = l1_batches.protocol_version WHERE eth_commit_tx_id IS NULL AND number != 0 AND protocol_versions.bootloader_code_hash = $1 AND protocol_versions.default_account_code_hash = $2 AND commitment IS NOT NULL AND (protocol_versions.id = $3 OR protocol_versions.upgrade_tx_hash IS NULL) ORDER BY number LIMIT $4" @@ -5836,11 +5016,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text", - "Int4" - ] + "Left": ["Int8", "Text", "Int4"] } }, "query": "INSERT INTO witness_inputs_fri(l1_batch_number, merkle_tree_paths_blob_url, protocol_version, status, created_at, updated_at) VALUES ($1, $2, $3, 'queued', now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -5960,10 +5136,7 @@ true ], "parameters": { - "Left": [ - "TextArray", - "Int4Array" - ] + "Left": ["TextArray", "Int4Array"] } }, "query": "\n UPDATE prover_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id\n FROM prover_jobs\n WHERE circuit_type = ANY($1)\n AND status = 'queued'\n AND protocol_version = ANY($2)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs.*\n " @@ -5977,13 +5150,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "UPDATE transactions\n SET l1_batch_number = NULL, miniblock_number = NULL, error = NULL, index_in_block = NULL, execution_info = '{}'\n WHERE miniblock_number > $1\n RETURNING hash\n " @@ -5993,11 +5162,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Numeric", - "Timestamp" - ] + "Left": ["Bytea", "Numeric", "Timestamp"] } }, "query": "UPDATE tokens SET usd_price = $2, usd_price_updated_at = $3, updated_at = now() WHERE l1_address = $1" @@ -6007,10 +5172,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Jsonb" - ] + "Left": ["Bytea", "Jsonb"] } }, "query": "\n INSERT INTO contracts_verification_info\n (address, verification_info)\n VALUES ($1, $2)\n ON CONFLICT (address)\n DO UPDATE SET verification_info = $2\n " @@ -6024,9 +5186,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -6038,9 +5198,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "UPDATE miniblocks SET l1_batch_number = $1 WHERE l1_batch_number IS NULL" @@ -6114,25 +5272,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false, - false, - false, - null, - null, - false, - false, - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, null, null, false, false, false, false, false, false, false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT miniblock_number, log_index_in_miniblock, log_index_in_tx, tx_hash, Null::bytea as \"block_hash\", Null::bigint as \"l1_batch_number?\", shard_id, is_service, tx_index_in_miniblock, tx_index_in_l1_batch, sender, key, value FROM l2_to_l1_logs WHERE tx_hash = $1 ORDER BY log_index_in_tx ASC" @@ -6151,15 +5293,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Text", - "Text" - ] + "Left": ["Text", "Text"] } }, "query": "SELECT l1_batch_number, status FROM proof_compression_jobs_fri\n WHERE l1_batch_number = ( SELECT MIN(l1_batch_number) FROM proof_compression_jobs_fri WHERE status = $1 OR status = $2\n )" @@ -6273,9 +5409,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number, l1_tx_count, l2_tx_count, timestamp, is_finished, fee_account_address, l2_to_l1_logs, l2_to_l1_messages, bloom, priority_ops_onchain_data, used_contract_hashes, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version FROM l1_batches WHERE number = $1" @@ -6294,14 +5428,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - true - ], + "nullable": [false, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT timestamp, hash FROM l1_batches WHERE number = $1" @@ -6311,9 +5440,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM l1_batches WHERE number > $1" @@ -6332,14 +5459,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - true - ], + "nullable": [false, true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT id, circuit_input_blob_url FROM prover_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND circuit_input_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -6363,16 +5485,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -6441,24 +5556,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - false, - true, - true, - false, - true, - true, - true, - false, - false, - false, - false - ], + "nullable": [false, false, true, true, false, true, true, true, false, false, false, false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "\n SELECT transactions.is_priority,\n transactions.initiator_address,\n transactions.gas_limit,\n transactions.gas_per_pubdata_limit,\n transactions.received_at,\n transactions.miniblock_number,\n transactions.error,\n transactions.effective_gas_price,\n transactions.refunded_gas,\n commit_tx.tx_hash as \"eth_commit_tx_hash?\",\n prove_tx.tx_hash as \"eth_prove_tx_hash?\",\n execute_tx.tx_hash as \"eth_execute_tx_hash?\"\n FROM transactions\n LEFT JOIN miniblocks ON miniblocks.number = transactions.miniblock_number\n LEFT JOIN l1_batches ON l1_batches.number = miniblocks.l1_batch_number\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE transactions.hash = $1\n " @@ -6467,12 +5567,8 @@ "describe": { "columns": [], "nullable": [], - "parameters": { - "Left": [ - "Int4", - "Int8", - "Int8" - ] + "parameters": { + "Left": ["Int4", "Int8", "Int8"] } }, "query": "UPDATE l1_batches SET eth_prove_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -6482,10 +5578,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Time", - "Int8" - ] + "Left": ["Time", "Int8"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE id = $2\n " @@ -6605,9 +5698,7 @@ false ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT miniblocks.number,\n COALESCE(miniblocks.l1_batch_number, (SELECT (max(number) + 1) FROM l1_batches)) as \"l1_batch_number!\",\n miniblocks.timestamp,\n miniblocks.l1_tx_count,\n miniblocks.l2_tx_count,\n miniblocks.hash as \"root_hash?\",\n commit_tx.tx_hash as \"commit_tx_hash?\",\n commit_tx.confirmed_at as \"committed_at?\",\n prove_tx.tx_hash as \"prove_tx_hash?\",\n prove_tx.confirmed_at as \"proven_at?\",\n execute_tx.tx_hash as \"execute_tx_hash?\",\n execute_tx.confirmed_at as \"executed_at?\",\n miniblocks.l1_gas_price,\n miniblocks.l2_fair_gas_price,\n miniblocks.bootloader_code_hash,\n miniblocks.default_aa_code_hash,\n miniblocks.protocol_version,\n l1_batches.fee_account_address as \"fee_account_address?\"\n FROM miniblocks\n LEFT JOIN l1_batches ON miniblocks.l1_batch_number = l1_batches.number\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE miniblocks.number = $1\n " @@ -6621,13 +5712,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT DISTINCT ON (hashed_key) hashed_key FROM (SELECT * FROM storage_logs WHERE miniblock_number > $1) inn" @@ -6651,11 +5738,7 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { "Left": [] } @@ -6667,9 +5750,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "UPDATE prover_jobs_fri SET status = 'sent_to_server', updated_at = now() WHERE l1_batch_number = $1" @@ -6679,9 +5760,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n INSERT INTO scheduler_dependency_tracker_fri\n (l1_batch_number, status, created_at, updated_at)\n VALUES ($1, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number)\n DO UPDATE SET updated_at=now()\n " @@ -6722,9 +5801,7 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -6740,17 +5817,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int4", - "Int8", - "Int8", - "Text", - "Bytea" - ] + "Left": ["Int4", "Int8", "Int8", "Text", "Bytea"] } }, "query": "INSERT INTO eth_txs_history\n (eth_tx_id, base_fee_per_gas, priority_fee_per_gas, tx_hash, signed_raw_tx, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, now(), now())\n ON CONFLICT (tx_hash) DO NOTHING\n RETURNING id" @@ -6764,14 +5833,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Int8" - ] + "Left": ["Bytea", "Int8"] } }, "query": "\n SELECT value\n FROM storage_logs\n WHERE storage_logs.hashed_key = $1 AND storage_logs.miniblock_number <= $2\n ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n " @@ -6785,13 +5849,9 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT protocol_version FROM l1_batches WHERE number = $1" @@ -6860,28 +5920,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false, - false, - false, - true, - true, - false - ], + "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], "parameters": { - "Left": [ - "Bytea", - "Int8", - "Text", - "Text", - "Int8" - ] + "Left": ["Bytea", "Int8", "Text", "Text", "Int8"] } }, "query": "INSERT INTO eth_txs (raw_tx, nonce, tx_type, contract_address, predicted_gas_cost, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, now(), now())\n RETURNING *" @@ -6891,9 +5932,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "\n UPDATE prover_jobs\n SET is_blob_cleaned=TRUE\n WHERE id = ANY($1);\n " @@ -6907,14 +5946,9 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Bytea", - "Bytea" - ] + "Left": ["Bytea", "Bytea"] } }, "query": "SELECT COUNT(*) as \"count!\" FROM (SELECT * FROM storage_logs WHERE storage_logs.hashed_key = $1 ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC LIMIT 1) sl WHERE sl.value != $2" @@ -6924,9 +5958,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "DELETE FROM storage WHERE hashed_key = ANY($1)" @@ -6936,10 +5968,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "UPDATE prover_jobs_fri SET status = $1, updated_at = now() WHERE id = $2" @@ -7059,9 +6088,7 @@ true ], "parameters": { - "Left": [ - "Int4Array" - ] + "Left": ["Int4Array"] } }, "query": "\n UPDATE prover_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id\n FROM prover_jobs\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs.*\n " @@ -7103,12 +6130,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Bytea", - "Text", - "Int4" - ] + "Left": ["Int8", "Bytea", "Text", "Int4"] } }, "query": "\n INSERT INTO scheduler_witness_jobs\n (l1_batch_number, scheduler_witness, scheduler_witness_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, 'waiting_for_artifacts', now(), now())\n " @@ -7122,21 +6144,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Text", - "Text", - "Text", - "Text", - "Bool", - "Text", - "Bytea", - "Bool" - ] + "Left": ["Bytea", "Text", "Text", "Text", "Text", "Bool", "Text", "Bytea", "Bool"] } }, "query": "\n INSERT INTO contract_verification_requests (\n contract_address,\n source_code,\n contract_name,\n zk_compiler_version,\n compiler_version,\n optimization_used,\n optimizer_mode,\n constructor_arguments,\n is_system,\n status,\n created_at,\n updated_at\n )\n VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, 'queued', now(), now())\n RETURNING id\n " @@ -7146,15 +6156,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text", - "Int4", - "Bytea", - "Int4", - "Text", - "Int4" - ] + "Left": ["Int8", "Text", "Int4", "Bytea", "Int4", "Text", "Int4"] } }, "query": "\n INSERT INTO prover_jobs (l1_batch_number, circuit_type, sequence_number, prover_input, aggregation_round, circuit_input_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, 'queued', now(), now())\n ON CONFLICT(l1_batch_number, aggregation_round, sequence_number) DO NOTHING\n " @@ -7178,11 +6180,7 @@ "type_info": "Int8" } ], - "nullable": [ - null, - null, - null - ], + "nullable": [null, null, null], "parameters": { "Left": [] } @@ -7219,16 +6217,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int2", - "Text", - "Int2", - "Int4", - "Int4", - "Bool", - "Int4" - ] + "Left": ["Int8", "Int2", "Text", "Int2", "Int4", "Int4", "Bool", "Int4"] } }, "query": "\n INSERT INTO prover_jobs_fri (l1_batch_number, circuit_id, circuit_blob_url, aggregation_round, sequence_number, depth, is_node_final_proof, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, $8, 'queued', now(), now())\n ON CONFLICT(l1_batch_number, aggregation_round, circuit_id, depth, sequence_number)\n DO UPDATE SET updated_at=now()\n " @@ -7287,22 +6276,9 @@ "type_info": "Bool" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - true, - false, - false - ], + "nullable": [false, false, false, false, false, false, false, true, false, false], "parameters": { - "Left": [ - "Interval" - ] + "Left": ["Interval"] } }, "query": "UPDATE contract_verification_requests\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id FROM contract_verification_requests\n WHERE status = 'queued' OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n ORDER BY created_at\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING id, contract_address, source_code, contract_name, zk_compiler_version, compiler_version, optimization_used,\n optimizer_mode, constructor_arguments, is_system\n " @@ -7386,28 +6362,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - false, - false, - true, - false, - false, - true, - false, - false, - true, - true, - true, - true, - true, - true - ], + "nullable": [false, false, false, true, false, false, true, false, false, true, true, true, true, true, true], "parameters": { - "Left": [ - "Int4Array", - "Text" - ] + "Left": ["Int4Array", "Text"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM leaf_aggregation_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING leaf_aggregation_witness_jobs_fri.*\n " @@ -7421,13 +6378,9 @@ "type_info": "Bytea" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "\n SELECT upgrade_tx_hash FROM protocol_versions\n WHERE id = $1\n " @@ -7437,13 +6390,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Int4", "Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "INSERT INTO prover_fri_protocol_versions (id, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, created_at) VALUES ($1, $2, $3, $4, $5, now()) ON CONFLICT(id) DO NOTHING" @@ -7517,25 +6464,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - null, - null, - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, false, false, null, null, false, false, false, false, false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "\n SELECT\n address, topic1, topic2, topic3, topic4, value,\n Null::bytea as \"block_hash\", Null::bigint as \"l1_batch_number?\",\n miniblock_number, tx_hash, tx_index_in_block,\n event_index_in_block, event_index_in_tx\n FROM events\n WHERE tx_hash = $1\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n " @@ -7545,11 +6476,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int8", - "Int8" - ] + "Left": ["Int4", "Int8", "Int8"] } }, "query": "UPDATE l1_batches SET eth_execute_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -7559,9 +6486,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status='queued'\n WHERE l1_batch_number = $1\n AND status != 'successful'\n AND status != 'in_progress'\n " @@ -7580,15 +6505,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Timestamp", - "Int8" - ] + "Left": ["Timestamp", "Int8"] } }, "query": "SELECT transactions.hash, transactions.received_at FROM transactions LEFT JOIN miniblocks ON miniblocks.number = miniblock_number WHERE received_at > $1 ORDER BY received_at ASC LIMIT $2" @@ -7598,10 +6517,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text" - ] + "Left": ["Int8", "Text"] } }, "query": "INSERT INTO proof_generation_details (l1_batch_number, status, proof_gen_data_blob_url, created_at, updated_at) VALUES ($1, 'ready_to_be_proven', $2, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -7615,13 +6531,9 @@ "type_info": "Int4" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT MAX(operation_number) as \"max?\" FROM storage_logs WHERE miniblock_number = $1" @@ -7635,13 +6547,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT l1_batch_number FROM initial_writes WHERE hashed_key = $1" @@ -7660,15 +6568,9 @@ "type_info": "Bytea" } ], - "nullable": [ - true, - true - ], + "nullable": [true, true], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT prover_jobs.result as proof, scheduler_witness_jobs.aggregation_result_coords\n FROM prover_jobs\n INNER JOIN scheduler_witness_jobs\n ON prover_jobs.l1_batch_number = scheduler_witness_jobs.l1_batch_number\n WHERE prover_jobs.l1_batch_number >= $1 AND prover_jobs.l1_batch_number <= $2\n AND prover_jobs.aggregation_round = 3\n AND prover_jobs.status = 'successful'\n " @@ -7737,24 +6639,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false, - false, - false, - true, - true, - false - ], + "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT * FROM eth_txs \n WHERE id > (SELECT COALESCE(MAX(eth_tx_id), 0) FROM eth_txs_history)\n ORDER BY id\n LIMIT $1\n " @@ -7764,12 +6651,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Time", - "Text", - "Int8" - ] + "Left": ["Text", "Time", "Text", "Int8"] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, updated_at = now(), time_taken = $2, l1_proof_blob_url = $3WHERE l1_batch_number = $4" @@ -7783,9 +6665,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -7801,9 +6681,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -7815,11 +6693,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray", - "Int8Array", - "Int8" - ] + "Left": ["ByteaArray", "Int8Array", "Int8"] } }, "query": "INSERT INTO initial_writes (hashed_key, index, l1_batch_number, created_at, updated_at) SELECT u.hashed_key, u.index, $3, now(), now() FROM UNNEST($1::bytea[], $2::bigint[]) AS u(hashed_key, index)" @@ -7877,29 +6751,15 @@ "ordinal": 9, "type_info": "Int4" }, - { - "name": "sent_at", - "ordinal": 10, - "type_info": "Timestamp" - } - ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - true, - true, - true, - true + { + "name": "sent_at", + "ordinal": 10, + "type_info": "Timestamp" + } ], + "nullable": [false, false, false, false, false, false, false, true, true, true, true], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM eth_txs_history WHERE eth_tx_id = $1 ORDER BY created_at DESC LIMIT 1" @@ -7909,10 +6769,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Int8" - ] + "Left": ["Bytea", "Int8"] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET aggregation_result_coords = $1,\n updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -7922,9 +6779,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM factory_deps WHERE miniblock_number > $1" @@ -7943,14 +6798,9 @@ "type_info": "Int4" } ], - "nullable": [ - true, - true - ], + "nullable": [true, true], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT l1_batch_number, l1_batch_tx_index FROM transactions WHERE hash = $1" @@ -7960,10 +6810,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Time", - "Int8" - ] + "Left": ["Time", "Int8"] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE l1_batch_number = $2\n " @@ -7977,9 +6824,7 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { "Left": [] } @@ -8045,23 +6890,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - true, - true, - true, - true - ], + "nullable": [false, false, false, false, false, false, false, true, true, true, true], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM eth_txs_history WHERE eth_tx_id = $1 ORDER BY created_at DESC" @@ -8071,10 +6902,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE id = $2\n " @@ -8084,10 +6912,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array", - "ByteaArray" - ] + "Left": ["Int8Array", "ByteaArray"] } }, "query": "UPDATE miniblocks SET hash = u.hash FROM UNNEST($1::bigint[], $2::bytea[]) AS u(number, hash) WHERE miniblocks.number = u.number\n " @@ -8106,15 +6931,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT number, hash FROM miniblocks WHERE number > $1 ORDER BY number ASC LIMIT $2" @@ -8162,10 +6981,7 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { "Left": [] } @@ -8401,10 +7217,7 @@ true ], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM (SELECT l1_batches.*, row_number() OVER (ORDER BY number ASC) AS row_number FROM l1_batches WHERE eth_commit_tx_id IS NOT NULL AND l1_batches.skip_proof = TRUE AND l1_batches.number > $1 ORDER BY number LIMIT $2) inn LEFT JOIN commitments ON commitments.l1_batch_number = inn.number WHERE number - row_number = $1" @@ -8473,20 +7286,7 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false, - false, - false, - true, - true, - false - ], + "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], "parameters": { "Left": [] } @@ -8498,15 +7298,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int4", - "Int8", - "Bytea", - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Int4", "Int8", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "INSERT INTO prover_protocol_versions\n (id, timestamp, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash,\n recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, verifier_address, created_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, now())\n " @@ -8565,18 +7357,7 @@ "type_info": "Bool" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - true, - false, - false - ], + "nullable": [false, false, false, false, false, false, false, true, false, false], "parameters": { "Left": [] } @@ -8602,16 +7383,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -8635,16 +7409,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING l1_batch_number, status, attempts\n " @@ -8658,13 +7425,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Interval" - ] + "Left": ["Interval"] } }, "query": "UPDATE proof_generation_details SET status = 'picked_by_prover', updated_at = now(), prover_taken_at = now() WHERE l1_batch_number = ( SELECT l1_batch_number FROM proof_generation_details WHERE status = 'ready_to_be_proven' OR (status = 'picked_by_prover' AND prover_taken_at < now() - $1::interval) ORDER BY l1_batch_number ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING proof_generation_details.l1_batch_number" @@ -8678,15 +7441,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Text", - "Text", - "Text" - ] + "Left": ["Text", "Text", "Text"] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, attempts = attempts + 1, updated_at = now(), processing_started_at = now(), picked_by = $3 WHERE l1_batch_number = ( SELECT l1_batch_number FROM proof_compression_jobs_fri WHERE status = $2 ORDER BY l1_batch_number ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING proof_compression_jobs_fri.l1_batch_number" @@ -8920,9 +7677,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE eth_commit_tx_id IS NOT NULL AND eth_prove_tx_id IS NULL ORDER BY number LIMIT $1" @@ -8936,16 +7691,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8", - "Int2", - "Int2", - "Int4" - ] + "Left": ["Int8", "Int2", "Int2", "Int4"] } }, "query": "\n SELECT id from prover_jobs_fri\n WHERE l1_batch_number = $1\n AND circuit_id = $2\n AND aggregation_round = $3\n AND depth = $4\n AND status = 'successful'\n ORDER BY sequence_number ASC;\n " @@ -8964,14 +7712,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "SELECT bytecode, bytecode_hash FROM factory_deps WHERE bytecode_hash = ANY($1)" @@ -8985,13 +7728,9 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT protocol_version FROM miniblocks WHERE number = $1" @@ -9055,24 +7794,9 @@ "type_info": "Text" } ], - "nullable": [ - false, - false, - false, - true, - true, - true, - false, - false, - false, - true, - true - ], + "nullable": [false, false, false, true, true, true, false, false, false, true, true], "parameters": { - "Left": [ - "Int4Array", - "Text" - ] + "Left": ["Int4Array", "Text"] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM scheduler_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING scheduler_witness_jobs_fri.*\n " @@ -9082,10 +7806,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray", - "ByteaArray" - ] + "Left": ["ByteaArray", "ByteaArray"] } }, "query": "\n INSERT INTO call_traces (tx_hash, call_trace)\n SELECT u.tx_hash, u.call_trace\n FROM UNNEST($1::bytea[], $2::bytea[])\n AS u(tx_hash, call_trace)\n " @@ -9099,13 +7820,9 @@ "type_info": "Int8Array" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT storage_refunds FROM l1_batches WHERE number = $1" @@ -9129,16 +7846,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING l1_batch_number, status, attempts\n " @@ -9372,9 +8082,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE eth_prove_tx_id IS NOT NULL AND eth_execute_tx_id IS NULL ORDER BY number LIMIT $1" @@ -9384,15 +8092,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "ByteaArray", - "Int4Array", - "VarcharArray", - "JsonbArray", - "Int8Array", - "NumericArray" - ] + "Left": ["Int8", "ByteaArray", "Int4Array", "VarcharArray", "JsonbArray", "Int8Array", "NumericArray"] } }, "query": "\n UPDATE transactions\n SET\n miniblock_number = $1,\n index_in_block = data_table.index_in_block,\n error = NULLIF(data_table.error, ''),\n in_mempool=FALSE,\n execution_info = execution_info || data_table.new_execution_info,\n refunded_gas = data_table.refunded_gas,\n effective_gas_price = data_table.effective_gas_price,\n updated_at = now()\n FROM\n (\n SELECT\n UNNEST($2::bytea[]) AS hash,\n UNNEST($3::integer[]) AS index_in_block,\n UNNEST($4::varchar[]) AS error,\n UNNEST($5::jsonb[]) AS new_execution_info,\n UNNEST($6::bigint[]) as refunded_gas,\n UNNEST($7::numeric[]) as effective_gas_price\n ) AS data_table\n WHERE transactions.hash = data_table.hash\n " @@ -9436,15 +8136,7 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false - ], + "nullable": [false, false, false, false, false, true, false], "parameters": { "Left": [] } @@ -9470,16 +8162,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int4" - ] + "Left": ["Interval", "Int4"] } }, "query": "\n UPDATE prover_jobs\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -9493,9 +8178,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -9507,10 +8190,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Time", - "Int8" - ] + "Left": ["Time", "Int8"] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE l1_batch_number = $2\n " @@ -9520,9 +8200,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -9536,15 +8214,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Int8", - "Bytea" - ] + "Left": ["Bytea", "Int8", "Bytea"] } }, "query": "\n SELECT bytecode FROM (\n SELECT * FROM storage_logs\n WHERE\n storage_logs.hashed_key = $1 AND\n storage_logs.miniblock_number <= $2\n ORDER BY\n storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n ) t\n JOIN factory_deps ON value = factory_deps.bytecode_hash\n WHERE value != $3\n " @@ -9554,11 +8226,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int4", - "Int4" - ] + "Left": ["Int8", "Int4", "Int4"] } }, "query": "UPDATE eth_txs\n SET gas_used = $1, confirmed_eth_tx_history_id = $2\n WHERE id = $3" @@ -9577,14 +8245,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT address, key FROM protective_reads WHERE l1_batch_number = $1" @@ -9603,14 +8266,9 @@ "type_info": "Timestamp" } ], - "nullable": [ - true, - true - ], + "nullable": [true, true], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT usd_price, usd_price_updated_at FROM tokens WHERE l2_address = $1" @@ -9620,9 +8278,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "UPDATE witness_inputs SET is_blob_cleaned = TRUE WHERE l1_batch_number = ANY($1)" @@ -9632,36 +8288,17 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int4", - "Int4", - "Int2", - "Text", - "Text", - "Int2" - ] + "Left": ["Text", "Int4", "Int4", "Int2", "Text", "Text", "Int2"] } }, "query": "\n INSERT INTO gpu_prover_queue (instance_host, instance_port, queue_capacity, queue_free_slots, instance_status, specialized_prover_group_id, region, zone, num_gpu, created_at, updated_at)\n VALUES (cast($1::text as inet), $2, $3, $3, 'available', $4, $5, $6, $7, now(), now())\n ON CONFLICT(instance_host, instance_port, region, zone)\n DO UPDATE SET instance_status='available', queue_capacity=$3, queue_free_slots=$3, specialized_prover_group_id=$4, region=$5, zone=$6, num_gpu=$7, updated_at=now()" }, - "cc20350af9e837ae6b6160be65f88e6b675f62e207252f91f2ce7dcaaddb12b1": { - "describe": { - "columns": [], - "nullable": [], - "parameters": { - "Left": [ - "Int4", - "Int8", - "Bytea", - "Bytea", - "Bytea", - "Bytea", - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "cc20350af9e837ae6b6160be65f88e6b675f62e207252f91f2ce7dcaaddb12b1": { + "describe": { + "columns": [], + "nullable": [], + "parameters": { + "Left": ["Int4", "Int8", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "INSERT INTO protocol_versions (id, timestamp, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, bootloader_code_hash, default_account_code_hash, verifier_address, upgrade_tx_hash, created_at) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, now())" @@ -9671,11 +8308,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Int8", - "Bytea" - ] + "Left": ["Bytea", "Int8", "Bytea"] } }, "query": "\n DELETE FROM tokens \n WHERE l2_address IN\n (\n SELECT substring(key, 12, 20) FROM storage_logs \n WHERE storage_logs.address = $1 AND miniblock_number > $2 AND NOT EXISTS (\n SELECT 1 FROM storage_logs as s\n WHERE\n s.hashed_key = storage_logs.hashed_key AND\n (s.miniblock_number, s.operation_number) >= (storage_logs.miniblock_number, storage_logs.operation_number) AND\n s.value = $3\n )\n )\n " @@ -9685,9 +8318,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "DELETE FROM miniblocks WHERE number > $1" @@ -9697,12 +8328,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text", - "Jsonb", - "Text" - ] + "Left": ["Int8", "Text", "Jsonb", "Text"] } }, "query": "\n UPDATE contract_verification_requests\n SET status = 'failed', updated_at = now(), error = $2, compilation_errors = $3, panic_message = $4\n WHERE id = $1\n " @@ -9726,11 +8352,7 @@ "type_info": "Text" } ], - "nullable": [ - null, - false, - false - ], + "nullable": [null, false, false], "parameters": { "Left": [] } @@ -9746,9 +8368,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -9760,14 +8380,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Text", - "Int4", - "Int4", - "Text", - "Text" - ] + "Left": ["Text", "Text", "Int4", "Int4", "Text", "Text"] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = $1, updated_at = now(), queue_free_slots = $4\n WHERE instance_host = $2::text::inet\n AND instance_port = $3\n AND region = $5\n AND zone = $6\n " @@ -9811,20 +8424,9 @@ "type_info": "Bool" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false - ], + "nullable": [false, false, false, false, false, false, false], "parameters": { - "Left": [ - "Int4Array", - "Text" - ] + "Left": ["Int4Array", "Text"] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM prover_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -9848,15 +8450,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "SELECT hashed_key, l1_batch_number, index FROM initial_writes WHERE hashed_key = ANY($1::bytea[])" @@ -9866,12 +8462,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Bytea", - "Varchar", - "Varchar", - "Int4" - ] + "Left": ["Bytea", "Varchar", "Varchar", "Int4"] } }, "query": "UPDATE tokens SET token_list_name = $2, token_list_symbol = $3,\n token_list_decimals = $4, well_known = true, updated_at = now()\n WHERE l1_address = $1\n " @@ -9885,16 +8476,9 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea", - "Bytea", - "Bytea", - "Bytea" - ] + "Left": ["Bytea", "Bytea", "Bytea", "Bytea"] } }, "query": "\n SELECT id\n FROM prover_protocol_versions\n WHERE recursion_circuits_set_vks_hash = $1\n AND recursion_leaf_level_vk_hash = $2\n AND recursion_node_level_vk_hash = $3\n AND recursion_scheduler_level_vk_hash = $4\n " @@ -9908,13 +8492,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT bytecode FROM factory_deps WHERE bytecode_hash = $1" @@ -9924,9 +8504,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "UPDATE l1_batches SET skip_proof = TRUE WHERE number = $1" @@ -9940,9 +8518,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -9968,16 +8544,9 @@ "type_info": "Int2" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Interval", - "Int2" - ] + "Left": ["Interval", "Int2"] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -10024,13 +8593,9 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT l1_batch_number FROM witness_inputs WHERE length(merkle_tree_paths) <> 0 ORDER BY l1_batch_number DESC LIMIT $1" @@ -10040,10 +8605,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Varchar", - "Bytea" - ] + "Left": ["Varchar", "Bytea"] } }, "query": "UPDATE transactions\n SET error = $1, updated_at = now()\n WHERE hash = $2" @@ -10057,9 +8619,7 @@ "type_info": "Int4" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -10080,15 +8640,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - true - ], + "nullable": [false, true], "parameters": { - "Left": [ - "Int8", - "Int4" - ] + "Left": ["Int8", "Int4"] } }, "query": "\n SELECT circuit_type, result from prover_jobs\n WHERE l1_batch_number = $1 AND status = 'successful' AND aggregation_round = $2\n ORDER BY sequence_number ASC;\n " @@ -10098,12 +8652,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Text", - "Int4", - "Text" - ] + "Left": ["Text", "Text", "Int4", "Text"] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = $1, updated_at = now() WHERE instance_host = $2::text::inet AND instance_port = $3 AND zone = $4\n " @@ -10117,13 +8666,9 @@ "type_info": "Int4" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT protocol_version FROM witness_inputs_fri WHERE l1_batch_number = $1" @@ -10133,13 +8678,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray", - "ByteaArray", - "ByteaArray", - "ByteaArray", - "ByteaArray" - ] + "Left": ["ByteaArray", "ByteaArray", "ByteaArray", "ByteaArray", "ByteaArray"] } }, "query": "INSERT INTO storage (hashed_key, address, key, value, tx_hash, created_at, updated_at) SELECT u.hashed_key, u.address, u.key, u.value, u.tx_hash, now(), now() FROM UNNEST ($1::bytea[], $2::bytea[], $3::bytea[], $4::bytea[], $5::bytea[]) AS u(hashed_key, address, key, value, tx_hash) ON CONFLICT (hashed_key) DO UPDATE SET tx_hash = excluded.tx_hash, value = excluded.value, updated_at = now()" @@ -10208,27 +8747,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - true, - false, - false, - false, - false, - true, - true, - false, - true, - false, - true - ], + "nullable": [false, true, false, false, false, false, true, true, false, true, false, true], "parameters": { - "Left": [ - "Interval", - "Int4", - "Int8", - "Int4Array" - ] + "Left": ["Interval", "Int4", "Int8", "Int4Array"] } }, "query": "\n UPDATE witness_inputs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM witness_inputs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING witness_inputs.*\n " @@ -10247,15 +8768,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "SELECT timestamp, virtual_blocks FROM miniblocks WHERE number BETWEEN $1 AND $2 ORDER BY number" @@ -10274,14 +8789,9 @@ "type_info": "Int4" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Text" - ] + "Left": ["Text"] } }, "query": "UPDATE eth_txs_history\n SET updated_at = now(), confirmed_at = now()\n WHERE tx_hash = $1\n RETURNING id, eth_tx_id" @@ -10300,16 +8810,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false - ], + "nullable": [false, false], "parameters": { - "Left": [ - "Int8", - "Int4", - "Int8" - ] + "Left": ["Int8", "Int4", "Int8"] } }, "query": "SELECT number, hash FROM miniblocks WHERE number >= $1 and protocol_version = $2 ORDER BY number LIMIT $3" @@ -10319,10 +8822,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "UPDATE proof_generation_details SET status='generated', proof_blob_url = $1, updated_at = now() WHERE l1_batch_number = $2" @@ -10446,9 +8946,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "ByteaArray" - ] + "Left": ["ByteaArray"] } }, "query": "DELETE FROM transactions WHERE in_mempool = TRUE AND initiator_address = ANY($1)" @@ -10468,11 +8966,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Text", - "Int4" - ] + "Left": ["Int8", "Text", "Int4"] } }, "query": "\n INSERT INTO scheduler_witness_jobs_fri\n (l1_batch_number, scheduler_partial_input_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number)\n DO UPDATE SET updated_at=now()\n " @@ -10700,9 +9194,7 @@ true ], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "\n SELECT * FROM transactions\n WHERE hash = $1\n " @@ -10712,10 +9204,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8", - "Int8" - ] + "Left": ["Int8", "Int8"] } }, "query": "UPDATE l1_batches SET predicted_commit_gas_cost = $2, updated_at = now() WHERE number = $1" @@ -10725,12 +9214,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int4", - "Int2", - "Text" - ] + "Left": ["Text", "Int4", "Int2", "Text"] } }, "query": "INSERT INTO gpu_prover_queue_fri (instance_host, instance_port, instance_status, specialized_prover_group_id, zone, created_at, updated_at) VALUES (cast($1::text as inet), $2, 'available', $3, $4, now(), now()) ON CONFLICT(instance_host, instance_port, zone) DO UPDATE SET instance_status='available', specialized_prover_group_id=$3, zone=$4, updated_at=now()" @@ -10744,9 +9228,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -10758,9 +9240,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8Array" - ] + "Left": ["Int8Array"] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -10800,13 +9280,9 @@ "type_info": "Jsonb" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT initial_bootloader_heap_content FROM l1_batches WHERE number = $1" @@ -10820,9 +9296,7 @@ "type_info": "Bool" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [ "Bytea", @@ -11072,9 +9546,7 @@ true ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT * FROM transactions WHERE miniblock_number = $1 ORDER BY index_in_block" @@ -11088,13 +9560,9 @@ "type_info": "Bytea" } ], - "nullable": [ - true - ], + "nullable": [true], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT hash FROM l1_batches WHERE number = $1" @@ -11108,9 +9576,7 @@ "type_info": "Int8" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { "Left": [] } @@ -11122,13 +9588,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int4", - "Int4", - "Text", - "Text" - ] + "Left": ["Text", "Int4", "Int4", "Text", "Text"] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = 'available', updated_at = now(), queue_free_slots = $3\n WHERE instance_host = $1::text::inet\n AND instance_port = $2\n AND instance_status = 'full'\n AND region = $4\n AND zone = $5\n " @@ -11152,15 +9612,9 @@ "type_info": "Bytea" } ], - "nullable": [ - false, - false, - false - ], + "nullable": [false, false, false], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "SELECT address, key, value FROM storage_logs WHERE miniblock_number BETWEEN (SELECT MIN(number) FROM miniblocks WHERE l1_batch_number = $1) AND (SELECT MAX(number) FROM miniblocks WHERE l1_batch_number = $1) ORDER BY miniblock_number, operation_number" @@ -11170,10 +9624,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "\n UPDATE witness_inputs_fri SET status ='failed', error= $1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -11187,13 +9638,9 @@ "type_info": "Jsonb" } ], - "nullable": [ - false - ], + "nullable": [false], "parameters": { - "Left": [ - "Bytea" - ] + "Left": ["Bytea"] } }, "query": "SELECT trace FROM transaction_traces WHERE tx_hash = $1" @@ -11262,20 +9709,7 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - false, - false, - false, - true, - true, - true, - false - ], + "nullable": [false, false, false, false, false, false, false, false, true, true, true, false], "parameters": { "Left": [] } @@ -11391,9 +9825,7 @@ false ], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n SELECT * FROM scheduler_dependency_tracker_fri\n WHERE l1_batch_number = $1\n " @@ -11407,9 +9839,7 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { "Left": [] } @@ -11480,24 +9910,9 @@ "type_info": "Int8" } ], - "nullable": [ - false, - false, - false, - false, - false, - true, - false, - false, - false, - true, - true, - false - ], + "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT * FROM eth_txs WHERE id = $1" @@ -11507,9 +9922,7 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Int8" - ] + "Left": ["Int8"] } }, "query": "\n UPDATE contract_verification_requests\n SET status = 'successful', updated_at = now()\n WHERE id = $1\n " @@ -11523,13 +9936,9 @@ "type_info": "Int8" } ], - "nullable": [ - null - ], + "nullable": [null], "parameters": { - "Left": [ - "Int4" - ] + "Left": ["Int4"] } }, "query": "SELECT COUNT(*) as \"count!\" FROM prover_protocol_versions WHERE id = $1" @@ -11539,12 +9948,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": [ - "Text", - "Int8" - ] + "Left": ["Text", "Int8"] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, updated_at = now() WHERE l1_batch_number = $2" } -} \ No newline at end of file +} diff --git a/core/tests/revert-test/tsconfig.json b/core/tests/revert-test/tsconfig.json index 6c8907a86016..9b3bd705b368 100644 --- a/core/tests/revert-test/tsconfig.json +++ b/core/tests/revert-test/tsconfig.json @@ -1,9 +1,9 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true - } + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + } } diff --git a/core/tests/ts-integration/jest.config.json b/core/tests/ts-integration/jest.config.json index 109e7a1e008a..77dd5158c55e 100644 --- a/core/tests/ts-integration/jest.config.json +++ b/core/tests/ts-integration/jest.config.json @@ -1,20 +1,15 @@ { - "reporters": [ - "default", - "github-actions" - ], - "transform": { - "^.+\\.ts?$": "ts-jest" - }, - "//": "!!! Do not increase the test timeout blindly!!!", - "//": "Timeout is set to match ~4 L1 operations with 10 blocks confirmation", - "//": "If you need bigger timeout, consider either disabling the test outside of fast mode or increasing timeout on a single test", - "//": "If this value would be too big, it may cause tests on stage to get stuck for too long", - "testTimeout": 605000, - "globalSetup": "/src/jest-setup/global-setup.ts", - "globalTeardown": "/src/jest-setup/global-teardown.ts", - "setupFilesAfterEnv": [ - "/src/jest-setup/add-matchers.ts" - ], - "slowTestThreshold": 120 + "reporters": ["default", "github-actions"], + "transform": { + "^.+\\.ts?$": "ts-jest" + }, + "//": "!!! Do not increase the test timeout blindly!!!", + "//": "Timeout is set to match ~4 L1 operations with 10 blocks confirmation", + "//": "If you need bigger timeout, consider either disabling the test outside of fast mode or increasing timeout on a single test", + "//": "If this value would be too big, it may cause tests on stage to get stuck for too long", + "testTimeout": 605000, + "globalSetup": "/src/jest-setup/global-setup.ts", + "globalTeardown": "/src/jest-setup/global-teardown.ts", + "setupFilesAfterEnv": ["/src/jest-setup/add-matchers.ts"], + "slowTestThreshold": 120 } diff --git a/core/tests/ts-integration/package.json b/core/tests/ts-integration/package.json index b039cb4978b0..882b1c77a763 100644 --- a/core/tests/ts-integration/package.json +++ b/core/tests/ts-integration/package.json @@ -1,33 +1,33 @@ { - "name": "ts-integration", - "version": "0.1.0", - "license": "MIT", - "private": true, - "scripts": { - "test": "zk f jest --forceExit --testTimeout 60000", - "long-running-test": "zk f jest", - "fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", - "api-test": "zk f jest -- api/web3.test.ts", - "contract-verification-test": "zk f jest -- api/contract-verification.test.ts" - }, - "devDependencies": { - "@matterlabs/hardhat-zksync-deploy": "^0.6.1", - "@matterlabs/hardhat-zksync-solc": "^0.3.15", - "@matterlabs/hardhat-zksync-vyper": "^0.2.0", - "@nomiclabs/hardhat-vyper": "^3.0.3", - "@types/jest": "^29.0.3", - "@types/node": "^14.14.5", - "@types/node-fetch": "^2.5.7", - "chalk": "^4.0.0", - "ethereumjs-abi": "^0.6.8", - "ethers": "~5.7.0", - "hardhat": "^2.12.4", - "jest": "^29.0.3", - "jest-matcher-utils": "^29.0.3", - "node-fetch": "^2.6.1", - "ts-jest": "^29.0.1", - "ts-node": "^10.1.0", - "typescript": "^4.3.5", - "zksync-web3": "link:../../../sdk/zksync-web3.js" - } + "name": "ts-integration", + "version": "0.1.0", + "license": "MIT", + "private": true, + "scripts": { + "test": "zk f jest --forceExit --testTimeout 60000", + "long-running-test": "zk f jest", + "fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", + "api-test": "zk f jest -- api/web3.test.ts", + "contract-verification-test": "zk f jest -- api/contract-verification.test.ts" + }, + "devDependencies": { + "@matterlabs/hardhat-zksync-deploy": "^0.6.1", + "@matterlabs/hardhat-zksync-solc": "^0.3.15", + "@matterlabs/hardhat-zksync-vyper": "^0.2.0", + "@nomiclabs/hardhat-vyper": "^3.0.3", + "@types/jest": "^29.0.3", + "@types/node": "^14.14.5", + "@types/node-fetch": "^2.5.7", + "chalk": "^4.0.0", + "ethereumjs-abi": "^0.6.8", + "ethers": "~5.7.0", + "hardhat": "^2.12.4", + "jest": "^29.0.3", + "jest-matcher-utils": "^29.0.3", + "node-fetch": "^2.6.1", + "ts-jest": "^29.0.1", + "ts-node": "^10.1.0", + "typescript": "^4.3.5", + "zksync-web3": "link:../../../sdk/zksync-web3.js" + } } diff --git a/core/tests/ts-integration/tsconfig.json b/core/tests/ts-integration/tsconfig.json index baf2b2d0a791..d3093921ca2e 100644 --- a/core/tests/ts-integration/tsconfig.json +++ b/core/tests/ts-integration/tsconfig.json @@ -1,16 +1,12 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "esModuleInterop": true, - "strict": true, - "skipLibCheck": true, - "noEmitOnError": true - }, - "include": [ - "**/*.ts" - ], - "exclude": [ - "node_modules" - ] + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "esModuleInterop": true, + "strict": true, + "skipLibCheck": true, + "noEmitOnError": true + }, + "include": ["**/*.ts"], + "exclude": ["node_modules"] } diff --git a/core/tests/upgrade-test/tsconfig.json b/core/tests/upgrade-test/tsconfig.json index 6c8907a86016..9b3bd705b368 100644 --- a/core/tests/upgrade-test/tsconfig.json +++ b/core/tests/upgrade-test/tsconfig.json @@ -1,9 +1,9 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true - } + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + } } diff --git a/etc/commitment_tests/zksync_testharness_test.json b/etc/commitment_tests/zksync_testharness_test.json index 3240c3b4d9e7..55506cec5440 100644 --- a/etc/commitment_tests/zksync_testharness_test.json +++ b/etc/commitment_tests/zksync_testharness_test.json @@ -17,7 +17,6 @@ "key": "0xcb99d29a1b4ffeaefdbf74b8b8b07c78e5e02b3100946f8d0463b79789086aff", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" } - ], "initial_writes": [ { diff --git a/etc/test_config/constant/api.json b/etc/test_config/constant/api.json index 050daba0e66e..a8d75555dbef 100644 --- a/etc/test_config/constant/api.json +++ b/etc/test_config/constant/api.json @@ -1,3 +1,3 @@ { - "rest_api_url": "http://127.0.0.1:3001" + "rest_api_url": "http://127.0.0.1:3001" } diff --git a/etc/test_config/constant/eth.json b/etc/test_config/constant/eth.json index 624e605e3c20..9a5571a641fb 100644 --- a/etc/test_config/constant/eth.json +++ b/etc/test_config/constant/eth.json @@ -1,5 +1,5 @@ { - "web3_url": "http://127.0.0.1:8545", - "test_mnemonic": "stuff slice staff easily soup parent arm payment cotton trade scatter struggle", - "mnemonic": "fine music test violin matrix prize squirrel panther purchase material script deal" + "web3_url": "http://127.0.0.1:8545", + "test_mnemonic": "stuff slice staff easily soup parent arm payment cotton trade scatter struggle", + "mnemonic": "fine music test violin matrix prize squirrel panther purchase material script deal" } diff --git a/etc/upgrades/1692195639-upgrade-system/common.json b/etc/upgrades/1692195639-upgrade-system/common.json index 4aa0c5bacd07..bd12423d49a8 100644 --- a/etc/upgrades/1692195639-upgrade-system/common.json +++ b/etc/upgrades/1692195639-upgrade-system/common.json @@ -2,4 +2,4 @@ "name": "upgrade-system", "creationTimestamp": 1692195639, "protocolVersion": "12" -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json index bfad4bfe0b9c..5d5ef1b8c37e 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json @@ -1,25 +1,13 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -153,38 +141,20 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x16615a85B451edfb6FCBea0b34405D9C7ca1a22A", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json index f8247ebc3536..41924c560248 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0x5040611a8ba1811851e998aa8d7bbe4aa3027db9ccc526a84a1237bc2f9fa698" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json index da024be79e33..2a772be75647 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" - ], + "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" - ], + "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" - ], + "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" - ], + "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" - ], + "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" - ], + "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" - ], + "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" - ], + "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" - ], + "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" - ], + "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" - ], + "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" - ], + "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" - ] + "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" - ] + "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] }, "forcedDeployments": [ { @@ -196,16 +168,11 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json index badf4772a3c8..40a0041f3321 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -54,25 +49,13 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -206,37 +189,19 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x16615a85B451edfb6FCBea0b34405D9C7ca1a22A", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -245,4 +210,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ec7e30000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d00000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000016615a85b451edfb6fcbea0b34405d9c7ca1a22a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ec7e30000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json index 3a1f9b3c57b0..0c411cd2fbab 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json @@ -1,25 +1,13 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -153,38 +141,20 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/facets.json b/etc/upgrades/1692195639-upgrade-system/stage2/facets.json index 9fcdac88c7e5..7977f86a5d13 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0xe0f50dd600de1240d6b753cf5a88e97679f754e3e6d0e93ba66877da0ca70d0e" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json index 63fbb387322e..2ad5949f93d5 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" - ], + "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" - ], + "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" - ], + "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" - ], + "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" - ], + "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" - ], + "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" - ], + "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" - ], + "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" - ], + "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" - ], + "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" - ], + "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" - ], + "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" - ] + "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" - ] + "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] }, "tx": { "txType": 254, @@ -108,12 +80,7 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -208,4 +175,4 @@ ], "forcedDeploymentCalldata": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "calldata": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json b/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json index 9cc3c1eb7fd1..76fd2da95395 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -54,25 +49,13 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -206,37 +189,19 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -245,4 +210,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ddf6a8000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c700000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c700000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000b54f822966fd4940b6fb465ac67075e5119094c300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ddf6a8000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json index f48328679fee..c3660b47705e 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json @@ -1,25 +1,13 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -153,38 +141,20 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json b/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json index 56fbbc601317..2e52ec41fd4a 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0x2a584f3e8229a38e5f976fadf563411728c4dbc3ff6259c067dfc7ffccb0dd80" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json index da024be79e33..2a772be75647 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" - ], + "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" - ], + "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" - ], + "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" - ], + "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" - ], + "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" - ], + "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" - ], + "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" - ], + "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" - ], + "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" - ], + "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" - ], + "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" - ], + "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" - ] + "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" - ] + "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] }, "forcedDeployments": [ { @@ -196,16 +168,11 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json b/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json index 82f3a1d9d750..18c909b7045e 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -54,25 +49,13 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, @@ -206,37 +189,19 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -245,4 +210,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064e35670000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db800000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000b54f822966fd4940b6fb465ac67075e5119094c300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064e35670000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/common.json b/etc/upgrades/1693318788-virtual-block-timestamp/common.json index c2da970debeb..1da04cec70b8 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/common.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/common.json @@ -2,4 +2,4 @@ "name": "virtual-block-timestamp", "creationTimestamp": 1693318788, "protocolVersion": "13" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json index 4dca4e604b2d..02f3a8bf31ed 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json @@ -58,37 +58,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -151,38 +133,20 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json index 8825c24c5821..bd5107c9f0d4 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json @@ -19,4 +19,4 @@ "address": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", "txHash": "0x670ec0ed30ecb0950c54321bc06ad9d98cd063eef282d17253446f248978691f" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json index 33bc8587bbbe..188adf7ddc31 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" - ], + "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" - ], + "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" - ], + "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" - ], + "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" - ], + "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" - ], + "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" - ], + "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" - ], + "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd" - ], + "bytecodeHashes": ["0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" - ], + "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" - ], + "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" - ], + "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" - ] + "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d" - ] + "bytecodeHashes": ["0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d"] }, "forcedDeployments": [ { @@ -196,16 +168,11 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json index 0e954c5c1d93..b1d32391be90 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -111,37 +106,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -204,37 +181,19 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -243,4 +202,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ef2a90000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000ae41f9fc8a83fbc6062ba956224ab86fa6d150700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000069b8cda4c8e66a0b51fc82834458e087039db2ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ef2a90000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json index 4dca4e604b2d..02f3a8bf31ed 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json @@ -58,37 +58,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -151,38 +133,20 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json index 122b3dfd6e4d..7fd669b93fa2 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", "txHash": "0xf987dc0ee0b50a8003f153c2cff78db56202fac9c1cd6f374760c63f80f17f53" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json index 33bc8587bbbe..188adf7ddc31 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" - ], + "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" - ], + "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" - ], + "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" - ], + "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" - ], + "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" - ], + "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" - ], + "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" - ], + "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd" - ], + "bytecodeHashes": ["0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" - ], + "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" - ], + "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" - ], + "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" - ] + "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d" - ] + "bytecodeHashes": ["0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d"] }, "forcedDeployments": [ { @@ -196,16 +168,11 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json index 203c9e4c0b5a..0bc589c5d31e 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -111,37 +106,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -204,37 +181,19 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -243,4 +202,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f080c0000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000ae41f9fc8a83fbc6062ba956224ab86fa6d150700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000069b8cda4c8e66a0b51fc82834458e087039db2ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f080c0000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json index 02205de8d971..4ad940e774ee 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json @@ -2,4 +2,4 @@ "name": "virtual-block-timestamp-fixed", "creationTimestamp": 1693905748, "protocolVersion": "14" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json index 0356a0cee4b2..50697fc105f9 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json @@ -58,37 +58,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -151,38 +133,20 @@ }, { "facet": "0x62aA95ac4740A367746A664C4C69034d52E968EF", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x7Ed066718Dfb1b2B04D94780Eca92b67ECF3330b", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } -] \ No newline at end of file +] diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json index c46371fe2763..290151be8a84 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x62aA95ac4740A367746A664C4C69034d52E968EF", "txHash": "0x0000000000000000000000000000000000000000000000000000000000000000" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json index 70ac985e4821..9bd7e529db9d 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json @@ -2,100 +2,72 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": [ - "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" - ], + "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": [ - "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" - ], + "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": [ - "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" - ], + "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": [ - "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" - ], + "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": [ - "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" - ], + "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": [ - "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" - ], + "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": [ - "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" - ], + "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": [ - "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" - ], + "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": [ - "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" - ], + "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": [ - "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" - ], + "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": [ - "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" - ], + "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": [ - "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" - ], + "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": [ - "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" - ] + "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" - ] + "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] }, "forcedDeployments": [ { @@ -196,16 +168,11 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json index 3025aac18481..c6508b1c8285 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -111,37 +106,19 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 2, "isFreezable": false }, @@ -204,37 +181,19 @@ }, { "facet": "0x62aA95ac4740A367746A664C4C69034d52E968EF", - "selectors": [ - "0x6c0960f9", - "0xb473318e", - "0x042901c7", - "0x263b7f8e", - "0xe4948f43", - "0xeb672419" - ], + "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], "action": 0, "isFreezable": true }, { "facet": "0x7Ed066718Dfb1b2B04D94780Eca92b67ECF3330b", - "selectors": [ - "0x0c4dd810", - "0xce9dcf16", - "0x7739cbe7", - "0xa9a2d18a" - ], + "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": [ - "0xe58bb639", - "0xf235757f", - "0x1cc5d103", - "0xbe6f11cf", - "0x4623c91d" - ], + "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], "action": 0, "isFreezable": true } @@ -243,4 +202,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a80100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f9a628000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d0000000000000000000000000000000000000000000000000000000000000000000000000000000062aa95ac4740a367746a664c4c69034d52e968ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000007ed066718dfb1b2b04d94780eca92b67ecf3330b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a80100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f9a628000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json index 4f1536a85525..fdb4abf8d916 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json @@ -2,17 +2,13 @@ "systemContracts": [ { "name": "SystemContext", - "bytecodeHashes": [ - "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" - ], + "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], "address": "0x000000000000000000000000000000000000800b" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" - ] + "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] }, "forcedDeployments": [ { @@ -36,16 +32,11 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json index 97c542dc85e3..f44cdeb1922a 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f6e4b0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006641ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f6e4b0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json index 4f1536a85525..fdb4abf8d916 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json @@ -2,17 +2,13 @@ "systemContracts": [ { "name": "SystemContext", - "bytecodeHashes": [ - "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" - ], + "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], "address": "0x000000000000000000000000000000000000800b" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": [ - "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" - ] + "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] }, "forcedDeployments": [ { @@ -36,16 +32,11 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json index 447be459dc48..b8148735aabf 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f70a30000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006641ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f70a30000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json index 06930d72b323..9f1965ef427a 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json @@ -2,4 +2,4 @@ "name": "missing-constraint-in-circuit", "creationTimestamp": 1695203585, "protocolVersion": "15" -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json index c53a681f1863..65d3931fabff 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json index e80cd6f34cf7..1edd1c958793 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650d73b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650d73b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json index c53a681f1863..65d3931fabff 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json index 71d506231b73..99813371577f 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650ad0b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650ad0b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json index c53a681f1863..65d3931fabff 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} \ No newline at end of file +} diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json index 50b4705cdee0..1609a80410c4 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065116f38000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065116f38000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json index 78314cf95f40..dc132d9bdc5f 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000006530f01000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000006530f01000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json index 4f982017d535..110e4f3e5935 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065251ac400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065251ac400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json index f0ee74060596..5b88b1937ee0 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json @@ -11,12 +11,7 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [ - 0, - 0, - 0, - 0 - ], + "reserved": [0, 0, 0, 0], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -56,4 +51,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000652d2cc800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000652d2cc800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} \ No newline at end of file +} diff --git a/infrastructure/local-setup-preparation/tsconfig.json b/infrastructure/local-setup-preparation/tsconfig.json index 25645d23a739..f0466cc62ba1 100644 --- a/infrastructure/local-setup-preparation/tsconfig.json +++ b/infrastructure/local-setup-preparation/tsconfig.json @@ -10,7 +10,5 @@ "preserveSymlinks": true, "preserveWatchOutput": true }, - "files": [ - "src/index.ts" - ] + "files": ["src/index.ts"] } diff --git a/infrastructure/protocol-upgrade/tsconfig.json b/infrastructure/protocol-upgrade/tsconfig.json index 613eda0f6e14..fe1ce1b5a6ea 100644 --- a/infrastructure/protocol-upgrade/tsconfig.json +++ b/infrastructure/protocol-upgrade/tsconfig.json @@ -9,5 +9,5 @@ "preserveSymlinks": true, "preserveWatchOutput": true - }, + } } diff --git a/infrastructure/zk/package.json b/infrastructure/zk/package.json index e5111dbfc405..4f094e8bfeb0 100644 --- a/infrastructure/zk/package.json +++ b/infrastructure/zk/package.json @@ -1,33 +1,33 @@ { - "name": "zk", - "version": "0.1.0", - "main": "build/index.js", - "license": "MIT", - "bin": "build/index.js", - "scripts": { - "build": "tsc", - "watch": "tsc --watch", - "start": "node build/index.js" - }, - "dependencies": { - "@iarna/toml": "^2.2.5", - "chalk": "^4.0.0", - "commander": "^6.0.0", - "deep-extend": "^0.6.0", - "dotenv": "^8.2.0", - "ethers": "~5.5.0", - "handlebars": "^4.7.8", - "node-fetch": "^2.6.1", - "tabtab": "^3.0.2", - "zksync-web3": "link:../../sdk/zksync-web3.js" - }, - "devDependencies": { - "@matterlabs/hardhat-zksync-solc": "^0.3.15", - "@types/deep-extend": "^0.4.31", - "@types/node": "^14.6.1", - "@types/node-fetch": "^2.5.7", - "@types/tabtab": "^3.0.1", - "hardhat": "=2.12.4", - "typescript": "^4.3.5" - } + "name": "zk", + "version": "0.1.0", + "main": "build/index.js", + "license": "MIT", + "bin": "build/index.js", + "scripts": { + "build": "tsc", + "watch": "tsc --watch", + "start": "node build/index.js" + }, + "dependencies": { + "@iarna/toml": "^2.2.5", + "chalk": "^4.0.0", + "commander": "^6.0.0", + "deep-extend": "^0.6.0", + "dotenv": "^8.2.0", + "ethers": "~5.5.0", + "handlebars": "^4.7.8", + "node-fetch": "^2.6.1", + "tabtab": "^3.0.2", + "zksync-web3": "link:../../sdk/zksync-web3.js" + }, + "devDependencies": { + "@matterlabs/hardhat-zksync-solc": "^0.3.15", + "@types/deep-extend": "^0.4.31", + "@types/node": "^14.6.1", + "@types/node-fetch": "^2.5.7", + "@types/tabtab": "^3.0.1", + "hardhat": "=2.12.4", + "typescript": "^4.3.5" + } } diff --git a/infrastructure/zk/tsconfig.json b/infrastructure/zk/tsconfig.json index f96df8d60edb..75662cbd56a3 100644 --- a/infrastructure/zk/tsconfig.json +++ b/infrastructure/zk/tsconfig.json @@ -1,15 +1,13 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "outDir": "build", - "strict": true, - "esModuleInterop": true, - "noEmitOnError": true, - "skipLibCheck": true, - "declaration": true - }, - "files": [ - "src/index.ts" - ] + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "outDir": "build", + "strict": true, + "esModuleInterop": true, + "noEmitOnError": true, + "skipLibCheck": true, + "declaration": true + }, + "files": ["src/index.ts"] } diff --git a/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json b/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json index d792b2731536..b295acad2810 100644 --- a/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json @@ -5,395 +5,140 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [ - 3134321788309977316, - 10573132553967014755, - 3001703164893106466, - 381414913732862840 - ], - "y": [ - 10023015411950883744, - 6896159948336889230, - 6414240783194755732, - 872372229201319096 - ], + "x": [3134321788309977316, 10573132553967014755, 3001703164893106466, 381414913732862840], + "y": [10023015411950883744, 6896159948336889230, 6414240783194755732, 872372229201319096], "infinity": false }, { - "x": [ - 13120971644342103937, - 11793287663204294817, - 3883340854702399708, - 1610760885102732376 - ], - "y": [ - 2272149790438908451, - 16362277919451948034, - 11222024348659324185, - 769204936692720831 - ], + "x": [13120971644342103937, 11793287663204294817, 3883340854702399708, 1610760885102732376], + "y": [2272149790438908451, 16362277919451948034, 11222024348659324185, 769204936692720831], "infinity": false }, { - "x": [ - 17731804648385463364, - 6957978511947926439, - 554530057858945391, - 1554116369209063151 - ], - "y": [ - 11068663668443960791, - 4165938511251890045, - 9157185920319394352, - 1356194940161196789 - ], + "x": [17731804648385463364, 6957978511947926439, 554530057858945391, 1554116369209063151], + "y": [11068663668443960791, 4165938511251890045, 9157185920319394352, 1356194940161196789], "infinity": false }, { - "x": [ - 8019563329680255469, - 10443600923825661309, - 10066002756835006084, - 2404912031772130651 - ], - "y": [ - 11909280006603456147, - 5818438825251413345, - 15870199885834935123, - 2757108579883054631 - ], + "x": [8019563329680255469, 10443600923825661309, 10066002756835006084, 2404912031772130651], + "y": [11909280006603456147, 5818438825251413345, 15870199885834935123, 2757108579883054631], "infinity": false }, { - "x": [ - 9723414060399071945, - 10180812700717519482, - 7936340440930941206, - 516257686460616129 - ], - "y": [ - 567977185774136652, - 4306281713268395827, - 18140207600873092049, - 3061955278209883828 - ], + "x": [9723414060399071945, 10180812700717519482, 7936340440930941206, 516257686460616129], + "y": [567977185774136652, 4306281713268395827, 18140207600873092049, 3061955278209883828], "infinity": false }, { - "x": [ - 18120818717781619238, - 16711368075993785449, - 16673817803744408050, - 700058928459046347 - ], - "y": [ - 7622480271915550714, - 13902980411406060504, - 6164172017934139902, - 1836938876363296665 - ], + "x": [18120818717781619238, 16711368075993785449, 16673817803744408050, 700058928459046347], + "y": [7622480271915550714, 13902980411406060504, 6164172017934139902, 1836938876363296665], "infinity": false }, { - "x": [ - 15818628187542915298, - 15402701417353228903, - 4645743436884029384, - 2409582523262225752 - ], - "y": [ - 10225110015471016873, - 3480449575574012457, - 13646267911522236018, - 3070086728021966273 - ], + "x": [15818628187542915298, 15402701417353228903, 4645743436884029384, 2409582523262225752], + "y": [10225110015471016873, 3480449575574012457, 13646267911522236018, 3070086728021966273], "infinity": false }, { - "x": [ - 15593293662666768812, - 17768691370516984644, - 17174288836059912543, - 2950415245130983093 - ], - "y": [ - 10405941745355450827, - 3865610534756768698, - 563805946543955734, - 1806918679491891699 - ], + "x": [15593293662666768812, 17768691370516984644, 17174288836059912543, 2950415245130983093], + "y": [10405941745355450827, 3865610534756768698, 563805946543955734, 1806918679491891699], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [ - 5354921692103962663, - 10597914855112022168, - 8283977291194706970, - 1254033438787241395 - ], - "y": [ - 17990692095059328463, - 7491895001046969405, - 17510882385599010078, - 1762527058736778745 - ], + "x": [5354921692103962663, 10597914855112022168, 8283977291194706970, 1254033438787241395], + "y": [17990692095059328463, 7491895001046969405, 17510882385599010078, 1762527058736778745], "infinity": false }, { - "x": [ - 12328426125821267783, - 14677689403443047323, - 2357692814373165823, - 3268494923353713205 - ], - "y": [ - 9394214569640955242, - 450630302635608118, - 1477019964334489453, - 1150908451828220680 - ], + "x": [12328426125821267783, 14677689403443047323, 2357692814373165823, 3268494923353713205], + "y": [9394214569640955242, 450630302635608118, 1477019964334489453, 1150908451828220680], "infinity": false } ], "permutation_commitments": [ { - "x": [ - 11073033365046587506, - 17543366073703943346, - 2925375977998636107, - 411355966917613086 - ], - "y": [ - 4634938960149933815, - 10038620738808728516, - 5260176309304737799, - 14410327903164543 - ], + "x": [11073033365046587506, 17543366073703943346, 2925375977998636107, 411355966917613086], + "y": [4634938960149933815, 10038620738808728516, 5260176309304737799, 14410327903164543], "infinity": false }, { - "x": [ - 4505573069708166334, - 3514663015240928368, - 13885581324134225254, - 2759554901468343883 - ], - "y": [ - 14766134794032708062, - 3419963379718679828, - 14090109324006346322, - 2080971354192483161 - ], + "x": [4505573069708166334, 3514663015240928368, 13885581324134225254, 2759554901468343883], + "y": [14766134794032708062, 3419963379718679828, 14090109324006346322, 2080971354192483161], "infinity": false }, { - "x": [ - 10034756028637387237, - 13956897381252459181, - 17676764419229650887, - 1786540180828440303 - ], - "y": [ - 16234833038341145650, - 1114974762353197748, - 16711158590984748387, - 961724704749485864 - ], + "x": [10034756028637387237, 13956897381252459181, 17676764419229650887, 1786540180828440303], + "y": [16234833038341145650, 1114974762353197748, 16711158590984748387, 961724704749485864], "infinity": false }, { - "x": [ - 13207237492056542947, - 9498840683026707597, - 13316073393799666368, - 2265958217127439582 - ], - "y": [ - 9080715171198565366, - 9520983963961194766, - 7885036753736171049, - 3318336507646038340 - ], + "x": [13207237492056542947, 9498840683026707597, 13316073393799666368, 2265958217127439582], + "y": [9080715171198565366, 9520983963961194766, 7885036753736171049, 3318336507646038340], "infinity": false } ], "total_lookup_entries_length": 1786644, "lookup_selector_commitment": { - "x": [ - 9218954341000481996, - 1038591043397823945, - 2355917848722531772, - 1603833229224637991 - ], - "y": [ - 9294257929334679357, - 9665091690516467420, - 7057032139323633744, - 2846067557162208306 - ], + "x": [9218954341000481996, 1038591043397823945, 2355917848722531772, 1603833229224637991], + "y": [9294257929334679357, 9665091690516467420, 7057032139323633744, 2846067557162208306], "infinity": false }, "lookup_tables_commitments": [ { - "x": [ - 10873859091125335643, - 3906092213625635374, - 17046157606087980048, - 3193402705223440293 - ], - "y": [ - 10158946293873382504, - 2171386304067884865, - 6918663094168980658, - 350601565475975409 - ], + "x": [10873859091125335643, 3906092213625635374, 17046157606087980048, 3193402705223440293], + "y": [10158946293873382504, 2171386304067884865, 6918663094168980658, 350601565475975409], "infinity": false }, { - "x": [ - 12822112641313049260, - 3646552465186399021, - 10324071010773924047, - 2209084192380614662 - ], - "y": [ - 11045141628975531869, - 12589678537679955590, - 3065046617868727674, - 2099447669854151830 - ], + "x": [12822112641313049260, 3646552465186399021, 10324071010773924047, 2209084192380614662], + "y": [11045141628975531869, 12589678537679955590, 3065046617868727674, 2099447669854151830], "infinity": false }, { - "x": [ - 11395032673621937545, - 3000063650268118516, - 7857619430005721792, - 805706808484810738 - ], - "y": [ - 6817063666434679427, - 1646386051225388537, - 4677946977082722827, - 1369650305976868514 - ], + "x": [11395032673621937545, 3000063650268118516, 7857619430005721792, 805706808484810738], + "y": [6817063666434679427, 1646386051225388537, 4677946977082722827, 1369650305976868514], "infinity": false }, { - "x": [ - 2885179371868476351, - 159944842081142878, - 6092294387055034894, - 213843603626505240 - ], - "y": [ - 11868113133779277990, - 8509646480531194854, - 14088068011597639414, - 707070630614027545 - ], + "x": [2885179371868476351, 159944842081142878, 6092294387055034894, 213843603626505240], + "y": [11868113133779277990, 8509646480531194854, 14088068011597639414, 707070630614027545], "infinity": false } ], "lookup_table_type_commitment": { - "x": [ - 2681380516794566972, - 967983640969946255, - 2727464508424142824, - 1972327038478390223 - ], - "y": [ - 7977458078956869600, - 12274734452276806231, - 29244742286950686, - 667948288229117220 - ], + "x": [2681380516794566972, 967983640969946255, 2727464508424142824, 1972327038478390223], + "y": [7977458078956869600, 12274734452276806231, 29244742286950686, 667948288229117220], "infinity": false }, "non_residues": [ - [ - 5, - 0, - 0, - 0 - ], - [ - 7, - 0, - 0, - 0 - ], - [ - 10, - 0, - 0, - 0 - ] + [5, 0, 0, 0], + [7, 0, 0, 0], + [10, 0, 0, 0] ], "g2_elements": [ { "x": { - "c0": [ - 5106727233969649389, - 7440829307424791261, - 4785637993704342649, - 1729627375292849782 - ], - "c1": [ - 10945020018377822914, - 17413811393473931026, - 8241798111626485029, - 1841571559660931130 - ] + "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], + "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] }, "y": { - "c0": [ - 5541340697920699818, - 16416156555105522555, - 5380518976772849807, - 1353435754470862315 - ], - "c1": [ - 6173549831154472795, - 13567992399387660019, - 17050234209342075797, - 650358724130500725 - ] + "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], + "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] }, "infinity": false }, { "x": { - "c0": [ - 9089143573911733168, - 11482283522806384523, - 13585589533905622862, - 79029415676722370 - ], - "c1": [ - 5692040832573735873, - 16884514497384809355, - 16717166481813659368, - 2742131088506155463 - ] + "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], + "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] }, "y": { - "c0": [ - 9604638503594647125, - 1289961608472612514, - 6217038149984805214, - 2521661352385209130 - ], - "c1": [ - 17168069778630926308, - 11309277837895768996, - 15154989611154567813, - 359271377050603491 - ] + "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], + "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] }, "infinity": false } ] -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json index 8b980dde0932..341d50aebd72 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132352, "public_inputs_locations": [ - [ - 0, - 1027358 - ], - [ - 1, - 1027358 - ], - [ - 2, - 1027358 - ], - [ - 3, - 1027358 - ] + [0, 1027358], + [1, 1027358], + [2, 1027358], + [3, 1027358] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 14828808970297586390, - 10812916566872682190, - 4814232139347019203, - 9176100102005882856 - ], - [ - 3967670424646093724, - 15187149346332822036, - 12510674113975494748, - 4510474866283045065 - ], - [ - 3090046568261325916, - 2517005306301042120, - 15367389528664824672, - 4112249640174889690 - ], - [ - 18105273888459951541, - 5232822348364097609, - 16713617721022374900, - 190722882016699057 - ], - [ - 3680596367242563456, - 8277283738818682164, - 770687293026604966, - 964680746586707996 - ], - [ - 14252438150460413337, - 10138568641496080571, - 10299531489109681582, - 1029545029340913858 - ], - [ - 15064118887360123896, - 5094380307043679103, - 14910118547805564561, - 10715877189078928458 - ], - [ - 15803708295742972434, - 11361281300374199895, - 17281542834964672336, - 4609037794875108477 - ], - [ - 17069406781160283989, - 1486103635977441667, - 5599688364977636665, - 2606216552412168601 - ], - [ - 11440625988157319556, - 14165489000241104461, - 12815938030387403166, - 18358353209834817866 - ], - [ - 17484081080457701823, - 8488503007959107424, - 15436257938093142847, - 4434713360392963026 - ], - [ - 11228941610173378380, - 15586341149405816978, - 6641174723323244420, - 6502235669428985157 - ], - [ - 1780813236656786088, - 13705357356856822817, - 13823081051755218384, - 2628439960173921306 - ], - [ - 5781733601274220376, - 4396700195519547383, - 4802209023715066280, - 7053779784999063193 - ], - [ - 11266624277386388719, - 8947017045799184361, - 15630186476936326904, - 4970655490195943663 - ], - [ - 13604491581251560181, - 754251763827647964, - 85019175871498033, - 16264768579713941582 - ] + [14828808970297586390, 10812916566872682190, 4814232139347019203, 9176100102005882856], + [3967670424646093724, 15187149346332822036, 12510674113975494748, 4510474866283045065], + [3090046568261325916, 2517005306301042120, 15367389528664824672, 4112249640174889690], + [18105273888459951541, 5232822348364097609, 16713617721022374900, 190722882016699057], + [3680596367242563456, 8277283738818682164, 770687293026604966, 964680746586707996], + [14252438150460413337, 10138568641496080571, 10299531489109681582, 1029545029340913858], + [15064118887360123896, 5094380307043679103, 14910118547805564561, 10715877189078928458], + [15803708295742972434, 11361281300374199895, 17281542834964672336, 4609037794875108477], + [17069406781160283989, 1486103635977441667, 5599688364977636665, 2606216552412168601], + [11440625988157319556, 14165489000241104461, 12815938030387403166, 18358353209834817866], + [17484081080457701823, 8488503007959107424, 15436257938093142847, 4434713360392963026], + [11228941610173378380, 15586341149405816978, 6641174723323244420, 6502235669428985157], + [1780813236656786088, 13705357356856822817, 13823081051755218384, 2628439960173921306], + [5781733601274220376, 4396700195519547383, 4802209023715066280, 7053779784999063193], + [11266624277386388719, 8947017045799184361, 15630186476936326904, 4970655490195943663], + [13604491581251560181, 754251763827647964, 85019175871498033, 16264768579713941582] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json index bd030f4a3942..3f39e88aad8c 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 531517 - ], - [ - 1, - 531517 - ], - [ - 2, - 531517 - ], - [ - 3, - 531517 - ] + [0, 531517], + [1, 531517], + [2, 531517], + [3, 531517] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 769023300008107994, - 15035929950782434877, - 4767632476551610273, - 6003255068455690448 - ], - [ - 9026207300516234226, - 12638320530307573615, - 9548682324993884667, - 1669798832247316225 - ], - [ - 15771054686436993477, - 14867268062778845716, - 2755571000455103667, - 17012958053718147653 - ], - [ - 4796035851498319953, - 15578398003463831188, - 16487202842559859878, - 12241980977059723891 - ], - [ - 4905638728558119005, - 7863530509045382726, - 17089556944619165055, - 6881822366736890373 - ], - [ - 5605698221760842562, - 15309408538060590842, - 7774687445824112675, - 1029523717262265273 - ], - [ - 4602145677202369894, - 10437641120626639391, - 16191157018649573359, - 2145181286557866215 - ], - [ - 8347044010387916224, - 7660057627892565262, - 4087655568250966187, - 4920987872151258558 - ], - [ - 4652946618899021165, - 10106017231231912813, - 3800120974014235756, - 6675575778477161887 - ], - [ - 4980892440155162443, - 6801648544364465294, - 2944365492323162449, - 6942743875951446975 - ], - [ - 17666291786065358473, - 11132525791177279380, - 1090211641846788491, - 18206157565187626653 - ], - [ - 11955322036584323772, - 9745237745974724322, - 7620783083675382303, - 6501674220304463161 - ], - [ - 14154028621322325960, - 12267966522963634693, - 16381614744195346959, - 10938579521199157178 - ], - [ - 5661196656360295299, - 16217006627182303897, - 15559803411312667053, - 14580126280029049348 - ], - [ - 9186970898669061808, - 692683705561232556, - 14664202853793025315, - 7113265307923171991 - ], - [ - 256017097329808658, - 1298676672131862834, - 9342013003187223457, - 172944159302847111 - ] + [769023300008107994, 15035929950782434877, 4767632476551610273, 6003255068455690448], + [9026207300516234226, 12638320530307573615, 9548682324993884667, 1669798832247316225], + [15771054686436993477, 14867268062778845716, 2755571000455103667, 17012958053718147653], + [4796035851498319953, 15578398003463831188, 16487202842559859878, 12241980977059723891], + [4905638728558119005, 7863530509045382726, 17089556944619165055, 6881822366736890373], + [5605698221760842562, 15309408538060590842, 7774687445824112675, 1029523717262265273], + [4602145677202369894, 10437641120626639391, 16191157018649573359, 2145181286557866215], + [8347044010387916224, 7660057627892565262, 4087655568250966187, 4920987872151258558], + [4652946618899021165, 10106017231231912813, 3800120974014235756, 6675575778477161887], + [4980892440155162443, 6801648544364465294, 2944365492323162449, 6942743875951446975], + [17666291786065358473, 11132525791177279380, 1090211641846788491, 18206157565187626653], + [11955322036584323772, 9745237745974724322, 7620783083675382303, 6501674220304463161], + [14154028621322325960, 12267966522963634693, 16381614744195346959, 10938579521199157178], + [5661196656360295299, 16217006627182303897, 15559803411312667053, 14580126280029049348], + [9186970898669061808, 692683705561232556, 14664202853793025315, 7113265307923171991], + [256017097329808658, 1298676672131862834, 9342013003187223457, 172944159302847111] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json index 15680c68c303..af81601a174f 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 531517 - ], - [ - 1, - 531517 - ], - [ - 2, - 531517 - ], - [ - 3, - 531517 - ] + [0, 531517], + [1, 531517], + [2, 531517], + [3, 531517] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 769023300008107994, - 15035929950782434877, - 4767632476551610273, - 6003255068455690448 - ], - [ - 9026207300516234226, - 12638320530307573615, - 9548682324993884667, - 1669798832247316225 - ], - [ - 15771054686436993477, - 14867268062778845716, - 2755571000455103667, - 17012958053718147653 - ], - [ - 4796035851498319953, - 15578398003463831188, - 16487202842559859878, - 12241980977059723891 - ], - [ - 4905638728558119005, - 7863530509045382726, - 17089556944619165055, - 6881822366736890373 - ], - [ - 5605698221760842562, - 15309408538060590842, - 7774687445824112675, - 1029523717262265273 - ], - [ - 4602145677202369894, - 10437641120626639391, - 16191157018649573359, - 2145181286557866215 - ], - [ - 8347044010387916224, - 7660057627892565262, - 4087655568250966187, - 4920987872151258558 - ], - [ - 4652946618899021165, - 10106017231231912813, - 3800120974014235756, - 6675575778477161887 - ], - [ - 4980892440155162443, - 6801648544364465294, - 2944365492323162449, - 6942743875951446975 - ], - [ - 17666291786065358473, - 11132525791177279380, - 1090211641846788491, - 18206157565187626653 - ], - [ - 11955322036584323772, - 9745237745974724322, - 7620783083675382303, - 6501674220304463161 - ], - [ - 14154028621322325960, - 12267966522963634693, - 16381614744195346959, - 10938579521199157178 - ], - [ - 5661196656360295299, - 16217006627182303897, - 15559803411312667053, - 14580126280029049348 - ], - [ - 9186970898669061808, - 692683705561232556, - 14664202853793025315, - 7113265307923171991 - ], - [ - 256017097329808658, - 1298676672131862834, - 9342013003187223457, - 172944159302847111 - ] + [769023300008107994, 15035929950782434877, 4767632476551610273, 6003255068455690448], + [9026207300516234226, 12638320530307573615, 9548682324993884667, 1669798832247316225], + [15771054686436993477, 14867268062778845716, 2755571000455103667, 17012958053718147653], + [4796035851498319953, 15578398003463831188, 16487202842559859878, 12241980977059723891], + [4905638728558119005, 7863530509045382726, 17089556944619165055, 6881822366736890373], + [5605698221760842562, 15309408538060590842, 7774687445824112675, 1029523717262265273], + [4602145677202369894, 10437641120626639391, 16191157018649573359, 2145181286557866215], + [8347044010387916224, 7660057627892565262, 4087655568250966187, 4920987872151258558], + [4652946618899021165, 10106017231231912813, 3800120974014235756, 6675575778477161887], + [4980892440155162443, 6801648544364465294, 2944365492323162449, 6942743875951446975], + [17666291786065358473, 11132525791177279380, 1090211641846788491, 18206157565187626653], + [11955322036584323772, 9745237745974724322, 7620783083675382303, 6501674220304463161], + [14154028621322325960, 12267966522963634693, 16381614744195346959, 10938579521199157178], + [5661196656360295299, 16217006627182303897, 15559803411312667053, 14580126280029049348], + [9186970898669061808, 692683705561232556, 14664202853793025315, 7113265307923171991], + [256017097329808658, 1298676672131862834, 9342013003187223457, 172944159302847111] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json index fe32152c3110..11c49d43e5c1 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [ - 0, - 1038149 - ], - [ - 1, - 1038149 - ], - [ - 2, - 1038149 - ], - [ - 3, - 1038149 - ] + [0, 1038149], + [1, 1038149], + [2, 1038149], + [3, 1038149] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -143,102 +129,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 14777139935278588112, - 4852642306346514505, - 528870644537653013, - 12766220607019407671 - ], - [ - 4257836937173457180, - 18105850810127810627, - 12045855835945477909, - 1337145016913030516 - ], - [ - 13540294178921617935, - 5675450379425866696, - 8080330723590348862, - 12416515377803888920 - ], - [ - 3171578350856517770, - 6539655571602714350, - 17682924767985674977, - 8074611540701237863 - ], - [ - 14866967567212658098, - 14985810164396930899, - 14103564390721978582, - 2713291878303732148 - ], - [ - 7209698436584637628, - 72403128177350562, - 13748975409439240331, - 17101408191037730854 - ], - [ - 7094792714865445950, - 14145350607330203478, - 3322372571606796615, - 7791275147072878055 - ], - [ - 10260092656566629894, - 6872708783997532427, - 5457407604248314227, - 366003053747525096 - ], - [ - 6163187172733089710, - 15116272236856095840, - 8980783297696807334, - 4318634308458673791 - ], - [ - 22911656643808543, - 4389862417760095893, - 8180530007173246228, - 15363392102238906744 - ], - [ - 16724058906600359122, - 9749245991791698283, - 3733079220084897482, - 35144727903715636 - ], - [ - 1733024683910700810, - 16815568708094698990, - 9597261785243145371, - 14191876845225710581 - ], - [ - 3368783094877746336, - 10313180424218970297, - 7411576603144233838, - 18155104604678927944 - ], - [ - 15539244454544408034, - 14071575935246766022, - 3167686754143854069, - 2580957889210849319 - ], - [ - 11188593692389277627, - 3317111011441128346, - 18315606312625447776, - 14080235054242793975 - ], - [ - 11188480902959932408, - 16241470651544083095, - 17491552077640160913, - 1747401256351375709 - ] + [14777139935278588112, 4852642306346514505, 528870644537653013, 12766220607019407671], + [4257836937173457180, 18105850810127810627, 12045855835945477909, 1337145016913030516], + [13540294178921617935, 5675450379425866696, 8080330723590348862, 12416515377803888920], + [3171578350856517770, 6539655571602714350, 17682924767985674977, 8074611540701237863], + [14866967567212658098, 14985810164396930899, 14103564390721978582, 2713291878303732148], + [7209698436584637628, 72403128177350562, 13748975409439240331, 17101408191037730854], + [7094792714865445950, 14145350607330203478, 3322372571606796615, 7791275147072878055], + [10260092656566629894, 6872708783997532427, 5457407604248314227, 366003053747525096], + [6163187172733089710, 15116272236856095840, 8980783297696807334, 4318634308458673791], + [22911656643808543, 4389862417760095893, 8180530007173246228, 15363392102238906744], + [16724058906600359122, 9749245991791698283, 3733079220084897482, 35144727903715636], + [1733024683910700810, 16815568708094698990, 9597261785243145371, 14191876845225710581], + [3368783094877746336, 10313180424218970297, 7411576603144233838, 18155104604678927944], + [15539244454544408034, 14071575935246766022, 3167686754143854069, 2580957889210849319], + [11188593692389277627, 3317111011441128346, 18315606312625447776, 14080235054242793975], + [11188480902959932408, 16241470651544083095, 17491552077640160913, 1747401256351375709] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json index 54cda61bfca1..7c616f28d89d 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 68756, "public_inputs_locations": [ - [ - 0, - 1041180 - ], - [ - 1, - 1041180 - ], - [ - 2, - 1041180 - ], - [ - 3, - 1041180 - ] + [0, 1041180], + [1, 1041180], + [2, 1041180], + [3, 1041180] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -182,102 +168,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 11230239963091452912, - 13026461504664266360, - 16713169701215574185, - 12615976815403328075 - ], - [ - 3804170955286114995, - 17070428581913287652, - 16444458341617335831, - 12310477573463289452 - ], - [ - 15717060580753384291, - 5009332941172699339, - 5141249138356870627, - 14525082357218066066 - ], - [ - 5451473672302709994, - 14405751484257675144, - 6034423888032264287, - 14528639950002943854 - ], - [ - 11233253504932768792, - 9984746197426258635, - 4438596486612781127, - 17198259095221505968 - ], - [ - 5681291117413714556, - 18436270377115663121, - 11989211218541826903, - 2671135999160204746 - ], - [ - 963730224051018518, - 1293300388921029500, - 7261069736084660486, - 12414181044622900231 - ], - [ - 17155210460432560694, - 920670927493907875, - 6658462737460123613, - 8253351903179999964 - ], - [ - 3039615529982926935, - 12254392109531368227, - 12274357209453453775, - 16608606384477787215 - ], - [ - 11218496188813210888, - 16107046895420213310, - 16285761395335573298, - 8624190103510841482 - ], - [ - 14835727297511074005, - 1164596723783439781, - 11276497358832644724, - 9219531475080512501 - ], - [ - 3715985935119482043, - 12185867206854340138, - 7900628271499451412, - 8891356055003024224 - ], - [ - 17763963322580587554, - 218146194744968367, - 16033549148238902530, - 1522529898878047239 - ], - [ - 8120794419871565322, - 18267867130143702317, - 17178857528695612575, - 14839022417830798252 - ], - [ - 16480189677896973754, - 18441483621256548692, - 3982214183107947832, - 5099760740801601882 - ], - [ - 10335714458962187072, - 8498294096277334786, - 8574103413352512596, - 9714850528124914412 - ] + [11230239963091452912, 13026461504664266360, 16713169701215574185, 12615976815403328075], + [3804170955286114995, 17070428581913287652, 16444458341617335831, 12310477573463289452], + [15717060580753384291, 5009332941172699339, 5141249138356870627, 14525082357218066066], + [5451473672302709994, 14405751484257675144, 6034423888032264287, 14528639950002943854], + [11233253504932768792, 9984746197426258635, 4438596486612781127, 17198259095221505968], + [5681291117413714556, 18436270377115663121, 11989211218541826903, 2671135999160204746], + [963730224051018518, 1293300388921029500, 7261069736084660486, 12414181044622900231], + [17155210460432560694, 920670927493907875, 6658462737460123613, 8253351903179999964], + [3039615529982926935, 12254392109531368227, 12274357209453453775, 16608606384477787215], + [11218496188813210888, 16107046895420213310, 16285761395335573298, 8624190103510841482], + [14835727297511074005, 1164596723783439781, 11276497358832644724, 9219531475080512501], + [3715985935119482043, 12185867206854340138, 7900628271499451412, 8891356055003024224], + [17763963322580587554, 218146194744968367, 16033549148238902530, 1522529898878047239], + [8120794419871565322, 18267867130143702317, 17178857528695612575, 14839022417830798252], + [16480189677896973754, 18441483621256548692, 3982214183107947832, 5099760740801601882], + [10335714458962187072, 8498294096277334786, 8574103413352512596, 9714850528124914412] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json index afbdd17f87d3..938ab4d6243c 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 1021854 - ], - [ - 1, - 1021854 - ], - [ - 2, - 1021854 - ], - [ - 3, - 1021854 - ] + [0, 1021854], + [1, 1021854], + [2, 1021854], + [3, 1021854] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 2638073007663622156, - 8095790926675075575, - 16070536450025430297, - 11107879245782883310 - ], - [ - 14146741033954484667, - 6190536674348638720, - 16225788979445059477, - 14054620090462985529 - ], - [ - 11640224008014629596, - 641539748496027160, - 13808722951176221096, - 16170765986761751839 - ], - [ - 3935980412801468150, - 1369763633048581729, - 15164038222707237449, - 13549026317001505493 - ], - [ - 7347140194150198874, - 3761583621533582182, - 1201042008705759557, - 4518814071203771589 - ], - [ - 800427219378311884, - 9408589372717347086, - 4254572946942417329, - 5142794058426597251 - ], - [ - 9025763675471789857, - 9658241200006349915, - 10843576536878471228, - 4504613934156851017 - ], - [ - 924391528635837029, - 17275471398483292983, - 7119295641875104852, - 3574531397848859770 - ], - [ - 9377840526717456169, - 10735342053764638034, - 2342156236435128394, - 14166002014472046096 - ], - [ - 2892383637971079443, - 13418647945623595756, - 10019182992393923816, - 9844763621346094605 - ], - [ - 10882982703274329811, - 1514425380968646350, - 13439208364741860903, - 13990068349260696136 - ], - [ - 15895812818511549818, - 15738749976988188006, - 13440084002922282596, - 14578356625798184093 - ], - [ - 3859406845557969736, - 17314298659359090415, - 16770924942850282883, - 486597592063200525 - ], - [ - 11378407834848513159, - 4967859104549187166, - 13937264085276400573, - 7478354099484226349 - ], - [ - 1449906124962973794, - 5408228139111124399, - 1658036384062801904, - 7066463570538863033 - ], - [ - 15186027246389802614, - 9949859568958827686, - 11971923963356626879, - 15735564656222075589 - ] + [2638073007663622156, 8095790926675075575, 16070536450025430297, 11107879245782883310], + [14146741033954484667, 6190536674348638720, 16225788979445059477, 14054620090462985529], + [11640224008014629596, 641539748496027160, 13808722951176221096, 16170765986761751839], + [3935980412801468150, 1369763633048581729, 15164038222707237449, 13549026317001505493], + [7347140194150198874, 3761583621533582182, 1201042008705759557, 4518814071203771589], + [800427219378311884, 9408589372717347086, 4254572946942417329, 5142794058426597251], + [9025763675471789857, 9658241200006349915, 10843576536878471228, 4504613934156851017], + [924391528635837029, 17275471398483292983, 7119295641875104852, 3574531397848859770], + [9377840526717456169, 10735342053764638034, 2342156236435128394, 14166002014472046096], + [2892383637971079443, 13418647945623595756, 10019182992393923816, 9844763621346094605], + [10882982703274329811, 1514425380968646350, 13439208364741860903, 13990068349260696136], + [15895812818511549818, 15738749976988188006, 13440084002922282596, 14578356625798184093], + [3859406845557969736, 17314298659359090415, 16770924942850282883, 486597592063200525], + [11378407834848513159, 4967859104549187166, 13937264085276400573, 7478354099484226349], + [1449906124962973794, 5408228139111124399, 1658036384062801904, 7066463570538863033], + [15186027246389802614, 9949859568958827686, 11971923963356626879, 15735564656222075589] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json index 0cfb70f82924..1291f810ba03 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 12320, "public_inputs_locations": [ - [ - 0, - 1045893 - ], - [ - 1, - 1045893 - ], - [ - 2, - 1045893 - ], - [ - 3, - 1045893 - ] + [0, 1045893], + [1, 1045893], + [2, 1045893], + [3, 1045893] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -143,102 +129,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 14477188964753033185, - 8969677320239131616, - 1511337688601558079, - 6903237435877294238 - ], - [ - 6879979662383013500, - 9972710512945599417, - 1141938191658961290, - 7985281381511529082 - ], - [ - 17209416762295781376, - 598939655522077579, - 6689912638469680235, - 4921519662278829132 - ], - [ - 2218810108211543567, - 17367409571577782381, - 4068453030111399481, - 2894111853945751344 - ], - [ - 9999042349572898395, - 7429179575907305306, - 10123408942776369379, - 3022715221462077728 - ], - [ - 10045842633239015513, - 4244812848324665170, - 12301343603596417356, - 11332920712778059030 - ], - [ - 15900139291770141663, - 8192446346506891091, - 10086891539583546802, - 7343942987745068197 - ], - [ - 6124221718954912549, - 13486682166896696529, - 15097291952143481844, - 16653894364467704495 - ], - [ - 12766623698334678967, - 1729058559883227397, - 1411108054906351423, - 13278453333171202065 - ], - [ - 12233418151438626108, - 14016138745865492456, - 13255147568691004416, - 14998854132551828470 - ], - [ - 10323923076292169703, - 8158278707949376146, - 12845614783152862914, - 5914093648720582597 - ], - [ - 13520835009196520971, - 14417779140547238889, - 6862603050786324034, - 10245030009169430808 - ], - [ - 1835499986105723876, - 9973301486190772269, - 3431085138170097359, - 16617926458565371046 - ], - [ - 6995430833584764582, - 10186803315798237521, - 13404931797112939412, - 17530795913574984460 - ], - [ - 10883424944588923206, - 13314595728239865895, - 3282096066350298749, - 3956046981299225896 - ], - [ - 12087054656445457911, - 7314398367646261307, - 7998118142061675046, - 11673364943123337175 - ] + [14477188964753033185, 8969677320239131616, 1511337688601558079, 6903237435877294238], + [6879979662383013500, 9972710512945599417, 1141938191658961290, 7985281381511529082], + [17209416762295781376, 598939655522077579, 6689912638469680235, 4921519662278829132], + [2218810108211543567, 17367409571577782381, 4068453030111399481, 2894111853945751344], + [9999042349572898395, 7429179575907305306, 10123408942776369379, 3022715221462077728], + [10045842633239015513, 4244812848324665170, 12301343603596417356, 11332920712778059030], + [15900139291770141663, 8192446346506891091, 10086891539583546802, 7343942987745068197], + [6124221718954912549, 13486682166896696529, 15097291952143481844, 16653894364467704495], + [12766623698334678967, 1729058559883227397, 1411108054906351423, 13278453333171202065], + [12233418151438626108, 14016138745865492456, 13255147568691004416, 14998854132551828470], + [10323923076292169703, 8158278707949376146, 12845614783152862914, 5914093648720582597], + [13520835009196520971, 14417779140547238889, 6862603050786324034, 10245030009169430808], + [1835499986105723876, 9973301486190772269, 3431085138170097359, 16617926458565371046], + [6995430833584764582, 10186803315798237521, 13404931797112939412, 17530795913574984460], + [10883424944588923206, 13314595728239865895, 3282096066350298749, 3956046981299225896], + [12087054656445457911, 7314398367646261307, 7998118142061675046, 11673364943123337175] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json index a4a410d90a26..abb66a439231 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 770856 - ], - [ - 1, - 770856 - ], - [ - 2, - 770856 - ], - [ - 3, - 770856 - ] + [0, 770856], + [1, 770856], + [2, 770856], + [3, 770856] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 13241330279191725103, - 13753032629530173038, - 2076223530664948596, - 3297807117114706044 - ], - [ - 11713836288112670191, - 1177996762465404370, - 7559895083149599749, - 3210974432904624409 - ], - [ - 12556775438783409088, - 12836668195118427958, - 10659579382288992879, - 14824820023358081641 - ], - [ - 12129434367710731467, - 13223863980858698592, - 15076313205959171338, - 8812832758598326992 - ], - [ - 5619695298194316584, - 1702543119292958822, - 10286311332797928654, - 5029271658667181176 - ], - [ - 7415141098448981547, - 15663039494509354932, - 13208197120197557194, - 11245742858683836013 - ], - [ - 3002540241136310707, - 11547797899694244403, - 7124622061839424949, - 10949013563713078494 - ], - [ - 17142575575809782204, - 13800993532867337554, - 4423537342426483807, - 12089179399318945120 - ], - [ - 5543363940431137493, - 14528536317911082899, - 3928220692870214567, - 7185369207264833028 - ], - [ - 2815159846192152478, - 16507211682718130921, - 1793329775903937916, - 6473686931817864950 - ], - [ - 17815165628195346102, - 9542948826192641186, - 14973284068738873799, - 13577641628730921985 - ], - [ - 17938393397553240876, - 15660715751237780491, - 12630446844016399148, - 11862059154139259048 - ], - [ - 11953996319846633859, - 12131238563851642562, - 5803319004748576191, - 10988868046472383675 - ], - [ - 3859400868090135128, - 15214844687221204138, - 13973059553580269639, - 7853383910131759805 - ], - [ - 11592486898864810791, - 4871056958970591747, - 137946356858301988, - 14529417267976359973 - ], - [ - 11093343120608557204, - 14684319039324015274, - 5221221840195929029, - 17478918223903237221 - ] + [13241330279191725103, 13753032629530173038, 2076223530664948596, 3297807117114706044], + [11713836288112670191, 1177996762465404370, 7559895083149599749, 3210974432904624409], + [12556775438783409088, 12836668195118427958, 10659579382288992879, 14824820023358081641], + [12129434367710731467, 13223863980858698592, 15076313205959171338, 8812832758598326992], + [5619695298194316584, 1702543119292958822, 10286311332797928654, 5029271658667181176], + [7415141098448981547, 15663039494509354932, 13208197120197557194, 11245742858683836013], + [3002540241136310707, 11547797899694244403, 7124622061839424949, 10949013563713078494], + [17142575575809782204, 13800993532867337554, 4423537342426483807, 12089179399318945120], + [5543363940431137493, 14528536317911082899, 3928220692870214567, 7185369207264833028], + [2815159846192152478, 16507211682718130921, 1793329775903937916, 6473686931817864950], + [17815165628195346102, 9542948826192641186, 14973284068738873799, 13577641628730921985], + [17938393397553240876, 15660715751237780491, 12630446844016399148, 11862059154139259048], + [11953996319846633859, 12131238563851642562, 5803319004748576191, 10988868046472383675], + [3859400868090135128, 15214844687221204138, 13973059553580269639, 7853383910131759805], + [11592486898864810791, 4871056958970591747, 137946356858301988, 14529417267976359973], + [11093343120608557204, 14684319039324015274, 5221221840195929029, 17478918223903237221] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json index 4537187b9b36..b3e63bb053d6 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [ - 0, - 1047292 - ], - [ - 1, - 1047292 - ], - [ - 2, - 1047292 - ], - [ - 3, - 1047292 - ] + [0, 1047292], + [1, 1047292], + [2, 1047292], + [3, 1047292] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -143,102 +129,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 5926546619152935907, - 11291861669768573654, - 11100100891141895430, - 1040099038134319144 - ], - [ - 9405378490457870663, - 11971348617109093172, - 7779954465112100917, - 8521139113892942903 - ], - [ - 1041442145290466080, - 2626937507866398782, - 4297959424787982903, - 7963254695121664304 - ], - [ - 8679424872010178168, - 928230210029079843, - 17862919271344969949, - 9085342720844642067 - ], - [ - 2346566700143956389, - 751827788815495159, - 18018129704559687246, - 6344673729449349673 - ], - [ - 12798999539756004171, - 2962217720855368908, - 17815764746262544024, - 6141433679632029898 - ], - [ - 10612436896218340091, - 5382517797965219051, - 1440771605952502920, - 6120504474919675320 - ], - [ - 5639210895028949894, - 17579589483393163114, - 8531068549022389838, - 9055992165271810945 - ], - [ - 15625252378325581383, - 11791782086341113568, - 1976318982912441593, - 16561636205817299485 - ], - [ - 9291503982934971506, - 5967409911022700010, - 9096839168538146295, - 3004596177933970509 - ], - [ - 9243725287341188464, - 6878316427230924845, - 7270708110528992687, - 15417458474646493002 - ], - [ - 15577762808206668193, - 10775213926343901301, - 4900917235853777300, - 8940673145641313937 - ], - [ - 18157038451252266825, - 13776543473230491269, - 17449669960102455201, - 1902286122568749061 - ], - [ - 10247491007925641249, - 5411016508841956578, - 11766519965796614613, - 1073824923129670847 - ], - [ - 10691592838471536401, - 16863854034452440410, - 16989985027265774429, - 10784858673090746367 - ], - [ - 5688638173552292266, - 2543022480770607266, - 1257951713416281965, - 6435312724052439304 - ] + [5926546619152935907, 11291861669768573654, 11100100891141895430, 1040099038134319144], + [9405378490457870663, 11971348617109093172, 7779954465112100917, 8521139113892942903], + [1041442145290466080, 2626937507866398782, 4297959424787982903, 7963254695121664304], + [8679424872010178168, 928230210029079843, 17862919271344969949, 9085342720844642067], + [2346566700143956389, 751827788815495159, 18018129704559687246, 6344673729449349673], + [12798999539756004171, 2962217720855368908, 17815764746262544024, 6141433679632029898], + [10612436896218340091, 5382517797965219051, 1440771605952502920, 6120504474919675320], + [5639210895028949894, 17579589483393163114, 8531068549022389838, 9055992165271810945], + [15625252378325581383, 11791782086341113568, 1976318982912441593, 16561636205817299485], + [9291503982934971506, 5967409911022700010, 9096839168538146295, 3004596177933970509], + [9243725287341188464, 6878316427230924845, 7270708110528992687, 15417458474646493002], + [15577762808206668193, 10775213926343901301, 4900917235853777300, 8940673145641313937], + [18157038451252266825, 13776543473230491269, 17449669960102455201, 1902286122568749061], + [10247491007925641249, 5411016508841956578, 11766519965796614613, 1073824923129670847], + [10691592838471536401, 16863854034452440410, 16989985027265774429, 10784858673090746367], + [5688638173552292266, 2543022480770607266, 1257951713416281965, 6435312724052439304] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json index 48533211ab0c..d72d240e25b5 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 12320, "public_inputs_locations": [ - [ - 0, - 1039793 - ], - [ - 1, - 1039793 - ], - [ - 2, - 1039793 - ], - [ - 3, - 1039793 - ] + [0, 1039793], + [1, 1039793], + [2, 1039793], + [3, 1039793] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -143,102 +129,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 7131095197302553268, - 8153577698865827964, - 4503618255465567901, - 14277683095622422701 - ], - [ - 17227565432950328258, - 3812763700819798255, - 11013754802988076876, - 6868705666417715458 - ], - [ - 6323710131523972374, - 2634684603167736396, - 18066615186100844391, - 12905391948029250777 - ], - [ - 3492005229273374536, - 6055742838160324534, - 1795486371688618704, - 13052026771106363342 - ], - [ - 10281812076992462791, - 7165153365649379245, - 13022274058059396511, - 13989909544832134378 - ], - [ - 12027415465257630320, - 3276226892300848010, - 8686471638009106913, - 14892455799109213586 - ], - [ - 2589896055307349461, - 2860115159278340436, - 16194627146103061118, - 7076143423549975584 - ], - [ - 13667404340259521763, - 6297649363425018745, - 16167424072873520384, - 3830963799067739016 - ], - [ - 16665883187665722508, - 314738727176100190, - 4253386482569091860, - 1926299543937236525 - ], - [ - 7820355437968047327, - 6794680285466534678, - 2978730525228113593, - 3621380956903574094 - ], - [ - 4838056840641790939, - 16842388520310131551, - 11612178730147038952, - 2346195292789238934 - ], - [ - 17810776396991797874, - 12063662987004325494, - 17932676844730723250, - 14283996529720835225 - ], - [ - 4982429352434514173, - 14856186579270143608, - 4051922516960412257, - 8367898317160268319 - ], - [ - 14584337208407353036, - 15866593405986269360, - 11704298830630250400, - 14576621862375131798 - ], - [ - 3101118738129024336, - 4028118980088627608, - 9223187088487468736, - 3845581921289713376 - ], - [ - 1013819453591993424, - 13784105701097110976, - 9114286772222497781, - 10710488663310041007 - ] + [7131095197302553268, 8153577698865827964, 4503618255465567901, 14277683095622422701], + [17227565432950328258, 3812763700819798255, 11013754802988076876, 6868705666417715458], + [6323710131523972374, 2634684603167736396, 18066615186100844391, 12905391948029250777], + [3492005229273374536, 6055742838160324534, 1795486371688618704, 13052026771106363342], + [10281812076992462791, 7165153365649379245, 13022274058059396511, 13989909544832134378], + [12027415465257630320, 3276226892300848010, 8686471638009106913, 14892455799109213586], + [2589896055307349461, 2860115159278340436, 16194627146103061118, 7076143423549975584], + [13667404340259521763, 6297649363425018745, 16167424072873520384, 3830963799067739016], + [16665883187665722508, 314738727176100190, 4253386482569091860, 1926299543937236525], + [7820355437968047327, 6794680285466534678, 2978730525228113593, 3621380956903574094], + [4838056840641790939, 16842388520310131551, 11612178730147038952, 2346195292789238934], + [17810776396991797874, 12063662987004325494, 17932676844730723250, 14283996529720835225], + [4982429352434514173, 14856186579270143608, 4051922516960412257, 8367898317160268319], + [14584337208407353036, 15866593405986269360, 11704298830630250400, 14576621862375131798], + [3101118738129024336, 4028118980088627608, 9223187088487468736, 3845581921289713376], + [1013819453591993424, 13784105701097110976, 9114286772222497781, 10710488663310041007] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json index b905a476ea43..ffaae70e1fc7 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [ - 0, - 872841 - ], - [ - 1, - 872841 - ], - [ - 2, - 872841 - ], - [ - 3, - 872841 - ] + [0, 872841], + [1, 872841], + [2, 872841], + [3, 872841] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [ - 6 - ], + "table_ids_column_idxes": [6], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 13818450912197620420, - 5079205692118648775, - 14615787041360044769, - 2941606671776647183 - ], - [ - 6715253104770723417, - 3160280029457127352, - 11108406980823166906, - 15487865556610611893 - ], - [ - 14039903923831613967, - 15298198763143829103, - 17031409250405123985, - 10266023324667771113 - ], - [ - 17366151300788544369, - 13314676565834570017, - 17521241757753748935, - 13066688955830816807 - ], - [ - 14445090483790969730, - 15708367780098206326, - 2336844413511710318, - 3268235585540529265 - ], - [ - 2882405134850480170, - 14247534382965114291, - 17531255653612736614, - 11676635700695125188 - ], - [ - 11530141675448575062, - 8910365257612403024, - 300072654586353643, - 8472188536913229506 - ], - [ - 1426612518547638168, - 17806679375517512145, - 14835333334022265221, - 2007845272495904476 - ], - [ - 6034343869761808836, - 13937750910508416181, - 16942548919853718543, - 16086518391257789831 - ], - [ - 15933462173546075175, - 8612525819877657624, - 4132383244121115701, - 9288543398092863864 - ], - [ - 8157130847726661070, - 4231891352218163681, - 14620351586778336684, - 4186724240746204294 - ], - [ - 7440132245224537493, - 6666895991749911132, - 8404993517441732468, - 6556569653095950475 - ], - [ - 1982595939619922877, - 17561202624392859313, - 14381497498171193805, - 17908865555917026633 - ], - [ - 7384278864004035589, - 10191778068274570585, - 6103937442735162958, - 5142419559331404710 - ], - [ - 3651117166359200686, - 3827322296271305097, - 14799462710376656576, - 13600220646083181205 - ], - [ - 1989104086172888026, - 7796359126421144184, - 16967575681666150511, - 5993683835612332048 - ] + [13818450912197620420, 5079205692118648775, 14615787041360044769, 2941606671776647183], + [6715253104770723417, 3160280029457127352, 11108406980823166906, 15487865556610611893], + [14039903923831613967, 15298198763143829103, 17031409250405123985, 10266023324667771113], + [17366151300788544369, 13314676565834570017, 17521241757753748935, 13066688955830816807], + [14445090483790969730, 15708367780098206326, 2336844413511710318, 3268235585540529265], + [2882405134850480170, 14247534382965114291, 17531255653612736614, 11676635700695125188], + [11530141675448575062, 8910365257612403024, 300072654586353643, 8472188536913229506], + [1426612518547638168, 17806679375517512145, 14835333334022265221, 2007845272495904476], + [6034343869761808836, 13937750910508416181, 16942548919853718543, 16086518391257789831], + [15933462173546075175, 8612525819877657624, 4132383244121115701, 9288543398092863864], + [8157130847726661070, 4231891352218163681, 14620351586778336684, 4186724240746204294], + [7440132245224537493, 6666895991749911132, 8404993517441732468, 6556569653095950475], + [1982595939619922877, 17561202624392859313, 14381497498171193805, 17908865555917026633], + [7384278864004035589, 10191778068274570585, 6103937442735162958, 5142419559331404710], + [3651117166359200686, 3827322296271305097, 14799462710376656576, 13600220646083181205], + [1989104086172888026, 7796359126421144184, 16967575681666150511, 5993683835612332048] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json index 01b957e7a611..088a58c12d06 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 1044095 - ], - [ - 1, - 1044095 - ], - [ - 2, - 1044095 - ], - [ - 3, - 1044095 - ] + [0, 1044095], + [1, 1044095], + [2, 1044095], + [3, 1044095] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 7748855058771730961, - 18077946489631649497, - 1126488644057748066, - 14688059039599644438 - ], - [ - 4480629341804348299, - 10505662440791981234, - 4568412032951786787, - 12296506456394181969 - ], - [ - 16177866372671364827, - 6970256790084749443, - 10619139891136255069, - 1607793233799494191 - ], - [ - 16984252104671889635, - 13549428959009290270, - 18134611582044419523, - 13805480879905126881 - ], - [ - 17770436976754840017, - 7234588192906938750, - 1676460085700470353, - 17733573771328390126 - ], - [ - 1322939182961086562, - 5294941824911180446, - 10983825026212251207, - 4904636572110590284 - ], - [ - 12784739321844360991, - 12439305138735676805, - 14983461304040938818, - 17269069332772868104 - ], - [ - 14780190734158735021, - 13940544738219743565, - 6645149114623433718, - 13466406487834863255 - ], - [ - 13329778603033226548, - 10757456562158453823, - 16599667503315631352, - 7621238797658185159 - ], - [ - 14547407989101566794, - 13324264894451648565, - 16566710504362716031, - 4779331080355111127 - ], - [ - 6132579229855214454, - 17610416320024829323, - 12304246579944377351, - 9688211256511656964 - ], - [ - 8981542755583161308, - 5091565442848149167, - 13934425064181076259, - 9294930870454289441 - ], - [ - 7427098481125065729, - 13578369070049130481, - 11513105383705002933, - 9750527547580548099 - ], - [ - 5745702296484372803, - 17242736621178757499, - 11421559995636138498, - 12684122852092168791 - ], - [ - 1002992144601037215, - 16187923653560782188, - 5293022176068028122, - 9959247706453715838 - ], - [ - 4182061746333368731, - 5244109339200264013, - 10015150430260308263, - 11549298210681275420 - ] + [7748855058771730961, 18077946489631649497, 1126488644057748066, 14688059039599644438], + [4480629341804348299, 10505662440791981234, 4568412032951786787, 12296506456394181969], + [16177866372671364827, 6970256790084749443, 10619139891136255069, 1607793233799494191], + [16984252104671889635, 13549428959009290270, 18134611582044419523, 13805480879905126881], + [17770436976754840017, 7234588192906938750, 1676460085700470353, 17733573771328390126], + [1322939182961086562, 5294941824911180446, 10983825026212251207, 4904636572110590284], + [12784739321844360991, 12439305138735676805, 14983461304040938818, 17269069332772868104], + [14780190734158735021, 13940544738219743565, 6645149114623433718, 13466406487834863255], + [13329778603033226548, 10757456562158453823, 16599667503315631352, 7621238797658185159], + [14547407989101566794, 13324264894451648565, 16566710504362716031, 4779331080355111127], + [6132579229855214454, 17610416320024829323, 12304246579944377351, 9688211256511656964], + [8981542755583161308, 5091565442848149167, 13934425064181076259, 9294930870454289441], + [7427098481125065729, 13578369070049130481, 11513105383705002933, 9750527547580548099], + [5745702296484372803, 17242736621178757499, 11421559995636138498, 12684122852092168791], + [1002992144601037215, 16187923653560782188, 5293022176068028122, 9959247706453715838], + [4182061746333368731, 5244109339200264013, 10015150430260308263, 11549298210681275420] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json index 2823ffec627f..950f3066741d 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [ - 0, - 1044628 - ], - [ - 1, - 1044628 - ], - [ - 2, - 1044628 - ], - [ - 3, - 1044628 - ] + [0, 1044628], + [1, 1044628], + [2, 1044628], + [3, 1044628] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [ - 7 - ], + "table_ids_column_idxes": [7], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -156,102 +142,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 15152415627491818135, - 7374237605577523933, - 4465184016028924212, - 2035234088595773309 - ], - [ - 5061557444963845839, - 12386849184623218277, - 13052284409578998174, - 2142376146067763313 - ], - [ - 14276061640225729061, - 3667833983304997823, - 15567500985315483409, - 10110252348727918570 - ], - [ - 12534291856385391774, - 4931691717277748218, - 10385184271370113628, - 10333556044049798387 - ], - [ - 3902530530481162544, - 11439177580828992768, - 2956353447880097447, - 2078779115341733037 - ], - [ - 14361126694241130224, - 4508476390465174580, - 14814630315120762635, - 17198376643024594512 - ], - [ - 15399867818681370342, - 17613339377988571860, - 17463021656624906492, - 18043402438787219822 - ], - [ - 4721341021989730415, - 941889554702533152, - 4492052956383425703, - 11785343591616806540 - ], - [ - 14835583452718692456, - 9747287794601877160, - 13285319018669943605, - 15566660322778346733 - ], - [ - 634069327924902339, - 7509671875950276664, - 17149763085975395897, - 17558106862399785122 - ], - [ - 6504570481933973182, - 9863954755773054818, - 4192802816900646319, - 11708054020605968244 - ], - [ - 5368022000476684675, - 11854447477637281190, - 773008757856055958, - 7428874382179860306 - ], - [ - 820566450151427404, - 14487105988932071384, - 5168970873173217247, - 16840718205559266321 - ], - [ - 15018168499898445860, - 15893129254829262789, - 1267456796490088156, - 14049704864991807107 - ], - [ - 3678472314386256573, - 4482269767107891177, - 2891258367538769098, - 10249141358181035242 - ], - [ - 1175499750244297798, - 7441679809319866074, - 15706614384330332074, - 12399917843582101807 - ] + [15152415627491818135, 7374237605577523933, 4465184016028924212, 2035234088595773309], + [5061557444963845839, 12386849184623218277, 13052284409578998174, 2142376146067763313], + [14276061640225729061, 3667833983304997823, 15567500985315483409, 10110252348727918570], + [12534291856385391774, 4931691717277748218, 10385184271370113628, 10333556044049798387], + [3902530530481162544, 11439177580828992768, 2956353447880097447, 2078779115341733037], + [14361126694241130224, 4508476390465174580, 14814630315120762635, 17198376643024594512], + [15399867818681370342, 17613339377988571860, 17463021656624906492, 18043402438787219822], + [4721341021989730415, 941889554702533152, 4492052956383425703, 11785343591616806540], + [14835583452718692456, 9747287794601877160, 13285319018669943605, 15566660322778346733], + [634069327924902339, 7509671875950276664, 17149763085975395897, 17558106862399785122], + [6504570481933973182, 9863954755773054818, 4192802816900646319, 11708054020605968244], + [5368022000476684675, 11854447477637281190, 773008757856055958, 7428874382179860306], + [820566450151427404, 14487105988932071384, 5168970873173217247, 16840718205559266321], + [15018168499898445860, 15893129254829262789, 1267456796490088156, 14049704864991807107], + [3678472314386256573, 4482269767107891177, 2891258367538769098, 10249141358181035242], + [1175499750244297798, 7441679809319866074, 15706614384330332074, 12399917843582101807] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json index 82e2d2f2fb54..1cf6e373b7ee 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1125289536020813216, - 13893991227523403350, - 18221032481002623145, - 6999555513372134161 - ], - [ - 14558032258404044879, - 15896302942503207712, - 4320679543001532335, - 16312301655514654219 - ], - [ - 7101986692613628904, - 7577883870349313041, - 7352728228661094923, - 18332380179278822986 - ], - [ - 4857477437658850102, - 2600358150758031758, - 11245333823831173537, - 8338725066623873242 - ], - [ - 7533080307752291488, - 7286216489335488511, - 18156637335160778785, - 7462498443331890731 - ], - [ - 606568432443359176, - 8912183283992686330, - 17421481837200753913, - 17592999343458504164 - ], - [ - 13072668834394870334, - 11175441683787645540, - 3718467031089360132, - 6303569707785751909 - ], - [ - 15139014418351999292, - 13433960894156419831, - 1081036147938149073, - 5537900067858640688 - ], - [ - 16144198516884069513, - 11760722486204114604, - 9080477633162807038, - 14878319203527003921 - ], - [ - 9887232148319546846, - 11280977977331453386, - 1634486104168251049, - 1013174085024142997 - ], - [ - 8774759106642276381, - 17014116512461272516, - 5017632137039687644, - 2879573590247199312 - ], - [ - 8532316813139433929, - 10192336124962558528, - 10208988044571331050, - 7412443809890180963 - ], - [ - 1940771445624788955, - 15990599983917575017, - 12383682653785412359, - 7243892390926482974 - ], - [ - 15783323653576062669, - 7433660384180142428, - 11341821314666985051, - 13908042579613943595 - ], - [ - 6784650697753378650, - 2429262522610065724, - 3770879433095160288, - 6633370836632857456 - ], - [ - 18435367235881428398, - 13152985860267484403, - 17561012172979073263, - 15335033836397886699 - ] + [1125289536020813216, 13893991227523403350, 18221032481002623145, 6999555513372134161], + [14558032258404044879, 15896302942503207712, 4320679543001532335, 16312301655514654219], + [7101986692613628904, 7577883870349313041, 7352728228661094923, 18332380179278822986], + [4857477437658850102, 2600358150758031758, 11245333823831173537, 8338725066623873242], + [7533080307752291488, 7286216489335488511, 18156637335160778785, 7462498443331890731], + [606568432443359176, 8912183283992686330, 17421481837200753913, 17592999343458504164], + [13072668834394870334, 11175441683787645540, 3718467031089360132, 6303569707785751909], + [15139014418351999292, 13433960894156419831, 1081036147938149073, 5537900067858640688], + [16144198516884069513, 11760722486204114604, 9080477633162807038, 14878319203527003921], + [9887232148319546846, 11280977977331453386, 1634486104168251049, 1013174085024142997], + [8774759106642276381, 17014116512461272516, 5017632137039687644, 2879573590247199312], + [8532316813139433929, 10192336124962558528, 10208988044571331050, 7412443809890180963], + [1940771445624788955, 15990599983917575017, 12383682653785412359, 7243892390926482974], + [15783323653576062669, 7433660384180142428, 11341821314666985051, 13908042579613943595], + [6784650697753378650, 2429262522610065724, 3770879433095160288, 6633370836632857456], + [18435367235881428398, 13152985860267484403, 17561012172979073263, 15335033836397886699] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json index 14b20e4f718f..865a75e0b747 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 14038008090973880203, - 7437991399998284269, - 12502661164686015780, - 6154468052477899229 - ], - [ - 4890279821462461425, - 12267605659025997985, - 16220814561210675069, - 14958418982789304352 - ], - [ - 16239014851914932689, - 11626285279514581577, - 7827403995053907198, - 3320808129263057989 - ], - [ - 9987109148114223767, - 16027730699082584407, - 16226544327370131567, - 10505655809748447851 - ], - [ - 2426355028560688438, - 13015409833156179441, - 3357212938175132730, - 9924499217906835800 - ], - [ - 7264556678081366657, - 11014021481903289086, - 1185381295776166890, - 11220095453847753366 - ], - [ - 10738220050569983945, - 2071033793611953608, - 2836853848682426199, - 18280211532291996343 - ], - [ - 4622574899935206725, - 10283505057353003539, - 10924169390994336784, - 9267200805799259741 - ], - [ - 4991426063445236730, - 292198960832094512, - 6370230421874009175, - 2987533577516974457 - ], - [ - 15100014620403370288, - 17064710328307274600, - 13596338039199898149, - 7844302147920229272 - ], - [ - 6997319402399846472, - 5312486909661565204, - 8133503726683094273, - 14376435888676319871 - ], - [ - 16536431163453527335, - 8329243612205528007, - 10332326446350256878, - 6187024786825219302 - ], - [ - 15819705933365601754, - 17218893784817004570, - 7197154299986843671, - 11662127518680895562 - ], - [ - 12757050724806983838, - 14916998582501427105, - 2903621530266216761, - 12948020673936426635 - ], - [ - 14563493065638885359, - 6770003101729110728, - 11839394563403429402, - 1065983546047670743 - ], - [ - 2845847955135199124, - 16066115065717446946, - 4482870472147946913, - 8664518745998140088 - ] + [14038008090973880203, 7437991399998284269, 12502661164686015780, 6154468052477899229], + [4890279821462461425, 12267605659025997985, 16220814561210675069, 14958418982789304352], + [16239014851914932689, 11626285279514581577, 7827403995053907198, 3320808129263057989], + [9987109148114223767, 16027730699082584407, 16226544327370131567, 10505655809748447851], + [2426355028560688438, 13015409833156179441, 3357212938175132730, 9924499217906835800], + [7264556678081366657, 11014021481903289086, 1185381295776166890, 11220095453847753366], + [10738220050569983945, 2071033793611953608, 2836853848682426199, 18280211532291996343], + [4622574899935206725, 10283505057353003539, 10924169390994336784, 9267200805799259741], + [4991426063445236730, 292198960832094512, 6370230421874009175, 2987533577516974457], + [15100014620403370288, 17064710328307274600, 13596338039199898149, 7844302147920229272], + [6997319402399846472, 5312486909661565204, 8133503726683094273, 14376435888676319871], + [16536431163453527335, 8329243612205528007, 10332326446350256878, 6187024786825219302], + [15819705933365601754, 17218893784817004570, 7197154299986843671, 11662127518680895562], + [12757050724806983838, 14916998582501427105, 2903621530266216761, 12948020673936426635], + [14563493065638885359, 6770003101729110728, 11839394563403429402, 1065983546047670743], + [2845847955135199124, 16066115065717446946, 4482870472147946913, 8664518745998140088] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json index 047a79433899..ad9636492afa 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 17762498852322133081, - 12402705633936516386, - 2303979245623416237, - 15492962941180331409 - ], - [ - 1368919680062481249, - 8419725427681044227, - 12407005054982229959, - 9729546646519366060 - ], - [ - 3694696222464991628, - 10691747603876514511, - 5648287760852638838, - 15128008410193030270 - ], - [ - 5647849659158863308, - 16391316755630265342, - 17483459471194878342, - 2382689231083026500 - ], - [ - 414523452897415096, - 14712743039552404085, - 14274376366377496980, - 1540457029378813951 - ], - [ - 6437956396547385520, - 10457280544359552653, - 210288303177892964, - 7009065088863365256 - ], - [ - 6189643588169700860, - 2874522095144611328, - 3459596951253545261, - 14912093041250189548 - ], - [ - 2954035721997683722, - 2628438295425873126, - 9361498414301919378, - 7780135632218518403 - ], - [ - 13376229283479650476, - 13646160168852625209, - 12342809006526169374, - 16140909717103038788 - ], - [ - 14544916717622160085, - 2335857756498039096, - 12834512355397127233, - 8257858357688008275 - ], - [ - 13637749549385428585, - 1568326361689976373, - 14573670474737748882, - 8002611813857126901 - ], - [ - 4981475697544147574, - 7477162419770815721, - 13420952345288491036, - 6849943909220872064 - ], - [ - 5645683284474222575, - 10480504810673180938, - 7038844793157124351, - 10701205261596194736 - ], - [ - 2992787956816905753, - 10666728141278334493, - 4748213040479579674, - 13258093297981567423 - ], - [ - 11477426903799919629, - 24925561182649344, - 11412223773538266154, - 2852175545463505023 - ], - [ - 1060175052523024730, - 6610510112497451814, - 15229121744185849414, - 12773820515972201248 - ] + [17762498852322133081, 12402705633936516386, 2303979245623416237, 15492962941180331409], + [1368919680062481249, 8419725427681044227, 12407005054982229959, 9729546646519366060], + [3694696222464991628, 10691747603876514511, 5648287760852638838, 15128008410193030270], + [5647849659158863308, 16391316755630265342, 17483459471194878342, 2382689231083026500], + [414523452897415096, 14712743039552404085, 14274376366377496980, 1540457029378813951], + [6437956396547385520, 10457280544359552653, 210288303177892964, 7009065088863365256], + [6189643588169700860, 2874522095144611328, 3459596951253545261, 14912093041250189548], + [2954035721997683722, 2628438295425873126, 9361498414301919378, 7780135632218518403], + [13376229283479650476, 13646160168852625209, 12342809006526169374, 16140909717103038788], + [14544916717622160085, 2335857756498039096, 12834512355397127233, 8257858357688008275], + [13637749549385428585, 1568326361689976373, 14573670474737748882, 8002611813857126901], + [4981475697544147574, 7477162419770815721, 13420952345288491036, 6849943909220872064], + [5645683284474222575, 10480504810673180938, 7038844793157124351, 10701205261596194736], + [2992787956816905753, 10666728141278334493, 4748213040479579674, 13258093297981567423], + [11477426903799919629, 24925561182649344, 11412223773538266154, 2852175545463505023], + [1060175052523024730, 6610510112497451814, 15229121744185849414, 12773820515972201248] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json index 9b8c7bca3296..8584987e43fc 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1107277819469948429, - 7779138633457495557, - 9933991506239962590, - 13247997120867942045 - ], - [ - 10020877950065961527, - 6525352303263078852, - 10601857031603992424, - 6699333963081308583 - ], - [ - 8019436446207312706, - 17880026081547931046, - 14023459613581442883, - 12177363081042438182 - ], - [ - 17643512238638359026, - 2759065364120570462, - 1113452962298378930, - 9944550331137276877 - ], - [ - 6208699382898547395, - 9442366708032685349, - 9362620233586526034, - 6406469355002722194 - ], - [ - 17265154700194893264, - 11486849446382907011, - 1331827641678752332, - 13890193454573854721 - ], - [ - 7338198937132638061, - 9619578268260381257, - 16966504852427653624, - 5042032213830518832 - ], - [ - 9998014800451912206, - 2764915420573986646, - 12638108373731502079, - 13849566240043998295 - ], - [ - 18402224478111895268, - 10245397321907314013, - 15810832121998678624, - 16050833323870358750 - ], - [ - 5754119484130347551, - 1334330314055286585, - 1196783225751134982, - 13693638204576454858 - ], - [ - 7476283313073466871, - 3327838189135133206, - 7576584001149251522, - 4746763672176501097 - ], - [ - 8341294580974175099, - 6996214973372400649, - 2825261487886819108, - 17611476352036968111 - ], - [ - 6481216673139681707, - 12834349834818063790, - 14423475559705119809, - 15943814042360079510 - ], - [ - 7771500178827314392, - 5968639878444939173, - 18006309838458312166, - 368714734303788414 - ], - [ - 2137428658614683231, - 4604901863694850124, - 3581156028309568037, - 7485386108131533730 - ], - [ - 1078544443818230878, - 14117476483719501663, - 17985826373971579789, - 10600652728062682193 - ] + [1107277819469948429, 7779138633457495557, 9933991506239962590, 13247997120867942045], + [10020877950065961527, 6525352303263078852, 10601857031603992424, 6699333963081308583], + [8019436446207312706, 17880026081547931046, 14023459613581442883, 12177363081042438182], + [17643512238638359026, 2759065364120570462, 1113452962298378930, 9944550331137276877], + [6208699382898547395, 9442366708032685349, 9362620233586526034, 6406469355002722194], + [17265154700194893264, 11486849446382907011, 1331827641678752332, 13890193454573854721], + [7338198937132638061, 9619578268260381257, 16966504852427653624, 5042032213830518832], + [9998014800451912206, 2764915420573986646, 12638108373731502079, 13849566240043998295], + [18402224478111895268, 10245397321907314013, 15810832121998678624, 16050833323870358750], + [5754119484130347551, 1334330314055286585, 1196783225751134982, 13693638204576454858], + [7476283313073466871, 3327838189135133206, 7576584001149251522, 4746763672176501097], + [8341294580974175099, 6996214973372400649, 2825261487886819108, 17611476352036968111], + [6481216673139681707, 12834349834818063790, 14423475559705119809, 15943814042360079510], + [7771500178827314392, 5968639878444939173, 18006309838458312166, 368714734303788414], + [2137428658614683231, 4604901863694850124, 3581156028309568037, 7485386108131533730], + [1078544443818230878, 14117476483719501663, 17985826373971579789, 10600652728062682193] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json index e32be9870e7b..9bde1915c202 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1107277819469948429, - 7779138633457495557, - 9933991506239962590, - 13247997120867942045 - ], - [ - 10020877950065961527, - 6525352303263078852, - 10601857031603992424, - 6699333963081308583 - ], - [ - 8019436446207312706, - 17880026081547931046, - 14023459613581442883, - 12177363081042438182 - ], - [ - 17643512238638359026, - 2759065364120570462, - 1113452962298378930, - 9944550331137276877 - ], - [ - 6208699382898547395, - 9442366708032685349, - 9362620233586526034, - 6406469355002722194 - ], - [ - 17265154700194893264, - 11486849446382907011, - 1331827641678752332, - 13890193454573854721 - ], - [ - 7338198937132638061, - 9619578268260381257, - 16966504852427653624, - 5042032213830518832 - ], - [ - 9998014800451912206, - 2764915420573986646, - 12638108373731502079, - 13849566240043998295 - ], - [ - 18402224478111895268, - 10245397321907314013, - 15810832121998678624, - 16050833323870358750 - ], - [ - 5754119484130347551, - 1334330314055286585, - 1196783225751134982, - 13693638204576454858 - ], - [ - 7476283313073466871, - 3327838189135133206, - 7576584001149251522, - 4746763672176501097 - ], - [ - 8341294580974175099, - 6996214973372400649, - 2825261487886819108, - 17611476352036968111 - ], - [ - 6481216673139681707, - 12834349834818063790, - 14423475559705119809, - 15943814042360079510 - ], - [ - 7771500178827314392, - 5968639878444939173, - 18006309838458312166, - 368714734303788414 - ], - [ - 2137428658614683231, - 4604901863694850124, - 3581156028309568037, - 7485386108131533730 - ], - [ - 1078544443818230878, - 14117476483719501663, - 17985826373971579789, - 10600652728062682193 - ] + [1107277819469948429, 7779138633457495557, 9933991506239962590, 13247997120867942045], + [10020877950065961527, 6525352303263078852, 10601857031603992424, 6699333963081308583], + [8019436446207312706, 17880026081547931046, 14023459613581442883, 12177363081042438182], + [17643512238638359026, 2759065364120570462, 1113452962298378930, 9944550331137276877], + [6208699382898547395, 9442366708032685349, 9362620233586526034, 6406469355002722194], + [17265154700194893264, 11486849446382907011, 1331827641678752332, 13890193454573854721], + [7338198937132638061, 9619578268260381257, 16966504852427653624, 5042032213830518832], + [9998014800451912206, 2764915420573986646, 12638108373731502079, 13849566240043998295], + [18402224478111895268, 10245397321907314013, 15810832121998678624, 16050833323870358750], + [5754119484130347551, 1334330314055286585, 1196783225751134982, 13693638204576454858], + [7476283313073466871, 3327838189135133206, 7576584001149251522, 4746763672176501097], + [8341294580974175099, 6996214973372400649, 2825261487886819108, 17611476352036968111], + [6481216673139681707, 12834349834818063790, 14423475559705119809, 15943814042360079510], + [7771500178827314392, 5968639878444939173, 18006309838458312166, 368714734303788414], + [2137428658614683231, 4604901863694850124, 3581156028309568037, 7485386108131533730], + [1078544443818230878, 14117476483719501663, 17985826373971579789, 10600652728062682193] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json index 9457eb00fb97..31ac2757183a 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 18238935086181014750, - 12673103801320172126, - 1807450351340584945, - 4080587540382410469 - ], - [ - 3576906271507691924, - 15842010882262104289, - 1545568012269070598, - 15019610257262428212 - ], - [ - 16552529329663272195, - 70143638148036568, - 9441616425189858949, - 12576239326961652577 - ], - [ - 13378751877668829423, - 8821335076667849619, - 8787507195664458069, - 8033428383364368883 - ], - [ - 14859204728026468678, - 67528639960702832, - 12174200483518178527, - 14324674266854914755 - ], - [ - 9830165552717527013, - 2321461270838214863, - 9268724714979319202, - 9904762657753448069 - ], - [ - 14141058045407997705, - 17031147612244105327, - 12751542125666982456, - 17817764425153554681 - ], - [ - 14795807291665277125, - 12320949525745092193, - 5617160704961099, - 16219204181913320518 - ], - [ - 7773282231989156729, - 13990108174498859083, - 6307778800331536092, - 5637115465294994933 - ], - [ - 3720582507396745477, - 12235229471532413465, - 2832424082557414313, - 1295093033129086530 - ], - [ - 5238251184464937674, - 2468597264523797445, - 7200015202778095391, - 6285172799678453354 - ], - [ - 14592230848145258634, - 14635944054407782259, - 16328656124118469880, - 5673837317773168465 - ], - [ - 10220932976054066577, - 587071736468910470, - 18317195354162201630, - 4442910666147223606 - ], - [ - 6686416988414600368, - 14769819815353713716, - 7130058524252605584, - 9117426323287817862 - ], - [ - 9696785136959918927, - 10735699192129851744, - 4483660550392452518, - 16920055661791281465 - ], - [ - 6465118959707729559, - 15053655525644243783, - 11077790678846863387, - 377514359817848250 - ] + [18238935086181014750, 12673103801320172126, 1807450351340584945, 4080587540382410469], + [3576906271507691924, 15842010882262104289, 1545568012269070598, 15019610257262428212], + [16552529329663272195, 70143638148036568, 9441616425189858949, 12576239326961652577], + [13378751877668829423, 8821335076667849619, 8787507195664458069, 8033428383364368883], + [14859204728026468678, 67528639960702832, 12174200483518178527, 14324674266854914755], + [9830165552717527013, 2321461270838214863, 9268724714979319202, 9904762657753448069], + [14141058045407997705, 17031147612244105327, 12751542125666982456, 17817764425153554681], + [14795807291665277125, 12320949525745092193, 5617160704961099, 16219204181913320518], + [7773282231989156729, 13990108174498859083, 6307778800331536092, 5637115465294994933], + [3720582507396745477, 12235229471532413465, 2832424082557414313, 1295093033129086530], + [5238251184464937674, 2468597264523797445, 7200015202778095391, 6285172799678453354], + [14592230848145258634, 14635944054407782259, 16328656124118469880, 5673837317773168465], + [10220932976054066577, 587071736468910470, 18317195354162201630, 4442910666147223606], + [6686416988414600368, 14769819815353713716, 7130058524252605584, 9117426323287817862], + [9696785136959918927, 10735699192129851744, 4483660550392452518, 16920055661791281465], + [6465118959707729559, 15053655525644243783, 11077790678846863387, 377514359817848250] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json index 228a0e9fe926..60aaf6b4cb55 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [ - 0, - 993345 - ], - [ - 1, - 993345 - ], - [ - 2, - 993345 - ], - [ - 3, - 993345 - ] + [0, 993345], + [1, 993345], + [2, 993345], + [3, 993345] ], "extra_constant_polys_for_selectors": 4, - "table_ids_column_idxes": [ - 8 - ], + "table_ids_column_idxes": [8], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -169,102 +155,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 5188923951567823784, - 1839604164061896861, - 3760614143058722712, - 17614504340708244503 - ], - [ - 7889899638667026800, - 14244435798393850379, - 15230145556400915502, - 12762495992738055897 - ], - [ - 1590798346328722678, - 14143092007536417439, - 10480901561038728792, - 3201431705395147463 - ], - [ - 2780378477031897976, - 11901528146276690135, - 1343277030558816196, - 6658753207411088573 - ], - [ - 11039463659901501365, - 8235548863391687887, - 1033553352576624721, - 12882010447949399432 - ], - [ - 18078277235848158043, - 14794319235551634496, - 13982848369540832169, - 11146980369941489422 - ], - [ - 5423143341883663864, - 15258729611778297770, - 7733187200367671156, - 11434904591161598775 - ], - [ - 10914070908442174902, - 8055525792807466851, - 14391942428843610452, - 11749906933466154458 - ], - [ - 14580351359387308464, - 13254290427053014332, - 7257863927775762043, - 11078203905320069045 - ], - [ - 6123238811378029441, - 11756658038961859601, - 760000874907607862, - 678236515728235822 - ], - [ - 15657816790157674514, - 4104741954972330508, - 4150394799973679527, - 15124992265078810298 - ], - [ - 13825567788010925982, - 636544017935987097, - 2260460249587621344, - 10354042489703999934 - ], - [ - 12710868603685796297, - 91862114057079406, - 5614554900380483346, - 131393259919990755 - ], - [ - 13185811107579017595, - 1006028503100864020, - 2087984259170414019, - 6445764843889735797 - ], - [ - 10414938568348349467, - 15415934042755645234, - 11692038010863343064, - 2402843492027871760 - ], - [ - 17752536940710015241, - 14329244239886245722, - 16349180633511906354, - 2663305413222761702 - ] + [5188923951567823784, 1839604164061896861, 3760614143058722712, 17614504340708244503], + [7889899638667026800, 14244435798393850379, 15230145556400915502, 12762495992738055897], + [1590798346328722678, 14143092007536417439, 10480901561038728792, 3201431705395147463], + [2780378477031897976, 11901528146276690135, 1343277030558816196, 6658753207411088573], + [11039463659901501365, 8235548863391687887, 1033553352576624721, 12882010447949399432], + [18078277235848158043, 14794319235551634496, 13982848369540832169, 11146980369941489422], + [5423143341883663864, 15258729611778297770, 7733187200367671156, 11434904591161598775], + [10914070908442174902, 8055525792807466851, 14391942428843610452, 11749906933466154458], + [14580351359387308464, 13254290427053014332, 7257863927775762043, 11078203905320069045], + [6123238811378029441, 11756658038961859601, 760000874907607862, 678236515728235822], + [15657816790157674514, 4104741954972330508, 4150394799973679527, 15124992265078810298], + [13825567788010925982, 636544017935987097, 2260460249587621344, 10354042489703999934], + [12710868603685796297, 91862114057079406, 5614554900380483346, 131393259919990755], + [13185811107579017595, 1006028503100864020, 2087984259170414019, 6445764843889735797], + [10414938568348349467, 15415934042755645234, 11692038010863343064, 2402843492027871760], + [17752536940710015241, 14329244239886245722, 16349180633511906354, 2663305413222761702] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json index 7865e106454e..898044175ed2 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 16110944391299715992, - 6257581196984129533, - 3238325178821009741, - 2344850491864189019 - ], - [ - 9070724167014080545, - 4270936005334206500, - 14011092173278602876, - 17233390044312666340 - ], - [ - 15882294806312417165, - 4574813182503183418, - 15374759504522847393, - 12609068726586761599 - ], - [ - 5081359810005150600, - 3073725930902770385, - 12151383627606620216, - 1678712612408922293 - ], - [ - 13389075440637154488, - 1394733244174774927, - 15897027408886080730, - 8756205416909346149 - ], - [ - 9635595243774498130, - 12944626865667316474, - 11443383015868895087, - 11271399114434241688 - ], - [ - 15730316965377191644, - 9302195093067483199, - 13013113029527355010, - 16107136888029757437 - ], - [ - 4376996761649023946, - 5151155327098069058, - 5052643273518683586, - 4214154406154441301 - ], - [ - 14323780220991293990, - 8193587898306996901, - 5671887774622993207, - 9546628649033002185 - ], - [ - 16523271232278987128, - 994857983084927437, - 14501829109938165419, - 9015660151307809950 - ], - [ - 1530238726285436995, - 6261885523422263637, - 11940153058268689285, - 15737357444014615384 - ], - [ - 2670341602838046451, - 10669331667080282584, - 16656965855764533819, - 13339778044433609883 - ], - [ - 17128805815986618686, - 18194734266790270296, - 5735422502154213482, - 10164141197176685232 - ], - [ - 2629176720116777217, - 6966722226648521547, - 2937669813272776408, - 2812827195714811672 - ], - [ - 6178870790111010071, - 10834984121929556338, - 2836091052290008872, - 1311164878771236983 - ], - [ - 7411275786539821863, - 3702190765468277039, - 18130480549896087952, - 5277641488054089382 - ] + [16110944391299715992, 6257581196984129533, 3238325178821009741, 2344850491864189019], + [9070724167014080545, 4270936005334206500, 14011092173278602876, 17233390044312666340], + [15882294806312417165, 4574813182503183418, 15374759504522847393, 12609068726586761599], + [5081359810005150600, 3073725930902770385, 12151383627606620216, 1678712612408922293], + [13389075440637154488, 1394733244174774927, 15897027408886080730, 8756205416909346149], + [9635595243774498130, 12944626865667316474, 11443383015868895087, 11271399114434241688], + [15730316965377191644, 9302195093067483199, 13013113029527355010, 16107136888029757437], + [4376996761649023946, 5151155327098069058, 5052643273518683586, 4214154406154441301], + [14323780220991293990, 8193587898306996901, 5671887774622993207, 9546628649033002185], + [16523271232278987128, 994857983084927437, 14501829109938165419, 9015660151307809950], + [1530238726285436995, 6261885523422263637, 11940153058268689285, 15737357444014615384], + [2670341602838046451, 10669331667080282584, 16656965855764533819, 13339778044433609883], + [17128805815986618686, 18194734266790270296, 5735422502154213482, 10164141197176685232], + [2629176720116777217, 6966722226648521547, 2937669813272776408, 2812827195714811672], + [6178870790111010071, 10834984121929556338, 2836091052290008872, 1311164878771236983], + [7411275786539821863, 3702190765468277039, 18130480549896087952, 5277641488054089382] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json index d117b3b0ade3..9952afac334f 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 2692117301910616223, - 11862373594405581684, - 12092750955553531256, - 5108545912057877223 - ], - [ - 13191057082261271313, - 13461898869001565340, - 3144977546711926190, - 12887787173850649640 - ], - [ - 8723842528870621436, - 9645915571392535116, - 6025366220407814286, - 4747467989456698429 - ], - [ - 7405718287975487752, - 15471426320802247554, - 8018397484818843188, - 1076292840128333912 - ], - [ - 15567092204640112640, - 13512378722158897717, - 16839350703341635379, - 6580006701757635256 - ], - [ - 478392572686859273, - 1879898158113218624, - 7956515309033309445, - 15667184770862761054 - ], - [ - 4738701842169478640, - 14432395387726327998, - 14827473518830139511, - 7026071202596813302 - ], - [ - 1832914181581899534, - 12309614119776336180, - 1786307750405330285, - 9394109377731731297 - ], - [ - 11330017822804908986, - 17965075245400465236, - 178921019209832245, - 9010774195056378656 - ], - [ - 10066603459136751242, - 16922354046552351580, - 1488715132336554574, - 2488902959064634539 - ], - [ - 12764025501053651238, - 10583029583148326399, - 10919956138611547307, - 193732647159610859 - ], - [ - 10812330075474661907, - 11023893070918609227, - 14153054852108697346, - 3310659191720741717 - ], - [ - 12566885554555589997, - 5264949142237538963, - 10357889278039077105, - 1693879812388879198 - ], - [ - 5143074524340781416, - 1340176837904332618, - 12593249647365922721, - 16619880365401544994 - ], - [ - 8116207797925146203, - 2436416957055038167, - 1598938366845903588, - 7153648406343743028 - ], - [ - 14400322751382246405, - 4576201222988375875, - 10482138496908129257, - 1696076921104575474 - ] + [2692117301910616223, 11862373594405581684, 12092750955553531256, 5108545912057877223], + [13191057082261271313, 13461898869001565340, 3144977546711926190, 12887787173850649640], + [8723842528870621436, 9645915571392535116, 6025366220407814286, 4747467989456698429], + [7405718287975487752, 15471426320802247554, 8018397484818843188, 1076292840128333912], + [15567092204640112640, 13512378722158897717, 16839350703341635379, 6580006701757635256], + [478392572686859273, 1879898158113218624, 7956515309033309445, 15667184770862761054], + [4738701842169478640, 14432395387726327998, 14827473518830139511, 7026071202596813302], + [1832914181581899534, 12309614119776336180, 1786307750405330285, 9394109377731731297], + [11330017822804908986, 17965075245400465236, 178921019209832245, 9010774195056378656], + [10066603459136751242, 16922354046552351580, 1488715132336554574, 2488902959064634539], + [12764025501053651238, 10583029583148326399, 10919956138611547307, 193732647159610859], + [10812330075474661907, 11023893070918609227, 14153054852108697346, 3310659191720741717], + [12566885554555589997, 5264949142237538963, 10357889278039077105, 1693879812388879198], + [5143074524340781416, 1340176837904332618, 12593249647365922721, 16619880365401544994], + [8116207797925146203, 2436416957055038167, 1598938366845903588, 7153648406343743028], + [14400322751382246405, 4576201222988375875, 10482138496908129257, 1696076921104575474] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json index e8b25fd5f245..acdefe7d1ae3 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1866437491015022712, - 11793636374252065717, - 2771461065434523690, - 14888818750197177871 - ], - [ - 13530099303626962147, - 15053516955824087922, - 12339234049539021204, - 9708862473063699060 - ], - [ - 11432132052297230557, - 6677170992284491097, - 6366885341898621463, - 8111143143511568092 - ], - [ - 9907106152447520228, - 6682147062594018467, - 10264912494418416112, - 15503628246857005809 - ], - [ - 17195185271365515391, - 13597952072744597251, - 17744684609835730837, - 2231158103010709548 - ], - [ - 14293262369681823328, - 13130511952565359928, - 10899311746723421149, - 13247944667340766269 - ], - [ - 13892335977334728116, - 8911034200951442707, - 9940381085909975496, - 2442123831058139778 - ], - [ - 6225220793196790211, - 4712637343981148404, - 17195066106455293379, - 8613492331172308471 - ], - [ - 6909799331954538355, - 10338179227896084459, - 12127192147500716446, - 17400998769923799388 - ], - [ - 16539422822493187900, - 14101588151214983695, - 13891327598256492007, - 6120137922715167439 - ], - [ - 14993757510795074537, - 2243361897978774751, - 3014175478852553185, - 1107614745766341650 - ], - [ - 13868198230244075748, - 14568344587632252919, - 18167720887640456957, - 892660889500481924 - ], - [ - 17208474456800792292, - 12638116024924785718, - 17972572249167165358, - 14432332670537563027 - ], - [ - 16794312278798106244, - 18025850455584262724, - 9034611355178459632, - 4812066730993316535 - ], - [ - 9019282623207016172, - 8465996543066345624, - 11891692540217379621, - 1309821012694343566 - ], - [ - 1009066940610956673, - 6090643896458703235, - 16512441752812232072, - 14910610346758346291 - ] + [1866437491015022712, 11793636374252065717, 2771461065434523690, 14888818750197177871], + [13530099303626962147, 15053516955824087922, 12339234049539021204, 9708862473063699060], + [11432132052297230557, 6677170992284491097, 6366885341898621463, 8111143143511568092], + [9907106152447520228, 6682147062594018467, 10264912494418416112, 15503628246857005809], + [17195185271365515391, 13597952072744597251, 17744684609835730837, 2231158103010709548], + [14293262369681823328, 13130511952565359928, 10899311746723421149, 13247944667340766269], + [13892335977334728116, 8911034200951442707, 9940381085909975496, 2442123831058139778], + [6225220793196790211, 4712637343981148404, 17195066106455293379, 8613492331172308471], + [6909799331954538355, 10338179227896084459, 12127192147500716446, 17400998769923799388], + [16539422822493187900, 14101588151214983695, 13891327598256492007, 6120137922715167439], + [14993757510795074537, 2243361897978774751, 3014175478852553185, 1107614745766341650], + [13868198230244075748, 14568344587632252919, 18167720887640456957, 892660889500481924], + [17208474456800792292, 12638116024924785718, 17972572249167165358, 14432332670537563027], + [16794312278798106244, 18025850455584262724, 9034611355178459632, 4812066730993316535], + [9019282623207016172, 8465996543066345624, 11891692540217379621, 1309821012694343566], + [1009066940610956673, 6090643896458703235, 16512441752812232072, 14910610346758346291] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json index eb327eed3dd1..a99ed59cff3b 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 232279302667736671, - 6726532338542220941, - 13706010138770265797, - 519282525097925002 - ], - [ - 1103871324670382881, - 2908131767596043522, - 1184743003960864148, - 15387210180491180588 - ], - [ - 1835139914361735684, - 16415559350382398669, - 5395927063819619365, - 11718217787759145490 - ], - [ - 16896753956696589678, - 18311507677904418762, - 3337753834358040142, - 15261701009883534681 - ], - [ - 5146023192165443108, - 6435094416669057886, - 12102399260358768173, - 11345203084302025912 - ], - [ - 12317726061088124860, - 16542505080079874955, - 14545249352878185130, - 6198318878248226108 - ], - [ - 11741052063217712776, - 6746988457930817443, - 17049940702304400525, - 664483646520961959 - ], - [ - 16848268934698055336, - 15351522766275089309, - 3303427044017225869, - 8449387423137144953 - ], - [ - 3539943683510232958, - 9977830546935578537, - 14361154867928067261, - 18078907485257653963 - ], - [ - 9615907517852235498, - 4547984845394069068, - 1881087510325623488, - 8387507487023822878 - ], - [ - 4914791735672339571, - 2927646189877435594, - 8101987065768319522, - 11220909861720631116 - ], - [ - 12470368453784044761, - 11566657313839792570, - 8916441472890022081, - 2460153038592468216 - ], - [ - 11111897832305454757, - 16681613892385931738, - 11167212997482997212, - 12907774125001975406 - ], - [ - 12356110082580425887, - 2082693370541797346, - 6346996203748293162, - 13460912313801928 - ], - [ - 17583700199336254135, - 3213348565987316027, - 6373106379194368913, - 3269747122288195701 - ], - [ - 6235590918094214281, - 6461943464583505547, - 16473683422501694355, - 5297565830886346313 - ] + [232279302667736671, 6726532338542220941, 13706010138770265797, 519282525097925002], + [1103871324670382881, 2908131767596043522, 1184743003960864148, 15387210180491180588], + [1835139914361735684, 16415559350382398669, 5395927063819619365, 11718217787759145490], + [16896753956696589678, 18311507677904418762, 3337753834358040142, 15261701009883534681], + [5146023192165443108, 6435094416669057886, 12102399260358768173, 11345203084302025912], + [12317726061088124860, 16542505080079874955, 14545249352878185130, 6198318878248226108], + [11741052063217712776, 6746988457930817443, 17049940702304400525, 664483646520961959], + [16848268934698055336, 15351522766275089309, 3303427044017225869, 8449387423137144953], + [3539943683510232958, 9977830546935578537, 14361154867928067261, 18078907485257653963], + [9615907517852235498, 4547984845394069068, 1881087510325623488, 8387507487023822878], + [4914791735672339571, 2927646189877435594, 8101987065768319522, 11220909861720631116], + [12470368453784044761, 11566657313839792570, 8916441472890022081, 2460153038592468216], + [11111897832305454757, 16681613892385931738, 11167212997482997212, 12907774125001975406], + [12356110082580425887, 2082693370541797346, 6346996203748293162, 13460912313801928], + [17583700199336254135, 3213348565987316027, 6373106379194368913, 3269747122288195701], + [6235590918094214281, 6461943464583505547, 16473683422501694355, 5297565830886346313] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json index fcfc585f123a..ef04a6dabffc 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1255474782692205032, - 16087518293005221749, - 16120433120690725791, - 13557959444835590881 - ], - [ - 16027822192018731390, - 8319846902607826113, - 11762447400221114192, - 8443748859905122045 - ], - [ - 14217444156040642299, - 11667925428120549150, - 8770581120601633705, - 13711220870168951809 - ], - [ - 7514565357525361228, - 17561543150251615679, - 3154909983341532730, - 12214081580202496570 - ], - [ - 12103863316007597160, - 3323941154151772169, - 3020605753288032659, - 13719536383629040140 - ], - [ - 5692457694309768505, - 2819674835255412986, - 762859630950656893, - 8641902833919071345 - ], - [ - 17873529730032253633, - 7201386304292118615, - 11501182428688354869, - 484571398574807569 - ], - [ - 14885817894337856307, - 6275077850611154396, - 11258872656630844770, - 3539429443980133849 - ], - [ - 15063387858351738900, - 4885324227361507661, - 11843813664335157415, - 12108718617943024927 - ], - [ - 5899829642851923448, - 12815217964596374101, - 5258792099613493578, - 3492836714462054208 - ], - [ - 9767772893712446038, - 9516937526725710003, - 533138889369363889, - 1960629141548643757 - ], - [ - 5192250756718034923, - 6205844331296290914, - 16547640844499692480, - 13348222714661177711 - ], - [ - 6744522815256114347, - 9303892902465539007, - 14440545534790765924, - 7421221195917428336 - ], - [ - 354635080958416363, - 15720855927808633651, - 885375182959288083, - 10459197185009191208 - ], - [ - 3742508711441291317, - 7193882150736289342, - 17760334643806787982, - 8575009527221694930 - ], - [ - 18274184058397159114, - 5200115837479315537, - 2808181877606937346, - 17946239285125192080 - ] + [1255474782692205032, 16087518293005221749, 16120433120690725791, 13557959444835590881], + [16027822192018731390, 8319846902607826113, 11762447400221114192, 8443748859905122045], + [14217444156040642299, 11667925428120549150, 8770581120601633705, 13711220870168951809], + [7514565357525361228, 17561543150251615679, 3154909983341532730, 12214081580202496570], + [12103863316007597160, 3323941154151772169, 3020605753288032659, 13719536383629040140], + [5692457694309768505, 2819674835255412986, 762859630950656893, 8641902833919071345], + [17873529730032253633, 7201386304292118615, 11501182428688354869, 484571398574807569], + [14885817894337856307, 6275077850611154396, 11258872656630844770, 3539429443980133849], + [15063387858351738900, 4885324227361507661, 11843813664335157415, 12108718617943024927], + [5899829642851923448, 12815217964596374101, 5258792099613493578, 3492836714462054208], + [9767772893712446038, 9516937526725710003, 533138889369363889, 1960629141548643757], + [5192250756718034923, 6205844331296290914, 16547640844499692480, 13348222714661177711], + [6744522815256114347, 9303892902465539007, 14440545534790765924, 7421221195917428336], + [354635080958416363, 15720855927808633651, 885375182959288083, 10459197185009191208], + [3742508711441291317, 7193882150736289342, 17760334643806787982, 8575009527221694930], + [18274184058397159114, 5200115837479315537, 2808181877606937346, 17946239285125192080] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json index 1ab34e32a4f7..5998d88228ba 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 15278222994235313807, - 4647505541828109982, - 11601404244072907522, - 7495301362149670205 - ], - [ - 2294446454282967643, - 10852196555067806436, - 4676542110718751671, - 3650676510146080911 - ], - [ - 10036426682390389619, - 15410534417517518379, - 411748073143090898, - 1725429274294449186 - ], - [ - 10773139363930294963, - 14784009814759595952, - 4523828744129500622, - 14635565308295099932 - ], - [ - 11532260655451503527, - 2889442075290561580, - 7947536971337998641, - 9006850837384135593 - ], - [ - 18268520902352688907, - 17460815273130161567, - 5448683527846534560, - 16860223759333541117 - ], - [ - 8586752129609394016, - 17056726335999361043, - 13247832408825538184, - 10865075704067323346 - ], - [ - 4810539255563012829, - 3494541358111189199, - 7443746985302784339, - 1488118652209005646 - ], - [ - 13632843557374648899, - 11530787504038845899, - 8016420701220086345, - 2100494706314940875 - ], - [ - 12565007434827640436, - 2122488373912552994, - 7924677296826511433, - 4337201927455963919 - ], - [ - 9121346173552113908, - 8257616625819727572, - 1352571964050839537, - 1245015447612032209 - ], - [ - 5550331618999138407, - 15197131088442812142, - 17401528975137618793, - 7876503578710888777 - ], - [ - 10581471072917622415, - 11057977535360446233, - 4745650017347491925, - 16374614618217057484 - ], - [ - 15877663159259953297, - 13196700387970223678, - 987069829507588466, - 1239752961099076877 - ], - [ - 1564056242532596441, - 8225585740585112689, - 8013357208824893542, - 8291061420556283364 - ], - [ - 10408011788640723232, - 11035192730597666502, - 7808927156371652130, - 8373070655798680509 - ] + [15278222994235313807, 4647505541828109982, 11601404244072907522, 7495301362149670205], + [2294446454282967643, 10852196555067806436, 4676542110718751671, 3650676510146080911], + [10036426682390389619, 15410534417517518379, 411748073143090898, 1725429274294449186], + [10773139363930294963, 14784009814759595952, 4523828744129500622, 14635565308295099932], + [11532260655451503527, 2889442075290561580, 7947536971337998641, 9006850837384135593], + [18268520902352688907, 17460815273130161567, 5448683527846534560, 16860223759333541117], + [8586752129609394016, 17056726335999361043, 13247832408825538184, 10865075704067323346], + [4810539255563012829, 3494541358111189199, 7443746985302784339, 1488118652209005646], + [13632843557374648899, 11530787504038845899, 8016420701220086345, 2100494706314940875], + [12565007434827640436, 2122488373912552994, 7924677296826511433, 4337201927455963919], + [9121346173552113908, 8257616625819727572, 1352571964050839537, 1245015447612032209], + [5550331618999138407, 15197131088442812142, 17401528975137618793, 7876503578710888777], + [10581471072917622415, 11057977535360446233, 4745650017347491925, 16374614618217057484], + [15877663159259953297, 13196700387970223678, 987069829507588466, 1239752961099076877], + [1564056242532596441, 8225585740585112689, 8013357208824893542, 8291061420556283364], + [10408011788640723232, 11035192730597666502, 7808927156371652130, 8373070655798680509] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json index 53184d3b764a..51ed882ef0e9 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 6606882135817124908, - 870347107746733688, - 12589677233751162485, - 589161009871845644 - ], - [ - 2653237880188520795, - 5593713591941028430, - 14924807074602279493, - 7403178895756596709 - ], - [ - 4770385125899202728, - 16848765286027915692, - 7130735721393145418, - 13542558858028383026 - ], - [ - 10198382868561538358, - 11182212222601267089, - 2158487448188796066, - 7515784380092212678 - ], - [ - 18043800703311929788, - 12605295159363639520, - 16963777812872271598, - 13934310487890398001 - ], - [ - 17306728193061605292, - 6162556196186301425, - 15123250614620584121, - 7156136428077702076 - ], - [ - 3239169487219227705, - 4415189033224694015, - 10092040104298268727, - 3953865385297495928 - ], - [ - 13842490303827572248, - 8581552410557417158, - 6306820342544224802, - 1525290694317383658 - ], - [ - 16571790197298227277, - 273370441868121439, - 7446891486292543124, - 5407600836394474442 - ], - [ - 11518012136298307119, - 15035338047379067034, - 11014561672957925556, - 9225054298465248935 - ], - [ - 11950255612043468638, - 10166628395020495040, - 5673010277307553197, - 3641423295115612757 - ], - [ - 1072894636907573868, - 10523520096472094653, - 4897453347544558657, - 3772162500249343132 - ], - [ - 17527297802619704973, - 16260964196666506939, - 7653109999731571152, - 15253570761269944834 - ], - [ - 16258769312952303884, - 7720171109291562352, - 11124452352545828178, - 16830247676911180779 - ], - [ - 5288712429506529884, - 13145012711898589816, - 11490757447230521395, - 5486824582454772190 - ], - [ - 16641639521175638360, - 5677946044429642761, - 12635856058275795326, - 12340020456497165526 - ] + [6606882135817124908, 870347107746733688, 12589677233751162485, 589161009871845644], + [2653237880188520795, 5593713591941028430, 14924807074602279493, 7403178895756596709], + [4770385125899202728, 16848765286027915692, 7130735721393145418, 13542558858028383026], + [10198382868561538358, 11182212222601267089, 2158487448188796066, 7515784380092212678], + [18043800703311929788, 12605295159363639520, 16963777812872271598, 13934310487890398001], + [17306728193061605292, 6162556196186301425, 15123250614620584121, 7156136428077702076], + [3239169487219227705, 4415189033224694015, 10092040104298268727, 3953865385297495928], + [13842490303827572248, 8581552410557417158, 6306820342544224802, 1525290694317383658], + [16571790197298227277, 273370441868121439, 7446891486292543124, 5407600836394474442], + [11518012136298307119, 15035338047379067034, 11014561672957925556, 9225054298465248935], + [11950255612043468638, 10166628395020495040, 5673010277307553197, 3641423295115612757], + [1072894636907573868, 10523520096472094653, 4897453347544558657, 3772162500249343132], + [17527297802619704973, 16260964196666506939, 7653109999731571152, 15253570761269944834], + [16258769312952303884, 7720171109291562352, 11124452352545828178, 16830247676911180779], + [5288712429506529884, 13145012711898589816, 11490757447230521395, 5486824582454772190], + [16641639521175638360, 5677946044429642761, 12635856058275795326, 12340020456497165526] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json index 88a48a0bf911..6e25abdddcbc 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 1966688024276265163, - 1600999376577297955, - 9979283765343242481, - 10853158383047279373 - ], - [ - 9617115799973676416, - 1436692352837490106, - 16621229234254045212, - 17649471158808930813 - ], - [ - 10598997254576197179, - 6191890180530301291, - 485325547092687385, - 17866822217569560015 - ], - [ - 17529069959174406385, - 1822730242748867421, - 10607268541276403219, - 10369730414641253572 - ], - [ - 9559948904275293033, - 271393452476373483, - 10294727560225979037, - 13356808215545342022 - ], - [ - 3330505141292591439, - 14604912162246460234, - 13747490798131143365, - 9686392462153294316 - ], - [ - 1308334442155460802, - 8411248012498029090, - 1727122243552046217, - 1891983150748887801 - ], - [ - 13628794098518472387, - 9775581327398472118, - 10952798350389999267, - 3791915693702783252 - ], - [ - 5150729729317744106, - 15268081752408833175, - 11313693800895322733, - 7645258866415024451 - ], - [ - 4492405884498997751, - 1462600329700613046, - 4494587633368393420, - 13835293745083269390 - ], - [ - 16786735218378765255, - 13489016634632055711, - 780880140016370703, - 1632417931049291348 - ], - [ - 15419598237747857050, - 17379853454459968259, - 1377883698753277247, - 17090368996477921986 - ], - [ - 5453156352466670830, - 7921752778252981104, - 15901693682958424795, - 7759079127470880643 - ], - [ - 13945928657949258565, - 10630556046992331796, - 5947903586431352857, - 13970701039664769056 - ], - [ - 11402992940883704805, - 14254801701412570920, - 16823021910688666954, - 16435058721419375579 - ], - [ - 1434897606543124534, - 7242596307416400095, - 1722748060955112357, - 1262887759339605102 - ] + [1966688024276265163, 1600999376577297955, 9979283765343242481, 10853158383047279373], + [9617115799973676416, 1436692352837490106, 16621229234254045212, 17649471158808930813], + [10598997254576197179, 6191890180530301291, 485325547092687385, 17866822217569560015], + [17529069959174406385, 1822730242748867421, 10607268541276403219, 10369730414641253572], + [9559948904275293033, 271393452476373483, 10294727560225979037, 13356808215545342022], + [3330505141292591439, 14604912162246460234, 13747490798131143365, 9686392462153294316], + [1308334442155460802, 8411248012498029090, 1727122243552046217, 1891983150748887801], + [13628794098518472387, 9775581327398472118, 10952798350389999267, 3791915693702783252], + [5150729729317744106, 15268081752408833175, 11313693800895322733, 7645258866415024451], + [4492405884498997751, 1462600329700613046, 4494587633368393420, 13835293745083269390], + [16786735218378765255, 13489016634632055711, 780880140016370703, 1632417931049291348], + [15419598237747857050, 17379853454459968259, 1377883698753277247, 17090368996477921986], + [5453156352466670830, 7921752778252981104, 15901693682958424795, 7759079127470880643], + [13945928657949258565, 10630556046992331796, 5947903586431352857, 13970701039664769056], + [11402992940883704805, 14254801701412570920, 16823021910688666954, 16435058721419375579], + [1434897606543124534, 7242596307416400095, 1722748060955112357, 1262887759339605102] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json index 7865e106454e..898044175ed2 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json @@ -11,22 +11,10 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [ - 0, - 0 - ], - [ - 1, - 0 - ], - [ - 2, - 0 - ], - [ - 3, - 0 - ] + [0, 0], + [1, 0], + [2, 0], + [3, 0] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -161,102 +149,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 16110944391299715992, - 6257581196984129533, - 3238325178821009741, - 2344850491864189019 - ], - [ - 9070724167014080545, - 4270936005334206500, - 14011092173278602876, - 17233390044312666340 - ], - [ - 15882294806312417165, - 4574813182503183418, - 15374759504522847393, - 12609068726586761599 - ], - [ - 5081359810005150600, - 3073725930902770385, - 12151383627606620216, - 1678712612408922293 - ], - [ - 13389075440637154488, - 1394733244174774927, - 15897027408886080730, - 8756205416909346149 - ], - [ - 9635595243774498130, - 12944626865667316474, - 11443383015868895087, - 11271399114434241688 - ], - [ - 15730316965377191644, - 9302195093067483199, - 13013113029527355010, - 16107136888029757437 - ], - [ - 4376996761649023946, - 5151155327098069058, - 5052643273518683586, - 4214154406154441301 - ], - [ - 14323780220991293990, - 8193587898306996901, - 5671887774622993207, - 9546628649033002185 - ], - [ - 16523271232278987128, - 994857983084927437, - 14501829109938165419, - 9015660151307809950 - ], - [ - 1530238726285436995, - 6261885523422263637, - 11940153058268689285, - 15737357444014615384 - ], - [ - 2670341602838046451, - 10669331667080282584, - 16656965855764533819, - 13339778044433609883 - ], - [ - 17128805815986618686, - 18194734266790270296, - 5735422502154213482, - 10164141197176685232 - ], - [ - 2629176720116777217, - 6966722226648521547, - 2937669813272776408, - 2812827195714811672 - ], - [ - 6178870790111010071, - 10834984121929556338, - 2836091052290008872, - 1311164878771236983 - ], - [ - 7411275786539821863, - 3702190765468277039, - 18130480549896087952, - 5277641488054089382 - ] + [16110944391299715992, 6257581196984129533, 3238325178821009741, 2344850491864189019], + [9070724167014080545, 4270936005334206500, 14011092173278602876, 17233390044312666340], + [15882294806312417165, 4574813182503183418, 15374759504522847393, 12609068726586761599], + [5081359810005150600, 3073725930902770385, 12151383627606620216, 1678712612408922293], + [13389075440637154488, 1394733244174774927, 15897027408886080730, 8756205416909346149], + [9635595243774498130, 12944626865667316474, 11443383015868895087, 11271399114434241688], + [15730316965377191644, 9302195093067483199, 13013113029527355010, 16107136888029757437], + [4376996761649023946, 5151155327098069058, 5052643273518683586, 4214154406154441301], + [14323780220991293990, 8193587898306996901, 5671887774622993207, 9546628649033002185], + [16523271232278987128, 994857983084927437, 14501829109938165419, 9015660151307809950], + [1530238726285436995, 6261885523422263637, 11940153058268689285, 15737357444014615384], + [2670341602838046451, 10669331667080282584, 16656965855764533819, 13339778044433609883], + [17128805815986618686, 18194734266790270296, 5735422502154213482, 10164141197176685232], + [2629176720116777217, 6966722226648521547, 2937669813272776408, 2812827195714811672], + [6178870790111010071, 10834984121929556338, 2836091052290008872, 1311164878771236983], + [7411275786539821863, 3702190765468277039, 18130480549896087952, 5277641488054089382] ] } -} \ No newline at end of file +} diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json index f73530a2ca1a..47aeb8dbf4f2 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json @@ -17,27 +17,13 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [ - 0, - 993345 - ], - [ - 1, - 993345 - ], - [ - 2, - 993345 - ], - [ - 3, - 993345 - ] + [0, 993345], + [1, 993345], + [2, 993345], + [3, 993345] ], "extra_constant_polys_for_selectors": 4, - "table_ids_column_idxes": [ - 8 - ], + "table_ids_column_idxes": [8], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -169,102 +155,22 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [ - 15230555879575926816, - 8670948681878777794, - 767116401361787080, - 13808751382541908272 - ], - [ - 1220486015450063297, - 9567900108378427313, - 18210974256257044632, - 18338726330920132716 - ], - [ - 7568154221767192295, - 11691578057855133612, - 9987210827513697170, - 17019942866370544662 - ], - [ - 14102673551475852761, - 3839757807646647049, - 8317169401280108378, - 14477318175428765566 - ], - [ - 10669246787368115713, - 11986124114638697341, - 373240888095551057, - 10600874540100090281 - ], - [ - 1967433817606548880, - 1252531621216687635, - 14092128528722989126, - 15316007954882781751 - ], - [ - 5731133612849813361, - 9439573956187051534, - 15220234372923263193, - 9871593147214385018 - ], - [ - 5432497552013782457, - 6217935098775351854, - 10788625265296640732, - 7626134139872594266 - ], - [ - 16209439837876908945, - 16958705495955599782, - 2620710932184338631, - 13207816187542048405 - ], - [ - 11540918781414391435, - 13215620469361541671, - 7261198944216226328, - 14101141177393020403 - ], - [ - 10951103916546600353, - 16291916249083597787, - 8020395928888095904, - 14831509381332343931 - ], - [ - 14614496581821229034, - 570029684825245175, - 11368483572681932607, - 17857699424461379920 - ], - [ - 10549396205597068517, - 16251363364669954894, - 5619914240250798106, - 15384760685177493623 - ], - [ - 6443594760777705854, - 4350415958090847717, - 7924647710631862693, - 1595589969968983394 - ], - [ - 1575322136978699734, - 1714883637605030004, - 1403876268493429570, - 5816075577953274504 - ], - [ - 1910730620955478970, - 10199274156501303143, - 8240588740333284151, - 7977626984796160665 - ] + [15230555879575926816, 8670948681878777794, 767116401361787080, 13808751382541908272], + [1220486015450063297, 9567900108378427313, 18210974256257044632, 18338726330920132716], + [7568154221767192295, 11691578057855133612, 9987210827513697170, 17019942866370544662], + [14102673551475852761, 3839757807646647049, 8317169401280108378, 14477318175428765566], + [10669246787368115713, 11986124114638697341, 373240888095551057, 10600874540100090281], + [1967433817606548880, 1252531621216687635, 14092128528722989126, 15316007954882781751], + [5731133612849813361, 9439573956187051534, 15220234372923263193, 9871593147214385018], + [5432497552013782457, 6217935098775351854, 10788625265296640732, 7626134139872594266], + [16209439837876908945, 16958705495955599782, 2620710932184338631, 13207816187542048405], + [11540918781414391435, 13215620469361541671, 7261198944216226328, 14101141177393020403], + [10951103916546600353, 16291916249083597787, 8020395928888095904, 14831509381332343931], + [14614496581821229034, 570029684825245175, 11368483572681932607, 17857699424461379920], + [10549396205597068517, 16251363364669954894, 5619914240250798106, 15384760685177493623], + [6443594760777705854, 4350415958090847717, 7924647710631862693, 1595589969968983394], + [1575322136978699734, 1714883637605030004, 1403876268493429570, 5816075577953274504], + [1910730620955478970, 10199274156501303143, 8240588740333284151, 7977626984796160665] ] } -} \ No newline at end of file +} diff --git a/renovate.json b/renovate.json index 055bc3425806..d98e5239274c 100644 --- a/renovate.json +++ b/renovate.json @@ -1,11 +1,6 @@ { "enabled": false, - "extends": [ - "config:base", - "helpers:pinGitHubActionDigests" - ], - "enabledManagers": [ - "github-actions" - ], + "extends": ["config:base", "helpers:pinGitHubActionDigests"], + "enabledManagers": ["github-actions"], "prCreation": "immediate" } diff --git a/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json b/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json index 57864f93317f..8116e4410a50 100644 --- a/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json +++ b/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json @@ -1,42 +1,42 @@ { - "0x0000000000095413afc295d19edeb1ad7b71c952": 140000, - "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": 160000, - "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": 140000, - "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": 140000, - "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": 150000, - "0x9ba00d6856a4edf4665bca2c2309936572473b7e": 270000, - "0x8daebade922df735c38c80c7ebd708af50815faa": 140000, - "0x0d8775f648430679a709e98d2b0cb6250d2887ef": 140000, - "0xdac17f958d2ee523a2206206994597c13d831ec7": 140000, - "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": 150000, - "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": 180000, - "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": 140000, - "0x514910771af9ca656af840dff83e8264ecf986ca": 140000, - "0x1985365e9f78359a9b6ad760e32412f4a445e862": 180000, - "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": 140000, - "0xe41d2489571d322189246dafa5ebde1f4699f498": 140000, - "0x6b175474e89094c44da98b954eedeac495271d0f": 140000, - "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": 150000, - "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": 140000, - "0x65ece136b89ebaa72a7f7aa815674946e44ca3f9": 140000, - "0x0000000000085d4780b73119b644ae5ecd22b376": 150000, - "0xdb25f211ab05b1c97d595516f45794528a807ad8": 180000, - "0x408e41876cccdc0f92210600ef50372656052a38": 140000, - "0x15a2b3cfafd696e1c783fe99eed168b78a3a371e": 160000, - "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": 160000, - "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": 140000, - "0x56d811088235f11c8920698a204a5010a788f4b3": 240000, - "0x57ab1ec28d129707052df4df418d58a2d46d5f51": 220000, - "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": 140000, - "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": 150000, - "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": 200000, - "0x744d70fdbe2ba4cf95131626614a1763df805b9e": 230000, - "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": 140000, - "0x4c7065bca76fe44afb0d16c2441b1e6e163354e2": 250000, - "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": 140000, - "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": 140000, - "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": 140000, - "0x4fabb145d64652a948d72533023f6e7a623c7c53": 150000, - "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": 140000, - "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": 140000 + "0x0000000000095413afc295d19edeb1ad7b71c952": 140000, + "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": 160000, + "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": 140000, + "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": 140000, + "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": 150000, + "0x9ba00d6856a4edf4665bca2c2309936572473b7e": 270000, + "0x8daebade922df735c38c80c7ebd708af50815faa": 140000, + "0x0d8775f648430679a709e98d2b0cb6250d2887ef": 140000, + "0xdac17f958d2ee523a2206206994597c13d831ec7": 140000, + "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": 150000, + "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": 180000, + "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": 140000, + "0x514910771af9ca656af840dff83e8264ecf986ca": 140000, + "0x1985365e9f78359a9b6ad760e32412f4a445e862": 180000, + "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": 140000, + "0xe41d2489571d322189246dafa5ebde1f4699f498": 140000, + "0x6b175474e89094c44da98b954eedeac495271d0f": 140000, + "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": 150000, + "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": 140000, + "0x65ece136b89ebaa72a7f7aa815674946e44ca3f9": 140000, + "0x0000000000085d4780b73119b644ae5ecd22b376": 150000, + "0xdb25f211ab05b1c97d595516f45794528a807ad8": 180000, + "0x408e41876cccdc0f92210600ef50372656052a38": 140000, + "0x15a2b3cfafd696e1c783fe99eed168b78a3a371e": 160000, + "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": 160000, + "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": 140000, + "0x56d811088235f11c8920698a204a5010a788f4b3": 240000, + "0x57ab1ec28d129707052df4df418d58a2d46d5f51": 220000, + "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": 140000, + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": 150000, + "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": 200000, + "0x744d70fdbe2ba4cf95131626614a1763df805b9e": 230000, + "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": 140000, + "0x4c7065bca76fe44afb0d16c2441b1e6e163354e2": 250000, + "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": 140000, + "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": 140000, + "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": 140000, + "0x4fabb145d64652a948d72533023f6e7a623c7c53": 150000, + "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": 140000, + "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": 140000 } diff --git a/sdk/zksync-web3.js/abi/IERC1271.json b/sdk/zksync-web3.js/abi/IERC1271.json index 5e153118a2af..c7b4b514a4a2 100644 --- a/sdk/zksync-web3.js/abi/IERC1271.json +++ b/sdk/zksync-web3.js/abi/IERC1271.json @@ -1,28 +1,28 @@ { - "abi": [ + "abi": [ + { + "inputs": [ { - "inputs": [ - { - "internalType": "bytes32", - "name": "hash", - "type": "bytes32" - }, - { - "internalType": "bytes", - "name": "signature", - "type": "bytes" - } - ], - "name": "isValidSignature", - "outputs": [ - { - "internalType": "bytes4", - "name": "magicValue", - "type": "bytes4" - } - ], - "stateMutability": "view", - "type": "function" + "internalType": "bytes32", + "name": "hash", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "isValidSignature", + "outputs": [ + { + "internalType": "bytes4", + "name": "magicValue", + "type": "bytes4" } - ] -} \ No newline at end of file + ], + "stateMutability": "view", + "type": "function" + } + ] +} diff --git a/sdk/zksync-web3.js/tsconfig.json b/sdk/zksync-web3.js/tsconfig.json index 322b2cd47e0c..e319b6167763 100644 --- a/sdk/zksync-web3.js/tsconfig.json +++ b/sdk/zksync-web3.js/tsconfig.json @@ -12,7 +12,5 @@ "noImplicitOverride": true }, - "files": [ - "./src/index.ts" - ] + "files": ["./src/index.ts"] } From db4ff0fb6659c4f16c29416168b75be448a616dd Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 11:30:05 +0100 Subject: [PATCH 04/15] lint: sol lint rule update + submodule ignore --- .solhintignore | 3 +++ etc/lint-config/sol.js | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .solhintignore diff --git a/.solhintignore b/.solhintignore new file mode 100644 index 000000000000..24b618546bb7 --- /dev/null +++ b/.solhintignore @@ -0,0 +1,3 @@ +# Ignore contract submodules +contracts +etc/system-contracts \ No newline at end of file diff --git a/etc/lint-config/sol.js b/etc/lint-config/sol.js index 2d29c78f9477..57da967ea4a1 100644 --- a/etc/lint-config/sol.js +++ b/etc/lint-config/sol.js @@ -8,6 +8,7 @@ module.exports = { // // TODO (ZKS-329): Turn on the majority of the rules and make the solhint comply with them. "state-visibility": "off", + "func-visibility": ["warn", { "ignoreConstructors": true }], "var-name-mixedcase": "off", "avoid-call-value": "off", "no-empty-blocks": "off", @@ -20,6 +21,6 @@ module.exports = { "func-name-mixedcase": "off", "no-unused-vars": "off", "max-states-count": "off", - "compiler-version": ["warn", "^0.7.0"] + "compiler-version": ["warn", "^0.8.0"] } }; From 13a15ca79bbdfec1c0680a515e436bbbd9fd7ba4 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 13:36:08 +0100 Subject: [PATCH 05/15] Revert "fmt: json and yaml files formatted" This reverts commit 0967ba05469827a371c69d158dfc9517707d8a2a. --- .github/release-please/config.json | 32 +- .github/workflows/cargo-license.yaml | 4 +- .../data/verification_0_key.json | 359 ++- .../data/verification_10_key.json | 359 ++- .../data/verification_11_key.json | 359 ++- .../data/verification_12_key.json | 359 ++- .../data/verification_13_key.json | 359 ++- .../data/verification_14_key.json | 359 ++- .../data/verification_15_key.json | 359 ++- .../data/verification_16_key.json | 359 ++- .../data/verification_17_key.json | 359 ++- .../data/verification_18_key.json | 359 ++- .../data/verification_1_key.json | 359 ++- .../data/verification_2_key.json | 359 ++- .../data/verification_3_key.json | 359 ++- .../data/verification_4_key.json | 359 ++- .../data/verification_5_key.json | 359 ++- .../data/verification_6_key.json | 359 ++- .../data/verification_7_key.json | 359 ++- .../data/verification_8_key.json | 359 ++- .../data/verification_9_key.json | 359 ++- core/lib/dal/sqlx-data.json | 2446 ++++++++++++++--- core/tests/revert-test/tsconfig.json | 14 +- core/tests/ts-integration/jest.config.json | 31 +- core/tests/ts-integration/package.json | 62 +- core/tests/ts-integration/tsconfig.json | 24 +- core/tests/upgrade-test/tsconfig.json | 14 +- .../zksync_testharness_test.json | 1 + etc/test_config/constant/api.json | 2 +- etc/test_config/constant/eth.json | 6 +- .../1692195639-upgrade-system/common.json | 2 +- .../mainnet2/facetCuts.json | 42 +- .../mainnet2/facets.json | 2 +- .../mainnet2/l2Upgrade.json | 65 +- .../mainnet2/transactions.json | 49 +- .../stage2/facetCuts.json | 42 +- .../stage2/facets.json | 2 +- .../stage2/l2Upgrade.json | 65 +- .../stage2/transactions.json | 49 +- .../testnet2/facetCuts.json | 42 +- .../testnet2/facets.json | 2 +- .../testnet2/l2Upgrade.json | 65 +- .../testnet2/transactions.json | 49 +- .../common.json | 2 +- .../stage2/facetCuts.json | 50 +- .../stage2/facets.json | 2 +- .../stage2/l2Upgrade.json | 65 +- .../stage2/transactions.json | 57 +- .../testnet2/facetCuts.json | 50 +- .../testnet2/facets.json | 2 +- .../testnet2/l2Upgrade.json | 65 +- .../testnet2/transactions.json | 57 +- .../common.json | 2 +- .../mainnet2/facetCuts.json | 50 +- .../mainnet2/facets.json | 2 +- .../mainnet2/l2Upgrade.json | 65 +- .../mainnet2/transactions.json | 57 +- .../stage2/l2Upgrade.json | 17 +- .../stage2/transactions.json | 9 +- .../testnet2/l2Upgrade.json | 17 +- .../testnet2/transactions.json | 9 +- .../common.json | 2 +- .../mainnet2/crypto.json | 2 +- .../mainnet2/transactions.json | 9 +- .../stage2/crypto.json | 2 +- .../stage2/transactions.json | 9 +- .../testnet2/crypto.json | 2 +- .../testnet2/transactions.json | 9 +- .../mainnet2/transactions.json | 9 +- .../stage2/transactions.json | 9 +- .../testnet2/transactions.json | 9 +- .../local-setup-preparation/tsconfig.json | 4 +- infrastructure/protocol-upgrade/tsconfig.json | 2 +- infrastructure/zk/package.json | 62 +- infrastructure/zk/tsconfig.json | 24 +- .../snark_verification_scheduler_key.json | 359 ++- .../data/verification_basic_10_key.json | 138 +- .../data/verification_basic_11_key.json | 138 +- .../data/verification_basic_12_key.json | 138 +- .../data/verification_basic_13_key.json | 138 +- .../data/verification_basic_1_key.json | 138 +- .../data/verification_basic_2_key.json | 138 +- .../data/verification_basic_3_key.json | 138 +- .../data/verification_basic_4_key.json | 138 +- .../data/verification_basic_5_key.json | 138 +- .../data/verification_basic_6_key.json | 138 +- .../data/verification_basic_7_key.json | 138 +- .../data/verification_basic_8_key.json | 138 +- .../data/verification_basic_9_key.json | 138 +- .../data/verification_leaf_10_key.json | 134 +- .../data/verification_leaf_11_key.json | 134 +- .../data/verification_leaf_12_key.json | 134 +- .../data/verification_leaf_13_key.json | 134 +- .../data/verification_leaf_14_key.json | 134 +- .../data/verification_leaf_15_key.json | 134 +- .../data/verification_leaf_1_key.json | 138 +- .../data/verification_leaf_2_key.json | 134 +- .../data/verification_leaf_3_key.json | 134 +- .../data/verification_leaf_4_key.json | 134 +- .../data/verification_leaf_5_key.json | 134 +- .../data/verification_leaf_6_key.json | 134 +- .../data/verification_leaf_7_key.json | 134 +- .../data/verification_leaf_8_key.json | 134 +- .../data/verification_leaf_9_key.json | 134 +- .../data/verification_node_key.json | 134 +- .../data/verification_scheduler_key.json | 138 +- renovate.json | 9 +- .../src/ethereum/DepositERC20GasLimit.json | 80 +- sdk/zksync-web3.js/abi/IERC1271.json | 50 +- sdk/zksync-web3.js/tsconfig.json | 4 +- 110 files changed, 12717 insertions(+), 2530 deletions(-) diff --git a/.github/release-please/config.json b/.github/release-please/config.json index 88d3f9b04f94..59e8b66dcc3f 100644 --- a/.github/release-please/config.json +++ b/.github/release-please/config.json @@ -5,21 +5,21 @@ "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, "packages": { - "core": { - "release-type": "simple", - "component": "core" - }, - "sdk/zksync-web3.js": { - "release-type": "node", - "component": "web3js" - }, - "sdk/zksync-rs": { - "release-type": "rust", - "component": "zksync-rs" - }, - "prover": { - "release-type": "simple", - "component": "prover" - } + "core": { + "release-type": "simple", + "component": "core" + }, + "sdk/zksync-web3.js": { + "release-type": "node", + "component": "web3js" + }, + "sdk/zksync-rs": { + "release-type": "rust", + "component": "zksync-rs" + }, + "prover": { + "release-type": "simple", + "component": "prover" + } } } diff --git a/.github/workflows/cargo-license.yaml b/.github/workflows/cargo-license.yaml index e326f2966947..189b47163e5d 100644 --- a/.github/workflows/cargo-license.yaml +++ b/.github/workflows/cargo-license.yaml @@ -4,5 +4,5 @@ jobs: cargo-deny: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: EmbarkStudios/cargo-deny-action@v1 + - uses: actions/checkout@v3 + - uses: EmbarkStudios/cargo-deny-action@v1 diff --git a/core/bin/verification_key_generator_and_server/data/verification_0_key.json b/core/bin/verification_key_generator_and_server/data/verification_0_key.json index 83ff113bc9c1..c3262193a4fd 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_0_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_0_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [14745348174000482855, 2839037062185937123, 3369862715588854899, 1495909583940713128], - "y": [6859454683840363585, 11340551061368171664, 9528805406487149561, 3414144677220223705], + "x": [ + 14745348174000482855, + 2839037062185937123, + 3369862715588854899, + 1495909583940713128 + ], + "y": [ + 6859454683840363585, + 11340551061368171664, + 9528805406487149561, + 3414144677220223705 + ], "infinity": false }, { - "x": [9215749870136224396, 18418669114332753377, 13140219601461030180, 2381098845928447331], - "y": [8834765081837029169, 4424842234296363904, 13294547557836067005, 414624398145171890], + "x": [ + 9215749870136224396, + 18418669114332753377, + 13140219601461030180, + 2381098845928447331 + ], + "y": [ + 8834765081837029169, + 4424842234296363904, + 13294547557836067005, + 414624398145171890 + ], "infinity": false }, { - "x": [2148575411987453084, 16730180692461995258, 12423475767707134837, 3014264170083149730], - "y": [10870860158804422503, 14060279526953529989, 2266257082861680293, 22356173050560284], + "x": [ + 2148575411987453084, + 16730180692461995258, + 12423475767707134837, + 3014264170083149730 + ], + "y": [ + 10870860158804422503, + 14060279526953529989, + 2266257082861680293, + 22356173050560284 + ], "infinity": false }, { - "x": [17803008042411335770, 5713064950476621403, 17979342410816871746, 491265656076548841], - "y": [9823492080506672630, 3637386621225409615, 8776978043600973097, 2514196809208915768], + "x": [ + 17803008042411335770, + 5713064950476621403, + 17979342410816871746, + 491265656076548841 + ], + "y": [ + 9823492080506672630, + 3637386621225409615, + 8776978043600973097, + 2514196809208915768 + ], "infinity": false }, { - "x": [3768479078383323179, 16153057542709544671, 10578964798085613273, 2831188075764800753], - "y": [2387514805820590694, 15085489652142686165, 8141513931186597223, 1582376980242699819], + "x": [ + 3768479078383323179, + 16153057542709544671, + 10578964798085613273, + 2831188075764800753 + ], + "y": [ + 2387514805820590694, + 15085489652142686165, + 8141513931186597223, + 1582376980242699819 + ], "infinity": false }, { - "x": [5395455814671474247, 5013790368139874617, 8671649443504728767, 839142828943885970], - "y": [11231626069154926735, 5078347962234771017, 17373886182204596447, 513647957075879347], + "x": [ + 5395455814671474247, + 5013790368139874617, + 8671649443504728767, + 839142828943885970 + ], + "y": [ + 11231626069154926735, + 5078347962234771017, + 17373886182204596447, + 513647957075879347 + ], "infinity": false }, { - "x": [8940485327950054531, 9156997542069636576, 14316753178152000598, 3357551869664255582], - "y": [14102490706504125272, 4494991810930729808, 15532318871086968466, 1537365238286274178], + "x": [ + 8940485327950054531, + 9156997542069636576, + 14316753178152000598, + 3357551869664255582 + ], + "y": [ + 14102490706504125272, + 4494991810930729808, + 15532318871086968466, + 1537365238286274178 + ], "infinity": false }, { - "x": [13914906478277300859, 6213896071228541481, 4364409818367302306, 659097390118096039], - "y": [7328372274594390887, 2650332638498669615, 15455628473476960005, 3119379427019958230], + "x": [ + 13914906478277300859, + 6213896071228541481, + 4364409818367302306, + 659097390118096039 + ], + "y": [ + 7328372274594390887, + 2650332638498669615, + 15455628473476960005, + 3119379427019958230 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [9438200511694036157, 11094162170960057340, 9123678872696723713, 2950597355117190054], - "y": [6153972960518016517, 8045683598100955864, 13410633858416643489, 988361678931464913], + "x": [ + 9438200511694036157, + 11094162170960057340, + 9123678872696723713, + 2950597355117190054 + ], + "y": [ + 6153972960518016517, + 8045683598100955864, + 13410633858416643489, + 988361678931464913 + ], "infinity": false }, { - "x": [805964423710846142, 13603470797942296854, 11292123377140077447, 1455913517812009773], - "y": [4541622738043214385, 8186357170000535775, 4765839113294831637, 3026863977499737494], + "x": [ + 805964423710846142, + 13603470797942296854, + 11292123377140077447, + 1455913517812009773 + ], + "y": [ + 4541622738043214385, + 8186357170000535775, + 4765839113294831637, + 3026863977499737494 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [1851039213129741497, 11907960788190413713, 2882727828085561070, 1451278944954982956], - "y": [15245785050592773860, 1774295027236395480, 3373069120056880915, 1080245109458702174], + "x": [ + 1851039213129741497, + 11907960788190413713, + 2882727828085561070, + 1451278944954982956 + ], + "y": [ + 15245785050592773860, + 1774295027236395480, + 3373069120056880915, + 1080245109458702174 + ], "infinity": false }, { - "x": [9366052859968548005, 12275028918364559591, 2472023927159177225, 1052535074027277666], - "y": [2428574557555628629, 15067392861858369528, 16949255188095910778, 2297925771936569168], + "x": [ + 9366052859968548005, + 12275028918364559591, + 2472023927159177225, + 1052535074027277666 + ], + "y": [ + 2428574557555628629, + 15067392861858369528, + 16949255188095910778, + 2297925771936569168 + ], "infinity": false }, { - "x": [17016009610362956206, 4047659663396753591, 1832464593155416403, 2725142957049914767], - "y": [12447928856414787240, 3072280375285720285, 12294239288643819494, 613511140380288958], + "x": [ + 17016009610362956206, + 4047659663396753591, + 1832464593155416403, + 2725142957049914767 + ], + "y": [ + 12447928856414787240, + 3072280375285720285, + 12294239288643819494, + 613511140380288958 + ], "infinity": false }, { - "x": [6312774245791141720, 496150993329472460, 12773767122915456934, 3404402910494500531], - "y": [13852578578747731084, 9030931732410275304, 17159996848865265705, 1696956882146098553], + "x": [ + 6312774245791141720, + 496150993329472460, + 12773767122915456934, + 3404402910494500531 + ], + "y": [ + 13852578578747731084, + 9030931732410275304, + 17159996848865265705, + 1696956882146098553 + ], "infinity": false } ], "total_lookup_entries_length": 1073530, "lookup_selector_commitment": { - "x": [4441974708940861232, 11325614820129407652, 7273013871150456559, 2270181644629652201], - "y": [3070631142979677922, 15247189094202672776, 12651459662740804392, 1832216259472686694], + "x": [ + 4441974708940861232, + 11325614820129407652, + 7273013871150456559, + 2270181644629652201 + ], + "y": [ + 3070631142979677922, + 15247189094202672776, + 12651459662740804392, + 1832216259472686694 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [7312875299592476003, 313526216906044060, 13914875394436353152, 3424388477700656316], - "y": [2572062173996296044, 5984767625164919974, 12005537293370417131, 616463121946800406], + "x": [ + 7312875299592476003, + 313526216906044060, + 13914875394436353152, + 3424388477700656316 + ], + "y": [ + 2572062173996296044, + 5984767625164919974, + 12005537293370417131, + 616463121946800406 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_10_key.json b/core/bin/verification_key_generator_and_server/data/verification_10_key.json index 3431c4879d96..ec9d3727bff9 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_10_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_10_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [4364720487844379181, 17010766725144227333, 1022678199111276314, 1146578362772127376], - "y": [10340654727439455072, 12691578856596245032, 837883495763401146, 2135776887902289239], + "x": [ + 4364720487844379181, + 17010766725144227333, + 1022678199111276314, + 1146578362772127376 + ], + "y": [ + 10340654727439455072, + 12691578856596245032, + 837883495763401146, + 2135776887902289239 + ], "infinity": false }, { - "x": [14564870240038241482, 16001391704613609683, 16397364612792898214, 1316914335235774452], - "y": [2386942353392090183, 4642131766714508143, 16789479723446408276, 2261353401184907401], + "x": [ + 14564870240038241482, + 16001391704613609683, + 16397364612792898214, + 1316914335235774452 + ], + "y": [ + 2386942353392090183, + 4642131766714508143, + 16789479723446408276, + 2261353401184907401 + ], "infinity": false }, { - "x": [6081056006818109026, 14051483412950926523, 8605392534710099348, 1527183574619010123], - "y": [3896696527234063839, 12862398541231039501, 1005646628007936886, 3479645512156004366], + "x": [ + 6081056006818109026, + 14051483412950926523, + 8605392534710099348, + 1527183574619010123 + ], + "y": [ + 3896696527234063839, + 12862398541231039501, + 1005646628007936886, + 3479645512156004366 + ], "infinity": false }, { - "x": [11266242489999219523, 8100856016495224488, 6788749864393617587, 482299081118345826], - "y": [225211373180020785, 6498635074385582091, 4274055525472487569, 2578651815252093838], + "x": [ + 11266242489999219523, + 8100856016495224488, + 6788749864393617587, + 482299081118345826 + ], + "y": [ + 225211373180020785, + 6498635074385582091, + 4274055525472487569, + 2578651815252093838 + ], "infinity": false }, { - "x": [10378455392293934375, 13391940670290769236, 10463014668466536299, 472544008986099462], - "y": [1502016714118108544, 14252801754530793876, 2203844491975584716, 1116114255465135672], + "x": [ + 10378455392293934375, + 13391940670290769236, + 10463014668466536299, + 472544008986099462 + ], + "y": [ + 1502016714118108544, + 14252801754530793876, + 2203844491975584716, + 1116114255465135672 + ], "infinity": false }, { - "x": [9703616742074407567, 9691703077434834222, 7366620887865105973, 36165572355418066], - "y": [7430304832706471782, 5173267152399523091, 14416699599905226230, 2681204653630184824], + "x": [ + 9703616742074407567, + 9691703077434834222, + 7366620887865105973, + 36165572355418066 + ], + "y": [ + 7430304832706471782, + 5173267152399523091, + 14416699599905226230, + 2681204653630184824 + ], "infinity": false }, { - "x": [9347312215430913530, 13606433894103359668, 14013475178334262360, 2947181048682744075], - "y": [4001199390012145932, 4622813642635649819, 16433672063298879053, 1247842462976799965], + "x": [ + 9347312215430913530, + 13606433894103359668, + 14013475178334262360, + 2947181048682744075 + ], + "y": [ + 4001199390012145932, + 4622813642635649819, + 16433672063298879053, + 1247842462976799965 + ], "infinity": false }, { - "x": [1639425503718708209, 8242804754724970899, 11043260258533730377, 2245145560504199089], - "y": [14202551139064230506, 4307109380979442947, 13141687433511141087, 1913204959448290015], + "x": [ + 1639425503718708209, + 8242804754724970899, + 11043260258533730377, + 2245145560504199089 + ], + "y": [ + 14202551139064230506, + 4307109380979442947, + 13141687433511141087, + 1913204959448290015 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [17540836040216578409, 14577118461028955096, 2300935836423716880, 427649651480863044], - "y": [13066723755606073272, 17324941433857131282, 1679499122173566851, 3298750515604566671], + "x": [ + 17540836040216578409, + 14577118461028955096, + 2300935836423716880, + 427649651480863044 + ], + "y": [ + 13066723755606073272, + 17324941433857131282, + 1679499122173566851, + 3298750515604566671 + ], "infinity": false }, { - "x": [14709152157752642079, 13510549649315108277, 3019440420162710858, 627188607991231846], - "y": [16615706301470133997, 915024441316023047, 13798541787831785917, 3340602253234308653], + "x": [ + 14709152157752642079, + 13510549649315108277, + 3019440420162710858, + 627188607991231846 + ], + "y": [ + 16615706301470133997, + 915024441316023047, + 13798541787831785917, + 3340602253234308653 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [12626704863583094704, 3308474372162220296, 16088806788444947642, 636430705662147361], - "y": [17052785040105865748, 11203395113497209978, 2939609765212411460, 3167290643533167611], + "x": [ + 12626704863583094704, + 3308474372162220296, + 16088806788444947642, + 636430705662147361 + ], + "y": [ + 17052785040105865748, + 11203395113497209978, + 2939609765212411460, + 3167290643533167611 + ], "infinity": false }, { - "x": [3075146465184418179, 11559452521956513155, 1656597085428845901, 1618447062156730856], - "y": [2010693621773175313, 2977509893150409878, 9431891659616951962, 1776222288355278384], + "x": [ + 3075146465184418179, + 11559452521956513155, + 1656597085428845901, + 1618447062156730856 + ], + "y": [ + 2010693621773175313, + 2977509893150409878, + 9431891659616951962, + 1776222288355278384 + ], "infinity": false }, { - "x": [6408318860212838666, 9847136022608767026, 18080834927350013528, 3306285138140631107], - "y": [16064928058583899597, 461689523483649779, 13572099112445223829, 1563453638232968523], + "x": [ + 6408318860212838666, + 9847136022608767026, + 18080834927350013528, + 3306285138140631107 + ], + "y": [ + 16064928058583899597, + 461689523483649779, + 13572099112445223829, + 1563453638232968523 + ], "infinity": false }, { - "x": [327171445663828020, 12706053900720413614, 9237483585964880752, 1960293149538216528], - "y": [11030775691809003651, 11089052388657955457, 3209890793790993499, 1198867574642866523], + "x": [ + 327171445663828020, + 12706053900720413614, + 9237483585964880752, + 1960293149538216528 + ], + "y": [ + 11030775691809003651, + 11089052388657955457, + 3209890793790993499, + 1198867574642866523 + ], "infinity": false } ], "total_lookup_entries_length": 5202052, "lookup_selector_commitment": { - "x": [781239045644769777, 14316527640474633593, 2443643435827373112, 3049372365263474427], - "y": [4073012743593667819, 16009537994875540924, 11173412503242869179, 1513208421597995174], + "x": [ + 781239045644769777, + 14316527640474633593, + 2443643435827373112, + 3049372365263474427 + ], + "y": [ + 4073012743593667819, + 16009537994875540924, + 11173412503242869179, + 1513208421597995174 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [697552212563769686, 7709943502535418760, 15019345407325619175, 3433081085078580257], - "y": [8668947019840357731, 14698901351824712883, 15088598879190660424, 2873081208166433946], + "x": [ + 697552212563769686, + 7709943502535418760, + 15019345407325619175, + 3433081085078580257 + ], + "y": [ + 8668947019840357731, + 14698901351824712883, + 15088598879190660424, + 2873081208166433946 + ], "infinity": false }, { - "x": [7893133928909060673, 7064922516930129957, 3592836702741304814, 2239702595710114437], - "y": [7691360541875191519, 11379321785127235277, 6653616064071569031, 2555434628517540774], + "x": [ + 7893133928909060673, + 7064922516930129957, + 3592836702741304814, + 2239702595710114437 + ], + "y": [ + 7691360541875191519, + 11379321785127235277, + 6653616064071569031, + 2555434628517540774 + ], "infinity": false }, { - "x": [6243944238013052821, 7908243182210136125, 17178099109525791299, 2553622184721264566], - "y": [736121280088239428, 6158073429758170526, 11217302997977204117, 2594798912020899417], + "x": [ + 6243944238013052821, + 7908243182210136125, + 17178099109525791299, + 2553622184721264566 + ], + "y": [ + 736121280088239428, + 6158073429758170526, + 11217302997977204117, + 2594798912020899417 + ], "infinity": false }, { - "x": [2064240298596094591, 16917726764104887991, 11042784977532408536, 3377647228930170830], - "y": [10635525052494768819, 387400048616497096, 9379200582543310995, 1571766153703296253], + "x": [ + 2064240298596094591, + 16917726764104887991, + 11042784977532408536, + 3377647228930170830 + ], + "y": [ + 10635525052494768819, + 387400048616497096, + 9379200582543310995, + 1571766153703296253 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [7603211811706190713, 2486982239745271096, 11528266448545919500, 3080741880407152411], - "y": [7967754771633653173, 6016822892450616749, 9688696792558711613, 2682562048141398047], + "x": [ + 7603211811706190713, + 2486982239745271096, + 11528266448545919500, + 3080741880407152411 + ], + "y": [ + 7967754771633653173, + 6016822892450616749, + 9688696792558711613, + 2682562048141398047 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_11_key.json b/core/bin/verification_key_generator_and_server/data/verification_11_key.json index eadd4f9433b1..ec60b1b5c70c 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_11_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_11_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [6404793958941109752, 600086648940026770, 17621036346050218167, 648286585825030202], - "y": [15536368541166505022, 13874331483468128999, 15299774519724050181, 694528839710637549], + "x": [ + 6404793958941109752, + 600086648940026770, + 17621036346050218167, + 648286585825030202 + ], + "y": [ + 15536368541166505022, + 13874331483468128999, + 15299774519724050181, + 694528839710637549 + ], "infinity": false }, { - "x": [8437895530551083583, 9515418928119648176, 13043255827139294721, 2995712510038409810], - "y": [2599666661350767554, 5213004864468121936, 3448071048439343925, 3372727479169634860], + "x": [ + 8437895530551083583, + 9515418928119648176, + 13043255827139294721, + 2995712510038409810 + ], + "y": [ + 2599666661350767554, + 5213004864468121936, + 3448071048439343925, + 3372727479169634860 + ], "infinity": false }, { - "x": [4949545806128010634, 7991544258837652527, 13984289231122041826, 435264553263929947], - "y": [5315155210033461895, 5269954775753247626, 8365554241810378947, 3038338810517586456], + "x": [ + 4949545806128010634, + 7991544258837652527, + 13984289231122041826, + 435264553263929947 + ], + "y": [ + 5315155210033461895, + 5269954775753247626, + 8365554241810378947, + 3038338810517586456 + ], "infinity": false }, { - "x": [10765735847634894938, 996016141851615448, 17905928073714218280, 1382306444325686451], - "y": [2138154197587423296, 10332772886666867909, 18365120064743353477, 3036329558617382049], + "x": [ + 10765735847634894938, + 996016141851615448, + 17905928073714218280, + 1382306444325686451 + ], + "y": [ + 2138154197587423296, + 10332772886666867909, + 18365120064743353477, + 3036329558617382049 + ], "infinity": false }, { - "x": [10826908009799408310, 17008417534705779156, 6763973494549063072, 2085829964414931488], - "y": [8778528796073273991, 3575354418973385595, 7700555759899743641, 2991788183234680231], + "x": [ + 10826908009799408310, + 17008417534705779156, + 6763973494549063072, + 2085829964414931488 + ], + "y": [ + 8778528796073273991, + 3575354418973385595, + 7700555759899743641, + 2991788183234680231 + ], "infinity": false }, { - "x": [4838537981048085423, 17733460364049897496, 2406410363431464143, 317979983533551325], - "y": [1063783130085451648, 17468950496650586998, 1638492556781126884, 2655791721465286744], + "x": [ + 4838537981048085423, + 17733460364049897496, + 2406410363431464143, + 317979983533551325 + ], + "y": [ + 1063783130085451648, + 17468950496650586998, + 1638492556781126884, + 2655791721465286744 + ], "infinity": false }, { - "x": [9900079822056413611, 2971494295919434281, 3851188096409515874, 1674965457600938162], - "y": [278026997091552202, 4169606578927284200, 4285297176993939496, 1835673146863992148], + "x": [ + 9900079822056413611, + 2971494295919434281, + 3851188096409515874, + 1674965457600938162 + ], + "y": [ + 278026997091552202, + 4169606578927284200, + 4285297176993939496, + 1835673146863992148 + ], "infinity": false }, { - "x": [14972922803706426724, 1950002897609593521, 14885502244328862256, 2711533695106895845], - "y": [6445273103061253271, 13093783937225622775, 16913300898726970338, 3338984185497324237], + "x": [ + 14972922803706426724, + 1950002897609593521, + 14885502244328862256, + 2711533695106895845 + ], + "y": [ + 6445273103061253271, + 13093783937225622775, + 16913300898726970338, + 3338984185497324237 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [7023363902839996761, 10470701207992157969, 15655647820064667897, 1574806151825297776], - "y": [5374465760860613169, 17808737811039085287, 9497881147171478776, 2496973717640690197], + "x": [ + 7023363902839996761, + 10470701207992157969, + 15655647820064667897, + 1574806151825297776 + ], + "y": [ + 5374465760860613169, + 17808737811039085287, + 9497881147171478776, + 2496973717640690197 + ], "infinity": false }, { - "x": [11667333913021610767, 981513539224109240, 906325130343873228, 2938085706999497365], - "y": [12114685726509803851, 8176447551157079615, 4677211732718215770, 612959750791398009], + "x": [ + 11667333913021610767, + 981513539224109240, + 906325130343873228, + 2938085706999497365 + ], + "y": [ + 12114685726509803851, + 8176447551157079615, + 4677211732718215770, + 612959750791398009 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [5178916486603003859, 12440762249350081718, 17531240512375127539, 562979322442547791], - "y": [13269831614205338393, 14075713698585784838, 5009519510530479124, 346033861980045408], + "x": [ + 5178916486603003859, + 12440762249350081718, + 17531240512375127539, + 562979322442547791 + ], + "y": [ + 13269831614205338393, + 14075713698585784838, + 5009519510530479124, + 346033861980045408 + ], "infinity": false }, { - "x": [9815443577325313677, 10727907015331332054, 7582395371050260833, 1746872659838481572], - "y": [3973552805135639320, 14426732004648741961, 8133164322153358522, 2668541869556858228], + "x": [ + 9815443577325313677, + 10727907015331332054, + 7582395371050260833, + 1746872659838481572 + ], + "y": [ + 3973552805135639320, + 14426732004648741961, + 8133164322153358522, + 2668541869556858228 + ], "infinity": false }, { - "x": [4868257934818957423, 11529848268525929099, 7089666284160764141, 796901367628793969], - "y": [991195814042705325, 1559922382138761102, 15616159453482282503, 1031107741111093289], + "x": [ + 4868257934818957423, + 11529848268525929099, + 7089666284160764141, + 796901367628793969 + ], + "y": [ + 991195814042705325, + 1559922382138761102, + 15616159453482282503, + 1031107741111093289 + ], "infinity": false }, { - "x": [17936772813090339705, 10208762457499980701, 14796710996322725970, 638550977107438851], - "y": [5073905611192321777, 2956648407808816974, 7778989780119416172, 2955106321082932072], + "x": [ + 17936772813090339705, + 10208762457499980701, + 14796710996322725970, + 638550977107438851 + ], + "y": [ + 5073905611192321777, + 2956648407808816974, + 7778989780119416172, + 2955106321082932072 + ], "infinity": false } ], "total_lookup_entries_length": 7960377, "lookup_selector_commitment": { - "x": [1083743271968869166, 3134203175755215736, 5835502497758804469, 3010956977291777466], - "y": [3645612220088813035, 32844736552579976, 5426466326302260857, 1489565191618899261], + "x": [ + 1083743271968869166, + 3134203175755215736, + 5835502497758804469, + 3010956977291777466 + ], + "y": [ + 3645612220088813035, + 32844736552579976, + 5426466326302260857, + 1489565191618899261 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], - "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], + "x": [ + 5825422128268478267, + 9219263846299851036, + 3879231702557190566, + 1702488722758880769 + ], + "y": [ + 18311881100262470992, + 5742998199368802392, + 18106865487471159417, + 502191980176920012 + ], "infinity": false }, { - "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], - "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], + "x": [ + 17195892082859417081, + 7890531942603584793, + 2381805632820057528, + 3173232410464566465 + ], + "y": [ + 16359614627947132075, + 3459600273035137079, + 4550762061432972122, + 3394559699318358224 + ], "infinity": false }, { - "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], - "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], + "x": [ + 1716103379277390185, + 18097936269579187542, + 16357329729761063450, + 1508640059338197502 + ], + "y": [ + 11014806739603983364, + 4396503314588777389, + 9397245609635151055, + 1703957955248411380 + ], "infinity": false }, { - "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], - "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], + "x": [ + 4770171350693477354, + 17110558673192292253, + 9799800677557311408, + 761984875463445481 + ], + "y": [ + 1560561403388310063, + 31331275310848146, + 287152055803835484, + 457826332542037277 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [11327495732840772606, 7407664417001729515, 9486600059857658309, 3060296564241189838], - "y": [7624492872489320847, 18248981556039704277, 3877205757853252152, 939885486002612376], + "x": [ + 11327495732840772606, + 7407664417001729515, + 9486600059857658309, + 3060296564241189838 + ], + "y": [ + 7624492872489320847, + 18248981556039704277, + 3877205757853252152, + 939885486002612376 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_12_key.json b/core/bin/verification_key_generator_and_server/data/verification_12_key.json index 58fbb0a96027..fec076f39eda 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_12_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_12_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [456514006020943025, 9595480195714948127, 12254096252487404245, 1742692690750856358], - "y": [16294223586064957217, 3958270970168887906, 11264067544872898258, 1692817687935973108], + "x": [ + 456514006020943025, + 9595480195714948127, + 12254096252487404245, + 1742692690750856358 + ], + "y": [ + 16294223586064957217, + 3958270970168887906, + 11264067544872898258, + 1692817687935973108 + ], "infinity": false }, { - "x": [1359655052308122459, 13840124148496555776, 1774237333490664500, 2964872651584750318], - "y": [11907598503482948769, 8700506041798646988, 15081040576888859990, 3096802642049924528], + "x": [ + 1359655052308122459, + 13840124148496555776, + 1774237333490664500, + 2964872651584750318 + ], + "y": [ + 11907598503482948769, + 8700506041798646988, + 15081040576888859990, + 3096802642049924528 + ], "infinity": false }, { - "x": [2884314851670818573, 13442465544210396156, 5937955495868181363, 2486997439179977778], - "y": [9309776793338098458, 14492906371677122697, 8837309186596588911, 1081143755093508499], + "x": [ + 2884314851670818573, + 13442465544210396156, + 5937955495868181363, + 2486997439179977778 + ], + "y": [ + 9309776793338098458, + 14492906371677122697, + 8837309186596588911, + 1081143755093508499 + ], "infinity": false }, { - "x": [2655654413304275855, 4244723109566147837, 12150359360501203194, 3338981627918702615], - "y": [2522870072161287404, 17341373219317210182, 13058930363994599297, 210373422168410518], + "x": [ + 2655654413304275855, + 4244723109566147837, + 12150359360501203194, + 3338981627918702615 + ], + "y": [ + 2522870072161287404, + 17341373219317210182, + 13058930363994599297, + 210373422168410518 + ], "infinity": false }, { - "x": [16728834675380740056, 2139390496020366235, 9480389182940223467, 2279560291896695719], - "y": [12461418813218976432, 357566005384566098, 5295578385080568808, 1801243085576438875], + "x": [ + 16728834675380740056, + 2139390496020366235, + 9480389182940223467, + 2279560291896695719 + ], + "y": [ + 12461418813218976432, + 357566005384566098, + 5295578385080568808, + 1801243085576438875 + ], "infinity": false }, { - "x": [8716201428771436123, 3392394702404760386, 9990956922582058945, 1388317411153212399], - "y": [11666415392681680155, 10553517485129490455, 16061047708722635939, 2386622646140901822], + "x": [ + 8716201428771436123, + 3392394702404760386, + 9990956922582058945, + 1388317411153212399 + ], + "y": [ + 11666415392681680155, + 10553517485129490455, + 16061047708722635939, + 2386622646140901822 + ], "infinity": false }, { - "x": [16162432560623854812, 15537581062716888632, 12927223782958923606, 2800634589869451227], - "y": [5345141365329635916, 2224393250977631865, 396527108738048188, 2298318725146167177], + "x": [ + 16162432560623854812, + 15537581062716888632, + 12927223782958923606, + 2800634589869451227 + ], + "y": [ + 5345141365329635916, + 2224393250977631865, + 396527108738048188, + 2298318725146167177 + ], "infinity": false }, { - "x": [18372685954785469756, 10436523365152935441, 15509622927999798123, 2050428620045833325], - "y": [4996265985148335658, 6073112270434155721, 4873288683270752338, 503179567393027927], + "x": [ + 18372685954785469756, + 10436523365152935441, + 15509622927999798123, + 2050428620045833325 + ], + "y": [ + 4996265985148335658, + 6073112270434155721, + 4873288683270752338, + 503179567393027927 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [4986139828502830074, 8644425445976253042, 4851433922656693398, 1419574698085640872], - "y": [16192186537521161947, 16183885683582261905, 1655718756619164666, 3420236094426390604], + "x": [ + 4986139828502830074, + 8644425445976253042, + 4851433922656693398, + 1419574698085640872 + ], + "y": [ + 16192186537521161947, + 16183885683582261905, + 1655718756619164666, + 3420236094426390604 + ], "infinity": false }, { - "x": [10727231722644915889, 13777116005624794169, 1422623412369619026, 1701279717637612575], - "y": [6503647097427010249, 6381043883853023011, 15391366286376907281, 1261207976874708261], + "x": [ + 10727231722644915889, + 13777116005624794169, + 1422623412369619026, + 1701279717637612575 + ], + "y": [ + 6503647097427010249, + 6381043883853023011, + 15391366286376907281, + 1261207976874708261 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [11852073725466955067, 179170887563176222, 17529899074897279348, 2496783194148289461], - "y": [15490041181991978284, 6745436372504113852, 7017978386715410058, 3482556315200370895], + "x": [ + 11852073725466955067, + 179170887563176222, + 17529899074897279348, + 2496783194148289461 + ], + "y": [ + 15490041181991978284, + 6745436372504113852, + 7017978386715410058, + 3482556315200370895 + ], "infinity": false }, { - "x": [1330152738947291505, 1668990644246591877, 6805443255260621096, 1309987766073890626], - "y": [18322300356676620444, 8225233874302527542, 5744327785164342590, 410571567010522636], + "x": [ + 1330152738947291505, + 1668990644246591877, + 6805443255260621096, + 1309987766073890626 + ], + "y": [ + 18322300356676620444, + 8225233874302527542, + 5744327785164342590, + 410571567010522636 + ], "infinity": false }, { - "x": [13968210937929584911, 17067601391996082961, 4861463652254416951, 2147834012714370408], - "y": [9012483356698219484, 8660929519763525826, 17744882010750642463, 331423342438323189], + "x": [ + 13968210937929584911, + 17067601391996082961, + 4861463652254416951, + 2147834012714370408 + ], + "y": [ + 9012483356698219484, + 8660929519763525826, + 17744882010750642463, + 331423342438323189 + ], "infinity": false }, { - "x": [1352282553299127274, 8587971715415488300, 2471024479841756772, 1239586065229072559], - "y": [1597792022909153930, 5020991346876715357, 5622801511814109910, 1916460940163680567], + "x": [ + 1352282553299127274, + 8587971715415488300, + 2471024479841756772, + 1239586065229072559 + ], + "y": [ + 1597792022909153930, + 5020991346876715357, + 5622801511814109910, + 1916460940163680567 + ], "infinity": false } ], "total_lookup_entries_length": 46287674, "lookup_selector_commitment": { - "x": [11573469000684493293, 15304040816406013002, 9206902553183544808, 2597693769113957036], - "y": [10538181061926273477, 5239567589495426242, 3627181047901924882, 302644994241575377], + "x": [ + 11573469000684493293, + 15304040816406013002, + 9206902553183544808, + 2597693769113957036 + ], + "y": [ + 10538181061926273477, + 5239567589495426242, + 3627181047901924882, + 302644994241575377 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [5134795695995115566, 12287750992060803275, 3112021177339560487, 2737779104829043419], - "y": [12960786984497012138, 17246059378047870426, 11486754204718893642, 46104506716724806], + "x": [ + 5134795695995115566, + 12287750992060803275, + 3112021177339560487, + 2737779104829043419 + ], + "y": [ + 12960786984497012138, + 17246059378047870426, + 11486754204718893642, + 46104506716724806 + ], "infinity": false }, { - "x": [148472607159578301, 1393814398025790148, 13651878286378332448, 3460878321325997474], - "y": [10791022888598424744, 1931353219232076143, 12342018346439101174, 23632989633122111], + "x": [ + 148472607159578301, + 1393814398025790148, + 13651878286378332448, + 3460878321325997474 + ], + "y": [ + 10791022888598424744, + 1931353219232076143, + 12342018346439101174, + 23632989633122111 + ], "infinity": false }, { - "x": [1355031833403957875, 10754997913401276231, 8672292473740482178, 3014145653612856517], - "y": [3728402825933673134, 16492594359417243041, 14619929139939206930, 2894280666048705144], + "x": [ + 1355031833403957875, + 10754997913401276231, + 8672292473740482178, + 3014145653612856517 + ], + "y": [ + 3728402825933673134, + 16492594359417243041, + 14619929139939206930, + 2894280666048705144 + ], "infinity": false }, { - "x": [11362104917939269301, 3050269804312222606, 17884269955997757593, 2804911625130359365], - "y": [9563576475625880180, 9736108320914226650, 11545696954602328389, 1108440262014676246], + "x": [ + 11362104917939269301, + 3050269804312222606, + 17884269955997757593, + 2804911625130359365 + ], + "y": [ + 9563576475625880180, + 9736108320914226650, + 11545696954602328389, + 1108440262014676246 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [5367643753678334453, 18149093736372716410, 1335188566370936146, 668596617655217713], - "y": [9984652217894703540, 16253861114794085212, 2139268495406835151, 710303505771002735], + "x": [ + 5367643753678334453, + 18149093736372716410, + 1335188566370936146, + 668596617655217713 + ], + "y": [ + 9984652217894703540, + 16253861114794085212, + 2139268495406835151, + 710303505771002735 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_13_key.json b/core/bin/verification_key_generator_and_server/data/verification_13_key.json index bfa771167dd0..73ffbd212002 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_13_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_13_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [17551054392858982554, 6093238351564742844, 9461983640740135929, 665917981733823732], - "y": [5039211542045701927, 14102316155129161178, 7599318237652648682, 1484263542771007309], + "x": [ + 17551054392858982554, + 6093238351564742844, + 9461983640740135929, + 665917981733823732 + ], + "y": [ + 5039211542045701927, + 14102316155129161178, + 7599318237652648682, + 1484263542771007309 + ], "infinity": false }, { - "x": [14015566113565304739, 12895182424777444911, 5150482782915031712, 3280776276671330755], - "y": [5503211683737487414, 5857977821275887356, 1294122171191120577, 2917900236095606783], + "x": [ + 14015566113565304739, + 12895182424777444911, + 5150482782915031712, + 3280776276671330755 + ], + "y": [ + 5503211683737487414, + 5857977821275887356, + 1294122171191120577, + 2917900236095606783 + ], "infinity": false }, { - "x": [11180353512945796758, 5467792637578213396, 14862660111090994534, 1678570344676416345], - "y": [16496106534540891926, 4355829424666415263, 8379906815867503783, 2141225531456729878], + "x": [ + 11180353512945796758, + 5467792637578213396, + 14862660111090994534, + 1678570344676416345 + ], + "y": [ + 16496106534540891926, + 4355829424666415263, + 8379906815867503783, + 2141225531456729878 + ], "infinity": false }, { - "x": [10512618919562577175, 8909238001556772501, 8669074760108324520, 3259590816167766101], - "y": [15477336671232249792, 10209451912771766896, 13672268903388741173, 682487251336397201], + "x": [ + 10512618919562577175, + 8909238001556772501, + 8669074760108324520, + 3259590816167766101 + ], + "y": [ + 15477336671232249792, + 10209451912771766896, + 13672268903388741173, + 682487251336397201 + ], "infinity": false }, { - "x": [14233534177298597555, 14428793231398751908, 18070433438826750034, 1176819688107481869], - "y": [9251234182098356520, 17131606126090989402, 17185633762130361526, 70013401388751862], + "x": [ + 14233534177298597555, + 14428793231398751908, + 18070433438826750034, + 1176819688107481869 + ], + "y": [ + 9251234182098356520, + 17131606126090989402, + 17185633762130361526, + 70013401388751862 + ], "infinity": false }, { - "x": [14148566925658671094, 812517577375883951, 5030512299767107864, 44275794325016754], - "y": [3275438385460491589, 12366768737850140720, 10754478223029148744, 64366431004577735], + "x": [ + 14148566925658671094, + 812517577375883951, + 5030512299767107864, + 44275794325016754 + ], + "y": [ + 3275438385460491589, + 12366768737850140720, + 10754478223029148744, + 64366431004577735 + ], "infinity": false }, { - "x": [5646513434714516506, 12578668031398681290, 6956692825033783810, 536471110695536326], - "y": [876079378616587621, 9787032999740439668, 14965634813605966164, 367083452910738472], + "x": [ + 5646513434714516506, + 12578668031398681290, + 6956692825033783810, + 536471110695536326 + ], + "y": [ + 876079378616587621, + 9787032999740439668, + 14965634813605966164, + 367083452910738472 + ], "infinity": false }, { - "x": [10902302115259229513, 14044271471332330954, 14571826360674828773, 733766328575554031], - "y": [8186695183963076514, 621472878958955881, 14756382569165412398, 3165780226323675661], + "x": [ + 10902302115259229513, + 14044271471332330954, + 14571826360674828773, + 733766328575554031 + ], + "y": [ + 8186695183963076514, + 621472878958955881, + 14756382569165412398, + 3165780226323675661 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [17780673306296332984, 10355922416617009060, 5077451999006954761, 2644291606399153501], - "y": [884498752701137122, 731399349168706916, 4286165746592754883, 3279732117855760703], + "x": [ + 17780673306296332984, + 10355922416617009060, + 5077451999006954761, + 2644291606399153501 + ], + "y": [ + 884498752701137122, + 731399349168706916, + 4286165746592754883, + 3279732117855760703 + ], "infinity": false }, { - "x": [11012802284910829398, 7859388231941271159, 17586341808458361180, 1386364899721133297], - "y": [15634369655108108777, 3858480397682251762, 17706291110507066608, 1663421415693803071], + "x": [ + 11012802284910829398, + 7859388231941271159, + 17586341808458361180, + 1386364899721133297 + ], + "y": [ + 15634369655108108777, + 3858480397682251762, + 17706291110507066608, + 1663421415693803071 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [18134041530736321349, 4345724579806003155, 2324407857452293002, 2319164124977213120], - "y": [14302129084811449335, 8588677756442252515, 3323846949783670865, 2109729211841784387], + "x": [ + 18134041530736321349, + 4345724579806003155, + 2324407857452293002, + 2319164124977213120 + ], + "y": [ + 14302129084811449335, + 8588677756442252515, + 3323846949783670865, + 2109729211841784387 + ], "infinity": false }, { - "x": [14486843004985564085, 10799247040254992370, 7658639806933647132, 2215292564171027727], - "y": [14258341133968554193, 11685656973533320944, 14111972937744219524, 1172604679688980794], + "x": [ + 14486843004985564085, + 10799247040254992370, + 7658639806933647132, + 2215292564171027727 + ], + "y": [ + 14258341133968554193, + 11685656973533320944, + 14111972937744219524, + 1172604679688980794 + ], "infinity": false }, { - "x": [12872375111956991701, 14049784009914403066, 15325016171856456312, 2811875539960405333], - "y": [5711194902040443430, 13827091592207472460, 17950028361571343192, 1672758585097311581], + "x": [ + 12872375111956991701, + 14049784009914403066, + 15325016171856456312, + 2811875539960405333 + ], + "y": [ + 5711194902040443430, + 13827091592207472460, + 17950028361571343192, + 1672758585097311581 + ], "infinity": false }, { - "x": [11717525586585736911, 730672019767199816, 3010255132348992613, 2780587454575324896], - "y": [1473124157542628664, 1573646910034288561, 10026766074599473146, 563223750818543582], + "x": [ + 11717525586585736911, + 730672019767199816, + 3010255132348992613, + 2780587454575324896 + ], + "y": [ + 1473124157542628664, + 1573646910034288561, + 10026766074599473146, + 563223750818543582 + ], "infinity": false } ], "total_lookup_entries_length": 42547753, "lookup_selector_commitment": { - "x": [4539928924349895484, 2792770915461027618, 11611697420465472575, 1384307956752801018], - "y": [8840366360901511807, 8892919985613263102, 11941090149541110830, 1930352681887390920], + "x": [ + 4539928924349895484, + 2792770915461027618, + 11611697420465472575, + 1384307956752801018 + ], + "y": [ + 8840366360901511807, + 8892919985613263102, + 11941090149541110830, + 1930352681887390920 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [4121704254446914578, 13863658665929861884, 15362282368839162345, 2762703036966024619], - "y": [102846692212239082, 14904466746900448136, 16872429770359000841, 1687152581020907098], + "x": [ + 4121704254446914578, + 13863658665929861884, + 15362282368839162345, + 2762703036966024619 + ], + "y": [ + 102846692212239082, + 14904466746900448136, + 16872429770359000841, + 1687152581020907098 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_14_key.json b/core/bin/verification_key_generator_and_server/data/verification_14_key.json index 48c1ee6a6a77..e8c42d407e35 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_14_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_14_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [6916434521451934576, 614815553772638285, 3742595993843812033, 2823214088432624432], - "y": [11642815096362884283, 18063950820723921281, 6353943092001719992, 3201898419478369298], + "x": [ + 6916434521451934576, + 614815553772638285, + 3742595993843812033, + 2823214088432624432 + ], + "y": [ + 11642815096362884283, + 18063950820723921281, + 6353943092001719992, + 3201898419478369298 + ], "infinity": false }, { - "x": [10647237757917239762, 1269177049592707998, 2650053775033150725, 582198744757304104], - "y": [9804667267596536998, 493663115027956828, 13953159385227792767, 1568248765042207679], + "x": [ + 10647237757917239762, + 1269177049592707998, + 2650053775033150725, + 582198744757304104 + ], + "y": [ + 9804667267596536998, + 493663115027956828, + 13953159385227792767, + 1568248765042207679 + ], "infinity": false }, { - "x": [7910659438561833906, 12456422925439856914, 10869604528749370003, 1213616301038416610], - "y": [2606202790862698157, 6809934263763206210, 17472080335242458272, 2884639755368519501], + "x": [ + 7910659438561833906, + 12456422925439856914, + 10869604528749370003, + 1213616301038416610 + ], + "y": [ + 2606202790862698157, + 6809934263763206210, + 17472080335242458272, + 2884639755368519501 + ], "infinity": false }, { - "x": [14211325859682683183, 11018598407116786751, 10064425366978091674, 2748595948091261209], - "y": [13960202853590116423, 1211975538022172568, 16303435518817750320, 1634234707214097860], + "x": [ + 14211325859682683183, + 11018598407116786751, + 10064425366978091674, + 2748595948091261209 + ], + "y": [ + 13960202853590116423, + 1211975538022172568, + 16303435518817750320, + 1634234707214097860 + ], "infinity": false }, { - "x": [4528591178982443847, 16310104707629911601, 5532120103079323919, 1347877820087040669], - "y": [17983603511717948746, 9529659424488112452, 7820918413906679254, 1819855238351369466], + "x": [ + 4528591178982443847, + 16310104707629911601, + 5532120103079323919, + 1347877820087040669 + ], + "y": [ + 17983603511717948746, + 9529659424488112452, + 7820918413906679254, + 1819855238351369466 + ], "infinity": false }, { - "x": [14415562798118912210, 6550719056383417327, 424281724891761932, 1264340531903932141], - "y": [7768057951329404686, 15024442753889769568, 9676935351692818899, 1492251668690310932], + "x": [ + 14415562798118912210, + 6550719056383417327, + 424281724891761932, + 1264340531903932141 + ], + "y": [ + 7768057951329404686, + 15024442753889769568, + 9676935351692818899, + 1492251668690310932 + ], "infinity": false }, { - "x": [2619366878850208112, 12150914745315976156, 8375197026043390274, 1935272977563031501], - "y": [5381369692389055354, 17978011500330472972, 17420193441326928998, 479187691463910357], + "x": [ + 2619366878850208112, + 12150914745315976156, + 8375197026043390274, + 1935272977563031501 + ], + "y": [ + 5381369692389055354, + 17978011500330472972, + 17420193441326928998, + 479187691463910357 + ], "infinity": false }, { - "x": [8720830951139717797, 15985700059986022675, 11876530273787337931, 421322430672290976], - "y": [9700690437922183179, 1976785701667862157, 16634886936358874061, 3002178567925406588], + "x": [ + 8720830951139717797, + 15985700059986022675, + 11876530273787337931, + 421322430672290976 + ], + "y": [ + 9700690437922183179, + 1976785701667862157, + 16634886936358874061, + 3002178567925406588 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [8284083154661042764, 11776500066398184343, 868620904897679124, 2988582549909766892], - "y": [10794129605563176627, 15487634480061313925, 17194646451372113884, 2087686927573540537], + "x": [ + 8284083154661042764, + 11776500066398184343, + 868620904897679124, + 2988582549909766892 + ], + "y": [ + 10794129605563176627, + 15487634480061313925, + 17194646451372113884, + 2087686927573540537 + ], "infinity": false }, { - "x": [7916190330285050096, 11731220788334102406, 6221883233572429550, 2552280229203107267], - "y": [10510502959728300366, 14682539966609739595, 8275243146917870162, 164811532254637923], + "x": [ + 7916190330285050096, + 11731220788334102406, + 6221883233572429550, + 2552280229203107267 + ], + "y": [ + 10510502959728300366, + 14682539966609739595, + 8275243146917870162, + 164811532254637923 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [195850038587200624, 10136289160450054078, 4386512701252721226, 219366815902177323], - "y": [12042545079209848932, 599057886584676736, 14545610403811537682, 498958995843318019], + "x": [ + 195850038587200624, + 10136289160450054078, + 4386512701252721226, + 219366815902177323 + ], + "y": [ + 12042545079209848932, + 599057886584676736, + 14545610403811537682, + 498958995843318019 + ], "infinity": false }, { - "x": [4721932753701441297, 1676671918244393403, 6943597542294442696, 50994782040503038], - "y": [8321420884695240511, 10606883887907326697, 11471075822795411018, 1311422627151559437], + "x": [ + 4721932753701441297, + 1676671918244393403, + 6943597542294442696, + 50994782040503038 + ], + "y": [ + 8321420884695240511, + 10606883887907326697, + 11471075822795411018, + 1311422627151559437 + ], "infinity": false }, { - "x": [85448132386017640, 13016912343020112485, 11647418800345296605, 1741562939125330787], - "y": [10753835454658443286, 8646325836340244979, 7348777908140142985, 2196062626460604424], + "x": [ + 85448132386017640, + 13016912343020112485, + 11647418800345296605, + 1741562939125330787 + ], + "y": [ + 10753835454658443286, + 8646325836340244979, + 7348777908140142985, + 2196062626460604424 + ], "infinity": false }, { - "x": [2125624295892265840, 12754141819506101591, 8789168208880604752, 947087620272222934], - "y": [12566258871261234263, 12307504590191426495, 6700589767183706452, 1828704371386663334], + "x": [ + 2125624295892265840, + 12754141819506101591, + 8789168208880604752, + 947087620272222934 + ], + "y": [ + 12566258871261234263, + 12307504590191426495, + 6700589767183706452, + 1828704371386663334 + ], "infinity": false } ], "total_lookup_entries_length": 42212029, "lookup_selector_commitment": { - "x": [7709849601046260359, 6836713108454667472, 17360769186231334246, 2348971634881039863], - "y": [13380830060569421804, 15446653016734774164, 17884501636917484387, 1386904567459265970], + "x": [ + 7709849601046260359, + 6836713108454667472, + 17360769186231334246, + 2348971634881039863 + ], + "y": [ + 13380830060569421804, + 15446653016734774164, + 17884501636917484387, + 1386904567459265970 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [6960699536013090594, 2075384204892265266, 12053931571725248687, 1371193846897305849], - "y": [8904850119058507432, 10465598889525773001, 16159541505228012497, 1982452464017823539], + "x": [ + 6960699536013090594, + 2075384204892265266, + 12053931571725248687, + 1371193846897305849 + ], + "y": [ + 8904850119058507432, + 10465598889525773001, + 16159541505228012497, + 1982452464017823539 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_15_key.json b/core/bin/verification_key_generator_and_server/data/verification_15_key.json index 674c931f1bd8..356dbb3c531a 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_15_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_15_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [3227382513538635502, 10189582412003011525, 1928710987967879299, 1641062823248805930], - "y": [3271795224553087841, 14036363906521936156, 10253705337161624780, 3091191233208402889], + "x": [ + 3227382513538635502, + 10189582412003011525, + 1928710987967879299, + 1641062823248805930 + ], + "y": [ + 3271795224553087841, + 14036363906521936156, + 10253705337161624780, + 3091191233208402889 + ], "infinity": false }, { - "x": [3541471743181642086, 8117051273006688414, 685909872467163024, 2614724468827209722], - "y": [1096952120887201428, 8197980407203032569, 3949713006885563085, 2838982585728277197], + "x": [ + 3541471743181642086, + 8117051273006688414, + 685909872467163024, + 2614724468827209722 + ], + "y": [ + 1096952120887201428, + 8197980407203032569, + 3949713006885563085, + 2838982585728277197 + ], "infinity": false }, { - "x": [12432945880074879560, 13444859845042471186, 16599097070979057001, 3064039790213026567], - "y": [3745088406100356357, 11715355314289478148, 2282946417129489745, 1619614407449915711], + "x": [ + 12432945880074879560, + 13444859845042471186, + 16599097070979057001, + 3064039790213026567 + ], + "y": [ + 3745088406100356357, + 11715355314289478148, + 2282946417129489745, + 1619614407449915711 + ], "infinity": false }, { - "x": [6864310053920223866, 11095455024311706186, 12229748247000682102, 2475016349586561501], - "y": [2946781066962542712, 14275500021265062654, 7624481756022778467, 1439658776940615826], + "x": [ + 6864310053920223866, + 11095455024311706186, + 12229748247000682102, + 2475016349586561501 + ], + "y": [ + 2946781066962542712, + 14275500021265062654, + 7624481756022778467, + 1439658776940615826 + ], "infinity": false }, { - "x": [13589273139905087785, 10411035015021574213, 7322465558208873130, 1805943743448229826], - "y": [13035238946064559886, 8309482746549063820, 14229757515324464781, 1676135665275665956], + "x": [ + 13589273139905087785, + 10411035015021574213, + 7322465558208873130, + 1805943743448229826 + ], + "y": [ + 13035238946064559886, + 8309482746549063820, + 14229757515324464781, + 1676135665275665956 + ], "infinity": false }, { - "x": [84006308859404982, 13783127238980064918, 14101945786439708601, 3343881426944938693], - "y": [11959320721291234482, 7288504259378326725, 9638777183731403514, 1648453409181088010], + "x": [ + 84006308859404982, + 13783127238980064918, + 14101945786439708601, + 3343881426944938693 + ], + "y": [ + 11959320721291234482, + 7288504259378326725, + 9638777183731403514, + 1648453409181088010 + ], "infinity": false }, { - "x": [10987163680360734145, 3374907765066907489, 14421201974855570464, 3148542489906320493], - "y": [17180031485000081847, 1609372527008367113, 6050341427989573858, 477684541505306009], + "x": [ + 10987163680360734145, + 3374907765066907489, + 14421201974855570464, + 3148542489906320493 + ], + "y": [ + 17180031485000081847, + 1609372527008367113, + 6050341427989573858, + 477684541505306009 + ], "infinity": false }, { - "x": [2257028353691713628, 6330174784373016532, 1686021628649718039, 2159927805963705967], - "y": [10814125155819336479, 9673780307204445954, 7995606758095566598, 2252251279727988680], + "x": [ + 2257028353691713628, + 6330174784373016532, + 1686021628649718039, + 2159927805963705967 + ], + "y": [ + 10814125155819336479, + 9673780307204445954, + 7995606758095566598, + 2252251279727988680 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [12209724104183572477, 11631007075974892904, 18407423517909669447, 1123848354500646471], - "y": [4749227851055533192, 16918951234067984229, 5345146076707243019, 2836719468222132526], + "x": [ + 12209724104183572477, + 11631007075974892904, + 18407423517909669447, + 1123848354500646471 + ], + "y": [ + 4749227851055533192, + 16918951234067984229, + 5345146076707243019, + 2836719468222132526 + ], "infinity": false }, { - "x": [7250866110466496804, 16022969863388101391, 16334300930347324147, 2232272485807431638], - "y": [257675104580526310, 8044331403028603186, 2070174268860891010, 412313474208091695], + "x": [ + 7250866110466496804, + 16022969863388101391, + 16334300930347324147, + 2232272485807431638 + ], + "y": [ + 257675104580526310, + 8044331403028603186, + 2070174268860891010, + 412313474208091695 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [6736882681315025594, 13400430183084617843, 17182588928882896917, 413858188107207402], - "y": [11944170108613027081, 10598841640624895850, 9086311820289524704, 994240611047161478], + "x": [ + 6736882681315025594, + 13400430183084617843, + 17182588928882896917, + 413858188107207402 + ], + "y": [ + 11944170108613027081, + 10598841640624895850, + 9086311820289524704, + 994240611047161478 + ], "infinity": false }, { - "x": [9500318283622871785, 5480449932874899465, 13224510306395939252, 1891329668301281157], - "y": [7314078756040350933, 1023294602177498218, 16475078688698425911, 1793945182112302214], + "x": [ + 9500318283622871785, + 5480449932874899465, + 13224510306395939252, + 1891329668301281157 + ], + "y": [ + 7314078756040350933, + 1023294602177498218, + 16475078688698425911, + 1793945182112302214 + ], "infinity": false }, { - "x": [17207548058425781429, 2519222249126358251, 16087595361924038018, 3470846273906312296], - "y": [7578361094884620755, 7082109151721400218, 13675372677342046523, 3204472226310685459], + "x": [ + 17207548058425781429, + 2519222249126358251, + 16087595361924038018, + 3470846273906312296 + ], + "y": [ + 7578361094884620755, + 7082109151721400218, + 13675372677342046523, + 3204472226310685459 + ], "infinity": false }, { - "x": [7036282717341939568, 3035419720331773758, 6765191455902729185, 1301973211946290083], - "y": [697377419426635450, 14612037890797520515, 11746079616766057625, 1031190413179598818], + "x": [ + 7036282717341939568, + 3035419720331773758, + 6765191455902729185, + 1301973211946290083 + ], + "y": [ + 697377419426635450, + 14612037890797520515, + 11746079616766057625, + 1031190413179598818 + ], "infinity": false } ], "total_lookup_entries_length": 6391155, "lookup_selector_commitment": { - "x": [17111915492430945419, 17971275185478677346, 14211391044159602918, 2381455978713737016], - "y": [13971515893527127207, 7078722574057096191, 6337080743811431820, 757015217034494132], + "x": [ + 17111915492430945419, + 17971275185478677346, + 14211391044159602918, + 2381455978713737016 + ], + "y": [ + 13971515893527127207, + 7078722574057096191, + 6337080743811431820, + 757015217034494132 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], - "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], + "x": [ + 5825422128268478267, + 9219263846299851036, + 3879231702557190566, + 1702488722758880769 + ], + "y": [ + 18311881100262470992, + 5742998199368802392, + 18106865487471159417, + 502191980176920012 + ], "infinity": false }, { - "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], - "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], + "x": [ + 17195892082859417081, + 7890531942603584793, + 2381805632820057528, + 3173232410464566465 + ], + "y": [ + 16359614627947132075, + 3459600273035137079, + 4550762061432972122, + 3394559699318358224 + ], "infinity": false }, { - "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], - "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], + "x": [ + 1716103379277390185, + 18097936269579187542, + 16357329729761063450, + 1508640059338197502 + ], + "y": [ + 11014806739603983364, + 4396503314588777389, + 9397245609635151055, + 1703957955248411380 + ], "infinity": false }, { - "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], - "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], + "x": [ + 4770171350693477354, + 17110558673192292253, + 9799800677557311408, + 761984875463445481 + ], + "y": [ + 1560561403388310063, + 31331275310848146, + 287152055803835484, + 457826332542037277 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [12452920133699897102, 6896642231513345496, 4655495116895575043, 1453525729114564853], - "y": [3574087764464303986, 10141819911397868785, 2342639320036978232, 556196027732983028], + "x": [ + 12452920133699897102, + 6896642231513345496, + 4655495116895575043, + 1453525729114564853 + ], + "y": [ + 3574087764464303986, + 10141819911397868785, + 2342639320036978232, + 556196027732983028 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_16_key.json b/core/bin/verification_key_generator_and_server/data/verification_16_key.json index 674c931f1bd8..356dbb3c531a 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_16_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_16_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [3227382513538635502, 10189582412003011525, 1928710987967879299, 1641062823248805930], - "y": [3271795224553087841, 14036363906521936156, 10253705337161624780, 3091191233208402889], + "x": [ + 3227382513538635502, + 10189582412003011525, + 1928710987967879299, + 1641062823248805930 + ], + "y": [ + 3271795224553087841, + 14036363906521936156, + 10253705337161624780, + 3091191233208402889 + ], "infinity": false }, { - "x": [3541471743181642086, 8117051273006688414, 685909872467163024, 2614724468827209722], - "y": [1096952120887201428, 8197980407203032569, 3949713006885563085, 2838982585728277197], + "x": [ + 3541471743181642086, + 8117051273006688414, + 685909872467163024, + 2614724468827209722 + ], + "y": [ + 1096952120887201428, + 8197980407203032569, + 3949713006885563085, + 2838982585728277197 + ], "infinity": false }, { - "x": [12432945880074879560, 13444859845042471186, 16599097070979057001, 3064039790213026567], - "y": [3745088406100356357, 11715355314289478148, 2282946417129489745, 1619614407449915711], + "x": [ + 12432945880074879560, + 13444859845042471186, + 16599097070979057001, + 3064039790213026567 + ], + "y": [ + 3745088406100356357, + 11715355314289478148, + 2282946417129489745, + 1619614407449915711 + ], "infinity": false }, { - "x": [6864310053920223866, 11095455024311706186, 12229748247000682102, 2475016349586561501], - "y": [2946781066962542712, 14275500021265062654, 7624481756022778467, 1439658776940615826], + "x": [ + 6864310053920223866, + 11095455024311706186, + 12229748247000682102, + 2475016349586561501 + ], + "y": [ + 2946781066962542712, + 14275500021265062654, + 7624481756022778467, + 1439658776940615826 + ], "infinity": false }, { - "x": [13589273139905087785, 10411035015021574213, 7322465558208873130, 1805943743448229826], - "y": [13035238946064559886, 8309482746549063820, 14229757515324464781, 1676135665275665956], + "x": [ + 13589273139905087785, + 10411035015021574213, + 7322465558208873130, + 1805943743448229826 + ], + "y": [ + 13035238946064559886, + 8309482746549063820, + 14229757515324464781, + 1676135665275665956 + ], "infinity": false }, { - "x": [84006308859404982, 13783127238980064918, 14101945786439708601, 3343881426944938693], - "y": [11959320721291234482, 7288504259378326725, 9638777183731403514, 1648453409181088010], + "x": [ + 84006308859404982, + 13783127238980064918, + 14101945786439708601, + 3343881426944938693 + ], + "y": [ + 11959320721291234482, + 7288504259378326725, + 9638777183731403514, + 1648453409181088010 + ], "infinity": false }, { - "x": [10987163680360734145, 3374907765066907489, 14421201974855570464, 3148542489906320493], - "y": [17180031485000081847, 1609372527008367113, 6050341427989573858, 477684541505306009], + "x": [ + 10987163680360734145, + 3374907765066907489, + 14421201974855570464, + 3148542489906320493 + ], + "y": [ + 17180031485000081847, + 1609372527008367113, + 6050341427989573858, + 477684541505306009 + ], "infinity": false }, { - "x": [2257028353691713628, 6330174784373016532, 1686021628649718039, 2159927805963705967], - "y": [10814125155819336479, 9673780307204445954, 7995606758095566598, 2252251279727988680], + "x": [ + 2257028353691713628, + 6330174784373016532, + 1686021628649718039, + 2159927805963705967 + ], + "y": [ + 10814125155819336479, + 9673780307204445954, + 7995606758095566598, + 2252251279727988680 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [12209724104183572477, 11631007075974892904, 18407423517909669447, 1123848354500646471], - "y": [4749227851055533192, 16918951234067984229, 5345146076707243019, 2836719468222132526], + "x": [ + 12209724104183572477, + 11631007075974892904, + 18407423517909669447, + 1123848354500646471 + ], + "y": [ + 4749227851055533192, + 16918951234067984229, + 5345146076707243019, + 2836719468222132526 + ], "infinity": false }, { - "x": [7250866110466496804, 16022969863388101391, 16334300930347324147, 2232272485807431638], - "y": [257675104580526310, 8044331403028603186, 2070174268860891010, 412313474208091695], + "x": [ + 7250866110466496804, + 16022969863388101391, + 16334300930347324147, + 2232272485807431638 + ], + "y": [ + 257675104580526310, + 8044331403028603186, + 2070174268860891010, + 412313474208091695 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [6736882681315025594, 13400430183084617843, 17182588928882896917, 413858188107207402], - "y": [11944170108613027081, 10598841640624895850, 9086311820289524704, 994240611047161478], + "x": [ + 6736882681315025594, + 13400430183084617843, + 17182588928882896917, + 413858188107207402 + ], + "y": [ + 11944170108613027081, + 10598841640624895850, + 9086311820289524704, + 994240611047161478 + ], "infinity": false }, { - "x": [9500318283622871785, 5480449932874899465, 13224510306395939252, 1891329668301281157], - "y": [7314078756040350933, 1023294602177498218, 16475078688698425911, 1793945182112302214], + "x": [ + 9500318283622871785, + 5480449932874899465, + 13224510306395939252, + 1891329668301281157 + ], + "y": [ + 7314078756040350933, + 1023294602177498218, + 16475078688698425911, + 1793945182112302214 + ], "infinity": false }, { - "x": [17207548058425781429, 2519222249126358251, 16087595361924038018, 3470846273906312296], - "y": [7578361094884620755, 7082109151721400218, 13675372677342046523, 3204472226310685459], + "x": [ + 17207548058425781429, + 2519222249126358251, + 16087595361924038018, + 3470846273906312296 + ], + "y": [ + 7578361094884620755, + 7082109151721400218, + 13675372677342046523, + 3204472226310685459 + ], "infinity": false }, { - "x": [7036282717341939568, 3035419720331773758, 6765191455902729185, 1301973211946290083], - "y": [697377419426635450, 14612037890797520515, 11746079616766057625, 1031190413179598818], + "x": [ + 7036282717341939568, + 3035419720331773758, + 6765191455902729185, + 1301973211946290083 + ], + "y": [ + 697377419426635450, + 14612037890797520515, + 11746079616766057625, + 1031190413179598818 + ], "infinity": false } ], "total_lookup_entries_length": 6391155, "lookup_selector_commitment": { - "x": [17111915492430945419, 17971275185478677346, 14211391044159602918, 2381455978713737016], - "y": [13971515893527127207, 7078722574057096191, 6337080743811431820, 757015217034494132], + "x": [ + 17111915492430945419, + 17971275185478677346, + 14211391044159602918, + 2381455978713737016 + ], + "y": [ + 13971515893527127207, + 7078722574057096191, + 6337080743811431820, + 757015217034494132 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], - "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], + "x": [ + 5825422128268478267, + 9219263846299851036, + 3879231702557190566, + 1702488722758880769 + ], + "y": [ + 18311881100262470992, + 5742998199368802392, + 18106865487471159417, + 502191980176920012 + ], "infinity": false }, { - "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], - "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], + "x": [ + 17195892082859417081, + 7890531942603584793, + 2381805632820057528, + 3173232410464566465 + ], + "y": [ + 16359614627947132075, + 3459600273035137079, + 4550762061432972122, + 3394559699318358224 + ], "infinity": false }, { - "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], - "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], + "x": [ + 1716103379277390185, + 18097936269579187542, + 16357329729761063450, + 1508640059338197502 + ], + "y": [ + 11014806739603983364, + 4396503314588777389, + 9397245609635151055, + 1703957955248411380 + ], "infinity": false }, { - "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], - "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], + "x": [ + 4770171350693477354, + 17110558673192292253, + 9799800677557311408, + 761984875463445481 + ], + "y": [ + 1560561403388310063, + 31331275310848146, + 287152055803835484, + 457826332542037277 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [12452920133699897102, 6896642231513345496, 4655495116895575043, 1453525729114564853], - "y": [3574087764464303986, 10141819911397868785, 2342639320036978232, 556196027732983028], + "x": [ + 12452920133699897102, + 6896642231513345496, + 4655495116895575043, + 1453525729114564853 + ], + "y": [ + 3574087764464303986, + 10141819911397868785, + 2342639320036978232, + 556196027732983028 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_17_key.json b/core/bin/verification_key_generator_and_server/data/verification_17_key.json index 274d4625f42b..4886f501712e 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_17_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_17_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [17914331890341023175, 5200903915088916638, 7417971632353510341, 989671567770015891], - "y": [2927207345798721401, 12686845373576710402, 977520799157489114, 1882223742569339495], + "x": [ + 17914331890341023175, + 5200903915088916638, + 7417971632353510341, + 989671567770015891 + ], + "y": [ + 2927207345798721401, + 12686845373576710402, + 977520799157489114, + 1882223742569339495 + ], "infinity": false }, { - "x": [17162848902278956536, 16169550484471334725, 10830640611178609260, 1347016616567630867], - "y": [6224316231648682710, 10518372790293065661, 4887066336660303630, 703109868065750569], + "x": [ + 17162848902278956536, + 16169550484471334725, + 10830640611178609260, + 1347016616567630867 + ], + "y": [ + 6224316231648682710, + 10518372790293065661, + 4887066336660303630, + 703109868065750569 + ], "infinity": false }, { - "x": [15783141083967762454, 16153855592853073081, 5667838393811413602, 1552498518850981979], - "y": [4220445586486275972, 13196202402039716924, 17506868028821343237, 2718319833724164541], + "x": [ + 15783141083967762454, + 16153855592853073081, + 5667838393811413602, + 1552498518850981979 + ], + "y": [ + 4220445586486275972, + 13196202402039716924, + 17506868028821343237, + 2718319833724164541 + ], "infinity": false }, { - "x": [4896615254637588846, 5804270398165250639, 10274952983674590649, 1937027782721476561], - "y": [14180244016629518742, 1376497406583367686, 11268467489552574214, 2331396669725958189], + "x": [ + 4896615254637588846, + 5804270398165250639, + 10274952983674590649, + 1937027782721476561 + ], + "y": [ + 14180244016629518742, + 1376497406583367686, + 11268467489552574214, + 2331396669725958189 + ], "infinity": false }, { - "x": [191294939748295885, 2804205121966814820, 3897841028303648224, 3406986167359695085], - "y": [6000542982074572633, 1697448874567677325, 10313504031977824294, 320347014349001728], + "x": [ + 191294939748295885, + 2804205121966814820, + 3897841028303648224, + 3406986167359695085 + ], + "y": [ + 6000542982074572633, + 1697448874567677325, + 10313504031977824294, + 320347014349001728 + ], "infinity": false }, { - "x": [6817435454105168413, 15823888625999007373, 9766931118761036330, 3392959293697897728], - "y": [3549039265311512008, 4758653036115592629, 219467419355603781, 83059544477934848], + "x": [ + 6817435454105168413, + 15823888625999007373, + 9766931118761036330, + 3392959293697897728 + ], + "y": [ + 3549039265311512008, + 4758653036115592629, + 219467419355603781, + 83059544477934848 + ], "infinity": false }, { - "x": [5038171725639341807, 6859992384823395611, 15284967171349293554, 16807092603996758], - "y": [16504201956683368367, 12931995037356002803, 16812826192957092842, 3169839139097845275], + "x": [ + 5038171725639341807, + 6859992384823395611, + 15284967171349293554, + 16807092603996758 + ], + "y": [ + 16504201956683368367, + 12931995037356002803, + 16812826192957092842, + 3169839139097845275 + ], "infinity": false }, { - "x": [7140480682142203727, 9518528852331365100, 6189914959408603471, 535939568308325781], - "y": [5944679084532939174, 17280810090456322382, 3743919877743496107, 1235924204609568068], + "x": [ + 7140480682142203727, + 9518528852331365100, + 6189914959408603471, + 535939568308325781 + ], + "y": [ + 5944679084532939174, + 17280810090456322382, + 3743919877743496107, + 1235924204609568068 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [1929812895882850703, 10386198218814398503, 17007521659662498274, 1093092717342753672], - "y": [14834187133095267171, 15506032964234961178, 7626816120460943443, 871778379365004315], + "x": [ + 1929812895882850703, + 10386198218814398503, + 17007521659662498274, + 1093092717342753672 + ], + "y": [ + 14834187133095267171, + 15506032964234961178, + 7626816120460943443, + 871778379365004315 + ], "infinity": false }, { - "x": [15660406110329165813, 8146521122567923995, 2421739551937359002, 3037598346026174089], - "y": [526124545966722472, 1168331442853419483, 4128095883471549051, 2951909971734725955], + "x": [ + 15660406110329165813, + 8146521122567923995, + 2421739551937359002, + 3037598346026174089 + ], + "y": [ + 526124545966722472, + 1168331442853419483, + 4128095883471549051, + 2951909971734725955 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [6206240620508019400, 3690935139087147193, 15230272164329216928, 2140680869789406894], - "y": [14967331981004447304, 1624146052760537503, 8986435052862626311, 334011853307313390], + "x": [ + 6206240620508019400, + 3690935139087147193, + 15230272164329216928, + 2140680869789406894 + ], + "y": [ + 14967331981004447304, + 1624146052760537503, + 8986435052862626311, + 334011853307313390 + ], "infinity": false }, { - "x": [4342223064246074020, 2037946044543710684, 9057698479075332373, 1955362957846693345], - "y": [13253375713250043938, 6754658208742468331, 9339617748652368850, 3066524060291544175], + "x": [ + 4342223064246074020, + 2037946044543710684, + 9057698479075332373, + 1955362957846693345 + ], + "y": [ + 13253375713250043938, + 6754658208742468331, + 9339617748652368850, + 3066524060291544175 + ], "infinity": false }, { - "x": [17765629723696241082, 14243015821582305127, 922013493526048847, 186830516636733479], - "y": [14465184942185208224, 11235596895177038197, 5490682932088517686, 1253279069662324930], + "x": [ + 17765629723696241082, + 14243015821582305127, + 922013493526048847, + 186830516636733479 + ], + "y": [ + 14465184942185208224, + 11235596895177038197, + 5490682932088517686, + 1253279069662324930 + ], "infinity": false }, { - "x": [9369367805867402420, 12663806522952881709, 10184609326459106945, 1664572000409921348], - "y": [4383960972942823390, 6526609131568596717, 1343118583674917141, 113408414321095416], + "x": [ + 9369367805867402420, + 12663806522952881709, + 10184609326459106945, + 1664572000409921348 + ], + "y": [ + 4383960972942823390, + 6526609131568596717, + 1343118583674917141, + 113408414321095416 + ], "infinity": false } ], "total_lookup_entries_length": 6306340, "lookup_selector_commitment": { - "x": [8662938005624859815, 9126108646717466191, 14321121874090966307, 2777446762308933634], - "y": [12555265159079607081, 9054928862248682392, 2784170007581120117, 1769718192676345815], + "x": [ + 8662938005624859815, + 9126108646717466191, + 14321121874090966307, + 2777446762308933634 + ], + "y": [ + 12555265159079607081, + 9054928862248682392, + 2784170007581120117, + 1769718192676345815 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [12644448349947379666, 16345179309557779118, 10854030671875297787, 1358228639202695992], - "y": [2673142241557152443, 11674634738064487673, 12992693662201776412, 1888958170754620568], + "x": [ + 12644448349947379666, + 16345179309557779118, + 10854030671875297787, + 1358228639202695992 + ], + "y": [ + 2673142241557152443, + 11674634738064487673, + 12992693662201776412, + 1888958170754620568 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_18_key.json b/core/bin/verification_key_generator_and_server/data/verification_18_key.json index 68457e3688f9..0987039dd1fa 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_18_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_18_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [8828437332483635107, 13777915698231175292, 11504510351588004199, 2516385517175522236], - "y": [1530453459325046685, 2126477283125660971, 6874073688275717548, 2971751478402184988], + "x": [ + 8828437332483635107, + 13777915698231175292, + 11504510351588004199, + 2516385517175522236 + ], + "y": [ + 1530453459325046685, + 2126477283125660971, + 6874073688275717548, + 2971751478402184988 + ], "infinity": false }, { - "x": [3490885152333630169, 4123320877294819459, 5138828731030738163, 3039569146695764058], - "y": [10725322881860790776, 1512262420257872325, 10563843054743673205, 447776577449487981], + "x": [ + 3490885152333630169, + 4123320877294819459, + 5138828731030738163, + 3039569146695764058 + ], + "y": [ + 10725322881860790776, + 1512262420257872325, + 10563843054743673205, + 447776577449487981 + ], "infinity": false }, { - "x": [14957646468235752771, 6216555943494703122, 7827110015048654177, 2702223139144227095], - "y": [505353369980003046, 9687811614109626117, 5346740791392836415, 1340467989233731971], + "x": [ + 14957646468235752771, + 6216555943494703122, + 7827110015048654177, + 2702223139144227095 + ], + "y": [ + 505353369980003046, + 9687811614109626117, + 5346740791392836415, + 1340467989233731971 + ], "infinity": false }, { - "x": [3201028595190213325, 9659059230246338206, 901122635500995415, 765851963674764103], - "y": [10609226610841230792, 8145519080052709505, 17851750066177581293, 362176586681460505], + "x": [ + 3201028595190213325, + 9659059230246338206, + 901122635500995415, + 765851963674764103 + ], + "y": [ + 10609226610841230792, + 8145519080052709505, + 17851750066177581293, + 362176586681460505 + ], "infinity": false }, { - "x": [13374935211181268625, 1347742735582506393, 4588995338963087243, 94453217016201562], - "y": [4077548225372117006, 11859845367084549583, 2736752177668563039, 1134818940315684409], + "x": [ + 13374935211181268625, + 1347742735582506393, + 4588995338963087243, + 94453217016201562 + ], + "y": [ + 4077548225372117006, + 11859845367084549583, + 2736752177668563039, + 1134818940315684409 + ], "infinity": false }, { - "x": [9467178015658262369, 10545965721679492606, 5726831550010619228, 2051827871593168334], - "y": [6169140154733194545, 5574043976386236933, 12140759986363309479, 1521273866181786590], + "x": [ + 9467178015658262369, + 10545965721679492606, + 5726831550010619228, + 2051827871593168334 + ], + "y": [ + 6169140154733194545, + 5574043976386236933, + 12140759986363309479, + 1521273866181786590 + ], "infinity": false }, { - "x": [9642818207174528085, 15617465062711953088, 11263174413902929450, 639683138088730423], - "y": [15150652293369779803, 11338278639695990684, 12204993260723588081, 2039902155290309382], + "x": [ + 9642818207174528085, + 15617465062711953088, + 11263174413902929450, + 639683138088730423 + ], + "y": [ + 15150652293369779803, + 11338278639695990684, + 12204993260723588081, + 2039902155290309382 + ], "infinity": false }, { - "x": [7292405600450693833, 573142590034645775, 1583019100043676600, 1978695840953226358], - "y": [5154489367309996043, 8763740977657654022, 9821219773990064941, 2636875463267519559], + "x": [ + 7292405600450693833, + 573142590034645775, + 1583019100043676600, + 1978695840953226358 + ], + "y": [ + 5154489367309996043, + 8763740977657654022, + 9821219773990064941, + 2636875463267519559 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [2075450237700219880, 2920304484074114568, 8294843245052708759, 555293007149161182], - "y": [6360019558055677441, 7673047654179899818, 10263007591992092214, 2148859098846651643], + "x": [ + 2075450237700219880, + 2920304484074114568, + 8294843245052708759, + 555293007149161182 + ], + "y": [ + 6360019558055677441, + 7673047654179899818, + 10263007591992092214, + 2148859098846651643 + ], "infinity": false }, { - "x": [3970783323754285443, 13019363829879217592, 18197490676081603277, 630296172623407012], - "y": [7987745494904024640, 9631048689610078757, 1592818072678520163, 2678374240960081558], + "x": [ + 3970783323754285443, + 13019363829879217592, + 18197490676081603277, + 630296172623407012 + ], + "y": [ + 7987745494904024640, + 9631048689610078757, + 1592818072678520163, + 2678374240960081558 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [3055966415338102721, 18231075292903695376, 9187400351012014001, 2311743062653684305], - "y": [2553578246375478674, 930511927228692161, 2271826946385879571, 3124263363559878329], + "x": [ + 3055966415338102721, + 18231075292903695376, + 9187400351012014001, + 2311743062653684305 + ], + "y": [ + 2553578246375478674, + 930511927228692161, + 2271826946385879571, + 3124263363559878329 + ], "infinity": false }, { - "x": [6936812562216228782, 15195638439305648290, 17827467578192758430, 2674740411261002393], - "y": [9738743088557108685, 17225541903460577384, 16627013813461429872, 494410407050490065], + "x": [ + 6936812562216228782, + 15195638439305648290, + 17827467578192758430, + 2674740411261002393 + ], + "y": [ + 9738743088557108685, + 17225541903460577384, + 16627013813461429872, + 494410407050490065 + ], "infinity": false }, { - "x": [10570962909758341245, 18167360144953681397, 2744925075742623060, 736412139310579435], - "y": [13849279071386536985, 10093748777935480433, 904764951143479286, 138814932031469939], + "x": [ + 10570962909758341245, + 18167360144953681397, + 2744925075742623060, + 736412139310579435 + ], + "y": [ + 13849279071386536985, + 10093748777935480433, + 904764951143479286, + 138814932031469939 + ], "infinity": false }, { - "x": [4533871929444677010, 10106157783629999301, 4178648893377901718, 3164693318611048089], - "y": [12699039702383686311, 4388078229442418460, 8961813905523894854, 570254591975307765], + "x": [ + 4533871929444677010, + 10106157783629999301, + 4178648893377901718, + 3164693318611048089 + ], + "y": [ + 12699039702383686311, + 4388078229442418460, + 8961813905523894854, + 570254591975307765 + ], "infinity": false } ], "total_lookup_entries_length": 18884644, "lookup_selector_commitment": { - "x": [15022814412717317376, 17444332185630324119, 14685665421775887958, 906494215348891007], - "y": [9833778905776399360, 1648124311168457783, 3500435402371619753, 2370413643071351216], + "x": [ + 15022814412717317376, + 17444332185630324119, + 14685665421775887958, + 906494215348891007 + ], + "y": [ + 9833778905776399360, + 1648124311168457783, + 3500435402371619753, + 2370413643071351216 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [8321950609730151216, 18010887235457883784, 17038267498493175776, 1380842840607309871], - "y": [3264160671000273944, 16611917363401804468, 8505391859632632917, 2149881676646664319], + "x": [ + 8321950609730151216, + 18010887235457883784, + 17038267498493175776, + 1380842840607309871 + ], + "y": [ + 3264160671000273944, + 16611917363401804468, + 8505391859632632917, + 2149881676646664319 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_1_key.json b/core/bin/verification_key_generator_and_server/data/verification_1_key.json index 03b5467f0979..0310303d2a53 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_1_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_1_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [7601801432079276288, 15201863322122857773, 8806193975262404580, 2590787273683229105], - "y": [16702527967956763728, 6181870639994435984, 1867123357108619315, 2767403024411663364], + "x": [ + 7601801432079276288, + 15201863322122857773, + 8806193975262404580, + 2590787273683229105 + ], + "y": [ + 16702527967956763728, + 6181870639994435984, + 1867123357108619315, + 2767403024411663364 + ], "infinity": false }, { - "x": [2455316591212726341, 2027771240685247927, 10685588854446154162, 3030775657966372875], - "y": [18300009037843703356, 1612973442135305251, 10693350009422283513, 1442590213691840716], + "x": [ + 2455316591212726341, + 2027771240685247927, + 10685588854446154162, + 3030775657966372875 + ], + "y": [ + 18300009037843703356, + 1612973442135305251, + 10693350009422283513, + 1442590213691840716 + ], "infinity": false }, { - "x": [12311884457715965312, 10390638194798557018, 11306832124741148566, 300716765354847473], - "y": [9707964220031061231, 14753080439380196493, 5717535245627190368, 702219636062983319], + "x": [ + 12311884457715965312, + 10390638194798557018, + 11306832124741148566, + 300716765354847473 + ], + "y": [ + 9707964220031061231, + 14753080439380196493, + 5717535245627190368, + 702219636062983319 + ], "infinity": false }, { - "x": [7758453297146426337, 1673770484163252092, 14607544807007157753, 857313958429629763], - "y": [14921629410308576937, 15298335487420996140, 2704982045392946878, 2611590721009022852], + "x": [ + 7758453297146426337, + 1673770484163252092, + 14607544807007157753, + 857313958429629763 + ], + "y": [ + 14921629410308576937, + 15298335487420996140, + 2704982045392946878, + 2611590721009022852 + ], "infinity": false }, { - "x": [14311011031579784592, 15625526098906078640, 1319146597092063841, 774276845418764858], - "y": [3893523842912943845, 18146056093503974553, 11030513442747849089, 389965813625175232], + "x": [ + 14311011031579784592, + 15625526098906078640, + 1319146597092063841, + 774276845418764858 + ], + "y": [ + 3893523842912943845, + 18146056093503974553, + 11030513442747849089, + 389965813625175232 + ], "infinity": false }, { - "x": [7007915445081129178, 2401922490835966325, 418720827124106725, 2770268368066902308], - "y": [12116308634970006696, 14528630571959109449, 9950799281726780069, 724152027617190422], + "x": [ + 7007915445081129178, + 2401922490835966325, + 418720827124106725, + 2770268368066902308 + ], + "y": [ + 12116308634970006696, + 14528630571959109449, + 9950799281726780069, + 724152027617190422 + ], "infinity": false }, { - "x": [2442021019274420960, 16295185893380203674, 2439146651414642189, 2243335375830582173], - "y": [3782090054162740071, 4704457281172608987, 4410900061257118309, 764611777065564766], + "x": [ + 2442021019274420960, + 16295185893380203674, + 2439146651414642189, + 2243335375830582173 + ], + "y": [ + 3782090054162740071, + 4704457281172608987, + 4410900061257118309, + 764611777065564766 + ], "infinity": false }, { - "x": [17964884224938230037, 7876675311267561320, 16762398450655445790, 1210707988542142007], - "y": [10470358785861361347, 9485656365593190672, 6046378362748740079, 2457285875935475197], + "x": [ + 17964884224938230037, + 7876675311267561320, + 16762398450655445790, + 1210707988542142007 + ], + "y": [ + 10470358785861361347, + 9485656365593190672, + 6046378362748740079, + 2457285875935475197 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [17157526827088368172, 11284084393440625999, 9351565798611728109, 3234841809825307363], - "y": [8319704714678793930, 4159327153032521498, 15356346081767327573, 3239913585027348493], + "x": [ + 17157526827088368172, + 11284084393440625999, + 9351565798611728109, + 3234841809825307363 + ], + "y": [ + 8319704714678793930, + 4159327153032521498, + 15356346081767327573, + 3239913585027348493 + ], "infinity": false }, { - "x": [15456321646261647359, 15891438700803416959, 3317730603133051465, 2641175705943818316], - "y": [1411951218052246200, 1661720531643832913, 13537400120511760371, 2292851110898807736], + "x": [ + 15456321646261647359, + 15891438700803416959, + 3317730603133051465, + 2641175705943818316 + ], + "y": [ + 1411951218052246200, + 1661720531643832913, + 13537400120511760371, + 2292851110898807736 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [10328956753700766823, 2827084848292920926, 6753362467616392790, 3266354497443915853], - "y": [4786671171082888838, 11071539213550223285, 3886224490311829958, 1435384580945051012], + "x": [ + 10328956753700766823, + 2827084848292920926, + 6753362467616392790, + 3266354497443915853 + ], + "y": [ + 4786671171082888838, + 11071539213550223285, + 3886224490311829958, + 1435384580945051012 + ], "infinity": false }, { - "x": [6970901872301032061, 11845499850875638451, 12523013241874863158, 564589203700245768], - "y": [9149991346853645253, 10833082414663634622, 10032445307744641248, 3184550747076826571], + "x": [ + 6970901872301032061, + 11845499850875638451, + 12523013241874863158, + 564589203700245768 + ], + "y": [ + 9149991346853645253, + 10833082414663634622, + 10032445307744641248, + 3184550747076826571 + ], "infinity": false }, { - "x": [2899501934612768796, 7289832407727333580, 15398305180487198919, 2955735241334744486], - "y": [4963499698281910643, 5723522390488208800, 3637467607919864741, 339118267031086794], + "x": [ + 2899501934612768796, + 7289832407727333580, + 15398305180487198919, + 2955735241334744486 + ], + "y": [ + 4963499698281910643, + 5723522390488208800, + 3637467607919864741, + 339118267031086794 + ], "infinity": false }, { - "x": [16561673014946600686, 6893642268089467710, 11554023210615815565, 122477375056362239], - "y": [15978560303000591303, 6087766803442805629, 6114779478264008006, 2753348573959524636], + "x": [ + 16561673014946600686, + 6893642268089467710, + 11554023210615815565, + 122477375056362239 + ], + "y": [ + 15978560303000591303, + 6087766803442805629, + 6114779478264008006, + 2753348573959524636 + ], "infinity": false } ], "total_lookup_entries_length": 30899639, "lookup_selector_commitment": { - "x": [4819118611809066421, 16205075690681881406, 8088108199972047891, 2462381205202312681], - "y": [9403235417076804812, 11746452954984920263, 5479393366572364588, 2168476120537571525], + "x": [ + 4819118611809066421, + 16205075690681881406, + 8088108199972047891, + 2462381205202312681 + ], + "y": [ + 9403235417076804812, + 11746452954984920263, + 5479393366572364588, + 2168476120537571525 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [1589280911861251894, 2000192568988587993, 18399902493387281635, 1843483375839232315], - "y": [14712825033319581746, 11500494123399487569, 4370642671010258701, 567620704393396341], + "x": [ + 1589280911861251894, + 2000192568988587993, + 18399902493387281635, + 1843483375839232315 + ], + "y": [ + 14712825033319581746, + 11500494123399487569, + 4370642671010258701, + 567620704393396341 + ], "infinity": false }, { - "x": [0, 0, 0, 0], - "y": [1, 0, 0, 0], + "x": [ + 0, + 0, + 0, + 0 + ], + "y": [ + 1, + 0, + 0, + 0 + ], "infinity": true }, { - "x": [0, 0, 0, 0], - "y": [1, 0, 0, 0], + "x": [ + 0, + 0, + 0, + 0 + ], + "y": [ + 1, + 0, + 0, + 0 + ], "infinity": true }, { - "x": [5989740765536181742, 7510673671757970234, 7988398980529338112, 2047433943537325290], - "y": [14952889876146512965, 17141012675484923048, 328206788961236528, 866564802795139], + "x": [ + 5989740765536181742, + 7510673671757970234, + 7988398980529338112, + 2047433943537325290 + ], + "y": [ + 14952889876146512965, + 17141012675484923048, + 328206788961236528, + 866564802795139 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [4824978155651454377, 12191454623887257586, 12973919510878979890, 52932438992466171], - "y": [17857145998747603901, 2092039184434926372, 11018504664231591204, 1321736242331612854], + "x": [ + 4824978155651454377, + 12191454623887257586, + 12973919510878979890, + 52932438992466171 + ], + "y": [ + 17857145998747603901, + 2092039184434926372, + 11018504664231591204, + 1321736242331612854 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_2_key.json b/core/bin/verification_key_generator_and_server/data/verification_2_key.json index 2937d676ad95..79b16257213f 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_2_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_2_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [5518783475412319303, 13900056820557691891, 3293972357974626054, 2215936931279678502], - "y": [7955917949806788616, 13341003959544330056, 2090626280536970058, 340565138339520735], + "x": [ + 5518783475412319303, + 13900056820557691891, + 3293972357974626054, + 2215936931279678502 + ], + "y": [ + 7955917949806788616, + 13341003959544330056, + 2090626280536970058, + 340565138339520735 + ], "infinity": false }, { - "x": [14185170917510557830, 8046892618400404954, 16599645397148333553, 2994187418830549588], - "y": [7234254448777026502, 8445782435526889669, 14116370103157060862, 2248206929083565209], + "x": [ + 14185170917510557830, + 8046892618400404954, + 16599645397148333553, + 2994187418830549588 + ], + "y": [ + 7234254448777026502, + 8445782435526889669, + 14116370103157060862, + 2248206929083565209 + ], "infinity": false }, { - "x": [11154659552703848544, 12941656139895069323, 17062140236305086427, 722110816848028084], - "y": [5009717036998782771, 827592822749515890, 15966856850732642654, 618036931564479654], + "x": [ + 11154659552703848544, + 12941656139895069323, + 17062140236305086427, + 722110816848028084 + ], + "y": [ + 5009717036998782771, + 827592822749515890, + 15966856850732642654, + 618036931564479654 + ], "infinity": false }, { - "x": [5157594213696692987, 15014090155482426422, 706425002062263449, 3203486979181293219], - "y": [14363949081622225749, 9001876918808042476, 1615414451418136701, 444697301726425121], + "x": [ + 5157594213696692987, + 15014090155482426422, + 706425002062263449, + 3203486979181293219 + ], + "y": [ + 14363949081622225749, + 9001876918808042476, + 1615414451418136701, + 444697301726425121 + ], "infinity": false }, { - "x": [9176460251336839321, 17295305184785757140, 7831134341003191604, 2666806971657364559], - "y": [2598277252699259004, 11916936738177575234, 2912317122505195338, 2404138220482962548], + "x": [ + 9176460251336839321, + 17295305184785757140, + 7831134341003191604, + 2666806971657364559 + ], + "y": [ + 2598277252699259004, + 11916936738177575234, + 2912317122505195338, + 2404138220482962548 + ], "infinity": false }, { - "x": [11575910134534349159, 14192914809594698195, 18267718409201448839, 142641722814285206], - "y": [5883506329268908990, 2832339585209792351, 14642260147093833347, 392817691249359885], + "x": [ + 11575910134534349159, + 14192914809594698195, + 18267718409201448839, + 142641722814285206 + ], + "y": [ + 5883506329268908990, + 2832339585209792351, + 14642260147093833347, + 392817691249359885 + ], "infinity": false }, { - "x": [12908012748245269010, 6525727331816152736, 16979431824428028279, 2845131870310951239], - "y": [1571963770034876851, 17602700402136611105, 13310928253737079884, 3347891464097055062], + "x": [ + 12908012748245269010, + 6525727331816152736, + 16979431824428028279, + 2845131870310951239 + ], + "y": [ + 1571963770034876851, + 17602700402136611105, + 13310928253737079884, + 3347891464097055062 + ], "infinity": false }, { - "x": [832167803175150309, 11457734167413059640, 13250442890410377059, 2814079984479722654], - "y": [1463471541691279258, 1744973157713476297, 1204969522442685286, 1269233371856967282], + "x": [ + 832167803175150309, + 11457734167413059640, + 13250442890410377059, + 2814079984479722654 + ], + "y": [ + 1463471541691279258, + 1744973157713476297, + 1204969522442685286, + 1269233371856967282 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [10352656458395970023, 3995520406692994966, 13084432248093257522, 2302839365715839904], - "y": [8225034751786073151, 16771047952615636124, 616708265068224682, 186403683175385821], + "x": [ + 10352656458395970023, + 3995520406692994966, + 13084432248093257522, + 2302839365715839904 + ], + "y": [ + 8225034751786073151, + 16771047952615636124, + 616708265068224682, + 186403683175385821 + ], "infinity": false }, { - "x": [4270731028924703792, 3128341040439802084, 15083522049785140229, 2261189689222904761], - "y": [8781157350107493893, 14766318733918494793, 9428422381369337621, 419743052593117743], + "x": [ + 4270731028924703792, + 3128341040439802084, + 15083522049785140229, + 2261189689222904761 + ], + "y": [ + 8781157350107493893, + 14766318733918494793, + 9428422381369337621, + 419743052593117743 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [11112968480130414212, 11913364106966677596, 36671493864905181, 496058283903160224], - "y": [9691136012048916590, 12909186572206021308, 1700657689434945171, 3072265811815532764], + "x": [ + 11112968480130414212, + 11913364106966677596, + 36671493864905181, + 496058283903160224 + ], + "y": [ + 9691136012048916590, + 12909186572206021308, + 1700657689434945171, + 3072265811815532764 + ], "infinity": false }, { - "x": [11360744654540534278, 9830357778413675465, 5192069313646589173, 113131628631742646], - "y": [5515513518975242303, 323890392099446701, 2255482865429449468, 2322464724330067577], + "x": [ + 11360744654540534278, + 9830357778413675465, + 5192069313646589173, + 113131628631742646 + ], + "y": [ + 5515513518975242303, + 323890392099446701, + 2255482865429449468, + 2322464724330067577 + ], "infinity": false }, { - "x": [3414259545645111239, 5416149397109634837, 12993204506510556426, 2894091844446687144], - "y": [4731949297479191167, 1043460441127916951, 16890401788673829290, 1356564712828723527], + "x": [ + 3414259545645111239, + 5416149397109634837, + 12993204506510556426, + 2894091844446687144 + ], + "y": [ + 4731949297479191167, + 1043460441127916951, + 16890401788673829290, + 1356564712828723527 + ], "infinity": false }, { - "x": [8993182433738017869, 11441314659459910136, 8181494681500166120, 1591321336872387140], - "y": [5278254820002084488, 17932571960593236295, 7626453034762681225, 3463596506399756742], + "x": [ + 8993182433738017869, + 11441314659459910136, + 8181494681500166120, + 1591321336872387140 + ], + "y": [ + 5278254820002084488, + 17932571960593236295, + 7626453034762681225, + 3463596506399756742 + ], "infinity": false } ], "total_lookup_entries_length": 30783671, "lookup_selector_commitment": { - "x": [1336161834228740427, 15823221750660268452, 13689567356831376139, 1839611883700311389], - "y": [14875759795137726191, 20318096045504920, 8816565555629805366, 75556627728969178], + "x": [ + 1336161834228740427, + 15823221750660268452, + 13689567356831376139, + 1839611883700311389 + ], + "y": [ + 14875759795137726191, + 20318096045504920, + 8816565555629805366, + 75556627728969178 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [1589280911861251894, 2000192568988587993, 18399902493387281635, 1843483375839232315], - "y": [14712825033319581746, 11500494123399487569, 4370642671010258701, 567620704393396341], + "x": [ + 1589280911861251894, + 2000192568988587993, + 18399902493387281635, + 1843483375839232315 + ], + "y": [ + 14712825033319581746, + 11500494123399487569, + 4370642671010258701, + 567620704393396341 + ], "infinity": false }, { - "x": [0, 0, 0, 0], - "y": [1, 0, 0, 0], + "x": [ + 0, + 0, + 0, + 0 + ], + "y": [ + 1, + 0, + 0, + 0 + ], "infinity": true }, { - "x": [0, 0, 0, 0], - "y": [1, 0, 0, 0], + "x": [ + 0, + 0, + 0, + 0 + ], + "y": [ + 1, + 0, + 0, + 0 + ], "infinity": true }, { - "x": [5989740765536181742, 7510673671757970234, 7988398980529338112, 2047433943537325290], - "y": [14952889876146512965, 17141012675484923048, 328206788961236528, 866564802795139], + "x": [ + 5989740765536181742, + 7510673671757970234, + 7988398980529338112, + 2047433943537325290 + ], + "y": [ + 14952889876146512965, + 17141012675484923048, + 328206788961236528, + 866564802795139 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [3408213281770836085, 15382444791373914560, 16110552627056571461, 1161688479331593061], - "y": [13379188756114722390, 12926267823879081751, 14282599792449107495, 3244837013658545871], + "x": [ + 3408213281770836085, + 15382444791373914560, + 16110552627056571461, + 1161688479331593061 + ], + "y": [ + 13379188756114722390, + 12926267823879081751, + 14282599792449107495, + 3244837013658545871 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_3_key.json b/core/bin/verification_key_generator_and_server/data/verification_3_key.json index 88657dcb5cb8..efc3726eccd1 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_3_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_3_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [974750104498669965, 8834694375170731028, 17769568165179068263, 1849964290686413257], - "y": [2843958502709968021, 14935491193053445350, 17474331455917570677, 3480256926594645294], + "x": [ + 974750104498669965, + 8834694375170731028, + 17769568165179068263, + 1849964290686413257 + ], + "y": [ + 2843958502709968021, + 14935491193053445350, + 17474331455917570677, + 3480256926594645294 + ], "infinity": false }, { - "x": [12247266302470255326, 5464334033464606744, 14546720066962635103, 3390803970213094244], - "y": [1712883459777313087, 8894684513803091578, 7336029034040207862, 1084942733964754038], + "x": [ + 12247266302470255326, + 5464334033464606744, + 14546720066962635103, + 3390803970213094244 + ], + "y": [ + 1712883459777313087, + 8894684513803091578, + 7336029034040207862, + 1084942733964754038 + ], "infinity": false }, { - "x": [11977576082511042092, 13911318721427630536, 319094179978428102, 953394664847088490], - "y": [5661602966428088380, 18066888770140331931, 10148625466830766086, 532999801462127665], + "x": [ + 11977576082511042092, + 13911318721427630536, + 319094179978428102, + 953394664847088490 + ], + "y": [ + 5661602966428088380, + 18066888770140331931, + 10148625466830766086, + 532999801462127665 + ], "infinity": false }, { - "x": [10638316621700142822, 6209825954391834011, 6018402549491433521, 2545954919587131385], - "y": [3871396302214628234, 10421121582832311901, 3487262368594849688, 47097530491220969], + "x": [ + 10638316621700142822, + 6209825954391834011, + 6018402549491433521, + 2545954919587131385 + ], + "y": [ + 3871396302214628234, + 10421121582832311901, + 3487262368594849688, + 47097530491220969 + ], "infinity": false }, { - "x": [5177078736350587057, 913561536392131154, 5845225668116211782, 1148177573394811202], - "y": [8211065483139055749, 11150796128594731149, 12060516803886544192, 1369115203017663219], + "x": [ + 5177078736350587057, + 913561536392131154, + 5845225668116211782, + 1148177573394811202 + ], + "y": [ + 8211065483139055749, + 11150796128594731149, + 12060516803886544192, + 1369115203017663219 + ], "infinity": false }, { - "x": [13164869081104983842, 8055457852373227775, 14586708642322040767, 1635508642571745116], - "y": [13200963466266892674, 5743120645853669652, 13845956436885115425, 190245686570654182], + "x": [ + 13164869081104983842, + 8055457852373227775, + 14586708642322040767, + 1635508642571745116 + ], + "y": [ + 13200963466266892674, + 5743120645853669652, + 13845956436885115425, + 190245686570654182 + ], "infinity": false }, { - "x": [14509622964666644543, 14326815147327339718, 14403865749203816615, 3250250446651605086], - "y": [16982880826411734238, 7223038929743846372, 13243677057981888895, 3343376109946605946], + "x": [ + 14509622964666644543, + 14326815147327339718, + 14403865749203816615, + 3250250446651605086 + ], + "y": [ + 16982880826411734238, + 7223038929743846372, + 13243677057981888895, + 3343376109946605946 + ], "infinity": false }, { - "x": [2186705028467599783, 10754157155083578321, 9835223072941921904, 622934131449235283], - "y": [18146384691082289702, 3710418457832183420, 9065618198278602094, 1385809660894704773], + "x": [ + 2186705028467599783, + 10754157155083578321, + 9835223072941921904, + 622934131449235283 + ], + "y": [ + 18146384691082289702, + 3710418457832183420, + 9065618198278602094, + 1385809660894704773 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [17931943108498820694, 4676695383650659094, 9553383984112211657, 2582659305204352628], - "y": [12954711565738560879, 8077826911980788091, 11395265968148743331, 2855607571527172113], + "x": [ + 17931943108498820694, + 4676695383650659094, + 9553383984112211657, + 2582659305204352628 + ], + "y": [ + 12954711565738560879, + 8077826911980788091, + 11395265968148743331, + 2855607571527172113 + ], "infinity": false }, { - "x": [1579731699170899555, 2930979681521170129, 14423227389748779725, 3843483067412713], - "y": [12757858203360676100, 11658617912640524507, 18404463112235833117, 216398038700598122], + "x": [ + 1579731699170899555, + 2930979681521170129, + 14423227389748779725, + 3843483067412713 + ], + "y": [ + 12757858203360676100, + 11658617912640524507, + 18404463112235833117, + 216398038700598122 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [17803109611249396349, 11283859494780689211, 13999735262776985506, 1616317395767274315], - "y": [4702080082438660327, 10318021266807502248, 1343468927015043909, 1458947702127238817], + "x": [ + 17803109611249396349, + 11283859494780689211, + 13999735262776985506, + 1616317395767274315 + ], + "y": [ + 4702080082438660327, + 10318021266807502248, + 1343468927015043909, + 1458947702127238817 + ], "infinity": false }, { - "x": [13991248091180946539, 9572452770464844385, 7281256466642465445, 1589821161594539260], - "y": [16330872592308522669, 11643961078499332590, 7621286777424912214, 1961788650881680195], + "x": [ + 13991248091180946539, + 9572452770464844385, + 7281256466642465445, + 1589821161594539260 + ], + "y": [ + 16330872592308522669, + 11643961078499332590, + 7621286777424912214, + 1961788650881680195 + ], "infinity": false }, { - "x": [14854997120241085994, 893859077870132655, 10853933192917459827, 2671373989840251193], - "y": [11492939649862087988, 1925620351626108277, 12007636802682139817, 1315346956977275889], + "x": [ + 14854997120241085994, + 893859077870132655, + 10853933192917459827, + 2671373989840251193 + ], + "y": [ + 11492939649862087988, + 1925620351626108277, + 12007636802682139817, + 1315346956977275889 + ], "infinity": false }, { - "x": [13343929807426311972, 3234215523073799496, 4658804614957804350, 123243726695066707], - "y": [14958243475655956241, 4034118281425140294, 1019154098165161379, 2657524750158613958], + "x": [ + 13343929807426311972, + 3234215523073799496, + 4658804614957804350, + 123243726695066707 + ], + "y": [ + 14958243475655956241, + 4034118281425140294, + 1019154098165161379, + 2657524750158613958 + ], "infinity": false } ], "total_lookup_entries_length": 15208907, "lookup_selector_commitment": { - "x": [3869759959209659371, 17545310949245876386, 6597968549104995840, 1547642766729861753], - "y": [5629222579571396955, 16315207580711001852, 15947168783307514478, 2534006098464270073], + "x": [ + 3869759959209659371, + 17545310949245876386, + 6597968549104995840, + 1547642766729861753 + ], + "y": [ + 5629222579571396955, + 16315207580711001852, + 15947168783307514478, + 2534006098464270073 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [12925597216490182210, 13030942092034120135, 17733316148446765999, 112547709703624791], - "y": [13293415162200038331, 13010565234555563811, 15476251035925496743, 2588541998389664114], + "x": [ + 12925597216490182210, + 13030942092034120135, + 17733316148446765999, + 112547709703624791 + ], + "y": [ + 13293415162200038331, + 13010565234555563811, + 15476251035925496743, + 2588541998389664114 + ], "infinity": false }, { - "x": [11118240121224901946, 9394562257959111170, 9026436993514314918, 1751747619588842429], - "y": [6039590802345873394, 17531716309156986038, 1711770599161550805, 1941094644175870288], + "x": [ + 11118240121224901946, + 9394562257959111170, + 9026436993514314918, + 1751747619588842429 + ], + "y": [ + 6039590802345873394, + 17531716309156986038, + 1711770599161550805, + 1941094644175870288 + ], "infinity": false }, { - "x": [17999903301086933877, 10468070608989378923, 3479353092436121335, 607756992244480908], - "y": [10863079642303790364, 4737012301447477097, 4605789209164294308, 1430572887755557386], + "x": [ + 17999903301086933877, + 10468070608989378923, + 3479353092436121335, + 607756992244480908 + ], + "y": [ + 10863079642303790364, + 4737012301447477097, + 4605789209164294308, + 1430572887755557386 + ], "infinity": false }, { - "x": [4609762018249049814, 4113097757442144437, 4725434011535510809, 2977599521231955696], - "y": [14636094180551257630, 8819447661702130886, 1091706295519429215, 56675985696303183], + "x": [ + 4609762018249049814, + 4113097757442144437, + 4725434011535510809, + 2977599521231955696 + ], + "y": [ + 14636094180551257630, + 8819447661702130886, + 1091706295519429215, + 56675985696303183 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [6380759427317126685, 6672737265924091686, 14552369645196037262, 1668823783737500912], - "y": [4951884449279236371, 16324193898368483526, 10792452284404778772, 929770155761471462], + "x": [ + 6380759427317126685, + 6672737265924091686, + 14552369645196037262, + 1668823783737500912 + ], + "y": [ + 4951884449279236371, + 16324193898368483526, + 10792452284404778772, + 929770155761471462 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_4_key.json b/core/bin/verification_key_generator_and_server/data/verification_4_key.json index dc0c5da74a6f..8d42dcd66a75 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_4_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_4_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [15923176050075197, 8963905519117333456, 5333091548039957996, 1660697180439834807], - "y": [13105864494044341635, 10079874572012628853, 4164109084931753781, 1860950003357484648], + "x": [ + 15923176050075197, + 8963905519117333456, + 5333091548039957996, + 1660697180439834807 + ], + "y": [ + 13105864494044341635, + 10079874572012628853, + 4164109084931753781, + 1860950003357484648 + ], "infinity": false }, { - "x": [8216018177730810417, 13660800917029254431, 2933384097067755755, 2823425599268575868], - "y": [8768863192718196559, 10146282684570870426, 8275806247588563419, 605489936306033583], + "x": [ + 8216018177730810417, + 13660800917029254431, + 2933384097067755755, + 2823425599268575868 + ], + "y": [ + 8768863192718196559, + 10146282684570870426, + 8275806247588563419, + 605489936306033583 + ], "infinity": false }, { - "x": [4277344855257545209, 11172040917478096607, 4489086903928758598, 289283798032159440], - "y": [10444137083253378550, 12133212848977612596, 6748791972701343485, 286274227999569844], + "x": [ + 4277344855257545209, + 11172040917478096607, + 4489086903928758598, + 289283798032159440 + ], + "y": [ + 10444137083253378550, + 12133212848977612596, + 6748791972701343485, + 286274227999569844 + ], "infinity": false }, { - "x": [8861797510071553254, 12734094237204882518, 13692967202881086499, 641906135411222522], - "y": [6831762763487302461, 11965405347371646114, 6218256502970252800, 3201462388136754725], + "x": [ + 8861797510071553254, + 12734094237204882518, + 13692967202881086499, + 641906135411222522 + ], + "y": [ + 6831762763487302461, + 11965405347371646114, + 6218256502970252800, + 3201462388136754725 + ], "infinity": false }, { - "x": [12385743015818134054, 16282219738575446638, 3256359841301423419, 505673042938576760], - "y": [6744956686738207932, 8994291190634790001, 16789606231722015883, 2027930268272962928], + "x": [ + 12385743015818134054, + 16282219738575446638, + 3256359841301423419, + 505673042938576760 + ], + "y": [ + 6744956686738207932, + 8994291190634790001, + 16789606231722015883, + 2027930268272962928 + ], "infinity": false }, { - "x": [13671822069226357541, 818021157447551159, 10542481209144358852, 2459295197762128786], - "y": [1072649761929447549, 6089126583512618706, 1178131210084507361, 1066836948212725576], + "x": [ + 13671822069226357541, + 818021157447551159, + 10542481209144358852, + 2459295197762128786 + ], + "y": [ + 1072649761929447549, + 6089126583512618706, + 1178131210084507361, + 1066836948212725576 + ], "infinity": false }, { - "x": [16878956366815094090, 364977461173568122, 5439594588743996145, 1265442855735725449], - "y": [11461704536083653156, 660278441271820299, 4314245569905306892, 1438663846765259508], + "x": [ + 16878956366815094090, + 364977461173568122, + 5439594588743996145, + 1265442855735725449 + ], + "y": [ + 11461704536083653156, + 660278441271820299, + 4314245569905306892, + 1438663846765259508 + ], "infinity": false }, { - "x": [9038539654045396650, 539827912679485452, 15399544523862100757, 1256406598444490417], - "y": [5422113905848106255, 4943961807853536385, 10022409325033689104, 3200702511424842211], + "x": [ + 9038539654045396650, + 539827912679485452, + 15399544523862100757, + 1256406598444490417 + ], + "y": [ + 5422113905848106255, + 4943961807853536385, + 10022409325033689104, + 3200702511424842211 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [7750990741566547331, 12040155777441846781, 3000981333322867315, 2393292192734976436], - "y": [3394853839941291504, 944019051205640111, 1104911864338577098, 2127308956089601096], + "x": [ + 7750990741566547331, + 12040155777441846781, + 3000981333322867315, + 2393292192734976436 + ], + "y": [ + 3394853839941291504, + 944019051205640111, + 1104911864338577098, + 2127308956089601096 + ], "infinity": false }, { - "x": [4735140124663926465, 16935779121597983173, 17111626619540374574, 2327973550601526140], - "y": [8990848735371189388, 4589751206662798166, 7575424772436241307, 2798852347400154642], + "x": [ + 4735140124663926465, + 16935779121597983173, + 17111626619540374574, + 2327973550601526140 + ], + "y": [ + 8990848735371189388, + 4589751206662798166, + 7575424772436241307, + 2798852347400154642 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [4765077060699177749, 15235935045874519477, 2022237788491579392, 354385727984957703], - "y": [11620113321350620961, 2521830680983779826, 14047226057605943635, 2718701882953208503], + "x": [ + 4765077060699177749, + 15235935045874519477, + 2022237788491579392, + 354385727984957703 + ], + "y": [ + 11620113321350620961, + 2521830680983779826, + 14047226057605943635, + 2718701882953208503 + ], "infinity": false }, { - "x": [12967015398643083015, 1100660813730542482, 7835181433213557652, 803165211156388599], - "y": [8557385569712401227, 535900682745452035, 16083571717847325979, 396765644246918860], + "x": [ + 12967015398643083015, + 1100660813730542482, + 7835181433213557652, + 803165211156388599 + ], + "y": [ + 8557385569712401227, + 535900682745452035, + 16083571717847325979, + 396765644246918860 + ], "infinity": false }, { - "x": [6868107733370365435, 17106601841261210672, 12219407605084986215, 2345246684976405066], - "y": [17532412968783851743, 9996315626158111485, 17970945522106166231, 1003764081419207606], + "x": [ + 6868107733370365435, + 17106601841261210672, + 12219407605084986215, + 2345246684976405066 + ], + "y": [ + 17532412968783851743, + 9996315626158111485, + 17970945522106166231, + 1003764081419207606 + ], "infinity": false }, { - "x": [7011201477832405407, 8818123127103997131, 2979445003396953339, 318603240233076406], - "y": [11712108043964996282, 3474989587891133574, 3983451673298542860, 1181581919257021598], + "x": [ + 7011201477832405407, + 8818123127103997131, + 2979445003396953339, + 318603240233076406 + ], + "y": [ + 11712108043964996282, + 3474989587891133574, + 3983451673298542860, + 1181581919257021598 + ], "infinity": false } ], "total_lookup_entries_length": 8484642, "lookup_selector_commitment": { - "x": [27459247093738343, 1785927757103538268, 14972116880195568621, 1034224917068963325], - "y": [17453858127001596558, 6200103235089742197, 16245568162666829501, 651193715230511441], + "x": [ + 27459247093738343, + 1785927757103538268, + 14972116880195568621, + 1034224917068963325 + ], + "y": [ + 17453858127001596558, + 6200103235089742197, + 16245568162666829501, + 651193715230511441 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [697552212563769686, 7709943502535418760, 15019345407325619175, 3433081085078580257], - "y": [8668947019840357731, 14698901351824712883, 15088598879190660424, 2873081208166433946], + "x": [ + 697552212563769686, + 7709943502535418760, + 15019345407325619175, + 3433081085078580257 + ], + "y": [ + 8668947019840357731, + 14698901351824712883, + 15088598879190660424, + 2873081208166433946 + ], "infinity": false }, { - "x": [7893133928909060673, 7064922516930129957, 3592836702741304814, 2239702595710114437], - "y": [7691360541875191519, 11379321785127235277, 6653616064071569031, 2555434628517540774], + "x": [ + 7893133928909060673, + 7064922516930129957, + 3592836702741304814, + 2239702595710114437 + ], + "y": [ + 7691360541875191519, + 11379321785127235277, + 6653616064071569031, + 2555434628517540774 + ], "infinity": false }, { - "x": [6243944238013052821, 7908243182210136125, 17178099109525791299, 2553622184721264566], - "y": [736121280088239428, 6158073429758170526, 11217302997977204117, 2594798912020899417], + "x": [ + 6243944238013052821, + 7908243182210136125, + 17178099109525791299, + 2553622184721264566 + ], + "y": [ + 736121280088239428, + 6158073429758170526, + 11217302997977204117, + 2594798912020899417 + ], "infinity": false }, { - "x": [2064240298596094591, 16917726764104887991, 11042784977532408536, 3377647228930170830], - "y": [10635525052494768819, 387400048616497096, 9379200582543310995, 1571766153703296253], + "x": [ + 2064240298596094591, + 16917726764104887991, + 11042784977532408536, + 3377647228930170830 + ], + "y": [ + 10635525052494768819, + 387400048616497096, + 9379200582543310995, + 1571766153703296253 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [14868101692362122308, 8135288013508071846, 9460482611527381887, 512823635961282598], - "y": [8358211286664762188, 3532634521932288534, 5862145521507736138, 1807935137626658536], + "x": [ + 14868101692362122308, + 8135288013508071846, + 9460482611527381887, + 512823635961282598 + ], + "y": [ + 8358211286664762188, + 3532634521932288534, + 5862145521507736138, + 1807935137626658536 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_5_key.json b/core/bin/verification_key_generator_and_server/data/verification_5_key.json index a76fe1018e5a..b9a31b919f1c 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_5_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_5_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [12322129650547620518, 4320033807979823995, 4503809593276792861, 630958448551597950], - "y": [4947307957322067889, 1897773243457379956, 1563584362302565484, 802109862761172056], + "x": [ + 12322129650547620518, + 4320033807979823995, + 4503809593276792861, + 630958448551597950 + ], + "y": [ + 4947307957322067889, + 1897773243457379956, + 1563584362302565484, + 802109862761172056 + ], "infinity": false }, { - "x": [5860641327684713918, 16885915425353665713, 7037370194263044401, 1837438863045303696], - "y": [13386292219804271609, 4960073609197619993, 7328379249582994262, 191728769121948464], + "x": [ + 5860641327684713918, + 16885915425353665713, + 7037370194263044401, + 1837438863045303696 + ], + "y": [ + 13386292219804271609, + 4960073609197619993, + 7328379249582994262, + 191728769121948464 + ], "infinity": false }, { - "x": [9390502900121613993, 17218409610830310329, 4830832371938391322, 1805131323553685028], - "y": [15707040961083920686, 16216062707384374953, 16957058843586642758, 1341814870249072628], + "x": [ + 9390502900121613993, + 17218409610830310329, + 4830832371938391322, + 1805131323553685028 + ], + "y": [ + 15707040961083920686, + 16216062707384374953, + 16957058843586642758, + 1341814870249072628 + ], "infinity": false }, { - "x": [969252611989285232, 181405773082212747, 11110666465356509832, 1888802363524687207], - "y": [5293477339288357424, 12076391347720360980, 11422893229655154394, 3165450734777404812], + "x": [ + 969252611989285232, + 181405773082212747, + 11110666465356509832, + 1888802363524687207 + ], + "y": [ + 5293477339288357424, + 12076391347720360980, + 11422893229655154394, + 3165450734777404812 + ], "infinity": false }, { - "x": [642192487369089358, 9585449571929647331, 3847960352134961209, 984199510163128792], - "y": [13950390676065893881, 975256099594703300, 253120832016214204, 1860679841584192219], + "x": [ + 642192487369089358, + 9585449571929647331, + 3847960352134961209, + 984199510163128792 + ], + "y": [ + 13950390676065893881, + 975256099594703300, + 253120832016214204, + 1860679841584192219 + ], "infinity": false }, { - "x": [3564548447861991296, 6278944799487206913, 1163701992635366786, 3214877162977671335], - "y": [13131873482361140204, 14012120801722220187, 13254371011592477950, 1082108070640175604], + "x": [ + 3564548447861991296, + 6278944799487206913, + 1163701992635366786, + 3214877162977671335 + ], + "y": [ + 13131873482361140204, + 14012120801722220187, + 13254371011592477950, + 1082108070640175604 + ], "infinity": false }, { - "x": [14190764189814537607, 18412181832598818289, 17213387738194113336, 1662783623959823461], - "y": [7987199081435644988, 17119136750046780209, 8770669323846078492, 3183489396270587333], + "x": [ + 14190764189814537607, + 18412181832598818289, + 17213387738194113336, + 1662783623959823461 + ], + "y": [ + 7987199081435644988, + 17119136750046780209, + 8770669323846078492, + 3183489396270587333 + ], "infinity": false }, { - "x": [14638218826597535389, 16409988612234258347, 5025411344133541245, 603088654230685360], - "y": [12538363432956258836, 6558875956959901550, 2415879426147965883, 750702584304895055], + "x": [ + 14638218826597535389, + 16409988612234258347, + 5025411344133541245, + 603088654230685360 + ], + "y": [ + 12538363432956258836, + 6558875956959901550, + 2415879426147965883, + 750702584304895055 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [2599908293582905760, 13534206398743622493, 15926090086034346074, 467418127379229858], - "y": [9529512934078774185, 1459270552041127965, 13418846370362665102, 2270996612016337371], + "x": [ + 2599908293582905760, + 13534206398743622493, + 15926090086034346074, + 467418127379229858 + ], + "y": [ + 9529512934078774185, + 1459270552041127965, + 13418846370362665102, + 2270996612016337371 + ], "infinity": false }, { - "x": [7264275706530137047, 5590205367072257545, 17891440127697345143, 360638857846382524], - "y": [17983779934218975397, 1625779403076670241, 1474025795387210129, 1716171421120825643], + "x": [ + 7264275706530137047, + 5590205367072257545, + 17891440127697345143, + 360638857846382524 + ], + "y": [ + 17983779934218975397, + 1625779403076670241, + 1474025795387210129, + 1716171421120825643 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [9354841115000244260, 12887310615208346489, 1120617137774653400, 424227936372254439], - "y": [3626714025954019309, 4480975902927818206, 10093567956580931634, 2779897825000836477], + "x": [ + 9354841115000244260, + 12887310615208346489, + 1120617137774653400, + 424227936372254439 + ], + "y": [ + 3626714025954019309, + 4480975902927818206, + 10093567956580931634, + 2779897825000836477 + ], "infinity": false }, { - "x": [1864884782104066211, 1247154271168453374, 9982166936353409582, 1177339527115773898], - "y": [9932597332303163060, 1888682277213109000, 11684220277443154622, 3062389133489783806], + "x": [ + 1864884782104066211, + 1247154271168453374, + 9982166936353409582, + 1177339527115773898 + ], + "y": [ + 9932597332303163060, + 1888682277213109000, + 11684220277443154622, + 3062389133489783806 + ], "infinity": false }, { - "x": [9943021177878836437, 9004866876172522532, 14085451328492136137, 1567186274425392936], - "y": [7148906168793986389, 4780330524752436486, 10067456648871712650, 179752856567560382], + "x": [ + 9943021177878836437, + 9004866876172522532, + 14085451328492136137, + 1567186274425392936 + ], + "y": [ + 7148906168793986389, + 4780330524752436486, + 10067456648871712650, + 179752856567560382 + ], "infinity": false }, { - "x": [14745822832390509907, 13862030626549782961, 10000268356302875837, 705042314567833799], - "y": [11091254259539384938, 11733968109785394056, 11099103738494585500, 1527456782567955191], + "x": [ + 14745822832390509907, + 13862030626549782961, + 10000268356302875837, + 705042314567833799 + ], + "y": [ + 11091254259539384938, + 11733968109785394056, + 11099103738494585500, + 1527456782567955191 + ], "infinity": false } ], "total_lookup_entries_length": 35330543, "lookup_selector_commitment": { - "x": [12333191731462980214, 17841370099698959347, 12878670991018181621, 2894319630687016858], - "y": [76816727314643395, 3214684791046221459, 878301108738499830, 126016925902987736], + "x": [ + 12333191731462980214, + 17841370099698959347, + 12878670991018181621, + 2894319630687016858 + ], + "y": [ + 76816727314643395, + 3214684791046221459, + 878301108738499830, + 126016925902987736 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [911668445361375614, 12752365066512000136, 11550232015863976467, 2053619216798992367], - "y": [4194339833917391280, 1643071887467668153, 3377480965202592691, 1664272901450533719], + "x": [ + 911668445361375614, + 12752365066512000136, + 11550232015863976467, + 2053619216798992367 + ], + "y": [ + 4194339833917391280, + 1643071887467668153, + 3377480965202592691, + 1664272901450533719 + ], "infinity": false }, { - "x": [2999316735203966181, 5189676006781764591, 14324679313847304783, 1264086978509739587], - "y": [8714172036038650967, 10907167170124829028, 8950970593162102458, 1596853051185997037], + "x": [ + 2999316735203966181, + 5189676006781764591, + 14324679313847304783, + 1264086978509739587 + ], + "y": [ + 8714172036038650967, + 10907167170124829028, + 8950970593162102458, + 1596853051185997037 + ], "infinity": false }, { - "x": [1146500486770850326, 13562754408872334896, 14063471769392190265, 3387351506820193517], - "y": [6677788829230735422, 15425668102208730571, 5341291772716012975, 539156410041791428], + "x": [ + 1146500486770850326, + 13562754408872334896, + 14063471769392190265, + 3387351506820193517 + ], + "y": [ + 6677788829230735422, + 15425668102208730571, + 5341291772716012975, + 539156410041791428 + ], "infinity": false }, { - "x": [18159886519320172405, 4286826840324377773, 16364826089434525345, 228697666397725767], - "y": [4850633487261444791, 6327421534074497160, 12883776034588695446, 1510314148471267214], + "x": [ + 18159886519320172405, + 4286826840324377773, + 16364826089434525345, + 228697666397725767 + ], + "y": [ + 4850633487261444791, + 6327421534074497160, + 12883776034588695446, + 1510314148471267214 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [18245233954308230592, 8193493714287610439, 6521078295132558240, 861511081336275611], - "y": [4275834222266292944, 13179071278128968874, 5943013356852335765, 2456639561657053045], + "x": [ + 18245233954308230592, + 8193493714287610439, + 6521078295132558240, + 861511081336275611 + ], + "y": [ + 4275834222266292944, + 13179071278128968874, + 5943013356852335765, + 2456639561657053045 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_6_key.json b/core/bin/verification_key_generator_and_server/data/verification_6_key.json index 7c8fbc650bb8..34419df17702 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_6_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_6_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [11033020679838791108, 14920056278440370765, 8156477685651219112, 2935096142913695825], - "y": [12780055516709256833, 966513406268819160, 9584266886886532866, 892347068344972829], + "x": [ + 11033020679838791108, + 14920056278440370765, + 8156477685651219112, + 2935096142913695825 + ], + "y": [ + 12780055516709256833, + 966513406268819160, + 9584266886886532866, + 892347068344972829 + ], "infinity": false }, { - "x": [4044870432040348042, 10630300946926732771, 3143480015080245177, 323917785885883620], - "y": [2297905282612888789, 8206728682979815807, 10628767928228215441, 3062326525278498604], + "x": [ + 4044870432040348042, + 10630300946926732771, + 3143480015080245177, + 323917785885883620 + ], + "y": [ + 2297905282612888789, + 8206728682979815807, + 10628767928228215441, + 3062326525278498604 + ], "infinity": false }, { - "x": [14760731158538087565, 9176522400170689419, 9855180338242634009, 2456568616568530201], - "y": [5168103953295979961, 397013651969935557, 13864468728668213717, 2925074735515169158], + "x": [ + 14760731158538087565, + 9176522400170689419, + 9855180338242634009, + 2456568616568530201 + ], + "y": [ + 5168103953295979961, + 397013651969935557, + 13864468728668213717, + 2925074735515169158 + ], "infinity": false }, { - "x": [13613691592548742743, 11339389230513898784, 4864282628000142183, 2568915564796772962], - "y": [13074021698952750513, 14891339562597317806, 6145754680491802845, 913243322463864468], + "x": [ + 13613691592548742743, + 11339389230513898784, + 4864282628000142183, + 2568915564796772962 + ], + "y": [ + 13074021698952750513, + 14891339562597317806, + 6145754680491802845, + 913243322463864468 + ], "infinity": false }, { - "x": [9607983563343027008, 1604609357347728263, 6735137627175405143, 91305611485454778], - "y": [2068449139446365265, 6171753015906067998, 16290186276604645197, 420889087081901603], + "x": [ + 9607983563343027008, + 1604609357347728263, + 6735137627175405143, + 91305611485454778 + ], + "y": [ + 2068449139446365265, + 6171753015906067998, + 16290186276604645197, + 420889087081901603 + ], "infinity": false }, { - "x": [15994614598808477960, 5137738490508028659, 6599503545391493738, 3293094250487745346], - "y": [3246688300070721763, 8836841286539929132, 1231014124908407748, 3042941126579517307], + "x": [ + 15994614598808477960, + 5137738490508028659, + 6599503545391493738, + 3293094250487745346 + ], + "y": [ + 3246688300070721763, + 8836841286539929132, + 1231014124908407748, + 3042941126579517307 + ], "infinity": false }, { - "x": [12550390789117808745, 14001030013656521177, 16383284077678821701, 1815317458772356897], - "y": [10125044837604978181, 7468984969058409331, 592554137766258541, 2877688586321491725], + "x": [ + 12550390789117808745, + 14001030013656521177, + 16383284077678821701, + 1815317458772356897 + ], + "y": [ + 10125044837604978181, + 7468984969058409331, + 592554137766258541, + 2877688586321491725 + ], "infinity": false }, { - "x": [12238091769471133989, 184716847866634800, 5888077423956723698, 609118759536864800], - "y": [7725369615076384544, 7561073323636510559, 10473734750023783127, 861766554781597742], + "x": [ + 12238091769471133989, + 184716847866634800, + 5888077423956723698, + 609118759536864800 + ], + "y": [ + 7725369615076384544, + 7561073323636510559, + 10473734750023783127, + 861766554781597742 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [1206127807467530207, 3510053718168412786, 7933459343694333819, 3179950874373950282], - "y": [5784856107466398982, 395767970566909293, 11244200096534021583, 2068407511544404377], + "x": [ + 1206127807467530207, + 3510053718168412786, + 7933459343694333819, + 3179950874373950282 + ], + "y": [ + 5784856107466398982, + 395767970566909293, + 11244200096534021583, + 2068407511544404377 + ], "infinity": false }, { - "x": [4044617248058764838, 11957266999135308674, 17621747993137866783, 990156155955733134], - "y": [17234504892477991728, 17558826298225495489, 9349531438753716103, 2656409262947709594], + "x": [ + 4044617248058764838, + 11957266999135308674, + 17621747993137866783, + 990156155955733134 + ], + "y": [ + 17234504892477991728, + 17558826298225495489, + 9349531438753716103, + 2656409262947709594 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [4308597000331285311, 12130199317436319902, 3842336010209461436, 191866453597778475], - "y": [2144400171783010971, 13016087318985913183, 7166370365336301922, 2216888390030560212], + "x": [ + 4308597000331285311, + 12130199317436319902, + 3842336010209461436, + 191866453597778475 + ], + "y": [ + 2144400171783010971, + 13016087318985913183, + 7166370365336301922, + 2216888390030560212 + ], "infinity": false }, { - "x": [4661184458541745063, 12423889401726065791, 11959346001895915074, 779668716585305501], - "y": [16401363790535442499, 7367694133722005848, 8015837005184593399, 454166987511489961], + "x": [ + 4661184458541745063, + 12423889401726065791, + 11959346001895915074, + 779668716585305501 + ], + "y": [ + 16401363790535442499, + 7367694133722005848, + 8015837005184593399, + 454166987511489961 + ], "infinity": false }, { - "x": [858215262803403659, 1405268530667707386, 7763962169005921611, 2845435536097215865], - "y": [10639490331338262540, 6397733211512468794, 968161689973799899, 2054756257253905633], + "x": [ + 858215262803403659, + 1405268530667707386, + 7763962169005921611, + 2845435536097215865 + ], + "y": [ + 10639490331338262540, + 6397733211512468794, + 968161689973799899, + 2054756257253905633 + ], "infinity": false }, { - "x": [17338818659525246480, 13318488425310212471, 10548319374858973842, 87084958643052105], - "y": [2279840344577984658, 15197280761751903251, 16019225334594459873, 149925650787595538], + "x": [ + 17338818659525246480, + 13318488425310212471, + 10548319374858973842, + 87084958643052105 + ], + "y": [ + 2279840344577984658, + 15197280761751903251, + 16019225334594459873, + 149925650787595538 + ], "infinity": false } ], "total_lookup_entries_length": 3054916, "lookup_selector_commitment": { - "x": [4844230422625825285, 956290027823441223, 763010695794739308, 2426170829255106638], - "y": [13850520521470006763, 9003994589054655373, 10310690204425503422, 3012516431885755457], + "x": [ + 4844230422625825285, + 956290027823441223, + 763010695794739308, + 2426170829255106638 + ], + "y": [ + 13850520521470006763, + 9003994589054655373, + 10310690204425503422, + 3012516431885755457 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [5825422128268478267, 9219263846299851036, 3879231702557190566, 1702488722758880769], - "y": [18311881100262470992, 5742998199368802392, 18106865487471159417, 502191980176920012], + "x": [ + 5825422128268478267, + 9219263846299851036, + 3879231702557190566, + 1702488722758880769 + ], + "y": [ + 18311881100262470992, + 5742998199368802392, + 18106865487471159417, + 502191980176920012 + ], "infinity": false }, { - "x": [17195892082859417081, 7890531942603584793, 2381805632820057528, 3173232410464566465], - "y": [16359614627947132075, 3459600273035137079, 4550762061432972122, 3394559699318358224], + "x": [ + 17195892082859417081, + 7890531942603584793, + 2381805632820057528, + 3173232410464566465 + ], + "y": [ + 16359614627947132075, + 3459600273035137079, + 4550762061432972122, + 3394559699318358224 + ], "infinity": false }, { - "x": [1716103379277390185, 18097936269579187542, 16357329729761063450, 1508640059338197502], - "y": [11014806739603983364, 4396503314588777389, 9397245609635151055, 1703957955248411380], + "x": [ + 1716103379277390185, + 18097936269579187542, + 16357329729761063450, + 1508640059338197502 + ], + "y": [ + 11014806739603983364, + 4396503314588777389, + 9397245609635151055, + 1703957955248411380 + ], "infinity": false }, { - "x": [4770171350693477354, 17110558673192292253, 9799800677557311408, 761984875463445481], - "y": [1560561403388310063, 31331275310848146, 287152055803835484, 457826332542037277], + "x": [ + 4770171350693477354, + 17110558673192292253, + 9799800677557311408, + 761984875463445481 + ], + "y": [ + 1560561403388310063, + 31331275310848146, + 287152055803835484, + 457826332542037277 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [16775586915653722908, 9787338077086882544, 8381721730521821042, 2974660093975661578], - "y": [3011389235487891234, 15409507493813096391, 17416460976276029026, 324418288749844627], + "x": [ + 16775586915653722908, + 9787338077086882544, + 8381721730521821042, + 2974660093975661578 + ], + "y": [ + 3011389235487891234, + 15409507493813096391, + 17416460976276029026, + 324418288749844627 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_7_key.json b/core/bin/verification_key_generator_and_server/data/verification_7_key.json index 056dd64ad54b..406afcf4f0fe 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_7_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_7_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [14104278525941001335, 6652111379088654370, 12369045377338511525, 969809670184836151], - "y": [10111598525423302991, 15018239425425696172, 3683372413830991953, 1023765059890131543], + "x": [ + 14104278525941001335, + 6652111379088654370, + 12369045377338511525, + 969809670184836151 + ], + "y": [ + 10111598525423302991, + 15018239425425696172, + 3683372413830991953, + 1023765059890131543 + ], "infinity": false }, { - "x": [11576486884237685781, 16315823052257401029, 9860864515877414033, 3179959598270002012], - "y": [487035971539979311, 5573003039451484772, 15711637819381564577, 1904127920269177012], + "x": [ + 11576486884237685781, + 16315823052257401029, + 9860864515877414033, + 3179959598270002012 + ], + "y": [ + 487035971539979311, + 5573003039451484772, + 15711637819381564577, + 1904127920269177012 + ], "infinity": false }, { - "x": [18299921128106602792, 211731469708793711, 17645028854462121436, 675870769139913517], - "y": [15146647508675165454, 18353083579110652488, 12704645658780892142, 2929235299763077823], + "x": [ + 18299921128106602792, + 211731469708793711, + 17645028854462121436, + 675870769139913517 + ], + "y": [ + 15146647508675165454, + 18353083579110652488, + 12704645658780892142, + 2929235299763077823 + ], "infinity": false }, { - "x": [11570586127780196277, 2363872676317471379, 7386811009552915084, 959006902628416514], - "y": [17455735716787098890, 14879699386306994564, 5628100821420984321, 2862659911936763739], + "x": [ + 11570586127780196277, + 2363872676317471379, + 7386811009552915084, + 959006902628416514 + ], + "y": [ + 17455735716787098890, + 14879699386306994564, + 5628100821420984321, + 2862659911936763739 + ], "infinity": false }, { - "x": [8746328571248006135, 17089435014355939378, 8764506524471462449, 1810135458362589443], - "y": [14070512019208911265, 8756287737315170424, 14821473955626613, 1559545289765661890], + "x": [ + 8746328571248006135, + 17089435014355939378, + 8764506524471462449, + 1810135458362589443 + ], + "y": [ + 14070512019208911265, + 8756287737315170424, + 14821473955626613, + 1559545289765661890 + ], "infinity": false }, { - "x": [2113591086436573082, 12629483649401688389, 11845953673798951216, 3081238281103628853], - "y": [727696133406005469, 14413827745813557208, 6425035421156126073, 291513487083052109], + "x": [ + 2113591086436573082, + 12629483649401688389, + 11845953673798951216, + 3081238281103628853 + ], + "y": [ + 727696133406005469, + 14413827745813557208, + 6425035421156126073, + 291513487083052109 + ], "infinity": false }, { - "x": [15346257923988607256, 10403316660718504706, 7158515894996917286, 2702098910103276762], - "y": [16559143492878738107, 12716298061927369795, 12296985344891017351, 2814996798832983835], + "x": [ + 15346257923988607256, + 10403316660718504706, + 7158515894996917286, + 2702098910103276762 + ], + "y": [ + 16559143492878738107, + 12716298061927369795, + 12296985344891017351, + 2814996798832983835 + ], "infinity": false }, { - "x": [2213195001372039295, 8878300942582564036, 10524986226191936528, 1815326540993196034], - "y": [11397120982692424098, 4455537142488107627, 14205354993332845055, 2313809587433567240], + "x": [ + 2213195001372039295, + 8878300942582564036, + 10524986226191936528, + 1815326540993196034 + ], + "y": [ + 11397120982692424098, + 4455537142488107627, + 14205354993332845055, + 2313809587433567240 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [14849046431510808003, 11699893139960418168, 6000246307731364190, 3362832011707902866], - "y": [3242560497217933852, 11672398501106836413, 987926723326096281, 2451226739475091625], + "x": [ + 14849046431510808003, + 11699893139960418168, + 6000246307731364190, + 3362832011707902866 + ], + "y": [ + 3242560497217933852, + 11672398501106836413, + 987926723326096281, + 2451226739475091625 + ], "infinity": false }, { - "x": [9272095445402359796, 1201046264826394411, 7424934554242366462, 1125893484262333608], - "y": [15903920299684884420, 17703294385387204708, 2256937129195345942, 1905295733884217610], + "x": [ + 9272095445402359796, + 1201046264826394411, + 7424934554242366462, + 1125893484262333608 + ], + "y": [ + 15903920299684884420, + 17703294385387204708, + 2256937129195345942, + 1905295733884217610 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [7591926766688292250, 10457199375342460747, 3214976192729961314, 1412860682249358355], - "y": [16894260140402496006, 3666374878391815131, 15124268261678582348, 1340579262756129480], + "x": [ + 7591926766688292250, + 10457199375342460747, + 3214976192729961314, + 1412860682249358355 + ], + "y": [ + 16894260140402496006, + 3666374878391815131, + 15124268261678582348, + 1340579262756129480 + ], "infinity": false }, { - "x": [2963934507934439034, 17415763666461861018, 6331792462137338053, 3122358526111186727], - "y": [15040784043381591388, 7188410244350767315, 14077554108063383431, 1704329843327300001], + "x": [ + 2963934507934439034, + 17415763666461861018, + 6331792462137338053, + 3122358526111186727 + ], + "y": [ + 15040784043381591388, + 7188410244350767315, + 14077554108063383431, + 1704329843327300001 + ], "infinity": false }, { - "x": [7967507884960122293, 13509230570773443525, 11125712791473385552, 2241808950326876268], - "y": [10594180941877323940, 17179032413109513856, 17941607623778808075, 646138820984886096], + "x": [ + 7967507884960122293, + 13509230570773443525, + 11125712791473385552, + 2241808950326876268 + ], + "y": [ + 10594180941877323940, + 17179032413109513856, + 17941607623778808075, + 646138820984886096 + ], "infinity": false }, { - "x": [4729534828155895283, 15489050734511381239, 4847364931161261393, 2461584260035042491], - "y": [15255817542606978857, 6517429187947361297, 17127878630247240853, 3389541567226838859], + "x": [ + 4729534828155895283, + 15489050734511381239, + 4847364931161261393, + 2461584260035042491 + ], + "y": [ + 15255817542606978857, + 6517429187947361297, + 17127878630247240853, + 3389541567226838859 + ], "infinity": false } ], "total_lookup_entries_length": 40724289, "lookup_selector_commitment": { - "x": [5449769839889646584, 2072406321611922291, 9391796773218391195, 2377769168011090955], - "y": [1789189431152658324, 2639430755172378798, 136577695530283091, 3045539535973502646], + "x": [ + 5449769839889646584, + 2072406321611922291, + 9391796773218391195, + 2377769168011090955 + ], + "y": [ + 1789189431152658324, + 2639430755172378798, + 136577695530283091, + 3045539535973502646 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [12639039925867405095, 9606685454938605275, 7802675863289639223, 1948831418843225802], - "y": [11059150608777595761, 10458812733010634961, 16772660325487078311, 340608886692078192], + "x": [ + 12639039925867405095, + 9606685454938605275, + 7802675863289639223, + 1948831418843225802 + ], + "y": [ + 11059150608777595761, + 10458812733010634961, + 16772660325487078311, + 340608886692078192 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_8_key.json b/core/bin/verification_key_generator_and_server/data/verification_8_key.json index 23d632840eca..b8511e17b755 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_8_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_8_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [1834112096176967541, 5137529514715617427, 6540843391881340212, 3033401888759110412], - "y": [8910602970094475216, 13169513767982514776, 5761530093694221441, 2733318557350866268], + "x": [ + 1834112096176967541, + 5137529514715617427, + 6540843391881340212, + 3033401888759110412 + ], + "y": [ + 8910602970094475216, + 13169513767982514776, + 5761530093694221441, + 2733318557350866268 + ], "infinity": false }, { - "x": [4701064149158432365, 5425087325981406309, 7911131985858828309, 1683257627049186617], - "y": [13565328904521460918, 17013189171844282257, 4897087111183007258, 2345861178674095559], + "x": [ + 4701064149158432365, + 5425087325981406309, + 7911131985858828309, + 1683257627049186617 + ], + "y": [ + 13565328904521460918, + 17013189171844282257, + 4897087111183007258, + 2345861178674095559 + ], "infinity": false }, { - "x": [17285353863442654170, 17787410547699779811, 4803131526909484890, 1607731426619418092], - "y": [3219378920021652314, 11046862703797106703, 10595836629242151972, 2970963661532337787], + "x": [ + 17285353863442654170, + 17787410547699779811, + 4803131526909484890, + 1607731426619418092 + ], + "y": [ + 3219378920021652314, + 11046862703797106703, + 10595836629242151972, + 2970963661532337787 + ], "infinity": false }, { - "x": [6619857367954187649, 8023974497004524989, 10088058961892288757, 938018804109053807], - "y": [15549411064757453720, 1776820811429478220, 8222111141823917842, 290593315633281086], + "x": [ + 6619857367954187649, + 8023974497004524989, + 10088058961892288757, + 938018804109053807 + ], + "y": [ + 15549411064757453720, + 1776820811429478220, + 8222111141823917842, + 290593315633281086 + ], "infinity": false }, { - "x": [3338931670632164423, 11330459786926502111, 13560408114559586439, 233279858410037466], - "y": [9757980615881472290, 6475296714459436577, 15954545788543926629, 2522580407814024231], + "x": [ + 3338931670632164423, + 11330459786926502111, + 13560408114559586439, + 233279858410037466 + ], + "y": [ + 9757980615881472290, + 6475296714459436577, + 15954545788543926629, + 2522580407814024231 + ], "infinity": false }, { - "x": [2168501453409628158, 16417992951888116942, 1994813140597965849, 1938552030580060698], - "y": [2393885012813093493, 5109365147685051030, 4449898145078443978, 996506294158321126], + "x": [ + 2168501453409628158, + 16417992951888116942, + 1994813140597965849, + 1938552030580060698 + ], + "y": [ + 2393885012813093493, + 5109365147685051030, + 4449898145078443978, + 996506294158321126 + ], "infinity": false }, { - "x": [8163446935422765754, 17127634458571165785, 18101155318188210010, 1502677094108070955], - "y": [4184320355428455210, 15479528531137595907, 8455846016430686855, 2570922865513301289], + "x": [ + 8163446935422765754, + 17127634458571165785, + 18101155318188210010, + 1502677094108070955 + ], + "y": [ + 4184320355428455210, + 15479528531137595907, + 8455846016430686855, + 2570922865513301289 + ], "infinity": false }, { - "x": [407579941387952352, 17088458915370169940, 16892753644011369852, 2421666516533613805], - "y": [597435837737447683, 18122233368438707442, 4844832744563923839, 396103093107107006], + "x": [ + 407579941387952352, + 17088458915370169940, + 16892753644011369852, + 2421666516533613805 + ], + "y": [ + 597435837737447683, + 18122233368438707442, + 4844832744563923839, + 396103093107107006 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [16242434178832819081, 2218928756172422054, 5871927983870638422, 810020555846721779], - "y": [9387856576677982883, 5119490172321159350, 14295435318421985120, 1325809191818871673], + "x": [ + 16242434178832819081, + 2218928756172422054, + 5871927983870638422, + 810020555846721779 + ], + "y": [ + 9387856576677982883, + 5119490172321159350, + 14295435318421985120, + 1325809191818871673 + ], "infinity": false }, { - "x": [5933965238687071287, 10681704800081225943, 14555731010498897395, 959799154476325145], - "y": [1501632601560034962, 9401704677918783964, 12292111854761501889, 858616662661742045], + "x": [ + 5933965238687071287, + 10681704800081225943, + 14555731010498897395, + 959799154476325145 + ], + "y": [ + 1501632601560034962, + 9401704677918783964, + 12292111854761501889, + 858616662661742045 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [12841507457971520539, 6525486152471484441, 3744486588589217686, 2769451038405535407], - "y": [14145668232228974364, 9864097401535863500, 12665512227995054273, 1710776254334161256], + "x": [ + 12841507457971520539, + 6525486152471484441, + 3744486588589217686, + 2769451038405535407 + ], + "y": [ + 14145668232228974364, + 9864097401535863500, + 12665512227995054273, + 1710776254334161256 + ], "infinity": false }, { - "x": [12108157388466567796, 12008825937320240484, 11228446795405478904, 1520424921904150640], - "y": [18157047055378899649, 10836823561088895074, 583613418617515639, 2570085764232471205], + "x": [ + 12108157388466567796, + 12008825937320240484, + 11228446795405478904, + 1520424921904150640 + ], + "y": [ + 18157047055378899649, + 10836823561088895074, + 583613418617515639, + 2570085764232471205 + ], "infinity": false }, { - "x": [3117226099128838157, 10181632193024509490, 1215328570209780930, 1536961491401844084], - "y": [11646905141441654681, 6168936708987385450, 14459621573162108487, 2047975568887748173], + "x": [ + 3117226099128838157, + 10181632193024509490, + 1215328570209780930, + 1536961491401844084 + ], + "y": [ + 11646905141441654681, + 6168936708987385450, + 14459621573162108487, + 2047975568887748173 + ], "infinity": false }, { - "x": [12034664246790330785, 12032082546920592595, 12002839514296456095, 3009479689157977152], - "y": [180421277197569955, 5815678523367268562, 11718416396488597085, 408186057258055191], + "x": [ + 12034664246790330785, + 12032082546920592595, + 12002839514296456095, + 3009479689157977152 + ], + "y": [ + 180421277197569955, + 5815678523367268562, + 11718416396488597085, + 408186057258055191 + ], "infinity": false } ], "total_lookup_entries_length": 34384753, "lookup_selector_commitment": { - "x": [3872970821419373956, 13556503327407661223, 12832313376327677595, 211677646774476601], - "y": [17281673428499585093, 235933066531227024, 17890327653152417391, 2551853991532334733], + "x": [ + 3872970821419373956, + 13556503327407661223, + 12832313376327677595, + 211677646774476601 + ], + "y": [ + 17281673428499585093, + 235933066531227024, + 17890327653152417391, + 2551853991532334733 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [14943975734974680929, 9516136771242606543, 6695719565456036638, 3449077049666620393], - "y": [11678209093898264827, 4499447145490933412, 6317798459829178953, 1439219764789809864], + "x": [ + 14943975734974680929, + 9516136771242606543, + 6695719565456036638, + 3449077049666620393 + ], + "y": [ + 11678209093898264827, + 4499447145490933412, + 6317798459829178953, + 1439219764789809864 + ], "infinity": false }, { - "x": [13501290183905491407, 17914451638435951710, 5188762915201956497, 1220375585898114161], - "y": [14519533874806433487, 409100046306023, 2203176115240501563, 3105700623762337563], + "x": [ + 13501290183905491407, + 17914451638435951710, + 5188762915201956497, + 1220375585898114161 + ], + "y": [ + 14519533874806433487, + 409100046306023, + 2203176115240501563, + 3105700623762337563 + ], "infinity": false }, { - "x": [13968159480895722732, 6973568812120893251, 6250254745096478587, 2299355969860561070], - "y": [7695944005480078577, 12009671787784557856, 13727042561077817002, 219052945806305675], + "x": [ + 13968159480895722732, + 6973568812120893251, + 6250254745096478587, + 2299355969860561070 + ], + "y": [ + 7695944005480078577, + 12009671787784557856, + 13727042561077817002, + 219052945806305675 + ], "infinity": false }, { - "x": [4871629130106420314, 4091595855728790015, 1851744390500340594, 3123168382710331270], - "y": [9703969956757970162, 1215036492891076659, 11876727836856213678, 2640893636590396388], + "x": [ + 4871629130106420314, + 4091595855728790015, + 1851744390500340594, + 3123168382710331270 + ], + "y": [ + 9703969956757970162, + 1215036492891076659, + 11876727836856213678, + 2640893636590396388 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [10299044894603982393, 4664166516779563250, 13124827128688646542, 3361599897730972314], - "y": [18259946931458798404, 10145479316480429602, 15446978899103328376, 265382288883021070], + "x": [ + 10299044894603982393, + 4664166516779563250, + 13124827128688646542, + 3361599897730972314 + ], + "y": [ + 18259946931458798404, + 10145479316480429602, + 15446978899103328376, + 265382288883021070 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/bin/verification_key_generator_and_server/data/verification_9_key.json b/core/bin/verification_key_generator_and_server/data/verification_9_key.json index 598f2083b410..75de5f75c78d 100644 --- a/core/bin/verification_key_generator_and_server/data/verification_9_key.json +++ b/core/bin/verification_key_generator_and_server/data/verification_9_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [15041888416700822899, 15908701850433687369, 6928173929840686173, 501601364708497325], - "y": [9443860646360881208, 15174745959183347299, 3341918218952258763, 1470216750942469587], + "x": [ + 15041888416700822899, + 15908701850433687369, + 6928173929840686173, + 501601364708497325 + ], + "y": [ + 9443860646360881208, + 15174745959183347299, + 3341918218952258763, + 1470216750942469587 + ], "infinity": false }, { - "x": [1713492202424532619, 5921868784153327820, 3919870428680620477, 2459274846398943915], - "y": [8012717129874416534, 13032363221581987781, 9462161206147300944, 1151760065513271967], + "x": [ + 1713492202424532619, + 5921868784153327820, + 3919870428680620477, + 2459274846398943915 + ], + "y": [ + 8012717129874416534, + 13032363221581987781, + 9462161206147300944, + 1151760065513271967 + ], "infinity": false }, { - "x": [6636128327108235840, 9362733145474272574, 7779132015244601843, 474802631021936400], - "y": [3900992471196218787, 113851245079995197, 7493904056590361535, 3140468871801097229], + "x": [ + 6636128327108235840, + 9362733145474272574, + 7779132015244601843, + 474802631021936400 + ], + "y": [ + 3900992471196218787, + 113851245079995197, + 7493904056590361535, + 3140468871801097229 + ], "infinity": false }, { - "x": [4340102674797800902, 8715432707094353745, 4331145745081713603, 45456583984841487], - "y": [18326546742044058782, 15443239165658185296, 9765917874876721196, 687859761729374839], + "x": [ + 4340102674797800902, + 8715432707094353745, + 4331145745081713603, + 45456583984841487 + ], + "y": [ + 18326546742044058782, + 15443239165658185296, + 9765917874876721196, + 687859761729374839 + ], "infinity": false }, { - "x": [10804694580890857975, 10550068287306981825, 14956274043654722561, 3060589920124935341], - "y": [17010223672048359580, 263749806111642373, 8349695975133446526, 2826070525773268002], + "x": [ + 10804694580890857975, + 10550068287306981825, + 14956274043654722561, + 3060589920124935341 + ], + "y": [ + 17010223672048359580, + 263749806111642373, + 8349695975133446526, + 2826070525773268002 + ], "infinity": false }, { - "x": [16133249269780245267, 4275571784340824698, 6262619645627758753, 3231281899173719188], - "y": [11839616617849449709, 7142633755989890055, 10840735473548209733, 2847350786075278882], + "x": [ + 16133249269780245267, + 4275571784340824698, + 6262619645627758753, + 3231281899173719188 + ], + "y": [ + 11839616617849449709, + 7142633755989890055, + 10840735473548209733, + 2847350786075278882 + ], "infinity": false }, { - "x": [16258572583186965203, 1354691125575792689, 17235265854934968790, 1252220109588505888], - "y": [9336541637487074271, 18402912967310224930, 13223187653117829136, 2979297976786733465], + "x": [ + 16258572583186965203, + 1354691125575792689, + 17235265854934968790, + 1252220109588505888 + ], + "y": [ + 9336541637487074271, + 18402912967310224930, + 13223187653117829136, + 2979297976786733465 + ], "infinity": false }, { - "x": [8525686695522099028, 4103157564078645049, 18392570749492199187, 2911539491816599180], - "y": [114653447583918953, 10470307038453386601, 11189850644566793538, 1298227034210846592], + "x": [ + 8525686695522099028, + 4103157564078645049, + 18392570749492199187, + 2911539491816599180 + ], + "y": [ + 114653447583918953, + 10470307038453386601, + 11189850644566793538, + 1298227034210846592 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [2069700145549311928, 4250782333685017927, 14207216715687122978, 1145927286048477791], - "y": [9341202692364554712, 12346939747104737180, 2826478533799125818, 2279570556437452275], + "x": [ + 2069700145549311928, + 4250782333685017927, + 14207216715687122978, + 1145927286048477791 + ], + "y": [ + 9341202692364554712, + 12346939747104737180, + 2826478533799125818, + 2279570556437452275 + ], "infinity": false }, { - "x": [12388902775325386546, 1277383964095999647, 10535796018183893831, 3359866702323175506], - "y": [16500893366957272235, 2806147688388338314, 8233156072220488773, 2867848844627212711], + "x": [ + 12388902775325386546, + 1277383964095999647, + 10535796018183893831, + 3359866702323175506 + ], + "y": [ + 16500893366957272235, + 2806147688388338314, + 8233156072220488773, + 2867848844627212711 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [17521183961631816299, 18327810537117645266, 16586212795163003556, 3052771534158410452], - "y": [8441310283734453731, 14146088755801181801, 17480253356603213989, 3217948944323396651], + "x": [ + 17521183961631816299, + 18327810537117645266, + 16586212795163003556, + 3052771534158410452 + ], + "y": [ + 8441310283734453731, + 14146088755801181801, + 17480253356603213989, + 3217948944323396651 + ], "infinity": false }, { - "x": [16076801532842923524, 7514743296775639295, 2571323986448120255, 184367540214459973], - "y": [13389643967183613114, 17108261756464256828, 11145735340309739417, 2142196980030893874], + "x": [ + 16076801532842923524, + 7514743296775639295, + 2571323986448120255, + 184367540214459973 + ], + "y": [ + 13389643967183613114, + 17108261756464256828, + 11145735340309739417, + 2142196980030893874 + ], "infinity": false }, { - "x": [8034683328666433725, 5436036566901194392, 18053257213361014053, 2821377847227509494], - "y": [14471305228212723444, 8894846184648865892, 7047725473055235530, 2413388400332075493], + "x": [ + 8034683328666433725, + 5436036566901194392, + 18053257213361014053, + 2821377847227509494 + ], + "y": [ + 14471305228212723444, + 8894846184648865892, + 7047725473055235530, + 2413388400332075493 + ], "infinity": false }, { - "x": [14026981588443304814, 14671946927765496183, 13387079215022495926, 2554705188091675830], - "y": [440116222237740520, 1630168477189852269, 17833425794232523381, 908824471705597078], + "x": [ + 14026981588443304814, + 14671946927765496183, + 13387079215022495926, + 2554705188091675830 + ], + "y": [ + 440116222237740520, + 1630168477189852269, + 17833425794232523381, + 908824471705597078 + ], "infinity": false } ], "total_lookup_entries_length": 41494904, "lookup_selector_commitment": { - "x": [13889323383351416990, 17887386740570674124, 5463612855590268091, 2434255340534820869], - "y": [2436699678434218349, 11251365794004058995, 11023509005141034197, 2867854671852170604], + "x": [ + 13889323383351416990, + 17887386740570674124, + 5463612855590268091, + 2434255340534820869 + ], + "y": [ + 2436699678434218349, + 11251365794004058995, + 11023509005141034197, + 2867854671852170604 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [631990924006796604, 16139625628991115157, 13331739325995827711, 1062301837743594995], - "y": [15303054606290800139, 15906872095881647437, 7093896572295020249, 1342952934989901142], + "x": [ + 631990924006796604, + 16139625628991115157, + 13331739325995827711, + 1062301837743594995 + ], + "y": [ + 15303054606290800139, + 15906872095881647437, + 7093896572295020249, + 1342952934989901142 + ], "infinity": false }, { - "x": [7983921919542246393, 13296544189644416678, 17081022784392007697, 1980832835348244027], - "y": [10874958134865200330, 7702740658637630534, 14052057929798961943, 3193353539419869016], + "x": [ + 7983921919542246393, + 13296544189644416678, + 17081022784392007697, + 1980832835348244027 + ], + "y": [ + 10874958134865200330, + 7702740658637630534, + 14052057929798961943, + 3193353539419869016 + ], "infinity": false }, { - "x": [1114587284824996932, 4636906500482867924, 15328247172597030456, 87946895873973686], - "y": [15573033830207915877, 5194694185599035278, 2562407345425607214, 2782078999306862675], + "x": [ + 1114587284824996932, + 4636906500482867924, + 15328247172597030456, + 87946895873973686 + ], + "y": [ + 15573033830207915877, + 5194694185599035278, + 2562407345425607214, + 2782078999306862675 + ], "infinity": false }, { - "x": [18225112781127431982, 18048613958187123807, 7325490730844456621, 1953409020724855888], - "y": [7577000130125917198, 6193701449695751861, 4102082927677054717, 395350071385269650], + "x": [ + 18225112781127431982, + 18048613958187123807, + 7325490730844456621, + 1953409020724855888 + ], + "y": [ + 7577000130125917198, + 6193701449695751861, + 4102082927677054717, + 395350071385269650 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [3832160677272803715, 2122279734318217808, 811690144328522684, 1416829483108546006], - "y": [10041279311991435550, 14702496983143623186, 4419862575487552747, 1429817244630465543], + "x": [ + 3832160677272803715, + 2122279734318217808, + 811690144328522684, + 1416829483108546006 + ], + "y": [ + 10041279311991435550, + 14702496983143623186, + 4419862575487552747, + 1429817244630465543 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/core/lib/dal/sqlx-data.json b/core/lib/dal/sqlx-data.json index 7f683ac7fce7..6b47021e2f01 100644 --- a/core/lib/dal/sqlx-data.json +++ b/core/lib/dal/sqlx-data.json @@ -5,7 +5,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "UPDATE proof_generation_details SET status=$1, updated_at = now() WHERE l1_batch_number = $2" @@ -89,9 +92,28 @@ "type_info": "Text" } ], - "nullable": [false, false, false, false, false, false, true, true, true, true, false, false, true, true, true], + "nullable": [ + false, + false, + false, + false, + false, + false, + true, + true, + true, + true, + false, + false, + true, + true, + true + ], "parameters": { - "Left": ["Int4Array", "Text"] + "Left": [ + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM node_aggregation_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC, depth ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING node_aggregation_witness_jobs_fri.*\n " @@ -101,7 +123,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int4", "Text"] + "Left": [ + "Text", + "Int4", + "Text" + ] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = 'available', updated_at = now() WHERE instance_host = $1::text::inet AND instance_port = $2 AND instance_status = 'full' AND zone = $3\n " @@ -115,9 +141,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT bytecode_hash FROM factory_deps WHERE miniblock_number > $1" @@ -191,9 +221,25 @@ "type_info": "Int4" } ], - "nullable": [true, true, true, true, true, true, true, true, true, true, true, true, true], + "nullable": [ + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n WITH events_select AS (\n SELECT\n address, topic1, topic2, topic3, topic4, value,\n miniblock_number, tx_hash, tx_index_in_block,\n event_index_in_block, event_index_in_tx\n FROM events\n WHERE miniblock_number > $1\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n )\n SELECT miniblocks.hash as \"block_hash?\",\n address as \"address!\", topic1 as \"topic1!\", topic2 as \"topic2!\", topic3 as \"topic3!\", topic4 as \"topic4!\", value as \"value!\",\n miniblock_number as \"miniblock_number!\", miniblocks.l1_batch_number as \"l1_batch_number?\", tx_hash as \"tx_hash!\",\n tx_index_in_block as \"tx_index_in_block!\", event_index_in_block as \"event_index_in_block!\", event_index_in_tx as \"event_index_in_tx!\"\n FROM events_select\n INNER JOIN miniblocks ON events_select.miniblock_number = miniblocks.number\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n " @@ -203,7 +249,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Bytea", "Text", "Int4"] + "Left": [ + "Int8", + "Bytea", + "Text", + "Int4" + ] } }, "query": "INSERT INTO witness_inputs(l1_batch_number, merkle_tree_paths, merkel_tree_paths_blob_url, status, protocol_version, created_at, updated_at) VALUES ($1, $2, $3, 'queued', $4, now(), now())\n ON CONFLICT (l1_batch_number) DO NOTHING" @@ -213,7 +264,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int4"] + "Left": [ + "Int4", + "Int4" + ] } }, "query": "UPDATE eth_txs\n SET confirmed_eth_tx_history_id = $1\n WHERE id = $2" @@ -223,7 +277,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int4"] + "Left": [ + "Int8", + "Int4" + ] } }, "query": "\n INSERT INTO node_aggregation_witness_jobs\n (l1_batch_number, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, 'waiting_for_artifacts', now(), now())\n " @@ -247,7 +304,11 @@ "type_info": "Int2" } ], - "nullable": [null, false, false], + "nullable": [ + null, + false, + false + ], "parameters": { "Left": [] } @@ -259,7 +320,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "UPDATE transactions SET in_mempool = FALSE FROM UNNEST ($1::bytea[]) AS s(address) WHERE transactions.in_mempool = TRUE AND transactions.initiator_address = s.address" @@ -273,7 +336,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -289,9 +354,17 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Int8", "Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Int8", + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "SELECT COUNT(*) as \"count!\" FROM l1_batches WHERE number = $1 AND hash = $2 AND merkle_root_hash = $3 AND parent_hash = $4 AND l2_l1_merkle_root = $5" @@ -345,9 +418,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, true, false, false, true], + "nullable": [ + false, + false, + false, + false, + false, + true, + false, + false, + true + ], "parameters": { - "Left": ["Interval", "Int2", "Text"] + "Left": [ + "Interval", + "Int2", + "Text" + ] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = 'reserved', updated_at = now(), processing_started_at = now() WHERE id in ( SELECT id FROM gpu_prover_queue_fri WHERE specialized_prover_group_id=$2 AND zone=$3 AND ( instance_status = 'available' OR (instance_status = 'reserved' AND processing_started_at < now() - $1::interval) ) ORDER BY updated_at ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING gpu_prover_queue_fri.*\n " @@ -361,9 +448,14 @@ "type_info": "Int8" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Bytea", "Int8"] + "Left": [ + "Bytea", + "Int8" + ] } }, "query": "SELECT nonce as \"nonce!\" FROM transactions WHERE initiator_address = $1 AND nonce >= $2 AND is_priority = FALSE AND (miniblock_number IS NOT NULL OR error IS NULL) ORDER BY nonce" @@ -377,9 +469,13 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT timestamp FROM miniblocks WHERE number = $1" @@ -398,7 +494,10 @@ "type_info": "Text" } ], - "nullable": [null, false], + "nullable": [ + null, + false + ], "parameters": { "Left": [] } @@ -484,9 +583,30 @@ "type_info": "Int4" } ], - "nullable": [false, false, false, false, false, true, true, true, false, false, false, true, true, false, true], + "nullable": [ + false, + false, + false, + false, + false, + true, + true, + true, + false, + false, + false, + true, + true, + false, + true + ], "parameters": { - "Left": ["Interval", "Int4", "Int8", "Int4Array"] + "Left": [ + "Interval", + "Int4", + "Int8", + "Int4Array" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM leaf_aggregation_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING leaf_aggregation_witness_jobs.*\n " @@ -500,9 +620,14 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT DISTINCT hashed_key FROM storage_logs WHERE miniblock_number BETWEEN $1 and $2" @@ -516,9 +641,13 @@ "type_info": "Text" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT tx_hash FROM eth_txs_history\n WHERE eth_tx_id = $1 AND confirmed_at IS NOT NULL" @@ -532,7 +661,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -548,9 +679,13 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number from miniblocks where timestamp > $1 ORDER BY number ASC LIMIT 1" @@ -560,7 +695,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -574,9 +711,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Numeric"] + "Left": [ + "Numeric" + ] } }, "query": "SELECT l1_address FROM tokens WHERE market_volume > $1" @@ -586,7 +727,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM storage_logs WHERE miniblock_number > $1" @@ -600,9 +743,13 @@ "type_info": "Jsonb" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT serialized_events_queue FROM events_queue WHERE l1_batch_number = $1" @@ -621,9 +768,15 @@ "type_info": "Bytea" } ], - "nullable": [null, null], + "nullable": [ + null, + null + ], "parameters": { - "Left": ["ByteaArray", "Int8"] + "Left": [ + "ByteaArray", + "Int8" + ] } }, "query": "SELECT u.hashed_key as \"hashed_key!\", (SELECT value FROM storage_logs WHERE hashed_key = u.hashed_key AND miniblock_number <= $2 ORDER BY miniblock_number DESC, operation_number DESC LIMIT 1) as \"value?\" FROM UNNEST($1::bytea[]) AS u(hashed_key)" @@ -637,9 +790,13 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT sent_at_block FROM eth_txs_history WHERE eth_tx_id = $1 AND sent_at_block IS NOT NULL ORDER BY created_at ASC LIMIT 1" @@ -683,9 +840,22 @@ "type_info": "Numeric" } ], - "nullable": [false, false, false, false, false, false, true], + "nullable": [ + false, + false, + false, + false, + false, + false, + true + ], "parameters": { - "Left": ["ByteaArray", "Bytea", "Bytea", "Bytea"] + "Left": [ + "ByteaArray", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "\n SELECT storage.value as \"value!\",\n tokens.l1_address as \"l1_address!\", tokens.l2_address as \"l2_address!\",\n tokens.symbol as \"symbol!\", tokens.name as \"name!\", tokens.decimals as \"decimals!\", tokens.usd_price as \"usd_price?\"\n FROM storage\n INNER JOIN tokens ON\n storage.address = tokens.l2_address OR (storage.address = $2 AND tokens.l2_address = $3)\n WHERE storage.hashed_key = ANY($1) AND storage.value != $4\n " @@ -769,9 +939,29 @@ "type_info": "Bytea" } ], - "nullable": [false, true, true, true, true, true, false, null, null, true, false, true, false, true, false], + "nullable": [ + false, + true, + true, + true, + true, + true, + false, + null, + null, + true, + false, + true, + false, + true, + false + ], "parameters": { - "Left": ["Bytea", "Bytea", "Bytea"] + "Left": [ + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "\n WITH sl AS (\n SELECT * FROM storage_logs\n WHERE storage_logs.address = $1 AND storage_logs.tx_hash = $2\n ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n )\n SELECT\n transactions.hash as tx_hash,\n transactions.index_in_block as index_in_block,\n transactions.l1_batch_tx_index as l1_batch_tx_index,\n transactions.miniblock_number as block_number,\n transactions.error as error,\n transactions.effective_gas_price as effective_gas_price,\n transactions.initiator_address as initiator_address,\n transactions.data->'to' as \"transfer_to?\",\n transactions.data->'contractAddress' as \"execute_contract_address?\",\n transactions.tx_format as \"tx_format?\",\n transactions.refunded_gas as refunded_gas,\n transactions.gas_limit as gas_limit,\n miniblocks.hash as \"block_hash?\",\n miniblocks.l1_batch_number as \"l1_batch_number?\",\n sl.key as \"contract_address?\"\n FROM transactions\n LEFT JOIN miniblocks\n ON miniblocks.number = transactions.miniblock_number\n LEFT JOIN sl\n ON sl.value != $3\n WHERE transactions.hash = $2\n " @@ -855,9 +1045,27 @@ "type_info": "Bytea" } ], - "nullable": [false, false, false, false, true, false, true, false, true, false, true, false, false, true, true], + "nullable": [ + false, + false, + false, + false, + true, + false, + true, + false, + true, + false, + true, + false, + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT l1_batches.number,\n l1_batches.timestamp,\n l1_batches.l1_tx_count,\n l1_batches.l2_tx_count,\n l1_batches.hash as \"root_hash?\",\n commit_tx.tx_hash as \"commit_tx_hash?\",\n commit_tx.confirmed_at as \"committed_at?\",\n prove_tx.tx_hash as \"prove_tx_hash?\",\n prove_tx.confirmed_at as \"proven_at?\",\n execute_tx.tx_hash as \"execute_tx_hash?\",\n execute_tx.confirmed_at as \"executed_at?\",\n l1_batches.l1_gas_price,\n l1_batches.l2_fair_gas_price,\n l1_batches.bootloader_code_hash,\n l1_batches.default_aa_code_hash\n FROM l1_batches\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE l1_batches.number = $1\n " @@ -867,7 +1075,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE witness_inputs_fri SET status =$1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -877,7 +1088,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = $1, updated_at = now()\n WHERE id = $2\n " @@ -901,7 +1115,11 @@ "type_info": "Int4" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { "Left": [] } @@ -932,7 +1150,12 @@ "type_info": "Text" } ], - "nullable": [null, false, false, false], + "nullable": [ + null, + false, + false, + false + ], "parameters": { "Left": [] } @@ -944,7 +1167,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text"] + "Left": [ + "Int8", + "Text" + ] } }, "query": "INSERT INTO proof_compression_jobs_fri(l1_batch_number, status, created_at, updated_at) VALUES ($1, $2, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -1068,7 +1294,9 @@ true ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT number, l1_tx_count, l2_tx_count, timestamp, is_finished, fee_account_address, l2_to_l1_logs, l2_to_l1_messages, bloom, priority_ops_onchain_data, used_contract_hashes, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version FROM l1_batches WHERE eth_commit_tx_id = $1 OR eth_prove_tx_id = $1 OR eth_execute_tx_id = $1" @@ -1082,9 +1310,13 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Text"] + "Left": [ + "Text" + ] } }, "query": "SELECT eth_txs.id FROM eth_txs_history JOIN eth_txs\n ON eth_txs.confirmed_eth_tx_history_id = eth_txs_history.id\n WHERE eth_txs_history.tx_hash = $1" @@ -1204,7 +1436,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT * from prover_jobs where id=$1" @@ -1233,9 +1467,16 @@ "type_info": "Bytea" } ], - "nullable": [false, false, false, false], + "nullable": [ + false, + false, + false, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash\n FROM protocol_versions\n WHERE id = $1\n " @@ -1249,7 +1490,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -1261,7 +1504,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text", "Text"] + "Left": [ + "Int8", + "Text", + "Text" + ] } }, "query": "INSERT INTO proof_compression_jobs_fri(l1_batch_number, fri_proof_blob_url, status, created_at, updated_at) VALUES ($1, $2, $3, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -1290,9 +1537,16 @@ "type_info": "Int4" } ], - "nullable": [true, false, true, true], + "nullable": [ + true, + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT miniblock_number as \"miniblock_number!\",\n hash, index_in_block as \"index_in_block!\", l1_batch_tx_index as \"l1_batch_tx_index!\"\n FROM transactions\n WHERE l1_batch_number = $1\n ORDER BY miniblock_number, index_in_block\n " @@ -1302,7 +1556,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Text", "Int8"] + "Left": [ + "Text", + "Text", + "Int8" + ] } }, "query": "UPDATE proof_compression_jobs_fri SET status =$1, error= $2, updated_at = now() WHERE l1_batch_number = $3" @@ -1312,7 +1570,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -1326,9 +1587,13 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Text"] + "Left": [ + "Text" + ] } }, "query": "INSERT INTO eth_txs (raw_tx, nonce, tx_type, contract_address, predicted_gas_cost, created_at, updated_at)\n VALUES ('\\x00', 0, $1, '', 0, now(), now())\n RETURNING id" @@ -1352,9 +1617,15 @@ "type_info": "Text" } ], - "nullable": [false, true, true], + "nullable": [ + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT l1_batch_number, scheduler_witness_blob_url, final_node_aggregations_blob_url FROM scheduler_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND updated_at < NOW() - INTERVAL '30 days'\n AND scheduler_witness_blob_url is NOT NULL\n AND final_node_aggregations_blob_url is NOT NULL\n LIMIT $1;\n " @@ -1378,9 +1649,15 @@ "type_info": "Int8" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT hash, number, timestamp FROM miniblocks WHERE number > $1 ORDER BY number ASC" @@ -1444,9 +1721,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, false, false, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM protocol_versions WHERE id = $1" @@ -1460,9 +1751,13 @@ "type_info": "Jsonb" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT verification_info FROM contracts_verification_info WHERE address = $1" @@ -1472,7 +1767,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Time", "Int8"] + "Left": [ + "Time", + "Int8" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE id = $2\n " @@ -1541,9 +1839,24 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, false, false, false, true, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + true, + true, + true, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number, timestamp, hash, l1_tx_count, l2_tx_count, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version, virtual_blocks\n FROM miniblocks WHERE number = $1" @@ -1557,9 +1870,14 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Int2"] + "Left": [ + "Int8", + "Int2" + ] } }, "query": "SELECT id from prover_jobs_fri WHERE l1_batch_number = $1 AND status = 'successful' AND aggregation_round = $2" @@ -1573,7 +1891,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -1609,7 +1929,13 @@ "type_info": "Int4" } ], - "nullable": [false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + false + ], "parameters": { "Left": [] } @@ -1630,7 +1956,10 @@ "type_info": "Int2" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { "Left": [] } @@ -1642,7 +1971,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Jsonb"] + "Left": [ + "Bytea", + "Jsonb" + ] } }, "query": "INSERT INTO transaction_traces (tx_hash, trace, created_at, updated_at) VALUES ($1, $2, now(), now())" @@ -1870,7 +2202,12 @@ true ], "parameters": { - "Left": ["Int8", "Numeric", "Numeric", "Int4"] + "Left": [ + "Int8", + "Numeric", + "Numeric", + "Int4" + ] } }, "query": "UPDATE transactions\n SET in_mempool = TRUE\n FROM (\n SELECT hash FROM (\n SELECT hash\n FROM transactions\n WHERE miniblock_number IS NULL AND in_mempool = FALSE AND error IS NULL\n AND (is_priority = TRUE OR (max_fee_per_gas >= $2 and gas_per_pubdata_limit >= $3))\n AND tx_format != $4\n ORDER BY is_priority DESC, priority_op_id, received_at\n LIMIT $1\n ) as subquery1\n ORDER BY hash\n ) as subquery2\n WHERE transactions.hash = subquery2.hash\n RETURNING transactions.*" @@ -1880,7 +2217,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int4Array"] + "Left": [ + "Int8", + "Int4Array" + ] } }, "query": "DELETE FROM storage_logs WHERE miniblock_number = $1 AND operation_number != ALL($2)" @@ -1890,7 +2230,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Int8"] + "Left": [ + "Bytea", + "Int8" + ] } }, "query": "UPDATE l1_batches SET hash = $1 WHERE number = $2" @@ -1904,9 +2247,13 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "\n SELECT COUNT(*) as \"count!\"\n FROM contracts_verification_info\n WHERE address = $1\n " @@ -1920,9 +2267,14 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Int8"] + "Left": [ + "Bytea", + "Int8" + ] } }, "query": "SELECT bytecode FROM factory_deps WHERE bytecode_hash = $1 AND miniblock_number <= $2" @@ -2160,7 +2512,14 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int2", "Int4", "Text", "Int4", "Int4"] + "Left": [ + "Int8", + "Int2", + "Int4", + "Text", + "Int4", + "Int4" + ] } }, "query": "INSERT INTO node_aggregation_witness_jobs_fri (l1_batch_number, circuit_id, depth, aggregations_url, number_of_dependent_jobs, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number, circuit_id, depth)\n DO UPDATE SET updated_at=now()" @@ -2174,9 +2533,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "SELECT hashed_key FROM initial_writes WHERE hashed_key = ANY($1)" @@ -2190,7 +2553,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -2256,7 +2621,19 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, false, false, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false + ], "parameters": { "Left": [] } @@ -2282,9 +2659,15 @@ "type_info": "Text" } ], - "nullable": [false, true, true], + "nullable": [ + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT l1_batch_number, leaf_layer_subqueues_blob_url, aggregation_outputs_blob_url FROM node_aggregation_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND leaf_layer_subqueues_blob_url is NOT NULL\n AND aggregation_outputs_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -2298,7 +2681,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -2314,9 +2699,15 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int4", "Text", "Timestamp"] + "Left": [ + "Int4", + "Text", + "Timestamp" + ] } }, "query": "INSERT INTO eth_txs_history\n (eth_tx_id, base_fee_per_gas, priority_fee_per_gas, tx_hash, signed_raw_tx, created_at, updated_at, confirmed_at)\n VALUES ($1, 0, 0, $2, '\\x00', now(), now(), $3)\n RETURNING id" @@ -2335,9 +2726,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "\n SELECT * FROM call_traces\n WHERE tx_hash = $1\n " @@ -2406,9 +2802,26 @@ "type_info": "Text" } ], - "nullable": [false, true, false, false, true, false, false, true, true, true, true, true], + "nullable": [ + false, + true, + false, + false, + true, + false, + false, + true, + true, + true, + true, + true + ], "parameters": { - "Left": ["Int8", "Int4Array", "Text"] + "Left": [ + "Int8", + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $3\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM witness_inputs_fri\n WHERE l1_batch_number <= $1\n AND status = 'queued'\n AND protocol_version = ANY($2)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING witness_inputs_fri.*\n " @@ -2418,7 +2831,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "DELETE FROM call_traces\n WHERE tx_hash = ANY($1)" @@ -2502,9 +2917,30 @@ "type_info": "Int4" } ], - "nullable": [false, false, true, false, true, true, true, false, false, false, true, true, true, false, true], + "nullable": [ + false, + false, + true, + false, + true, + true, + true, + false, + false, + false, + true, + true, + true, + false, + true + ], "parameters": { - "Left": ["Interval", "Int4", "Int8", "Int4Array"] + "Left": [ + "Interval", + "Int4", + "Int8", + "Int4Array" + ] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM scheduler_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING scheduler_witness_jobs.*\n " @@ -2514,7 +2950,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4Array", "ByteaArray", "Int8"] + "Left": [ + "Int4Array", + "ByteaArray", + "Int8" + ] } }, "query": "\n UPDATE transactions\n SET \n l1_batch_number = $3,\n l1_batch_tx_index = data_table.l1_batch_tx_index,\n updated_at = now()\n FROM\n (SELECT\n UNNEST($1::int[]) AS l1_batch_tx_index,\n UNNEST($2::bytea[]) AS hash\n ) AS data_table\n WHERE transactions.hash=data_table.hash \n " @@ -2524,7 +2964,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM events WHERE miniblock_number > $1" @@ -2534,7 +2976,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text"] + "Left": [ + "Text" + ] } }, "query": "DELETE FROM compiler_versions WHERE compiler = $1" @@ -2544,7 +2988,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray", "ByteaArray"] + "Left": [ + "ByteaArray", + "ByteaArray" + ] } }, "query": "UPDATE storage SET value = u.value FROM UNNEST($1::bytea[], $2::bytea[]) AS u(key, value) WHERE u.key = hashed_key" @@ -2563,9 +3010,15 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int4", "Int8"] + "Left": [ + "Int4", + "Int8" + ] } }, "query": "SELECT number, hash FROM miniblocks WHERE protocol_version = $1 ORDER BY number DESC LIMIT $2" @@ -2575,7 +3028,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text"] + "Left": [ + "Int8", + "Text" + ] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET final_node_aggregations_blob_url = $2,\n status = 'waiting_for_proofs',\n updated_at = now()\n WHERE l1_batch_number = $1 AND status != 'queued'\n " @@ -2819,7 +3275,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Text", "Text"] + "Left": [ + "Int4", + "Int8", + "Text", + "Text" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET number_of_leaf_circuits = $1,\n leaf_layer_subqueues_blob_url = $3,\n aggregation_outputs_blob_url = $4,\n status = 'waiting_for_proofs',\n updated_at = now()\n WHERE l1_batch_number = $2 AND status != 'queued'\n " @@ -2833,9 +3294,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT hash FROM miniblocks WHERE number = $1" @@ -2845,7 +3310,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "\n UPDATE scheduler_dependency_tracker_fri\n SET status='queued'\n WHERE l1_batch_number = ANY($1)\n " @@ -2869,9 +3336,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Interval"] + "Left": [ + "Interval" + ] } }, "query": "DELETE FROM transactions WHERE miniblock_number IS NULL AND received_at < now() - $1::interval AND is_priority=false AND error IS NULL RETURNING hash" @@ -2885,7 +3356,9 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -2906,9 +3379,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "SELECT hashed_key, value as \"value!\" FROM storage WHERE hashed_key = ANY($1)" @@ -2918,7 +3396,13 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int2", "Text", "Int4", "Int4"] + "Left": [ + "Int8", + "Int2", + "Text", + "Int4", + "Int4" + ] } }, "query": "\n INSERT INTO leaf_aggregation_witness_jobs_fri\n (l1_batch_number, circuit_id, closed_form_inputs_blob_url, number_of_basic_circuits, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number, circuit_id)\n DO UPDATE SET updated_at=now()\n " @@ -2982,9 +3466,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, false, false, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM protocol_versions\n WHERE id = $1\n " @@ -3003,7 +3501,10 @@ "type_info": "Text" } ], - "nullable": [null, false], + "nullable": [ + null, + false + ], "parameters": { "Left": [] } @@ -3015,7 +3516,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM l2_to_l1_logs WHERE miniblock_number > $1" @@ -3029,7 +3532,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -3045,7 +3550,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -3061,7 +3568,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -3137,9 +3646,28 @@ "type_info": "Int2" } ], - "nullable": [false, false, false, false, false, false, true, true, true, true, false, false, true], + "nullable": [ + false, + false, + false, + false, + false, + false, + true, + true, + true, + true, + false, + false, + true + ], "parameters": { - "Left": ["Interval", "Int2", "Text", "Text"] + "Left": [ + "Interval", + "Int2", + "Text", + "Text" + ] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = 'reserved',\n updated_at = now(),\n processing_started_at = now()\n WHERE id in (\n SELECT id\n FROM gpu_prover_queue\n WHERE specialized_prover_group_id=$2\n AND region=$3\n AND zone=$4\n AND (\n instance_status = 'available'\n OR (instance_status = 'reserved' AND processing_started_at < now() - $1::interval)\n )\n ORDER BY updated_at ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING gpu_prover_queue.*\n " @@ -3163,9 +3691,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "UPDATE proof_compression_jobs_fri SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now() WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2) OR (status = 'failed' AND attempts < $2) RETURNING l1_batch_number, status, attempts" @@ -3175,7 +3710,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "UPDATE eth_txs SET has_failed = TRUE WHERE id = $1" @@ -3249,9 +3786,25 @@ "type_info": "Bytea" } ], - "nullable": [false, null, null, false, false, false, false, true, true, false, false, true, false], + "nullable": [ + false, + null, + null, + false, + false, + false, + false, + true, + true, + false, + false, + true, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT miniblocks.number,\n COALESCE(miniblocks.l1_batch_number, (SELECT (max(number) + 1) FROM l1_batches)) as \"l1_batch_number!\",\n (SELECT max(m2.number) FROM miniblocks m2 WHERE miniblocks.l1_batch_number = m2.l1_batch_number) as \"last_batch_miniblock?\",\n miniblocks.timestamp,\n miniblocks.hash as \"root_hash?\",\n miniblocks.l1_gas_price,\n miniblocks.l2_fair_gas_price,\n miniblocks.bootloader_code_hash,\n miniblocks.default_aa_code_hash,\n miniblocks.virtual_blocks,\n miniblocks.hash,\n miniblocks.protocol_version as \"protocol_version!\",\n l1_batches.fee_account_address as \"fee_account_address?\"\n FROM miniblocks\n LEFT JOIN l1_batches ON miniblocks.l1_batch_number = l1_batches.number\n WHERE miniblocks.number = $1\n " @@ -3270,9 +3823,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT bootloader_code_hash, default_account_code_hash FROM protocol_versions\n WHERE id = $1\n " @@ -3286,7 +3844,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -3352,9 +3912,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, false, false, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + true, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM protocol_versions\n WHERE id < $1\n ORDER BY id DESC\n LIMIT 1\n " @@ -3373,9 +3947,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT bytecode_hash, bytecode FROM factory_deps INNER JOIN miniblocks ON miniblocks.number = factory_deps.miniblock_number WHERE miniblocks.l1_batch_number = $1" @@ -3399,7 +3978,11 @@ "type_info": "Int8" } ], - "nullable": [false, false, null], + "nullable": [ + false, + false, + null + ], "parameters": { "Left": [] } @@ -3411,7 +3994,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "UPDATE miniblocks SET protocol_version = $1 WHERE l1_batch_number IS NULL" @@ -3421,7 +4006,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Int8"] + "Left": [ + "Int4", + "Int8", + "Int8" + ] } }, "query": "UPDATE l1_batches SET eth_commit_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -3431,7 +4020,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int4"] + "Left": [ + "Int4", + "Int4" + ] } }, "query": "UPDATE eth_txs_history SET sent_at_block = $2, sent_at = now()\n WHERE id = $1 AND sent_at_block IS NULL" @@ -3445,9 +4037,14 @@ "type_info": "Numeric" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT base_fee_per_gas FROM miniblocks WHERE number <= $1 ORDER BY number DESC LIMIT $2" @@ -3461,9 +4058,14 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Numeric"] + "Left": [ + "Int8", + "Numeric" + ] } }, "query": "SELECT number FROM ( SELECT number, sum(virtual_blocks) OVER(ORDER BY number) AS virtual_block_sum FROM miniblocks WHERE l1_batch_number >= $1 ) AS vts WHERE virtual_block_sum <= $2 ORDER BY number DESC LIMIT 1" @@ -3487,9 +4089,15 @@ "type_info": "Int4" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT bootloader_code_hash, default_account_code_hash, id FROM protocol_versions\n WHERE timestamp <= $1\n ORDER BY id DESC\n LIMIT 1\n " @@ -3508,9 +4116,14 @@ "type_info": "Int8" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT hashed_key, index FROM initial_writes WHERE l1_batch_number = $1 ORDER BY index" @@ -3524,7 +4137,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -3540,9 +4155,14 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Numeric"] + "Left": [ + "Int8", + "Numeric" + ] } }, "query": "SELECT number FROM ( SELECT number, sum(virtual_blocks) OVER(ORDER BY number) AS virtual_block_sum FROM miniblocks WHERE l1_batch_number >= $1 ) AS vts WHERE virtual_block_sum >= $2 ORDER BY number LIMIT 1" @@ -3561,9 +4181,15 @@ "type_info": "Int4" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = 'failed', error = $1, updated_at = now()\n WHERE id = $2\n RETURNING l1_batch_number, attempts\n " @@ -3577,9 +4203,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT value FROM storage WHERE hashed_key = $1" @@ -3589,7 +4219,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'failed', error = $1, updated_at = now()\n WHERE id = $2\n " @@ -3608,7 +4241,10 @@ "type_info": "Int4" } ], - "nullable": [null, false], + "nullable": [ + null, + false + ], "parameters": { "Left": [] } @@ -3624,7 +4260,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -3636,7 +4274,13 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8", "Int2", "Int4", "Int4"] + "Left": [ + "Text", + "Int8", + "Int2", + "Int4", + "Int4" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET aggregations_url = $1, number_of_dependent_jobs = $5, updated_at = now()\n WHERE l1_batch_number = $2\n AND circuit_id = $3\n AND depth = $4\n " @@ -3650,7 +4294,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -3736,9 +4382,30 @@ "type_info": "Int4" } ], - "nullable": [false, true, true, true, false, true, true, true, false, false, false, true, true, false, true], + "nullable": [ + false, + true, + true, + true, + false, + true, + true, + true, + false, + false, + false, + true, + true, + false, + true + ], "parameters": { - "Left": ["Interval", "Int4", "Int8", "Int4Array"] + "Left": [ + "Interval", + "Int4", + "Int8", + "Int4Array" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM node_aggregation_witness_jobs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING node_aggregation_witness_jobs.*\n " @@ -3757,9 +4424,14 @@ "type_info": "Int8" } ], - "nullable": [null, null], + "nullable": [ + null, + null + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT (SELECT l1_batch_number FROM miniblocks WHERE number = $1) as \"block_batch?\", (SELECT MAX(number) + 1 FROM l1_batches) as \"max_batch?\"" @@ -3773,7 +4445,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -3785,7 +4459,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Jsonb"] + "Left": [ + "Int8", + "Jsonb" + ] } }, "query": "INSERT INTO events_queue (l1_batch_number, serialized_events_queue) VALUES ($1, $2)" @@ -3795,7 +4472,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "DELETE FROM eth_txs_history\n WHERE id = $1" @@ -3809,9 +4488,13 @@ "type_info": "Text" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Text"] + "Left": [ + "Text" + ] } }, "query": "SELECT version FROM compiler_versions WHERE compiler = $1 ORDER by version" @@ -3821,7 +4504,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["TextArray", "Text"] + "Left": [ + "TextArray", + "Text" + ] } }, "query": "\n INSERT INTO compiler_versions (version, compiler, created_at, updated_at)\n SELECT u.version, $2, now(), now()\n FROM UNNEST($1::text[])\n AS u(version)\n ON CONFLICT (version, compiler) DO NOTHING" @@ -3845,9 +4531,15 @@ "type_info": "Jsonb" } ], - "nullable": [false, true, true], + "nullable": [ + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT status, error, compilation_errors FROM contract_verification_requests\n WHERE id = $1\n " @@ -3891,9 +4583,22 @@ "type_info": "Bool" } ], - "nullable": [false, false, false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false + ], "parameters": { - "Left": ["Int2Array", "Int2Array", "Int4Array", "Text"] + "Left": [ + "Int2Array", + "Int2Array", + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $4\n WHERE id = (\n SELECT id\n FROM prover_jobs_fri\n WHERE status = 'queued'\n AND (circuit_id, aggregation_round) IN (\n SELECT * FROM UNNEST($1::smallint[], $2::smallint[])\n )\n AND protocol_version = ANY($3)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -3903,7 +4608,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE id = $2\n " @@ -3913,7 +4621,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Time", "Bytea", "Text", "Int8"] + "Left": [ + "Time", + "Bytea", + "Text", + "Int8" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = 'successful', updated_at = now(), time_taken = $1, result = $2, proccesed_by = $3\n WHERE id = $4\n " @@ -3927,9 +4640,13 @@ "type_info": "ByteaArray" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT l2_to_l1_logs FROM l1_batches WHERE number = $1" @@ -3943,7 +4660,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -4179,7 +4898,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE number = $1" @@ -4189,7 +4910,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Bytea", "Bytea"] + "Left": [ + "Int8", + "Bytea", + "Bytea" + ] } }, "query": "INSERT INTO commitments (l1_batch_number, events_queue_commitment, bootloader_initial_content_commitment) VALUES ($1, $2, $3) ON CONFLICT (l1_batch_number) DO UPDATE SET events_queue_commitment = $2, bootloader_initial_content_commitment = $3" @@ -4233,9 +4958,21 @@ "type_info": "Bool" } ], - "nullable": [false, false, false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false + ], "parameters": { - "Left": ["Time", "Text", "Int8"] + "Left": [ + "Time", + "Text", + "Int8" + ] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1, proof_blob_url=$2\n WHERE id = $3\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -4249,7 +4986,9 @@ "type_info": "Int4" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -4265,9 +5004,16 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "SELECT id FROM prover_fri_protocol_versions WHERE recursion_circuits_set_vks_hash = $1 AND recursion_leaf_level_vk_hash = $2 AND recursion_node_level_vk_hash = $3 AND recursion_scheduler_level_vk_hash = $4 " @@ -4291,9 +5037,16 @@ "type_info": "Bytea" } ], - "nullable": [false, false, true], + "nullable": [ + false, + false, + true + ], "parameters": { - "Left": ["Bytea", "Bytea"] + "Left": [ + "Bytea", + "Bytea" + ] } }, "query": "\n SELECT factory_deps.bytecode, transactions.data as \"data?\", transactions.contract_address as \"contract_address?\"\n FROM (\n SELECT * FROM storage_logs\n WHERE storage_logs.hashed_key = $1\n ORDER BY miniblock_number DESC, operation_number DESC\n LIMIT 1\n ) storage_logs\n JOIN factory_deps ON factory_deps.bytecode_hash = storage_logs.value\n LEFT JOIN transactions ON transactions.hash = storage_logs.tx_hash\n WHERE storage_logs.value != $2\n " @@ -4307,9 +5060,14 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT hash FROM miniblocks WHERE number BETWEEN $1 AND $2 ORDER BY number" @@ -4347,9 +5105,13 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT protocol_version\n FROM witness_inputs\n WHERE l1_batch_number = $1\n " @@ -4583,7 +5345,11 @@ true ], "parameters": { - "Left": ["Int8", "Int8", "Int8"] + "Left": [ + "Int8", + "Int8", + "Int8" + ] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE number BETWEEN $1 AND $2 ORDER BY number LIMIT $3" @@ -4593,7 +5359,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray", "ByteaArray", "Int8"] + "Left": [ + "ByteaArray", + "ByteaArray", + "Int8" + ] } }, "query": "INSERT INTO factory_deps (bytecode_hash, bytecode, miniblock_number, created_at, updated_at) SELECT u.bytecode_hash, u.bytecode, $3, now(), now() FROM UNNEST($1::bytea[], $2::bytea[]) AS u(bytecode_hash, bytecode) ON CONFLICT (bytecode_hash) DO NOTHING" @@ -4617,9 +5387,15 @@ "type_info": "Text" } ], - "nullable": [false, true, true], + "nullable": [ + false, + true, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT l1_batch_number, basic_circuits_blob_url, basic_circuits_inputs_blob_url FROM leaf_aggregation_witness_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND basic_circuits_blob_url is NOT NULL\n AND basic_circuits_inputs_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -4638,9 +5414,14 @@ "type_info": "Int8" } ], - "nullable": [null, null], + "nullable": [ + null, + null + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT MIN(miniblocks.number) as \"min?\", MAX(miniblocks.number) as \"max?\" FROM miniblocks WHERE l1_batch_number = $1" @@ -4654,9 +5435,13 @@ "type_info": "Int8" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT l1_batch_number FROM miniblocks WHERE number = $1" @@ -4670,7 +5455,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -4686,9 +5473,13 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Numeric"] + "Left": [ + "Numeric" + ] } }, "query": "SELECT max(l1_batches.number) FROM l1_batches JOIN eth_txs ON (l1_batches.eth_commit_tx_id = eth_txs.id) JOIN eth_txs_history AS commit_tx ON (eth_txs.confirmed_eth_tx_history_id = commit_tx.id) WHERE commit_tx.confirmed_at IS NOT NULL AND eth_prove_tx_id IS NOT NULL AND eth_execute_tx_id IS NULL AND EXTRACT(epoch FROM commit_tx.confirmed_at) < $1" @@ -4702,9 +5493,13 @@ "type_info": "ByteaArray" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "SELECT (SELECT ARRAY[address,key] FROM storage_logs WHERE hashed_key = u.hashed_key ORDER BY miniblock_number, operation_number LIMIT 1) as \"address_and_key?\" FROM UNNEST($1::bytea[]) AS u(hashed_key)" @@ -4718,7 +5513,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -4739,9 +5536,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT * FROM call_traces WHERE tx_hash IN (SELECT hash FROM transactions WHERE miniblock_number = $1)" @@ -4751,7 +5553,15 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Bytea", "Bytea", "Text", "Text", "Int4", "Int4"] + "Left": [ + "Int8", + "Bytea", + "Bytea", + "Text", + "Text", + "Int4", + "Int4" + ] } }, "query": "\n INSERT INTO leaf_aggregation_witness_jobs\n (l1_batch_number, basic_circuits, basic_circuits_inputs, basic_circuits_blob_url, basic_circuits_inputs_blob_url, number_of_basic_circuits, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, 'waiting_for_proofs', now(), now())\n " @@ -4770,9 +5580,14 @@ "type_info": "Text" } ], - "nullable": [false, true], + "nullable": [ + false, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT l1_batch_number, merkel_tree_paths_blob_url FROM witness_inputs WHERE status = 'successful' AND is_blob_cleaned = FALSE AND merkel_tree_paths_blob_url is NOT NULL AND updated_at < NOW() - INTERVAL '30 days' LIMIT $1" @@ -5006,7 +5821,12 @@ true ], "parameters": { - "Left": ["Bytea", "Bytea", "Int4", "Int8"] + "Left": [ + "Bytea", + "Bytea", + "Int4", + "Int8" + ] } }, "query": "SELECT number, l1_batches.timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, l1_batches.bootloader_code_hash, l1_batches.default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number JOIN protocol_versions ON protocol_versions.id = l1_batches.protocol_version WHERE eth_commit_tx_id IS NULL AND number != 0 AND protocol_versions.bootloader_code_hash = $1 AND protocol_versions.default_account_code_hash = $2 AND commitment IS NOT NULL AND (protocol_versions.id = $3 OR protocol_versions.upgrade_tx_hash IS NULL) ORDER BY number LIMIT $4" @@ -5016,7 +5836,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text", "Int4"] + "Left": [ + "Int8", + "Text", + "Int4" + ] } }, "query": "INSERT INTO witness_inputs_fri(l1_batch_number, merkle_tree_paths_blob_url, protocol_version, status, created_at, updated_at) VALUES ($1, $2, $3, 'queued', now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -5136,7 +5960,10 @@ true ], "parameters": { - "Left": ["TextArray", "Int4Array"] + "Left": [ + "TextArray", + "Int4Array" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id\n FROM prover_jobs\n WHERE circuit_type = ANY($1)\n AND status = 'queued'\n AND protocol_version = ANY($2)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs.*\n " @@ -5150,9 +5977,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "UPDATE transactions\n SET l1_batch_number = NULL, miniblock_number = NULL, error = NULL, index_in_block = NULL, execution_info = '{}'\n WHERE miniblock_number > $1\n RETURNING hash\n " @@ -5162,7 +5993,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Numeric", "Timestamp"] + "Left": [ + "Bytea", + "Numeric", + "Timestamp" + ] } }, "query": "UPDATE tokens SET usd_price = $2, usd_price_updated_at = $3, updated_at = now() WHERE l1_address = $1" @@ -5172,7 +6007,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Jsonb"] + "Left": [ + "Bytea", + "Jsonb" + ] } }, "query": "\n INSERT INTO contracts_verification_info\n (address, verification_info)\n VALUES ($1, $2)\n ON CONFLICT (address)\n DO UPDATE SET verification_info = $2\n " @@ -5186,7 +6024,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -5198,7 +6038,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "UPDATE miniblocks SET l1_batch_number = $1 WHERE l1_batch_number IS NULL" @@ -5272,9 +6114,25 @@ "type_info": "Bytea" } ], - "nullable": [false, false, false, false, null, null, false, false, false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + null, + null, + false, + false, + false, + false, + false, + false, + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT miniblock_number, log_index_in_miniblock, log_index_in_tx, tx_hash, Null::bytea as \"block_hash\", Null::bigint as \"l1_batch_number?\", shard_id, is_service, tx_index_in_miniblock, tx_index_in_l1_batch, sender, key, value FROM l2_to_l1_logs WHERE tx_hash = $1 ORDER BY log_index_in_tx ASC" @@ -5293,9 +6151,15 @@ "type_info": "Text" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Text", "Text"] + "Left": [ + "Text", + "Text" + ] } }, "query": "SELECT l1_batch_number, status FROM proof_compression_jobs_fri\n WHERE l1_batch_number = ( SELECT MIN(l1_batch_number) FROM proof_compression_jobs_fri WHERE status = $1 OR status = $2\n )" @@ -5409,7 +6273,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number, l1_tx_count, l2_tx_count, timestamp, is_finished, fee_account_address, l2_to_l1_logs, l2_to_l1_messages, bloom, priority_ops_onchain_data, used_contract_hashes, base_fee_per_gas, l1_gas_price, l2_fair_gas_price, bootloader_code_hash, default_aa_code_hash, protocol_version FROM l1_batches WHERE number = $1" @@ -5428,9 +6294,14 @@ "type_info": "Bytea" } ], - "nullable": [false, true], + "nullable": [ + false, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT timestamp, hash FROM l1_batches WHERE number = $1" @@ -5440,7 +6311,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM l1_batches WHERE number > $1" @@ -5459,9 +6332,14 @@ "type_info": "Text" } ], - "nullable": [false, true], + "nullable": [ + false, + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT id, circuit_input_blob_url FROM prover_jobs\n WHERE status='successful' AND is_blob_cleaned=FALSE\n AND circuit_input_blob_url is NOT NULL\n AND updated_at < NOW() - INTERVAL '30 days'\n LIMIT $1;\n " @@ -5485,9 +6363,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -5556,9 +6441,24 @@ "type_info": "Text" } ], - "nullable": [false, false, true, true, false, true, true, true, false, false, false, false], + "nullable": [ + false, + false, + true, + true, + false, + true, + true, + true, + false, + false, + false, + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "\n SELECT transactions.is_priority,\n transactions.initiator_address,\n transactions.gas_limit,\n transactions.gas_per_pubdata_limit,\n transactions.received_at,\n transactions.miniblock_number,\n transactions.error,\n transactions.effective_gas_price,\n transactions.refunded_gas,\n commit_tx.tx_hash as \"eth_commit_tx_hash?\",\n prove_tx.tx_hash as \"eth_prove_tx_hash?\",\n execute_tx.tx_hash as \"eth_execute_tx_hash?\"\n FROM transactions\n LEFT JOIN miniblocks ON miniblocks.number = transactions.miniblock_number\n LEFT JOIN l1_batches ON l1_batches.number = miniblocks.l1_batch_number\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE transactions.hash = $1\n " @@ -5568,7 +6468,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Int8"] + "Left": [ + "Int4", + "Int8", + "Int8" + ] } }, "query": "UPDATE l1_batches SET eth_prove_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -5578,7 +6482,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Time", "Int8"] + "Left": [ + "Time", + "Int8" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE id = $2\n " @@ -5698,7 +6605,9 @@ false ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT miniblocks.number,\n COALESCE(miniblocks.l1_batch_number, (SELECT (max(number) + 1) FROM l1_batches)) as \"l1_batch_number!\",\n miniblocks.timestamp,\n miniblocks.l1_tx_count,\n miniblocks.l2_tx_count,\n miniblocks.hash as \"root_hash?\",\n commit_tx.tx_hash as \"commit_tx_hash?\",\n commit_tx.confirmed_at as \"committed_at?\",\n prove_tx.tx_hash as \"prove_tx_hash?\",\n prove_tx.confirmed_at as \"proven_at?\",\n execute_tx.tx_hash as \"execute_tx_hash?\",\n execute_tx.confirmed_at as \"executed_at?\",\n miniblocks.l1_gas_price,\n miniblocks.l2_fair_gas_price,\n miniblocks.bootloader_code_hash,\n miniblocks.default_aa_code_hash,\n miniblocks.protocol_version,\n l1_batches.fee_account_address as \"fee_account_address?\"\n FROM miniblocks\n LEFT JOIN l1_batches ON miniblocks.l1_batch_number = l1_batches.number\n LEFT JOIN eth_txs_history as commit_tx ON (l1_batches.eth_commit_tx_id = commit_tx.eth_tx_id AND commit_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as prove_tx ON (l1_batches.eth_prove_tx_id = prove_tx.eth_tx_id AND prove_tx.confirmed_at IS NOT NULL)\n LEFT JOIN eth_txs_history as execute_tx ON (l1_batches.eth_execute_tx_id = execute_tx.eth_tx_id AND execute_tx.confirmed_at IS NOT NULL)\n WHERE miniblocks.number = $1\n " @@ -5712,9 +6621,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT DISTINCT ON (hashed_key) hashed_key FROM (SELECT * FROM storage_logs WHERE miniblock_number > $1) inn" @@ -5738,7 +6651,11 @@ "type_info": "Int4" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { "Left": [] } @@ -5750,7 +6667,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "UPDATE prover_jobs_fri SET status = 'sent_to_server', updated_at = now() WHERE l1_batch_number = $1" @@ -5760,7 +6679,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n INSERT INTO scheduler_dependency_tracker_fri\n (l1_batch_number, status, created_at, updated_at)\n VALUES ($1, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number)\n DO UPDATE SET updated_at=now()\n " @@ -5801,7 +6722,9 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -5817,9 +6740,17 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int4", "Int8", "Int8", "Text", "Bytea"] + "Left": [ + "Int4", + "Int8", + "Int8", + "Text", + "Bytea" + ] } }, "query": "INSERT INTO eth_txs_history\n (eth_tx_id, base_fee_per_gas, priority_fee_per_gas, tx_hash, signed_raw_tx, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, now(), now())\n ON CONFLICT (tx_hash) DO NOTHING\n RETURNING id" @@ -5833,9 +6764,14 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Int8"] + "Left": [ + "Bytea", + "Int8" + ] } }, "query": "\n SELECT value\n FROM storage_logs\n WHERE storage_logs.hashed_key = $1 AND storage_logs.miniblock_number <= $2\n ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n " @@ -5849,9 +6785,13 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT protocol_version FROM l1_batches WHERE number = $1" @@ -5920,9 +6860,28 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + true, + false, + false, + false, + true, + true, + false + ], "parameters": { - "Left": ["Bytea", "Int8", "Text", "Text", "Int8"] + "Left": [ + "Bytea", + "Int8", + "Text", + "Text", + "Int8" + ] } }, "query": "INSERT INTO eth_txs (raw_tx, nonce, tx_type, contract_address, predicted_gas_cost, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, now(), now())\n RETURNING *" @@ -5932,7 +6891,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "\n UPDATE prover_jobs\n SET is_blob_cleaned=TRUE\n WHERE id = ANY($1);\n " @@ -5946,9 +6907,14 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Bytea", "Bytea"] + "Left": [ + "Bytea", + "Bytea" + ] } }, "query": "SELECT COUNT(*) as \"count!\" FROM (SELECT * FROM storage_logs WHERE storage_logs.hashed_key = $1 ORDER BY storage_logs.miniblock_number DESC, storage_logs.operation_number DESC LIMIT 1) sl WHERE sl.value != $2" @@ -5958,7 +6924,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "DELETE FROM storage WHERE hashed_key = ANY($1)" @@ -5968,7 +6936,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "UPDATE prover_jobs_fri SET status = $1, updated_at = now() WHERE id = $2" @@ -6088,7 +7059,9 @@ true ], "parameters": { - "Left": ["Int4Array"] + "Left": [ + "Int4Array" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id\n FROM prover_jobs\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs.*\n " @@ -6130,7 +7103,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Bytea", "Text", "Int4"] + "Left": [ + "Int8", + "Bytea", + "Text", + "Int4" + ] } }, "query": "\n INSERT INTO scheduler_witness_jobs\n (l1_batch_number, scheduler_witness, scheduler_witness_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, 'waiting_for_artifacts', now(), now())\n " @@ -6144,9 +7122,21 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Text", "Text", "Text", "Text", "Bool", "Text", "Bytea", "Bool"] + "Left": [ + "Bytea", + "Text", + "Text", + "Text", + "Text", + "Bool", + "Text", + "Bytea", + "Bool" + ] } }, "query": "\n INSERT INTO contract_verification_requests (\n contract_address,\n source_code,\n contract_name,\n zk_compiler_version,\n compiler_version,\n optimization_used,\n optimizer_mode,\n constructor_arguments,\n is_system,\n status,\n created_at,\n updated_at\n )\n VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, 'queued', now(), now())\n RETURNING id\n " @@ -6156,7 +7146,15 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text", "Int4", "Bytea", "Int4", "Text", "Int4"] + "Left": [ + "Int8", + "Text", + "Int4", + "Bytea", + "Int4", + "Text", + "Int4" + ] } }, "query": "\n INSERT INTO prover_jobs (l1_batch_number, circuit_type, sequence_number, prover_input, aggregation_round, circuit_input_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, 'queued', now(), now())\n ON CONFLICT(l1_batch_number, aggregation_round, sequence_number) DO NOTHING\n " @@ -6180,7 +7178,11 @@ "type_info": "Int8" } ], - "nullable": [null, null, null], + "nullable": [ + null, + null, + null + ], "parameters": { "Left": [] } @@ -6217,7 +7219,16 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int2", "Text", "Int2", "Int4", "Int4", "Bool", "Int4"] + "Left": [ + "Int8", + "Int2", + "Text", + "Int2", + "Int4", + "Int4", + "Bool", + "Int4" + ] } }, "query": "\n INSERT INTO prover_jobs_fri (l1_batch_number, circuit_id, circuit_blob_url, aggregation_round, sequence_number, depth, is_node_final_proof, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, $8, 'queued', now(), now())\n ON CONFLICT(l1_batch_number, aggregation_round, circuit_id, depth, sequence_number)\n DO UPDATE SET updated_at=now()\n " @@ -6276,9 +7287,22 @@ "type_info": "Bool" } ], - "nullable": [false, false, false, false, false, false, false, true, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + true, + false, + false + ], "parameters": { - "Left": ["Interval"] + "Left": [ + "Interval" + ] } }, "query": "UPDATE contract_verification_requests\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE id = (\n SELECT id FROM contract_verification_requests\n WHERE status = 'queued' OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n ORDER BY created_at\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING id, contract_address, source_code, contract_name, zk_compiler_version, compiler_version, optimization_used,\n optimizer_mode, constructor_arguments, is_system\n " @@ -6362,9 +7386,28 @@ "type_info": "Text" } ], - "nullable": [false, false, false, true, false, false, true, false, false, true, true, true, true, true, true], + "nullable": [ + false, + false, + false, + true, + false, + false, + true, + false, + false, + true, + true, + true, + true, + true, + true + ], "parameters": { - "Left": ["Int4Array", "Text"] + "Left": [ + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM leaf_aggregation_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING leaf_aggregation_witness_jobs_fri.*\n " @@ -6378,9 +7421,13 @@ "type_info": "Bytea" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "\n SELECT upgrade_tx_hash FROM protocol_versions\n WHERE id = $1\n " @@ -6390,7 +7437,13 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Int4", + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "INSERT INTO prover_fri_protocol_versions (id, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, created_at) VALUES ($1, $2, $3, $4, $5, now()) ON CONFLICT(id) DO NOTHING" @@ -6464,9 +7517,25 @@ "type_info": "Int4" } ], - "nullable": [false, false, false, false, false, false, null, null, false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + null, + null, + false, + false, + false, + false, + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "\n SELECT\n address, topic1, topic2, topic3, topic4, value,\n Null::bytea as \"block_hash\", Null::bigint as \"l1_batch_number?\",\n miniblock_number, tx_hash, tx_index_in_block,\n event_index_in_block, event_index_in_tx\n FROM events\n WHERE tx_hash = $1\n ORDER BY miniblock_number ASC, event_index_in_block ASC\n " @@ -6476,7 +7545,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Int8"] + "Left": [ + "Int4", + "Int8", + "Int8" + ] } }, "query": "UPDATE l1_batches SET eth_execute_tx_id = $1, updated_at = now() WHERE number BETWEEN $2 AND $3" @@ -6486,7 +7559,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status='queued'\n WHERE l1_batch_number = $1\n AND status != 'successful'\n AND status != 'in_progress'\n " @@ -6505,9 +7580,15 @@ "type_info": "Timestamp" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Timestamp", "Int8"] + "Left": [ + "Timestamp", + "Int8" + ] } }, "query": "SELECT transactions.hash, transactions.received_at FROM transactions LEFT JOIN miniblocks ON miniblocks.number = miniblock_number WHERE received_at > $1 ORDER BY received_at ASC LIMIT $2" @@ -6517,7 +7598,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text"] + "Left": [ + "Int8", + "Text" + ] } }, "query": "INSERT INTO proof_generation_details (l1_batch_number, status, proof_gen_data_blob_url, created_at, updated_at) VALUES ($1, 'ready_to_be_proven', $2, now(), now()) ON CONFLICT (l1_batch_number) DO NOTHING" @@ -6531,9 +7615,13 @@ "type_info": "Int4" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT MAX(operation_number) as \"max?\" FROM storage_logs WHERE miniblock_number = $1" @@ -6547,9 +7635,13 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT l1_batch_number FROM initial_writes WHERE hashed_key = $1" @@ -6568,9 +7660,15 @@ "type_info": "Bytea" } ], - "nullable": [true, true], + "nullable": [ + true, + true + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT prover_jobs.result as proof, scheduler_witness_jobs.aggregation_result_coords\n FROM prover_jobs\n INNER JOIN scheduler_witness_jobs\n ON prover_jobs.l1_batch_number = scheduler_witness_jobs.l1_batch_number\n WHERE prover_jobs.l1_batch_number >= $1 AND prover_jobs.l1_batch_number <= $2\n AND prover_jobs.aggregation_round = 3\n AND prover_jobs.status = 'successful'\n " @@ -6639,9 +7737,24 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + true, + false, + false, + false, + true, + true, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT * FROM eth_txs \n WHERE id > (SELECT COALESCE(MAX(eth_tx_id), 0) FROM eth_txs_history)\n ORDER BY id\n LIMIT $1\n " @@ -6651,7 +7764,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Time", "Text", "Int8"] + "Left": [ + "Text", + "Time", + "Text", + "Int8" + ] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, updated_at = now(), time_taken = $2, l1_proof_blob_url = $3WHERE l1_batch_number = $4" @@ -6665,7 +7783,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -6681,7 +7801,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -6693,7 +7815,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray", "Int8Array", "Int8"] + "Left": [ + "ByteaArray", + "Int8Array", + "Int8" + ] } }, "query": "INSERT INTO initial_writes (hashed_key, index, l1_batch_number, created_at, updated_at) SELECT u.hashed_key, u.index, $3, now(), now() FROM UNNEST($1::bytea[], $2::bigint[]) AS u(hashed_key, index)" @@ -6757,9 +7883,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, true, true, true, true], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + true, + true, + true, + true + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM eth_txs_history WHERE eth_tx_id = $1 ORDER BY created_at DESC LIMIT 1" @@ -6769,7 +7909,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Int8"] + "Left": [ + "Bytea", + "Int8" + ] } }, "query": "\n UPDATE scheduler_witness_jobs\n SET aggregation_result_coords = $1,\n updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -6779,7 +7922,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM factory_deps WHERE miniblock_number > $1" @@ -6798,9 +7943,14 @@ "type_info": "Int4" } ], - "nullable": [true, true], + "nullable": [ + true, + true + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT l1_batch_number, l1_batch_tx_index FROM transactions WHERE hash = $1" @@ -6810,7 +7960,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Time", "Int8"] + "Left": [ + "Time", + "Int8" + ] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE l1_batch_number = $2\n " @@ -6824,7 +7977,9 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { "Left": [] } @@ -6890,9 +8045,23 @@ "type_info": "Timestamp" } ], - "nullable": [false, false, false, false, false, false, false, true, true, true, true], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + true, + true, + true, + true + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM eth_txs_history WHERE eth_tx_id = $1 ORDER BY created_at DESC" @@ -6902,7 +8071,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status ='failed', error= $1, updated_at = now()\n WHERE id = $2\n " @@ -6912,7 +8084,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array", "ByteaArray"] + "Left": [ + "Int8Array", + "ByteaArray" + ] } }, "query": "UPDATE miniblocks SET hash = u.hash FROM UNNEST($1::bigint[], $2::bytea[]) AS u(number, hash) WHERE miniblocks.number = u.number\n " @@ -6931,9 +8106,15 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT number, hash FROM miniblocks WHERE number > $1 ORDER BY number ASC LIMIT $2" @@ -6981,7 +8162,10 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { "Left": [] } @@ -7217,7 +8401,10 @@ true ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM (SELECT l1_batches.*, row_number() OVER (ORDER BY number ASC) AS row_number FROM l1_batches WHERE eth_commit_tx_id IS NOT NULL AND l1_batches.skip_proof = TRUE AND l1_batches.number > $1 ORDER BY number LIMIT $2) inn LEFT JOIN commitments ON commitments.l1_batch_number = inn.number WHERE number - row_number = $1" @@ -7286,7 +8473,20 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + true, + false, + false, + false, + true, + true, + false + ], "parameters": { "Left": [] } @@ -7298,7 +8498,15 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Int4", + "Int8", + "Bytea", + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "INSERT INTO prover_protocol_versions\n (id, timestamp, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash,\n recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, verifier_address, created_at)\n VALUES ($1, $2, $3, $4, $5, $6, $7, now())\n " @@ -7357,7 +8565,18 @@ "type_info": "Bool" } ], - "nullable": [false, false, false, false, false, false, false, true, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + true, + false, + false + ], "parameters": { "Left": [] } @@ -7383,9 +8602,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -7409,9 +8635,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING l1_batch_number, status, attempts\n " @@ -7425,9 +8658,13 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Interval"] + "Left": [ + "Interval" + ] } }, "query": "UPDATE proof_generation_details SET status = 'picked_by_prover', updated_at = now(), prover_taken_at = now() WHERE l1_batch_number = ( SELECT l1_batch_number FROM proof_generation_details WHERE status = 'ready_to_be_proven' OR (status = 'picked_by_prover' AND prover_taken_at < now() - $1::interval) ORDER BY l1_batch_number ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING proof_generation_details.l1_batch_number" @@ -7441,9 +8678,15 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Text", "Text", "Text"] + "Left": [ + "Text", + "Text", + "Text" + ] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, attempts = attempts + 1, updated_at = now(), processing_started_at = now(), picked_by = $3 WHERE l1_batch_number = ( SELECT l1_batch_number FROM proof_compression_jobs_fri WHERE status = $2 ORDER BY l1_batch_number ASC LIMIT 1 FOR UPDATE SKIP LOCKED ) RETURNING proof_compression_jobs_fri.l1_batch_number" @@ -7677,7 +8920,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE eth_commit_tx_id IS NOT NULL AND eth_prove_tx_id IS NULL ORDER BY number LIMIT $1" @@ -7691,9 +8936,16 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8", "Int2", "Int2", "Int4"] + "Left": [ + "Int8", + "Int2", + "Int2", + "Int4" + ] } }, "query": "\n SELECT id from prover_jobs_fri\n WHERE l1_batch_number = $1\n AND circuit_id = $2\n AND aggregation_round = $3\n AND depth = $4\n AND status = 'successful'\n ORDER BY sequence_number ASC;\n " @@ -7712,9 +8964,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "SELECT bytecode, bytecode_hash FROM factory_deps WHERE bytecode_hash = ANY($1)" @@ -7728,9 +8985,13 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT protocol_version FROM miniblocks WHERE number = $1" @@ -7794,9 +9055,24 @@ "type_info": "Text" } ], - "nullable": [false, false, false, true, true, true, false, false, false, true, true], + "nullable": [ + false, + false, + false, + true, + true, + true, + false, + false, + false, + true, + true + ], "parameters": { - "Left": ["Int4Array", "Text"] + "Left": [ + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM scheduler_witness_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING scheduler_witness_jobs_fri.*\n " @@ -7806,7 +9082,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray", "ByteaArray"] + "Left": [ + "ByteaArray", + "ByteaArray" + ] } }, "query": "\n INSERT INTO call_traces (tx_hash, call_trace)\n SELECT u.tx_hash, u.call_trace\n FROM UNNEST($1::bytea[], $2::bytea[])\n AS u(tx_hash, call_trace)\n " @@ -7820,9 +9099,13 @@ "type_info": "Int8Array" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT storage_refunds FROM l1_batches WHERE number = $1" @@ -7846,9 +9129,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "\n UPDATE scheduler_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING l1_batch_number, status, attempts\n " @@ -8082,7 +9372,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT number, timestamp, is_finished, l1_tx_count, l2_tx_count, fee_account_address, bloom, priority_ops_onchain_data, hash, parent_hash, commitment, compressed_write_logs, compressed_contracts, eth_prove_tx_id, eth_commit_tx_id, eth_execute_tx_id, merkle_root_hash, l2_to_l1_logs, l2_to_l1_messages, used_contract_hashes, compressed_initial_writes, compressed_repeated_writes, l2_l1_compressed_messages, l2_l1_merkle_root, l1_gas_price, l2_fair_gas_price, rollup_last_leaf_index, zkporter_is_available, bootloader_code_hash, default_aa_code_hash, base_fee_per_gas, aux_data_hash, pass_through_data_hash, meta_parameters_hash, protocol_version, events_queue_commitment, bootloader_initial_content_commitment FROM l1_batches LEFT JOIN commitments ON commitments.l1_batch_number = l1_batches.number WHERE eth_prove_tx_id IS NOT NULL AND eth_execute_tx_id IS NULL ORDER BY number LIMIT $1" @@ -8092,7 +9384,15 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "ByteaArray", "Int4Array", "VarcharArray", "JsonbArray", "Int8Array", "NumericArray"] + "Left": [ + "Int8", + "ByteaArray", + "Int4Array", + "VarcharArray", + "JsonbArray", + "Int8Array", + "NumericArray" + ] } }, "query": "\n UPDATE transactions\n SET\n miniblock_number = $1,\n index_in_block = data_table.index_in_block,\n error = NULLIF(data_table.error, ''),\n in_mempool=FALSE,\n execution_info = execution_info || data_table.new_execution_info,\n refunded_gas = data_table.refunded_gas,\n effective_gas_price = data_table.effective_gas_price,\n updated_at = now()\n FROM\n (\n SELECT\n UNNEST($2::bytea[]) AS hash,\n UNNEST($3::integer[]) AS index_in_block,\n UNNEST($4::varchar[]) AS error,\n UNNEST($5::jsonb[]) AS new_execution_info,\n UNNEST($6::bigint[]) as refunded_gas,\n UNNEST($7::numeric[]) as effective_gas_price\n ) AS data_table\n WHERE transactions.hash = data_table.hash\n " @@ -8136,7 +9436,15 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, true, false], + "nullable": [ + false, + false, + false, + false, + false, + true, + false + ], "parameters": { "Left": [] } @@ -8162,9 +9470,16 @@ "type_info": "Int4" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int4"] + "Left": [ + "Interval", + "Int4" + ] } }, "query": "\n UPDATE prover_jobs\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'in_gpu_proof' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -8178,7 +9493,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -8190,7 +9507,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Time", "Int8"] + "Left": [ + "Time", + "Int8" + ] } }, "query": "\n UPDATE witness_inputs_fri\n SET status = 'successful', updated_at = now(), time_taken = $1\n WHERE l1_batch_number = $2\n " @@ -8200,7 +9520,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -8214,9 +9536,15 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Int8", "Bytea"] + "Left": [ + "Bytea", + "Int8", + "Bytea" + ] } }, "query": "\n SELECT bytecode FROM (\n SELECT * FROM storage_logs\n WHERE\n storage_logs.hashed_key = $1 AND\n storage_logs.miniblock_number <= $2\n ORDER BY\n storage_logs.miniblock_number DESC, storage_logs.operation_number DESC\n LIMIT 1\n ) t\n JOIN factory_deps ON value = factory_deps.bytecode_hash\n WHERE value != $3\n " @@ -8226,7 +9554,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int4", "Int4"] + "Left": [ + "Int8", + "Int4", + "Int4" + ] } }, "query": "UPDATE eth_txs\n SET gas_used = $1, confirmed_eth_tx_history_id = $2\n WHERE id = $3" @@ -8245,9 +9577,14 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT address, key FROM protective_reads WHERE l1_batch_number = $1" @@ -8266,9 +9603,14 @@ "type_info": "Timestamp" } ], - "nullable": [true, true], + "nullable": [ + true, + true + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT usd_price, usd_price_updated_at FROM tokens WHERE l2_address = $1" @@ -8278,7 +9620,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "UPDATE witness_inputs SET is_blob_cleaned = TRUE WHERE l1_batch_number = ANY($1)" @@ -8288,7 +9632,15 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int4", "Int4", "Int2", "Text", "Text", "Int2"] + "Left": [ + "Text", + "Int4", + "Int4", + "Int2", + "Text", + "Text", + "Int2" + ] } }, "query": "\n INSERT INTO gpu_prover_queue (instance_host, instance_port, queue_capacity, queue_free_slots, instance_status, specialized_prover_group_id, region, zone, num_gpu, created_at, updated_at)\n VALUES (cast($1::text as inet), $2, $3, $3, 'available', $4, $5, $6, $7, now(), now())\n ON CONFLICT(instance_host, instance_port, region, zone)\n DO UPDATE SET instance_status='available', queue_capacity=$3, queue_free_slots=$3, specialized_prover_group_id=$4, region=$5, zone=$6, num_gpu=$7, updated_at=now()" @@ -8298,7 +9650,18 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int4", "Int8", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Int4", + "Int8", + "Bytea", + "Bytea", + "Bytea", + "Bytea", + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "INSERT INTO protocol_versions (id, timestamp, recursion_scheduler_level_vk_hash, recursion_node_level_vk_hash, recursion_leaf_level_vk_hash, recursion_circuits_set_vks_hash, bootloader_code_hash, default_account_code_hash, verifier_address, upgrade_tx_hash, created_at) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, now())" @@ -8308,7 +9671,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Int8", "Bytea"] + "Left": [ + "Bytea", + "Int8", + "Bytea" + ] } }, "query": "\n DELETE FROM tokens \n WHERE l2_address IN\n (\n SELECT substring(key, 12, 20) FROM storage_logs \n WHERE storage_logs.address = $1 AND miniblock_number > $2 AND NOT EXISTS (\n SELECT 1 FROM storage_logs as s\n WHERE\n s.hashed_key = storage_logs.hashed_key AND\n (s.miniblock_number, s.operation_number) >= (storage_logs.miniblock_number, storage_logs.operation_number) AND\n s.value = $3\n )\n )\n " @@ -8318,7 +9685,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "DELETE FROM miniblocks WHERE number > $1" @@ -8328,7 +9697,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text", "Jsonb", "Text"] + "Left": [ + "Int8", + "Text", + "Jsonb", + "Text" + ] } }, "query": "\n UPDATE contract_verification_requests\n SET status = 'failed', updated_at = now(), error = $2, compilation_errors = $3, panic_message = $4\n WHERE id = $1\n " @@ -8352,7 +9726,11 @@ "type_info": "Text" } ], - "nullable": [null, false, false], + "nullable": [ + null, + false, + false + ], "parameters": { "Left": [] } @@ -8368,7 +9746,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -8380,7 +9760,14 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Text", "Int4", "Int4", "Text", "Text"] + "Left": [ + "Text", + "Text", + "Int4", + "Int4", + "Text", + "Text" + ] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = $1, updated_at = now(), queue_free_slots = $4\n WHERE instance_host = $2::text::inet\n AND instance_port = $3\n AND region = $5\n AND zone = $6\n " @@ -8424,9 +9811,20 @@ "type_info": "Bool" } ], - "nullable": [false, false, false, false, false, false, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false + ], "parameters": { - "Left": ["Int4Array", "Text"] + "Left": [ + "Int4Array", + "Text" + ] } }, "query": "\n UPDATE prover_jobs_fri\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now(),\n picked_by = $2\n WHERE id = (\n SELECT id\n FROM prover_jobs_fri\n WHERE status = 'queued'\n AND protocol_version = ANY($1)\n ORDER BY aggregation_round DESC, l1_batch_number ASC, id ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING prover_jobs_fri.id, prover_jobs_fri.l1_batch_number, prover_jobs_fri.circuit_id,\n prover_jobs_fri.aggregation_round, prover_jobs_fri.sequence_number, prover_jobs_fri.depth,\n prover_jobs_fri.is_node_final_proof\n " @@ -8450,9 +9848,15 @@ "type_info": "Int8" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "SELECT hashed_key, l1_batch_number, index FROM initial_writes WHERE hashed_key = ANY($1::bytea[])" @@ -8462,7 +9866,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Bytea", "Varchar", "Varchar", "Int4"] + "Left": [ + "Bytea", + "Varchar", + "Varchar", + "Int4" + ] } }, "query": "UPDATE tokens SET token_list_name = $2, token_list_symbol = $3,\n token_list_decimals = $4, well_known = true, updated_at = now()\n WHERE l1_address = $1\n " @@ -8476,9 +9885,16 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea", "Bytea", "Bytea", "Bytea"] + "Left": [ + "Bytea", + "Bytea", + "Bytea", + "Bytea" + ] } }, "query": "\n SELECT id\n FROM prover_protocol_versions\n WHERE recursion_circuits_set_vks_hash = $1\n AND recursion_leaf_level_vk_hash = $2\n AND recursion_node_level_vk_hash = $3\n AND recursion_scheduler_level_vk_hash = $4\n " @@ -8492,9 +9908,13 @@ "type_info": "Bytea" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT bytecode FROM factory_deps WHERE bytecode_hash = $1" @@ -8504,7 +9924,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "UPDATE l1_batches SET skip_proof = TRUE WHERE number = $1" @@ -8518,7 +9940,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -8544,9 +9968,16 @@ "type_info": "Int2" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Interval", "Int2"] + "Left": [ + "Interval", + "Int2" + ] } }, "query": "\n UPDATE node_aggregation_witness_jobs_fri\n SET status = 'queued', attempts = attempts + 1, updated_at = now(), processing_started_at = now()\n WHERE (status = 'in_progress' AND processing_started_at <= now() - $1::interval AND attempts < $2)\n OR (status = 'failed' AND attempts < $2)\n RETURNING id, status, attempts\n " @@ -8593,9 +10024,13 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT l1_batch_number FROM witness_inputs WHERE length(merkle_tree_paths) <> 0 ORDER BY l1_batch_number DESC LIMIT $1" @@ -8605,7 +10040,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Varchar", "Bytea"] + "Left": [ + "Varchar", + "Bytea" + ] } }, "query": "UPDATE transactions\n SET error = $1, updated_at = now()\n WHERE hash = $2" @@ -8619,7 +10057,9 @@ "type_info": "Int4" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -8640,9 +10080,15 @@ "type_info": "Bytea" } ], - "nullable": [false, true], + "nullable": [ + false, + true + ], "parameters": { - "Left": ["Int8", "Int4"] + "Left": [ + "Int8", + "Int4" + ] } }, "query": "\n SELECT circuit_type, result from prover_jobs\n WHERE l1_batch_number = $1 AND status = 'successful' AND aggregation_round = $2\n ORDER BY sequence_number ASC;\n " @@ -8652,7 +10098,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Text", "Int4", "Text"] + "Left": [ + "Text", + "Text", + "Int4", + "Text" + ] } }, "query": "UPDATE gpu_prover_queue_fri SET instance_status = $1, updated_at = now() WHERE instance_host = $2::text::inet AND instance_port = $3 AND zone = $4\n " @@ -8666,9 +10117,13 @@ "type_info": "Int4" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT protocol_version FROM witness_inputs_fri WHERE l1_batch_number = $1" @@ -8678,7 +10133,13 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray", "ByteaArray", "ByteaArray", "ByteaArray", "ByteaArray"] + "Left": [ + "ByteaArray", + "ByteaArray", + "ByteaArray", + "ByteaArray", + "ByteaArray" + ] } }, "query": "INSERT INTO storage (hashed_key, address, key, value, tx_hash, created_at, updated_at) SELECT u.hashed_key, u.address, u.key, u.value, u.tx_hash, now(), now() FROM UNNEST ($1::bytea[], $2::bytea[], $3::bytea[], $4::bytea[], $5::bytea[]) AS u(hashed_key, address, key, value, tx_hash) ON CONFLICT (hashed_key) DO UPDATE SET tx_hash = excluded.tx_hash, value = excluded.value, updated_at = now()" @@ -8747,9 +10208,27 @@ "type_info": "Int4" } ], - "nullable": [false, true, false, false, false, false, true, true, false, true, false, true], + "nullable": [ + false, + true, + false, + false, + false, + false, + true, + true, + false, + true, + false, + true + ], "parameters": { - "Left": ["Interval", "Int4", "Int8", "Int4Array"] + "Left": [ + "Interval", + "Int4", + "Int8", + "Int4Array" + ] } }, "query": "\n UPDATE witness_inputs\n SET status = 'in_progress', attempts = attempts + 1,\n updated_at = now(), processing_started_at = now()\n WHERE l1_batch_number = (\n SELECT l1_batch_number\n FROM witness_inputs\n WHERE l1_batch_number <= $3\n AND\n ( status = 'queued'\n OR (status = 'in_progress' AND processing_started_at < now() - $1::interval)\n OR (status = 'failed' AND attempts < $2)\n )\n AND protocol_version = ANY($4)\n ORDER BY l1_batch_number ASC\n LIMIT 1\n FOR UPDATE\n SKIP LOCKED\n )\n RETURNING witness_inputs.*\n " @@ -8768,9 +10247,15 @@ "type_info": "Int8" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "SELECT timestamp, virtual_blocks FROM miniblocks WHERE number BETWEEN $1 AND $2 ORDER BY number" @@ -8789,9 +10274,14 @@ "type_info": "Int4" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Text"] + "Left": [ + "Text" + ] } }, "query": "UPDATE eth_txs_history\n SET updated_at = now(), confirmed_at = now()\n WHERE tx_hash = $1\n RETURNING id, eth_tx_id" @@ -8810,9 +10300,16 @@ "type_info": "Bytea" } ], - "nullable": [false, false], + "nullable": [ + false, + false + ], "parameters": { - "Left": ["Int8", "Int4", "Int8"] + "Left": [ + "Int8", + "Int4", + "Int8" + ] } }, "query": "SELECT number, hash FROM miniblocks WHERE number >= $1 and protocol_version = $2 ORDER BY number LIMIT $3" @@ -8822,7 +10319,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "UPDATE proof_generation_details SET status='generated', proof_blob_url = $1, updated_at = now() WHERE l1_batch_number = $2" @@ -8946,7 +10446,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["ByteaArray"] + "Left": [ + "ByteaArray" + ] } }, "query": "DELETE FROM transactions WHERE in_mempool = TRUE AND initiator_address = ANY($1)" @@ -8966,7 +10468,11 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Text", "Int4"] + "Left": [ + "Int8", + "Text", + "Int4" + ] } }, "query": "\n INSERT INTO scheduler_witness_jobs_fri\n (l1_batch_number, scheduler_partial_input_blob_url, protocol_version, status, created_at, updated_at)\n VALUES ($1, $2, $3, 'waiting_for_proofs', now(), now())\n ON CONFLICT(l1_batch_number)\n DO UPDATE SET updated_at=now()\n " @@ -9194,7 +10700,9 @@ true ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "\n SELECT * FROM transactions\n WHERE hash = $1\n " @@ -9204,7 +10712,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8", "Int8"] + "Left": [ + "Int8", + "Int8" + ] } }, "query": "UPDATE l1_batches SET predicted_commit_gas_cost = $2, updated_at = now() WHERE number = $1" @@ -9214,7 +10725,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int4", "Int2", "Text"] + "Left": [ + "Text", + "Int4", + "Int2", + "Text" + ] } }, "query": "INSERT INTO gpu_prover_queue_fri (instance_host, instance_port, instance_status, specialized_prover_group_id, zone, created_at, updated_at) VALUES (cast($1::text as inet), $2, 'available', $3, $4, now(), now()) ON CONFLICT(instance_host, instance_port, zone) DO UPDATE SET instance_status='available', specialized_prover_group_id=$3, zone=$4, updated_at=now()" @@ -9228,7 +10744,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -9240,7 +10758,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8Array"] + "Left": [ + "Int8Array" + ] } }, "query": "\n UPDATE leaf_aggregation_witness_jobs\n SET is_blob_cleaned=TRUE\n WHERE l1_batch_number = ANY($1);\n " @@ -9280,9 +10800,13 @@ "type_info": "Jsonb" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT initial_bootloader_heap_content FROM l1_batches WHERE number = $1" @@ -9296,7 +10820,9 @@ "type_info": "Bool" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [ "Bytea", @@ -9546,7 +11072,9 @@ true ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT * FROM transactions WHERE miniblock_number = $1 ORDER BY index_in_block" @@ -9560,9 +11088,13 @@ "type_info": "Bytea" } ], - "nullable": [true], + "nullable": [ + true + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT hash FROM l1_batches WHERE number = $1" @@ -9576,7 +11108,9 @@ "type_info": "Int8" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { "Left": [] } @@ -9588,7 +11122,13 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int4", "Int4", "Text", "Text"] + "Left": [ + "Text", + "Int4", + "Int4", + "Text", + "Text" + ] } }, "query": "\n UPDATE gpu_prover_queue\n SET instance_status = 'available', updated_at = now(), queue_free_slots = $3\n WHERE instance_host = $1::text::inet\n AND instance_port = $2\n AND instance_status = 'full'\n AND region = $4\n AND zone = $5\n " @@ -9612,9 +11152,15 @@ "type_info": "Bytea" } ], - "nullable": [false, false, false], + "nullable": [ + false, + false, + false + ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "SELECT address, key, value FROM storage_logs WHERE miniblock_number BETWEEN (SELECT MIN(number) FROM miniblocks WHERE l1_batch_number = $1) AND (SELECT MAX(number) FROM miniblocks WHERE l1_batch_number = $1) ORDER BY miniblock_number, operation_number" @@ -9624,7 +11170,10 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "\n UPDATE witness_inputs_fri SET status ='failed', error= $1, updated_at = now()\n WHERE l1_batch_number = $2\n " @@ -9638,9 +11187,13 @@ "type_info": "Jsonb" } ], - "nullable": [false], + "nullable": [ + false + ], "parameters": { - "Left": ["Bytea"] + "Left": [ + "Bytea" + ] } }, "query": "SELECT trace FROM transaction_traces WHERE tx_hash = $1" @@ -9709,7 +11262,20 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, false, false, false, true, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + false, + false, + false, + true, + true, + true, + false + ], "parameters": { "Left": [] } @@ -9825,7 +11391,9 @@ false ], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n SELECT * FROM scheduler_dependency_tracker_fri\n WHERE l1_batch_number = $1\n " @@ -9839,7 +11407,9 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { "Left": [] } @@ -9910,9 +11480,24 @@ "type_info": "Int8" } ], - "nullable": [false, false, false, false, false, true, false, false, false, true, true, false], + "nullable": [ + false, + false, + false, + false, + false, + true, + false, + false, + false, + true, + true, + false + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT * FROM eth_txs WHERE id = $1" @@ -9922,7 +11507,9 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Int8"] + "Left": [ + "Int8" + ] } }, "query": "\n UPDATE contract_verification_requests\n SET status = 'successful', updated_at = now()\n WHERE id = $1\n " @@ -9936,9 +11523,13 @@ "type_info": "Int8" } ], - "nullable": [null], + "nullable": [ + null + ], "parameters": { - "Left": ["Int4"] + "Left": [ + "Int4" + ] } }, "query": "SELECT COUNT(*) as \"count!\" FROM prover_protocol_versions WHERE id = $1" @@ -9948,9 +11539,12 @@ "columns": [], "nullable": [], "parameters": { - "Left": ["Text", "Int8"] + "Left": [ + "Text", + "Int8" + ] } }, "query": "UPDATE proof_compression_jobs_fri SET status = $1, updated_at = now() WHERE l1_batch_number = $2" } -} +} \ No newline at end of file diff --git a/core/tests/revert-test/tsconfig.json b/core/tests/revert-test/tsconfig.json index 9b3bd705b368..6c8907a86016 100644 --- a/core/tests/revert-test/tsconfig.json +++ b/core/tests/revert-test/tsconfig.json @@ -1,9 +1,9 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true - } + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + } } diff --git a/core/tests/ts-integration/jest.config.json b/core/tests/ts-integration/jest.config.json index 77dd5158c55e..109e7a1e008a 100644 --- a/core/tests/ts-integration/jest.config.json +++ b/core/tests/ts-integration/jest.config.json @@ -1,15 +1,20 @@ { - "reporters": ["default", "github-actions"], - "transform": { - "^.+\\.ts?$": "ts-jest" - }, - "//": "!!! Do not increase the test timeout blindly!!!", - "//": "Timeout is set to match ~4 L1 operations with 10 blocks confirmation", - "//": "If you need bigger timeout, consider either disabling the test outside of fast mode or increasing timeout on a single test", - "//": "If this value would be too big, it may cause tests on stage to get stuck for too long", - "testTimeout": 605000, - "globalSetup": "/src/jest-setup/global-setup.ts", - "globalTeardown": "/src/jest-setup/global-teardown.ts", - "setupFilesAfterEnv": ["/src/jest-setup/add-matchers.ts"], - "slowTestThreshold": 120 + "reporters": [ + "default", + "github-actions" + ], + "transform": { + "^.+\\.ts?$": "ts-jest" + }, + "//": "!!! Do not increase the test timeout blindly!!!", + "//": "Timeout is set to match ~4 L1 operations with 10 blocks confirmation", + "//": "If you need bigger timeout, consider either disabling the test outside of fast mode or increasing timeout on a single test", + "//": "If this value would be too big, it may cause tests on stage to get stuck for too long", + "testTimeout": 605000, + "globalSetup": "/src/jest-setup/global-setup.ts", + "globalTeardown": "/src/jest-setup/global-teardown.ts", + "setupFilesAfterEnv": [ + "/src/jest-setup/add-matchers.ts" + ], + "slowTestThreshold": 120 } diff --git a/core/tests/ts-integration/package.json b/core/tests/ts-integration/package.json index 882b1c77a763..b039cb4978b0 100644 --- a/core/tests/ts-integration/package.json +++ b/core/tests/ts-integration/package.json @@ -1,33 +1,33 @@ { - "name": "ts-integration", - "version": "0.1.0", - "license": "MIT", - "private": true, - "scripts": { - "test": "zk f jest --forceExit --testTimeout 60000", - "long-running-test": "zk f jest", - "fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", - "api-test": "zk f jest -- api/web3.test.ts", - "contract-verification-test": "zk f jest -- api/contract-verification.test.ts" - }, - "devDependencies": { - "@matterlabs/hardhat-zksync-deploy": "^0.6.1", - "@matterlabs/hardhat-zksync-solc": "^0.3.15", - "@matterlabs/hardhat-zksync-vyper": "^0.2.0", - "@nomiclabs/hardhat-vyper": "^3.0.3", - "@types/jest": "^29.0.3", - "@types/node": "^14.14.5", - "@types/node-fetch": "^2.5.7", - "chalk": "^4.0.0", - "ethereumjs-abi": "^0.6.8", - "ethers": "~5.7.0", - "hardhat": "^2.12.4", - "jest": "^29.0.3", - "jest-matcher-utils": "^29.0.3", - "node-fetch": "^2.6.1", - "ts-jest": "^29.0.1", - "ts-node": "^10.1.0", - "typescript": "^4.3.5", - "zksync-web3": "link:../../../sdk/zksync-web3.js" - } + "name": "ts-integration", + "version": "0.1.0", + "license": "MIT", + "private": true, + "scripts": { + "test": "zk f jest --forceExit --testTimeout 60000", + "long-running-test": "zk f jest", + "fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", + "api-test": "zk f jest -- api/web3.test.ts", + "contract-verification-test": "zk f jest -- api/contract-verification.test.ts" + }, + "devDependencies": { + "@matterlabs/hardhat-zksync-deploy": "^0.6.1", + "@matterlabs/hardhat-zksync-solc": "^0.3.15", + "@matterlabs/hardhat-zksync-vyper": "^0.2.0", + "@nomiclabs/hardhat-vyper": "^3.0.3", + "@types/jest": "^29.0.3", + "@types/node": "^14.14.5", + "@types/node-fetch": "^2.5.7", + "chalk": "^4.0.0", + "ethereumjs-abi": "^0.6.8", + "ethers": "~5.7.0", + "hardhat": "^2.12.4", + "jest": "^29.0.3", + "jest-matcher-utils": "^29.0.3", + "node-fetch": "^2.6.1", + "ts-jest": "^29.0.1", + "ts-node": "^10.1.0", + "typescript": "^4.3.5", + "zksync-web3": "link:../../../sdk/zksync-web3.js" + } } diff --git a/core/tests/ts-integration/tsconfig.json b/core/tests/ts-integration/tsconfig.json index d3093921ca2e..baf2b2d0a791 100644 --- a/core/tests/ts-integration/tsconfig.json +++ b/core/tests/ts-integration/tsconfig.json @@ -1,12 +1,16 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "esModuleInterop": true, - "strict": true, - "skipLibCheck": true, - "noEmitOnError": true - }, - "include": ["**/*.ts"], - "exclude": ["node_modules"] + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "esModuleInterop": true, + "strict": true, + "skipLibCheck": true, + "noEmitOnError": true + }, + "include": [ + "**/*.ts" + ], + "exclude": [ + "node_modules" + ] } diff --git a/core/tests/upgrade-test/tsconfig.json b/core/tests/upgrade-test/tsconfig.json index 9b3bd705b368..6c8907a86016 100644 --- a/core/tests/upgrade-test/tsconfig.json +++ b/core/tests/upgrade-test/tsconfig.json @@ -1,9 +1,9 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true - } + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + } } diff --git a/etc/commitment_tests/zksync_testharness_test.json b/etc/commitment_tests/zksync_testharness_test.json index 55506cec5440..3240c3b4d9e7 100644 --- a/etc/commitment_tests/zksync_testharness_test.json +++ b/etc/commitment_tests/zksync_testharness_test.json @@ -17,6 +17,7 @@ "key": "0xcb99d29a1b4ffeaefdbf74b8b8b07c78e5e02b3100946f8d0463b79789086aff", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" } + ], "initial_writes": [ { diff --git a/etc/test_config/constant/api.json b/etc/test_config/constant/api.json index a8d75555dbef..050daba0e66e 100644 --- a/etc/test_config/constant/api.json +++ b/etc/test_config/constant/api.json @@ -1,3 +1,3 @@ { - "rest_api_url": "http://127.0.0.1:3001" + "rest_api_url": "http://127.0.0.1:3001" } diff --git a/etc/test_config/constant/eth.json b/etc/test_config/constant/eth.json index 9a5571a641fb..624e605e3c20 100644 --- a/etc/test_config/constant/eth.json +++ b/etc/test_config/constant/eth.json @@ -1,5 +1,5 @@ { - "web3_url": "http://127.0.0.1:8545", - "test_mnemonic": "stuff slice staff easily soup parent arm payment cotton trade scatter struggle", - "mnemonic": "fine music test violin matrix prize squirrel panther purchase material script deal" + "web3_url": "http://127.0.0.1:8545", + "test_mnemonic": "stuff slice staff easily soup parent arm payment cotton trade scatter struggle", + "mnemonic": "fine music test violin matrix prize squirrel panther purchase material script deal" } diff --git a/etc/upgrades/1692195639-upgrade-system/common.json b/etc/upgrades/1692195639-upgrade-system/common.json index bd12423d49a8..4aa0c5bacd07 100644 --- a/etc/upgrades/1692195639-upgrade-system/common.json +++ b/etc/upgrades/1692195639-upgrade-system/common.json @@ -2,4 +2,4 @@ "name": "upgrade-system", "creationTimestamp": 1692195639, "protocolVersion": "12" -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json index 5d5ef1b8c37e..bfad4bfe0b9c 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/facetCuts.json @@ -1,13 +1,25 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -141,20 +153,38 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x16615a85B451edfb6FCBea0b34405D9C7ca1a22A", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json index 41924c560248..f8247ebc3536 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0x5040611a8ba1811851e998aa8d7bbe4aa3027db9ccc526a84a1237bc2f9fa698" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json index 2a772be75647..da024be79e33 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], + "bytecodeHashes": [ + "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], + "bytecodeHashes": [ + "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], + "bytecodeHashes": [ + "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], + "bytecodeHashes": [ + "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], + "bytecodeHashes": [ + "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], + "bytecodeHashes": [ + "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], + "bytecodeHashes": [ + "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], + "bytecodeHashes": [ + "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], + "bytecodeHashes": [ + "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], + "bytecodeHashes": [ + "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], + "bytecodeHashes": [ + "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], + "bytecodeHashes": [ + "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" + ], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] + "bytecodeHashes": [ + "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" + ] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] + "bytecodeHashes": [ + "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" + ] }, "forcedDeployments": [ { @@ -168,11 +196,16 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json b/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json index 40a0041f3321..badf4772a3c8 100644 --- a/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/mainnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -49,13 +54,25 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -189,19 +206,37 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x16615a85B451edfb6FCBea0b34405D9C7ca1a22A", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -210,4 +245,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ec7e30000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d00000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000016615a85b451edfb6fcbea0b34405d9c7ca1a22a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ec7e30000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json index 0c411cd2fbab..3a1f9b3c57b0 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/facetCuts.json @@ -1,13 +1,25 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -141,20 +153,38 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/facets.json b/etc/upgrades/1692195639-upgrade-system/stage2/facets.json index 7977f86a5d13..9fcdac88c7e5 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0xe0f50dd600de1240d6b753cf5a88e97679f754e3e6d0e93ba66877da0ca70d0e" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json index 2ad5949f93d5..63fbb387322e 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], + "bytecodeHashes": [ + "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], + "bytecodeHashes": [ + "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], + "bytecodeHashes": [ + "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], + "bytecodeHashes": [ + "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], + "bytecodeHashes": [ + "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], + "bytecodeHashes": [ + "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], + "bytecodeHashes": [ + "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], + "bytecodeHashes": [ + "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], + "bytecodeHashes": [ + "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], + "bytecodeHashes": [ + "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], + "bytecodeHashes": [ + "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], + "bytecodeHashes": [ + "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" + ], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] + "bytecodeHashes": [ + "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" + ] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] + "bytecodeHashes": [ + "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" + ] }, "tx": { "txType": 254, @@ -80,7 +108,12 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -175,4 +208,4 @@ ], "forcedDeploymentCalldata": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "calldata": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json b/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json index 76fd2da95395..9cc3c1eb7fd1 100644 --- a/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/stage2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -49,13 +54,25 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -189,19 +206,37 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -210,4 +245,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ddf6a8000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c700000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000008600000000000000000000000000000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c700000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000b54f822966fd4940b6fb465ac67075e5119094c300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ddf6a8000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json b/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json index c3660b47705e..f48328679fee 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/facetCuts.json @@ -1,13 +1,25 @@ [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -141,20 +153,38 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json b/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json index 2e52ec41fd4a..56fbbc601317 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", "txHash": "0x2a584f3e8229a38e5f976fadf563411728c4dbc3ff6259c067dfc7ffccb0dd80" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json b/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json index 2a772be75647..da024be79e33 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105"], + "bytecodeHashes": [ + "0x01000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce717970105" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4"], + "bytecodeHashes": [ + "0x0100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b4" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3"], + "bytecodeHashes": [ + "0x0100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd3" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d"], + "bytecodeHashes": [ + "0x010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc"], + "bytecodeHashes": [ + "0x010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb"], + "bytecodeHashes": [ + "0x0100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03"], + "bytecodeHashes": [ + "0x010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf03" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d"], + "bytecodeHashes": [ + "0x010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc"], + "bytecodeHashes": [ + "0x010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286"], + "bytecodeHashes": [ + "0x010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a"], + "bytecodeHashes": [ + "0x010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16"], + "bytecodeHashes": [ + "0x0100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16" + ], "address": "0x000000000000000000000000000000000000800f" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61"] + "bytecodeHashes": [ + "0x010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c61" + ] }, "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf"] + "bytecodeHashes": [ + "0x0100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf" + ] }, "forcedDeployments": [ { @@ -168,11 +196,16 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json b/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json index 18c909b7045e..82f3a1d9d750 100644 --- a/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json +++ b/etc/upgrades/1692195639-upgrade-system/testnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "12", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -49,13 +54,25 @@ "facetCuts": [ { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, @@ -189,19 +206,37 @@ }, { "facet": "0x5349E94435Cc9Cab9FfB40A492DA46935052733A", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0xB54f822966FD4940b6fb465AC67075e5119094C3", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -210,4 +245,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064e35670000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db800000000000000000000000000000000000000000000000000000000000016c0000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000007400000000000000000000000000000000000000000000000000000000000000be00000000000000000000000000000000000000000000000000000000000000d80000000000000000000000000000000000000000000000000000000000000128000000000000000000000000000000000000000000000000000000000000013e00000000000000000000000000000000000000000000000000000000000001500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000ae58bb63900000000000000000000000000000000000000000000000000000000ed6d06c00000000000000000000000000000000000000000000000000000000086cb9909000000000000000000000000000000000000000000000000000000000707ac0900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d000000000000000000000000000000000000000000000000000000005437988d000000000000000000000000000000000000000000000000000000000b508883000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000c6f7e57c6e1e20468d869fe33675524e243cd6a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000005349e94435cc9cab9ffb40a492da46935052733a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000b54f822966fd4940b6fb465ac67075e5119094c300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f80010007af2271352ac99f97670a7d6999ae63b53f4e9480a957091d8848a46c610100067d592a040e8914eda295f3521561d64b1a4c1b9e6dbd2933093102febf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064e35670000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c001000091af8506f97c5a2b2ff4edf06ba1bfd2ec2304056fb9987ce71797010500000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f78c4022788ff0deb6c282f93df2b209d3c819999c3384498f1fec9b400000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fa5c8a47d82ec783ad7cdefd382f5b031e7ef0754fcf242ccb4c65fd300000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475561147799af163bef4d19262be10ed2d4a8977f793a195cd077e83d00000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c17cd3ee506e5156f76afda69c905dfdc22578bec37609a1693bba4fdc00000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100007562a15173ca081ddb179bb321500997ba6b43b15cf601cdf266af1cdb00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000711288f63c4cd27ecd73df769b834eeda2645f6567beea6b7ed44aaf0300000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010001397d906d62832c455f701b9f81267a1687e52210986d4e943b3f440d7d000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000f1d9ad80b5eb80ad14232d7438b1c09314dda76f296eca922da87dbfcc000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009ad8e522bb120c5f52d2236035edeb0a4259b89c3429c5ece7d1dc50286000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1066c916b985495ac9e671ae6930e373e9b5074499c7f6014c439a04a000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005b3e7150f7f6daac7cc9a46522f5ad593f9a3e3f0573282b41f86acf16000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/common.json b/etc/upgrades/1693318788-virtual-block-timestamp/common.json index 1da04cec70b8..c2da970debeb 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/common.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/common.json @@ -2,4 +2,4 @@ "name": "virtual-block-timestamp", "creationTimestamp": 1693318788, "protocolVersion": "13" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json index 02f3a8bf31ed..4dca4e604b2d 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facetCuts.json @@ -58,19 +58,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -133,20 +151,38 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json index bd5107c9f0d4..8825c24c5821 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/facets.json @@ -19,4 +19,4 @@ "address": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", "txHash": "0x670ec0ed30ecb0950c54321bc06ad9d98cd063eef282d17253446f248978691f" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json index 188adf7ddc31..33bc8587bbbe 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], + "bytecodeHashes": [ + "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], + "bytecodeHashes": [ + "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], + "bytecodeHashes": [ + "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], + "bytecodeHashes": [ + "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], + "bytecodeHashes": [ + "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], + "bytecodeHashes": [ + "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], + "bytecodeHashes": [ + "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], + "bytecodeHashes": [ + "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd"], + "bytecodeHashes": [ + "0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], + "bytecodeHashes": [ + "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], + "bytecodeHashes": [ + "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], + "bytecodeHashes": [ + "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" + ], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] + "bytecodeHashes": [ + "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" + ] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d"] + "bytecodeHashes": [ + "0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d" + ] }, "forcedDeployments": [ { @@ -168,11 +196,16 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json index b1d32391be90..0e954c5c1d93 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/stage2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -106,19 +111,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -181,19 +204,37 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -202,4 +243,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ef2a90000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000ae41f9fc8a83fbc6062ba956224ab86fa6d150700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000069b8cda4c8e66a0b51fc82834458e087039db2ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064ef2a90000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json index 02f3a8bf31ed..4dca4e604b2d 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facetCuts.json @@ -58,19 +58,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -133,20 +151,38 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json index 7fd669b93fa2..122b3dfd6e4d 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", "txHash": "0xf987dc0ee0b50a8003f153c2cff78db56202fac9c1cd6f374760c63f80f17f53" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json index 188adf7ddc31..33bc8587bbbe 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], + "bytecodeHashes": [ + "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], + "bytecodeHashes": [ + "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], + "bytecodeHashes": [ + "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], + "bytecodeHashes": [ + "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], + "bytecodeHashes": [ + "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], + "bytecodeHashes": [ + "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], + "bytecodeHashes": [ + "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], + "bytecodeHashes": [ + "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd"], + "bytecodeHashes": [ + "0x0100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], + "bytecodeHashes": [ + "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], + "bytecodeHashes": [ + "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], + "bytecodeHashes": [ + "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" + ], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] + "bytecodeHashes": [ + "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" + ] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d"] + "bytecodeHashes": [ + "0x0100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d" + ] }, "forcedDeployments": [ { @@ -168,11 +196,16 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json index 0bc589c5d31e..203c9e4c0b5a 100644 --- a/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json +++ b/etc/upgrades/1693318788-virtual-block-timestamp/testnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "13", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -106,19 +111,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -181,19 +204,37 @@ }, { "facet": "0x0aE41F9fc8A83FBC6062bA956224AB86fA6D1507", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x69b8cdA4c8E66A0b51Fc82834458e087039dB2Ab", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -202,4 +243,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f080c0000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d000000000000000000000000000000000000000000000000000000000000000000000000000000000ae41f9fc8a83fbc6062ba956224ab86fa6d150700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb6724190000000000000000000000000000000000000000000000000000000000000000000000000000000069b8cda4c8e66a0b51fc82834458e087039db2ab00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b29c64a520d9033da5a4f80c6f74132cbd44142c6afc5913c26f0487d0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f080c0000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f8bc6a6311dc169f267fafb32fa14724539b5488a9c62788b158e8fcd000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json index 4ad940e774ee..02205de8d971 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/common.json @@ -2,4 +2,4 @@ "name": "virtual-block-timestamp-fixed", "creationTimestamp": 1693905748, "protocolVersion": "14" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json index 50697fc105f9..0356a0cee4b2 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facetCuts.json @@ -58,19 +58,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -133,20 +151,38 @@ }, { "facet": "0x62aA95ac4740A367746A664C4C69034d52E968EF", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x7Ed066718Dfb1b2B04D94780Eca92b67ECF3330b", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } -] +] \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json index 290151be8a84..c46371fe2763 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/facets.json @@ -19,4 +19,4 @@ "address": "0x62aA95ac4740A367746A664C4C69034d52E968EF", "txHash": "0x0000000000000000000000000000000000000000000000000000000000000000" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json index 9bd7e529db9d..70ac985e4821 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/l2Upgrade.json @@ -2,72 +2,100 @@ "systemContracts": [ { "name": "AccountCodeStorage", - "bytecodeHashes": ["0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e"], + "bytecodeHashes": [ + "0x010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e" + ], "address": "0x0000000000000000000000000000000000008002" }, { "name": "NonceHolder", - "bytecodeHashes": ["0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de"], + "bytecodeHashes": [ + "0x0100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de" + ], "address": "0x0000000000000000000000000000000000008003" }, { "name": "KnownCodesStorage", - "bytecodeHashes": ["0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692"], + "bytecodeHashes": [ + "0x0100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a692" + ], "address": "0x0000000000000000000000000000000000008004" }, { "name": "ImmutableSimulator", - "bytecodeHashes": ["0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107"], + "bytecodeHashes": [ + "0x010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a18253107" + ], "address": "0x0000000000000000000000000000000000008005" }, { "name": "ContractDeployer", - "bytecodeHashes": ["0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799"], + "bytecodeHashes": [ + "0x010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a814799" + ], "address": "0x0000000000000000000000000000000000008006" }, { "name": "L1Messenger", - "bytecodeHashes": ["0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a"], + "bytecodeHashes": [ + "0x01000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a" + ], "address": "0x0000000000000000000000000000000000008008" }, { "name": "MsgValueSimulator", - "bytecodeHashes": ["0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22"], + "bytecodeHashes": [ + "0x01000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c22" + ], "address": "0x0000000000000000000000000000000000008009" }, { "name": "L2EthToken", - "bytecodeHashes": ["0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae"], + "bytecodeHashes": [ + "0x01000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae" + ], "address": "0x000000000000000000000000000000000000800a" }, { "name": "SystemContext", - "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], + "bytecodeHashes": [ + "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" + ], "address": "0x000000000000000000000000000000000000800b" }, { "name": "BootloaderUtilities", - "bytecodeHashes": ["0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3"], + "bytecodeHashes": [ + "0x010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3" + ], "address": "0x000000000000000000000000000000000000800c" }, { "name": "BytecodeCompressor", - "bytecodeHashes": ["0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99"], + "bytecodeHashes": [ + "0x010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99" + ], "address": "0x000000000000000000000000000000000000800e" }, { "name": "ComplexUpgrader", - "bytecodeHashes": ["0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba"], + "bytecodeHashes": [ + "0x0100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba" + ], "address": "0x000000000000000000000000000000000000800f" } ], "defaultAA": { "name": "DefaultAccount", - "bytecodeHashes": ["0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f"] + "bytecodeHashes": [ + "0x0100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f" + ] }, "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] + "bytecodeHashes": [ + "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" + ] }, "forcedDeployments": [ { @@ -168,11 +196,16 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json index c6508b1c8285..3025aac18481 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/mainnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -106,19 +111,37 @@ }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 2, "isFreezable": false }, { "facet": "0x0000000000000000000000000000000000000000", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 2, "isFreezable": false }, @@ -181,19 +204,37 @@ }, { "facet": "0x62aA95ac4740A367746A664C4C69034d52E968EF", - "selectors": ["0x6c0960f9", "0xb473318e", "0x042901c7", "0x263b7f8e", "0xe4948f43", "0xeb672419"], + "selectors": [ + "0x6c0960f9", + "0xb473318e", + "0x042901c7", + "0x263b7f8e", + "0xe4948f43", + "0xeb672419" + ], "action": 0, "isFreezable": true }, { "facet": "0x7Ed066718Dfb1b2B04D94780Eca92b67ECF3330b", - "selectors": ["0x0c4dd810", "0xce9dcf16", "0x7739cbe7", "0xa9a2d18a"], + "selectors": [ + "0x0c4dd810", + "0xce9dcf16", + "0x7739cbe7", + "0xa9a2d18a" + ], "action": 0, "isFreezable": true }, { "facet": "0x2E64926BE35412f7710A3E097Ba076740bF97CC0", - "selectors": ["0xe58bb639", "0xf235757f", "0x1cc5d103", "0xbe6f11cf", "0x4623c91d"], + "selectors": [ + "0xe58bb639", + "0xf235757f", + "0x1cc5d103", + "0xbe6f11cf", + "0x4623c91d" + ], "action": 0, "isFreezable": true } @@ -202,4 +243,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a80100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f9a628000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000001680000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000007e000000000000000000000000000000000000000000000000000000000000009400000000000000000000000000000000000000000000000000000000000000a600000000000000000000000000000000000000000000000000000000000000ba00000000000000000000000000000000000000000000000000000000000000d40000000000000000000000000000000000000000000000000000000000000124000000000000000000000000000000000000000000000000000000000000013a000000000000000000000000000000000000000000000000000000000000014c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb67241900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d00000000000000000000000000000000000000000000000000000000000000000000000000000000dc7c3d03845efe2c4a9e758a70a68ba6bba9fac4000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000873fb92970000000000000000000000000000000000000000000000000000000036d4eb840000000000000000000000000000000000000000000000000000000027ae4c16000000000000000000000000000000000000000000000000000000000551448c000000000000000000000000000000000000000000000000000000008043760a00000000000000000000000000000000000000000000000000000000beda4b12000000000000000000000000000000000000000000000000000000001733894500000000000000000000000000000000000000000000000000000000587809c7000000000000000000000000000000000000000000000000000000000000000000000000000000007444de636699f080ca1c033528d2bb3705b391ce0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000023cdffacc60000000000000000000000000000000000000000000000000000000052ef6b2c00000000000000000000000000000000000000000000000000000000adfca15e000000000000000000000000000000000000000000000000000000007a0ed62700000000000000000000000000000000000000000000000000000000a7cd63b700000000000000000000000000000000000000000000000000000000fe10226d0000000000000000000000000000000000000000000000000000000079823c9a000000000000000000000000000000000000000000000000000000004fc07d7500000000000000000000000000000000000000000000000000000000d86970d800000000000000000000000000000000000000000000000000000000fd791f3c000000000000000000000000000000000000000000000000000000009d1b5a81000000000000000000000000000000000000000000000000000000007b30c8da000000000000000000000000000000000000000000000000000000008665b15000000000000000000000000000000000000000000000000000000000631f4bac000000000000000000000000000000000000000000000000000000000ec6b0b7000000000000000000000000000000000000000000000000000000001b60e62600000000000000000000000000000000000000000000000000000000e39d3bff0000000000000000000000000000000000000000000000000000000033ce93fe000000000000000000000000000000000000000000000000000000000ef240a000000000000000000000000000000000000000000000000000000000fe26699e000000000000000000000000000000000000000000000000000000003960738200000000000000000000000000000000000000000000000000000000af6a2dcd00000000000000000000000000000000000000000000000000000000a1954fc500000000000000000000000000000000000000000000000000000000a39980a00000000000000000000000000000000000000000000000000000000046657fe90000000000000000000000000000000000000000000000000000000018e3a941000000000000000000000000000000000000000000000000000000003db920ce0000000000000000000000000000000000000000000000000000000029b98c6700000000000000000000000000000000000000000000000000000000bd7c541200000000000000000000000000000000000000000000000000000000c3bbd2d700000000000000000000000000000000000000000000000000000000e81e0ba100000000000000000000000000000000000000000000000000000000facd743b000000000000000000000000000000000000000000000000000000009cd939e40000000000000000000000000000000000000000000000000000000056142d7a0000000000000000000000000000000000000000000000000000000074f4d30d0000000000000000000000000000000000000000000000000000000000000000000000000000000062aa95ac4740a367746a664c4c69034d52e968ef00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000066c0960f900000000000000000000000000000000000000000000000000000000b473318e00000000000000000000000000000000000000000000000000000000042901c700000000000000000000000000000000000000000000000000000000263b7f8e00000000000000000000000000000000000000000000000000000000e4948f4300000000000000000000000000000000000000000000000000000000eb672419000000000000000000000000000000000000000000000000000000000000000000000000000000007ed066718dfb1b2b04d94780eca92b67ecf3330b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000040c4dd81000000000000000000000000000000000000000000000000000000000ce9dcf16000000000000000000000000000000000000000000000000000000007739cbe700000000000000000000000000000000000000000000000000000000a9a2d18a000000000000000000000000000000000000000000000000000000000000000000000000000000002e64926be35412f7710a3e097ba076740bf97cc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005e58bb63900000000000000000000000000000000000000000000000000000000f235757f000000000000000000000000000000000000000000000000000000001cc5d10300000000000000000000000000000000000000000000000000000000be6f11cf000000000000000000000000000000000000000000000000000000004623c91d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010041ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000f800100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a80100067d16a5485875b4249040bf421f53e869337fe118ec747cf40a4c777e5f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000fc00000000000000000000000000000000000000000000000000000000064f9a628000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002600000000000000000000000000000000000000000000000000000000000000d600000000000000000000000000000000000000000000000000000000000000d800000000000000000000000000000000000000000000000000000000000000da00000000000000000000000000000000000000000000000000000000000000dc00000000000000000000000000000000000000000000000000000000000000ac4e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004800000000000000000000000000000000000000000000000000000000000000540000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000000000009c0010000911c610c6e91d050e608ac4f5db8b08c33bb032a57f70899cdd250a75e00000000000000000000000000000000000000000000000000000000000080020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100012f42627ab0dd09d78d8a25f459e3b3caf2126668fdfc19887eb5cbf4de00000000000000000000000000000000000000000000000000000000000080030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100008fd05a39ae3ccc0c081732b2c09b783810773a66d6429cfb03d813a69200000000000000000000000000000000000000000000000000000000000080040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000475ebeaf64663ebad3ab3fd14b6e985f576c816a66f84bda5a1825310700000000000000000000000000000000000000000000000000000000000080050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010005c1731dded081c794319523b82102fd09237011e23e0dda219b1a81479900000000000000000000000000000000000000000000000000000000000080060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000075efc5d3c37f1861e7c9f7f12c5c71f7b98c8e96bc1ae750441942911a00000000000000000000000000000000000000000000000000000000000080080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000071fb47c4855b3cee15acfc19af66272afb61ae2196cdf8f0af81316c2200000000000000000000000000000000000000000000000000000000000080090000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000001000139d95a414e7910bb755fecc60531a8c7ba6cc49c2fbd763df8541e4fae000000000000000000000000000000000000000000000000000000000000800a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010009adf7ebf8227ee5d057438bf502d132ed4c7017255f16f691286f3dd7b3000000000000000000000000000000000000000000000000000000000000800c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000010000e1073ab7b4226bb86ca2746fbf1ecb305e23c61240b900c4e0ea161a99000000000000000000000000000000000000000000000000000000000000800e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000100005bc7e5e9f6718a7a59ba32849b08a12d957bcf517cb6ba68faf03983ba000000000000000000000000000000000000000000000000000000000000800f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json index fdb4abf8d916..4f1536a85525 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/l2Upgrade.json @@ -2,13 +2,17 @@ "systemContracts": [ { "name": "SystemContext", - "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], + "bytecodeHashes": [ + "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" + ], "address": "0x000000000000000000000000000000000000800b" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] + "bytecodeHashes": [ + "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" + ] }, "forcedDeployments": [ { @@ -32,11 +36,16 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json index f44cdeb1922a..97c542dc85e3 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/stage2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f6e4b0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006641ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f6e4b0000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json index fdb4abf8d916..4f1536a85525 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/l2Upgrade.json @@ -2,13 +2,17 @@ "systemContracts": [ { "name": "SystemContext", - "bytecodeHashes": ["0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03"], + "bytecodeHashes": [ + "0x0100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03" + ], "address": "0x000000000000000000000000000000000000800b" } ], "bootloader": { "name": "Bootloader", - "bytecodeHashes": ["0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8"] + "bytecodeHashes": [ + "0x0100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a8" + ] }, "forcedDeployments": [ { @@ -32,11 +36,16 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], "paymasterInput": "0x", "reservedDynamic": "0x" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json index b8148735aabf..447be459dc48 100644 --- a/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json +++ b/etc/upgrades/1693905748-virtual-block-timestamp-fixed/testnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": "14", "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0xe9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f70a30000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006641ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000005e00100089b8a2f2e6a20ba28f02c9e0ed0c13d702932364561a0ea61621f65f0a800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006200000000000000000000000000000000000000000000000000000000064f70a30000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fe0000000000000000000000000000000000000000000000000000000000008007000000000000000000000000000000000000000000000000000000000000800600000000000000000000000000000000000000000000000000000000044aa2000000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000124e9f18c170000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000200100021f60c503126f404845b8cd748b0fa2e71cd99e14462008009e6fe1ab03000000000000000000000000000000000000000000000000000000000000800b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json index 9f1965ef427a..06930d72b323 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/common.json @@ -2,4 +2,4 @@ "name": "missing-constraint-in-circuit", "creationTimestamp": 1695203585, "protocolVersion": "15" -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json index 65d3931fabff..c53a681f1863 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json index 1edd1c958793..e80cd6f34cf7 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/mainnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650d73b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650d73b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json index 65d3931fabff..c53a681f1863 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json index 99813371577f..71d506231b73 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/stage2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650ad0b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000650ad0b0000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json index 65d3931fabff..c53a681f1863 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/crypto.json @@ -4,4 +4,4 @@ "recursionLeafLevelVkHash": "0x101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210", "recursionCircuitsSetVksHash": "0x236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed45" } -} +} \ No newline at end of file diff --git a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json index 1609a80410c4..50b4705cdee0 100644 --- a/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json +++ b/etc/upgrades/1695203585-missing-constraint-in-circuit/testnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065116f38000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001186ec268d49f1905f8d9c1e9d39fc33e98c74f91d91a21b8f7ef78bd09a8db8101e08b00193e529145ee09823378ef51a3bc8966504064f1f6ba3f1ba863210236c97bfbe75ff507e03909fae32a78be3a70d1b468b183f430010810284ed4500000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065116f38000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json index dc132d9bdc5f..78314cf95f40 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/mainnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000006530f01000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000091ca046dad8c3db41f296267e1720d9c940f613d0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e0000000000000000000000000000000000000000000000000000000006530f01000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json index 110e4f3e5935..4f982017d535 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/stage2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065251ac400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb84000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000db876240f01a6dd38f5efc4ecefe52e5c13db3c70000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e00000000000000000000000000000000000000000000000000000000065251ac400000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json b/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json index 5b88b1937ee0..f0ee74060596 100644 --- a/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json +++ b/etc/upgrades/1696936385-refunds-enhancement/testnet2/transactions.json @@ -11,7 +11,12 @@ "paymaster": 0, "nonce": 0, "value": 0, - "reserved": [0, 0, 0, 0], + "reserved": [ + 0, + 0, + 0, + 0 + ], "data": "0x", "signature": "0x", "factoryDeps": [], @@ -51,4 +56,4 @@ "initCalldata": "0x1ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000652d2cc800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, "executeUpgradeCalldata": "0x36d4eb8400000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000070eedd750ce140c6320a721d3e6ff62c80e29db80000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005241ed824a0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000004a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000000000000000000000000000000000000000000000000000000000000004e000000000000000000000000000000000000000000000000000000000652d2cc800000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" -} +} \ No newline at end of file diff --git a/infrastructure/local-setup-preparation/tsconfig.json b/infrastructure/local-setup-preparation/tsconfig.json index f0466cc62ba1..25645d23a739 100644 --- a/infrastructure/local-setup-preparation/tsconfig.json +++ b/infrastructure/local-setup-preparation/tsconfig.json @@ -10,5 +10,7 @@ "preserveSymlinks": true, "preserveWatchOutput": true }, - "files": ["src/index.ts"] + "files": [ + "src/index.ts" + ] } diff --git a/infrastructure/protocol-upgrade/tsconfig.json b/infrastructure/protocol-upgrade/tsconfig.json index fe1ce1b5a6ea..613eda0f6e14 100644 --- a/infrastructure/protocol-upgrade/tsconfig.json +++ b/infrastructure/protocol-upgrade/tsconfig.json @@ -9,5 +9,5 @@ "preserveSymlinks": true, "preserveWatchOutput": true - } + }, } diff --git a/infrastructure/zk/package.json b/infrastructure/zk/package.json index 4f094e8bfeb0..e5111dbfc405 100644 --- a/infrastructure/zk/package.json +++ b/infrastructure/zk/package.json @@ -1,33 +1,33 @@ { - "name": "zk", - "version": "0.1.0", - "main": "build/index.js", - "license": "MIT", - "bin": "build/index.js", - "scripts": { - "build": "tsc", - "watch": "tsc --watch", - "start": "node build/index.js" - }, - "dependencies": { - "@iarna/toml": "^2.2.5", - "chalk": "^4.0.0", - "commander": "^6.0.0", - "deep-extend": "^0.6.0", - "dotenv": "^8.2.0", - "ethers": "~5.5.0", - "handlebars": "^4.7.8", - "node-fetch": "^2.6.1", - "tabtab": "^3.0.2", - "zksync-web3": "link:../../sdk/zksync-web3.js" - }, - "devDependencies": { - "@matterlabs/hardhat-zksync-solc": "^0.3.15", - "@types/deep-extend": "^0.4.31", - "@types/node": "^14.6.1", - "@types/node-fetch": "^2.5.7", - "@types/tabtab": "^3.0.1", - "hardhat": "=2.12.4", - "typescript": "^4.3.5" - } + "name": "zk", + "version": "0.1.0", + "main": "build/index.js", + "license": "MIT", + "bin": "build/index.js", + "scripts": { + "build": "tsc", + "watch": "tsc --watch", + "start": "node build/index.js" + }, + "dependencies": { + "@iarna/toml": "^2.2.5", + "chalk": "^4.0.0", + "commander": "^6.0.0", + "deep-extend": "^0.6.0", + "dotenv": "^8.2.0", + "ethers": "~5.5.0", + "handlebars": "^4.7.8", + "node-fetch": "^2.6.1", + "tabtab": "^3.0.2", + "zksync-web3": "link:../../sdk/zksync-web3.js" + }, + "devDependencies": { + "@matterlabs/hardhat-zksync-solc": "^0.3.15", + "@types/deep-extend": "^0.4.31", + "@types/node": "^14.6.1", + "@types/node-fetch": "^2.5.7", + "@types/tabtab": "^3.0.1", + "hardhat": "=2.12.4", + "typescript": "^4.3.5" + } } diff --git a/infrastructure/zk/tsconfig.json b/infrastructure/zk/tsconfig.json index 75662cbd56a3..f96df8d60edb 100644 --- a/infrastructure/zk/tsconfig.json +++ b/infrastructure/zk/tsconfig.json @@ -1,13 +1,15 @@ { - "compilerOptions": { - "target": "es2019", - "module": "commonjs", - "outDir": "build", - "strict": true, - "esModuleInterop": true, - "noEmitOnError": true, - "skipLibCheck": true, - "declaration": true - }, - "files": ["src/index.ts"] + "compilerOptions": { + "target": "es2019", + "module": "commonjs", + "outDir": "build", + "strict": true, + "esModuleInterop": true, + "noEmitOnError": true, + "skipLibCheck": true, + "declaration": true + }, + "files": [ + "src/index.ts" + ] } diff --git a/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json b/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json index b295acad2810..d792b2731536 100644 --- a/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/snark_verification_scheduler_key.json @@ -5,140 +5,395 @@ "num_witness_polys": 0, "gate_setup_commitments": [ { - "x": [3134321788309977316, 10573132553967014755, 3001703164893106466, 381414913732862840], - "y": [10023015411950883744, 6896159948336889230, 6414240783194755732, 872372229201319096], + "x": [ + 3134321788309977316, + 10573132553967014755, + 3001703164893106466, + 381414913732862840 + ], + "y": [ + 10023015411950883744, + 6896159948336889230, + 6414240783194755732, + 872372229201319096 + ], "infinity": false }, { - "x": [13120971644342103937, 11793287663204294817, 3883340854702399708, 1610760885102732376], - "y": [2272149790438908451, 16362277919451948034, 11222024348659324185, 769204936692720831], + "x": [ + 13120971644342103937, + 11793287663204294817, + 3883340854702399708, + 1610760885102732376 + ], + "y": [ + 2272149790438908451, + 16362277919451948034, + 11222024348659324185, + 769204936692720831 + ], "infinity": false }, { - "x": [17731804648385463364, 6957978511947926439, 554530057858945391, 1554116369209063151], - "y": [11068663668443960791, 4165938511251890045, 9157185920319394352, 1356194940161196789], + "x": [ + 17731804648385463364, + 6957978511947926439, + 554530057858945391, + 1554116369209063151 + ], + "y": [ + 11068663668443960791, + 4165938511251890045, + 9157185920319394352, + 1356194940161196789 + ], "infinity": false }, { - "x": [8019563329680255469, 10443600923825661309, 10066002756835006084, 2404912031772130651], - "y": [11909280006603456147, 5818438825251413345, 15870199885834935123, 2757108579883054631], + "x": [ + 8019563329680255469, + 10443600923825661309, + 10066002756835006084, + 2404912031772130651 + ], + "y": [ + 11909280006603456147, + 5818438825251413345, + 15870199885834935123, + 2757108579883054631 + ], "infinity": false }, { - "x": [9723414060399071945, 10180812700717519482, 7936340440930941206, 516257686460616129], - "y": [567977185774136652, 4306281713268395827, 18140207600873092049, 3061955278209883828], + "x": [ + 9723414060399071945, + 10180812700717519482, + 7936340440930941206, + 516257686460616129 + ], + "y": [ + 567977185774136652, + 4306281713268395827, + 18140207600873092049, + 3061955278209883828 + ], "infinity": false }, { - "x": [18120818717781619238, 16711368075993785449, 16673817803744408050, 700058928459046347], - "y": [7622480271915550714, 13902980411406060504, 6164172017934139902, 1836938876363296665], + "x": [ + 18120818717781619238, + 16711368075993785449, + 16673817803744408050, + 700058928459046347 + ], + "y": [ + 7622480271915550714, + 13902980411406060504, + 6164172017934139902, + 1836938876363296665 + ], "infinity": false }, { - "x": [15818628187542915298, 15402701417353228903, 4645743436884029384, 2409582523262225752], - "y": [10225110015471016873, 3480449575574012457, 13646267911522236018, 3070086728021966273], + "x": [ + 15818628187542915298, + 15402701417353228903, + 4645743436884029384, + 2409582523262225752 + ], + "y": [ + 10225110015471016873, + 3480449575574012457, + 13646267911522236018, + 3070086728021966273 + ], "infinity": false }, { - "x": [15593293662666768812, 17768691370516984644, 17174288836059912543, 2950415245130983093], - "y": [10405941745355450827, 3865610534756768698, 563805946543955734, 1806918679491891699], + "x": [ + 15593293662666768812, + 17768691370516984644, + 17174288836059912543, + 2950415245130983093 + ], + "y": [ + 10405941745355450827, + 3865610534756768698, + 563805946543955734, + 1806918679491891699 + ], "infinity": false } ], "gate_selectors_commitments": [ { - "x": [5354921692103962663, 10597914855112022168, 8283977291194706970, 1254033438787241395], - "y": [17990692095059328463, 7491895001046969405, 17510882385599010078, 1762527058736778745], + "x": [ + 5354921692103962663, + 10597914855112022168, + 8283977291194706970, + 1254033438787241395 + ], + "y": [ + 17990692095059328463, + 7491895001046969405, + 17510882385599010078, + 1762527058736778745 + ], "infinity": false }, { - "x": [12328426125821267783, 14677689403443047323, 2357692814373165823, 3268494923353713205], - "y": [9394214569640955242, 450630302635608118, 1477019964334489453, 1150908451828220680], + "x": [ + 12328426125821267783, + 14677689403443047323, + 2357692814373165823, + 3268494923353713205 + ], + "y": [ + 9394214569640955242, + 450630302635608118, + 1477019964334489453, + 1150908451828220680 + ], "infinity": false } ], "permutation_commitments": [ { - "x": [11073033365046587506, 17543366073703943346, 2925375977998636107, 411355966917613086], - "y": [4634938960149933815, 10038620738808728516, 5260176309304737799, 14410327903164543], + "x": [ + 11073033365046587506, + 17543366073703943346, + 2925375977998636107, + 411355966917613086 + ], + "y": [ + 4634938960149933815, + 10038620738808728516, + 5260176309304737799, + 14410327903164543 + ], "infinity": false }, { - "x": [4505573069708166334, 3514663015240928368, 13885581324134225254, 2759554901468343883], - "y": [14766134794032708062, 3419963379718679828, 14090109324006346322, 2080971354192483161], + "x": [ + 4505573069708166334, + 3514663015240928368, + 13885581324134225254, + 2759554901468343883 + ], + "y": [ + 14766134794032708062, + 3419963379718679828, + 14090109324006346322, + 2080971354192483161 + ], "infinity": false }, { - "x": [10034756028637387237, 13956897381252459181, 17676764419229650887, 1786540180828440303], - "y": [16234833038341145650, 1114974762353197748, 16711158590984748387, 961724704749485864], + "x": [ + 10034756028637387237, + 13956897381252459181, + 17676764419229650887, + 1786540180828440303 + ], + "y": [ + 16234833038341145650, + 1114974762353197748, + 16711158590984748387, + 961724704749485864 + ], "infinity": false }, { - "x": [13207237492056542947, 9498840683026707597, 13316073393799666368, 2265958217127439582], - "y": [9080715171198565366, 9520983963961194766, 7885036753736171049, 3318336507646038340], + "x": [ + 13207237492056542947, + 9498840683026707597, + 13316073393799666368, + 2265958217127439582 + ], + "y": [ + 9080715171198565366, + 9520983963961194766, + 7885036753736171049, + 3318336507646038340 + ], "infinity": false } ], "total_lookup_entries_length": 1786644, "lookup_selector_commitment": { - "x": [9218954341000481996, 1038591043397823945, 2355917848722531772, 1603833229224637991], - "y": [9294257929334679357, 9665091690516467420, 7057032139323633744, 2846067557162208306], + "x": [ + 9218954341000481996, + 1038591043397823945, + 2355917848722531772, + 1603833229224637991 + ], + "y": [ + 9294257929334679357, + 9665091690516467420, + 7057032139323633744, + 2846067557162208306 + ], "infinity": false }, "lookup_tables_commitments": [ { - "x": [10873859091125335643, 3906092213625635374, 17046157606087980048, 3193402705223440293], - "y": [10158946293873382504, 2171386304067884865, 6918663094168980658, 350601565475975409], + "x": [ + 10873859091125335643, + 3906092213625635374, + 17046157606087980048, + 3193402705223440293 + ], + "y": [ + 10158946293873382504, + 2171386304067884865, + 6918663094168980658, + 350601565475975409 + ], "infinity": false }, { - "x": [12822112641313049260, 3646552465186399021, 10324071010773924047, 2209084192380614662], - "y": [11045141628975531869, 12589678537679955590, 3065046617868727674, 2099447669854151830], + "x": [ + 12822112641313049260, + 3646552465186399021, + 10324071010773924047, + 2209084192380614662 + ], + "y": [ + 11045141628975531869, + 12589678537679955590, + 3065046617868727674, + 2099447669854151830 + ], "infinity": false }, { - "x": [11395032673621937545, 3000063650268118516, 7857619430005721792, 805706808484810738], - "y": [6817063666434679427, 1646386051225388537, 4677946977082722827, 1369650305976868514], + "x": [ + 11395032673621937545, + 3000063650268118516, + 7857619430005721792, + 805706808484810738 + ], + "y": [ + 6817063666434679427, + 1646386051225388537, + 4677946977082722827, + 1369650305976868514 + ], "infinity": false }, { - "x": [2885179371868476351, 159944842081142878, 6092294387055034894, 213843603626505240], - "y": [11868113133779277990, 8509646480531194854, 14088068011597639414, 707070630614027545], + "x": [ + 2885179371868476351, + 159944842081142878, + 6092294387055034894, + 213843603626505240 + ], + "y": [ + 11868113133779277990, + 8509646480531194854, + 14088068011597639414, + 707070630614027545 + ], "infinity": false } ], "lookup_table_type_commitment": { - "x": [2681380516794566972, 967983640969946255, 2727464508424142824, 1972327038478390223], - "y": [7977458078956869600, 12274734452276806231, 29244742286950686, 667948288229117220], + "x": [ + 2681380516794566972, + 967983640969946255, + 2727464508424142824, + 1972327038478390223 + ], + "y": [ + 7977458078956869600, + 12274734452276806231, + 29244742286950686, + 667948288229117220 + ], "infinity": false }, "non_residues": [ - [5, 0, 0, 0], - [7, 0, 0, 0], - [10, 0, 0, 0] + [ + 5, + 0, + 0, + 0 + ], + [ + 7, + 0, + 0, + 0 + ], + [ + 10, + 0, + 0, + 0 + ] ], "g2_elements": [ { "x": { - "c0": [5106727233969649389, 7440829307424791261, 4785637993704342649, 1729627375292849782], - "c1": [10945020018377822914, 17413811393473931026, 8241798111626485029, 1841571559660931130] + "c0": [ + 5106727233969649389, + 7440829307424791261, + 4785637993704342649, + 1729627375292849782 + ], + "c1": [ + 10945020018377822914, + 17413811393473931026, + 8241798111626485029, + 1841571559660931130 + ] }, "y": { - "c0": [5541340697920699818, 16416156555105522555, 5380518976772849807, 1353435754470862315], - "c1": [6173549831154472795, 13567992399387660019, 17050234209342075797, 650358724130500725] + "c0": [ + 5541340697920699818, + 16416156555105522555, + 5380518976772849807, + 1353435754470862315 + ], + "c1": [ + 6173549831154472795, + 13567992399387660019, + 17050234209342075797, + 650358724130500725 + ] }, "infinity": false }, { "x": { - "c0": [9089143573911733168, 11482283522806384523, 13585589533905622862, 79029415676722370], - "c1": [5692040832573735873, 16884514497384809355, 16717166481813659368, 2742131088506155463] + "c0": [ + 9089143573911733168, + 11482283522806384523, + 13585589533905622862, + 79029415676722370 + ], + "c1": [ + 5692040832573735873, + 16884514497384809355, + 16717166481813659368, + 2742131088506155463 + ] }, "y": { - "c0": [9604638503594647125, 1289961608472612514, 6217038149984805214, 2521661352385209130], - "c1": [17168069778630926308, 11309277837895768996, 15154989611154567813, 359271377050603491] + "c0": [ + 9604638503594647125, + 1289961608472612514, + 6217038149984805214, + 2521661352385209130 + ], + "c1": [ + 17168069778630926308, + 11309277837895768996, + 15154989611154567813, + 359271377050603491 + ] }, "infinity": false } ] -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json index 341d50aebd72..8b980dde0932 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_10_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132352, "public_inputs_locations": [ - [0, 1027358], - [1, 1027358], - [2, 1027358], - [3, 1027358] + [ + 0, + 1027358 + ], + [ + 1, + 1027358 + ], + [ + 2, + 1027358 + ], + [ + 3, + 1027358 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [14828808970297586390, 10812916566872682190, 4814232139347019203, 9176100102005882856], - [3967670424646093724, 15187149346332822036, 12510674113975494748, 4510474866283045065], - [3090046568261325916, 2517005306301042120, 15367389528664824672, 4112249640174889690], - [18105273888459951541, 5232822348364097609, 16713617721022374900, 190722882016699057], - [3680596367242563456, 8277283738818682164, 770687293026604966, 964680746586707996], - [14252438150460413337, 10138568641496080571, 10299531489109681582, 1029545029340913858], - [15064118887360123896, 5094380307043679103, 14910118547805564561, 10715877189078928458], - [15803708295742972434, 11361281300374199895, 17281542834964672336, 4609037794875108477], - [17069406781160283989, 1486103635977441667, 5599688364977636665, 2606216552412168601], - [11440625988157319556, 14165489000241104461, 12815938030387403166, 18358353209834817866], - [17484081080457701823, 8488503007959107424, 15436257938093142847, 4434713360392963026], - [11228941610173378380, 15586341149405816978, 6641174723323244420, 6502235669428985157], - [1780813236656786088, 13705357356856822817, 13823081051755218384, 2628439960173921306], - [5781733601274220376, 4396700195519547383, 4802209023715066280, 7053779784999063193], - [11266624277386388719, 8947017045799184361, 15630186476936326904, 4970655490195943663], - [13604491581251560181, 754251763827647964, 85019175871498033, 16264768579713941582] + [ + 14828808970297586390, + 10812916566872682190, + 4814232139347019203, + 9176100102005882856 + ], + [ + 3967670424646093724, + 15187149346332822036, + 12510674113975494748, + 4510474866283045065 + ], + [ + 3090046568261325916, + 2517005306301042120, + 15367389528664824672, + 4112249640174889690 + ], + [ + 18105273888459951541, + 5232822348364097609, + 16713617721022374900, + 190722882016699057 + ], + [ + 3680596367242563456, + 8277283738818682164, + 770687293026604966, + 964680746586707996 + ], + [ + 14252438150460413337, + 10138568641496080571, + 10299531489109681582, + 1029545029340913858 + ], + [ + 15064118887360123896, + 5094380307043679103, + 14910118547805564561, + 10715877189078928458 + ], + [ + 15803708295742972434, + 11361281300374199895, + 17281542834964672336, + 4609037794875108477 + ], + [ + 17069406781160283989, + 1486103635977441667, + 5599688364977636665, + 2606216552412168601 + ], + [ + 11440625988157319556, + 14165489000241104461, + 12815938030387403166, + 18358353209834817866 + ], + [ + 17484081080457701823, + 8488503007959107424, + 15436257938093142847, + 4434713360392963026 + ], + [ + 11228941610173378380, + 15586341149405816978, + 6641174723323244420, + 6502235669428985157 + ], + [ + 1780813236656786088, + 13705357356856822817, + 13823081051755218384, + 2628439960173921306 + ], + [ + 5781733601274220376, + 4396700195519547383, + 4802209023715066280, + 7053779784999063193 + ], + [ + 11266624277386388719, + 8947017045799184361, + 15630186476936326904, + 4970655490195943663 + ], + [ + 13604491581251560181, + 754251763827647964, + 85019175871498033, + 16264768579713941582 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json index 3f39e88aad8c..bd030f4a3942 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_11_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 531517], - [1, 531517], - [2, 531517], - [3, 531517] + [ + 0, + 531517 + ], + [ + 1, + 531517 + ], + [ + 2, + 531517 + ], + [ + 3, + 531517 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [769023300008107994, 15035929950782434877, 4767632476551610273, 6003255068455690448], - [9026207300516234226, 12638320530307573615, 9548682324993884667, 1669798832247316225], - [15771054686436993477, 14867268062778845716, 2755571000455103667, 17012958053718147653], - [4796035851498319953, 15578398003463831188, 16487202842559859878, 12241980977059723891], - [4905638728558119005, 7863530509045382726, 17089556944619165055, 6881822366736890373], - [5605698221760842562, 15309408538060590842, 7774687445824112675, 1029523717262265273], - [4602145677202369894, 10437641120626639391, 16191157018649573359, 2145181286557866215], - [8347044010387916224, 7660057627892565262, 4087655568250966187, 4920987872151258558], - [4652946618899021165, 10106017231231912813, 3800120974014235756, 6675575778477161887], - [4980892440155162443, 6801648544364465294, 2944365492323162449, 6942743875951446975], - [17666291786065358473, 11132525791177279380, 1090211641846788491, 18206157565187626653], - [11955322036584323772, 9745237745974724322, 7620783083675382303, 6501674220304463161], - [14154028621322325960, 12267966522963634693, 16381614744195346959, 10938579521199157178], - [5661196656360295299, 16217006627182303897, 15559803411312667053, 14580126280029049348], - [9186970898669061808, 692683705561232556, 14664202853793025315, 7113265307923171991], - [256017097329808658, 1298676672131862834, 9342013003187223457, 172944159302847111] + [ + 769023300008107994, + 15035929950782434877, + 4767632476551610273, + 6003255068455690448 + ], + [ + 9026207300516234226, + 12638320530307573615, + 9548682324993884667, + 1669798832247316225 + ], + [ + 15771054686436993477, + 14867268062778845716, + 2755571000455103667, + 17012958053718147653 + ], + [ + 4796035851498319953, + 15578398003463831188, + 16487202842559859878, + 12241980977059723891 + ], + [ + 4905638728558119005, + 7863530509045382726, + 17089556944619165055, + 6881822366736890373 + ], + [ + 5605698221760842562, + 15309408538060590842, + 7774687445824112675, + 1029523717262265273 + ], + [ + 4602145677202369894, + 10437641120626639391, + 16191157018649573359, + 2145181286557866215 + ], + [ + 8347044010387916224, + 7660057627892565262, + 4087655568250966187, + 4920987872151258558 + ], + [ + 4652946618899021165, + 10106017231231912813, + 3800120974014235756, + 6675575778477161887 + ], + [ + 4980892440155162443, + 6801648544364465294, + 2944365492323162449, + 6942743875951446975 + ], + [ + 17666291786065358473, + 11132525791177279380, + 1090211641846788491, + 18206157565187626653 + ], + [ + 11955322036584323772, + 9745237745974724322, + 7620783083675382303, + 6501674220304463161 + ], + [ + 14154028621322325960, + 12267966522963634693, + 16381614744195346959, + 10938579521199157178 + ], + [ + 5661196656360295299, + 16217006627182303897, + 15559803411312667053, + 14580126280029049348 + ], + [ + 9186970898669061808, + 692683705561232556, + 14664202853793025315, + 7113265307923171991 + ], + [ + 256017097329808658, + 1298676672131862834, + 9342013003187223457, + 172944159302847111 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json index af81601a174f..15680c68c303 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_12_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 531517], - [1, 531517], - [2, 531517], - [3, 531517] + [ + 0, + 531517 + ], + [ + 1, + 531517 + ], + [ + 2, + 531517 + ], + [ + 3, + 531517 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [769023300008107994, 15035929950782434877, 4767632476551610273, 6003255068455690448], - [9026207300516234226, 12638320530307573615, 9548682324993884667, 1669798832247316225], - [15771054686436993477, 14867268062778845716, 2755571000455103667, 17012958053718147653], - [4796035851498319953, 15578398003463831188, 16487202842559859878, 12241980977059723891], - [4905638728558119005, 7863530509045382726, 17089556944619165055, 6881822366736890373], - [5605698221760842562, 15309408538060590842, 7774687445824112675, 1029523717262265273], - [4602145677202369894, 10437641120626639391, 16191157018649573359, 2145181286557866215], - [8347044010387916224, 7660057627892565262, 4087655568250966187, 4920987872151258558], - [4652946618899021165, 10106017231231912813, 3800120974014235756, 6675575778477161887], - [4980892440155162443, 6801648544364465294, 2944365492323162449, 6942743875951446975], - [17666291786065358473, 11132525791177279380, 1090211641846788491, 18206157565187626653], - [11955322036584323772, 9745237745974724322, 7620783083675382303, 6501674220304463161], - [14154028621322325960, 12267966522963634693, 16381614744195346959, 10938579521199157178], - [5661196656360295299, 16217006627182303897, 15559803411312667053, 14580126280029049348], - [9186970898669061808, 692683705561232556, 14664202853793025315, 7113265307923171991], - [256017097329808658, 1298676672131862834, 9342013003187223457, 172944159302847111] + [ + 769023300008107994, + 15035929950782434877, + 4767632476551610273, + 6003255068455690448 + ], + [ + 9026207300516234226, + 12638320530307573615, + 9548682324993884667, + 1669798832247316225 + ], + [ + 15771054686436993477, + 14867268062778845716, + 2755571000455103667, + 17012958053718147653 + ], + [ + 4796035851498319953, + 15578398003463831188, + 16487202842559859878, + 12241980977059723891 + ], + [ + 4905638728558119005, + 7863530509045382726, + 17089556944619165055, + 6881822366736890373 + ], + [ + 5605698221760842562, + 15309408538060590842, + 7774687445824112675, + 1029523717262265273 + ], + [ + 4602145677202369894, + 10437641120626639391, + 16191157018649573359, + 2145181286557866215 + ], + [ + 8347044010387916224, + 7660057627892565262, + 4087655568250966187, + 4920987872151258558 + ], + [ + 4652946618899021165, + 10106017231231912813, + 3800120974014235756, + 6675575778477161887 + ], + [ + 4980892440155162443, + 6801648544364465294, + 2944365492323162449, + 6942743875951446975 + ], + [ + 17666291786065358473, + 11132525791177279380, + 1090211641846788491, + 18206157565187626653 + ], + [ + 11955322036584323772, + 9745237745974724322, + 7620783083675382303, + 6501674220304463161 + ], + [ + 14154028621322325960, + 12267966522963634693, + 16381614744195346959, + 10938579521199157178 + ], + [ + 5661196656360295299, + 16217006627182303897, + 15559803411312667053, + 14580126280029049348 + ], + [ + 9186970898669061808, + 692683705561232556, + 14664202853793025315, + 7113265307923171991 + ], + [ + 256017097329808658, + 1298676672131862834, + 9342013003187223457, + 172944159302847111 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json index 11c49d43e5c1..fe32152c3110 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_13_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [0, 1038149], - [1, 1038149], - [2, 1038149], - [3, 1038149] + [ + 0, + 1038149 + ], + [ + 1, + 1038149 + ], + [ + 2, + 1038149 + ], + [ + 3, + 1038149 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -129,22 +143,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [14777139935278588112, 4852642306346514505, 528870644537653013, 12766220607019407671], - [4257836937173457180, 18105850810127810627, 12045855835945477909, 1337145016913030516], - [13540294178921617935, 5675450379425866696, 8080330723590348862, 12416515377803888920], - [3171578350856517770, 6539655571602714350, 17682924767985674977, 8074611540701237863], - [14866967567212658098, 14985810164396930899, 14103564390721978582, 2713291878303732148], - [7209698436584637628, 72403128177350562, 13748975409439240331, 17101408191037730854], - [7094792714865445950, 14145350607330203478, 3322372571606796615, 7791275147072878055], - [10260092656566629894, 6872708783997532427, 5457407604248314227, 366003053747525096], - [6163187172733089710, 15116272236856095840, 8980783297696807334, 4318634308458673791], - [22911656643808543, 4389862417760095893, 8180530007173246228, 15363392102238906744], - [16724058906600359122, 9749245991791698283, 3733079220084897482, 35144727903715636], - [1733024683910700810, 16815568708094698990, 9597261785243145371, 14191876845225710581], - [3368783094877746336, 10313180424218970297, 7411576603144233838, 18155104604678927944], - [15539244454544408034, 14071575935246766022, 3167686754143854069, 2580957889210849319], - [11188593692389277627, 3317111011441128346, 18315606312625447776, 14080235054242793975], - [11188480902959932408, 16241470651544083095, 17491552077640160913, 1747401256351375709] + [ + 14777139935278588112, + 4852642306346514505, + 528870644537653013, + 12766220607019407671 + ], + [ + 4257836937173457180, + 18105850810127810627, + 12045855835945477909, + 1337145016913030516 + ], + [ + 13540294178921617935, + 5675450379425866696, + 8080330723590348862, + 12416515377803888920 + ], + [ + 3171578350856517770, + 6539655571602714350, + 17682924767985674977, + 8074611540701237863 + ], + [ + 14866967567212658098, + 14985810164396930899, + 14103564390721978582, + 2713291878303732148 + ], + [ + 7209698436584637628, + 72403128177350562, + 13748975409439240331, + 17101408191037730854 + ], + [ + 7094792714865445950, + 14145350607330203478, + 3322372571606796615, + 7791275147072878055 + ], + [ + 10260092656566629894, + 6872708783997532427, + 5457407604248314227, + 366003053747525096 + ], + [ + 6163187172733089710, + 15116272236856095840, + 8980783297696807334, + 4318634308458673791 + ], + [ + 22911656643808543, + 4389862417760095893, + 8180530007173246228, + 15363392102238906744 + ], + [ + 16724058906600359122, + 9749245991791698283, + 3733079220084897482, + 35144727903715636 + ], + [ + 1733024683910700810, + 16815568708094698990, + 9597261785243145371, + 14191876845225710581 + ], + [ + 3368783094877746336, + 10313180424218970297, + 7411576603144233838, + 18155104604678927944 + ], + [ + 15539244454544408034, + 14071575935246766022, + 3167686754143854069, + 2580957889210849319 + ], + [ + 11188593692389277627, + 3317111011441128346, + 18315606312625447776, + 14080235054242793975 + ], + [ + 11188480902959932408, + 16241470651544083095, + 17491552077640160913, + 1747401256351375709 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json index 7c616f28d89d..54cda61bfca1 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_1_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 68756, "public_inputs_locations": [ - [0, 1041180], - [1, 1041180], - [2, 1041180], - [3, 1041180] + [ + 0, + 1041180 + ], + [ + 1, + 1041180 + ], + [ + 2, + 1041180 + ], + [ + 3, + 1041180 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -168,22 +182,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [11230239963091452912, 13026461504664266360, 16713169701215574185, 12615976815403328075], - [3804170955286114995, 17070428581913287652, 16444458341617335831, 12310477573463289452], - [15717060580753384291, 5009332941172699339, 5141249138356870627, 14525082357218066066], - [5451473672302709994, 14405751484257675144, 6034423888032264287, 14528639950002943854], - [11233253504932768792, 9984746197426258635, 4438596486612781127, 17198259095221505968], - [5681291117413714556, 18436270377115663121, 11989211218541826903, 2671135999160204746], - [963730224051018518, 1293300388921029500, 7261069736084660486, 12414181044622900231], - [17155210460432560694, 920670927493907875, 6658462737460123613, 8253351903179999964], - [3039615529982926935, 12254392109531368227, 12274357209453453775, 16608606384477787215], - [11218496188813210888, 16107046895420213310, 16285761395335573298, 8624190103510841482], - [14835727297511074005, 1164596723783439781, 11276497358832644724, 9219531475080512501], - [3715985935119482043, 12185867206854340138, 7900628271499451412, 8891356055003024224], - [17763963322580587554, 218146194744968367, 16033549148238902530, 1522529898878047239], - [8120794419871565322, 18267867130143702317, 17178857528695612575, 14839022417830798252], - [16480189677896973754, 18441483621256548692, 3982214183107947832, 5099760740801601882], - [10335714458962187072, 8498294096277334786, 8574103413352512596, 9714850528124914412] + [ + 11230239963091452912, + 13026461504664266360, + 16713169701215574185, + 12615976815403328075 + ], + [ + 3804170955286114995, + 17070428581913287652, + 16444458341617335831, + 12310477573463289452 + ], + [ + 15717060580753384291, + 5009332941172699339, + 5141249138356870627, + 14525082357218066066 + ], + [ + 5451473672302709994, + 14405751484257675144, + 6034423888032264287, + 14528639950002943854 + ], + [ + 11233253504932768792, + 9984746197426258635, + 4438596486612781127, + 17198259095221505968 + ], + [ + 5681291117413714556, + 18436270377115663121, + 11989211218541826903, + 2671135999160204746 + ], + [ + 963730224051018518, + 1293300388921029500, + 7261069736084660486, + 12414181044622900231 + ], + [ + 17155210460432560694, + 920670927493907875, + 6658462737460123613, + 8253351903179999964 + ], + [ + 3039615529982926935, + 12254392109531368227, + 12274357209453453775, + 16608606384477787215 + ], + [ + 11218496188813210888, + 16107046895420213310, + 16285761395335573298, + 8624190103510841482 + ], + [ + 14835727297511074005, + 1164596723783439781, + 11276497358832644724, + 9219531475080512501 + ], + [ + 3715985935119482043, + 12185867206854340138, + 7900628271499451412, + 8891356055003024224 + ], + [ + 17763963322580587554, + 218146194744968367, + 16033549148238902530, + 1522529898878047239 + ], + [ + 8120794419871565322, + 18267867130143702317, + 17178857528695612575, + 14839022417830798252 + ], + [ + 16480189677896973754, + 18441483621256548692, + 3982214183107947832, + 5099760740801601882 + ], + [ + 10335714458962187072, + 8498294096277334786, + 8574103413352512596, + 9714850528124914412 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json index 938ab4d6243c..afbdd17f87d3 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_2_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 1021854], - [1, 1021854], - [2, 1021854], - [3, 1021854] + [ + 0, + 1021854 + ], + [ + 1, + 1021854 + ], + [ + 2, + 1021854 + ], + [ + 3, + 1021854 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [2638073007663622156, 8095790926675075575, 16070536450025430297, 11107879245782883310], - [14146741033954484667, 6190536674348638720, 16225788979445059477, 14054620090462985529], - [11640224008014629596, 641539748496027160, 13808722951176221096, 16170765986761751839], - [3935980412801468150, 1369763633048581729, 15164038222707237449, 13549026317001505493], - [7347140194150198874, 3761583621533582182, 1201042008705759557, 4518814071203771589], - [800427219378311884, 9408589372717347086, 4254572946942417329, 5142794058426597251], - [9025763675471789857, 9658241200006349915, 10843576536878471228, 4504613934156851017], - [924391528635837029, 17275471398483292983, 7119295641875104852, 3574531397848859770], - [9377840526717456169, 10735342053764638034, 2342156236435128394, 14166002014472046096], - [2892383637971079443, 13418647945623595756, 10019182992393923816, 9844763621346094605], - [10882982703274329811, 1514425380968646350, 13439208364741860903, 13990068349260696136], - [15895812818511549818, 15738749976988188006, 13440084002922282596, 14578356625798184093], - [3859406845557969736, 17314298659359090415, 16770924942850282883, 486597592063200525], - [11378407834848513159, 4967859104549187166, 13937264085276400573, 7478354099484226349], - [1449906124962973794, 5408228139111124399, 1658036384062801904, 7066463570538863033], - [15186027246389802614, 9949859568958827686, 11971923963356626879, 15735564656222075589] + [ + 2638073007663622156, + 8095790926675075575, + 16070536450025430297, + 11107879245782883310 + ], + [ + 14146741033954484667, + 6190536674348638720, + 16225788979445059477, + 14054620090462985529 + ], + [ + 11640224008014629596, + 641539748496027160, + 13808722951176221096, + 16170765986761751839 + ], + [ + 3935980412801468150, + 1369763633048581729, + 15164038222707237449, + 13549026317001505493 + ], + [ + 7347140194150198874, + 3761583621533582182, + 1201042008705759557, + 4518814071203771589 + ], + [ + 800427219378311884, + 9408589372717347086, + 4254572946942417329, + 5142794058426597251 + ], + [ + 9025763675471789857, + 9658241200006349915, + 10843576536878471228, + 4504613934156851017 + ], + [ + 924391528635837029, + 17275471398483292983, + 7119295641875104852, + 3574531397848859770 + ], + [ + 9377840526717456169, + 10735342053764638034, + 2342156236435128394, + 14166002014472046096 + ], + [ + 2892383637971079443, + 13418647945623595756, + 10019182992393923816, + 9844763621346094605 + ], + [ + 10882982703274329811, + 1514425380968646350, + 13439208364741860903, + 13990068349260696136 + ], + [ + 15895812818511549818, + 15738749976988188006, + 13440084002922282596, + 14578356625798184093 + ], + [ + 3859406845557969736, + 17314298659359090415, + 16770924942850282883, + 486597592063200525 + ], + [ + 11378407834848513159, + 4967859104549187166, + 13937264085276400573, + 7478354099484226349 + ], + [ + 1449906124962973794, + 5408228139111124399, + 1658036384062801904, + 7066463570538863033 + ], + [ + 15186027246389802614, + 9949859568958827686, + 11971923963356626879, + 15735564656222075589 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json index 1291f810ba03..0cfb70f82924 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_3_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 12320, "public_inputs_locations": [ - [0, 1045893], - [1, 1045893], - [2, 1045893], - [3, 1045893] + [ + 0, + 1045893 + ], + [ + 1, + 1045893 + ], + [ + 2, + 1045893 + ], + [ + 3, + 1045893 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -129,22 +143,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [14477188964753033185, 8969677320239131616, 1511337688601558079, 6903237435877294238], - [6879979662383013500, 9972710512945599417, 1141938191658961290, 7985281381511529082], - [17209416762295781376, 598939655522077579, 6689912638469680235, 4921519662278829132], - [2218810108211543567, 17367409571577782381, 4068453030111399481, 2894111853945751344], - [9999042349572898395, 7429179575907305306, 10123408942776369379, 3022715221462077728], - [10045842633239015513, 4244812848324665170, 12301343603596417356, 11332920712778059030], - [15900139291770141663, 8192446346506891091, 10086891539583546802, 7343942987745068197], - [6124221718954912549, 13486682166896696529, 15097291952143481844, 16653894364467704495], - [12766623698334678967, 1729058559883227397, 1411108054906351423, 13278453333171202065], - [12233418151438626108, 14016138745865492456, 13255147568691004416, 14998854132551828470], - [10323923076292169703, 8158278707949376146, 12845614783152862914, 5914093648720582597], - [13520835009196520971, 14417779140547238889, 6862603050786324034, 10245030009169430808], - [1835499986105723876, 9973301486190772269, 3431085138170097359, 16617926458565371046], - [6995430833584764582, 10186803315798237521, 13404931797112939412, 17530795913574984460], - [10883424944588923206, 13314595728239865895, 3282096066350298749, 3956046981299225896], - [12087054656445457911, 7314398367646261307, 7998118142061675046, 11673364943123337175] + [ + 14477188964753033185, + 8969677320239131616, + 1511337688601558079, + 6903237435877294238 + ], + [ + 6879979662383013500, + 9972710512945599417, + 1141938191658961290, + 7985281381511529082 + ], + [ + 17209416762295781376, + 598939655522077579, + 6689912638469680235, + 4921519662278829132 + ], + [ + 2218810108211543567, + 17367409571577782381, + 4068453030111399481, + 2894111853945751344 + ], + [ + 9999042349572898395, + 7429179575907305306, + 10123408942776369379, + 3022715221462077728 + ], + [ + 10045842633239015513, + 4244812848324665170, + 12301343603596417356, + 11332920712778059030 + ], + [ + 15900139291770141663, + 8192446346506891091, + 10086891539583546802, + 7343942987745068197 + ], + [ + 6124221718954912549, + 13486682166896696529, + 15097291952143481844, + 16653894364467704495 + ], + [ + 12766623698334678967, + 1729058559883227397, + 1411108054906351423, + 13278453333171202065 + ], + [ + 12233418151438626108, + 14016138745865492456, + 13255147568691004416, + 14998854132551828470 + ], + [ + 10323923076292169703, + 8158278707949376146, + 12845614783152862914, + 5914093648720582597 + ], + [ + 13520835009196520971, + 14417779140547238889, + 6862603050786324034, + 10245030009169430808 + ], + [ + 1835499986105723876, + 9973301486190772269, + 3431085138170097359, + 16617926458565371046 + ], + [ + 6995430833584764582, + 10186803315798237521, + 13404931797112939412, + 17530795913574984460 + ], + [ + 10883424944588923206, + 13314595728239865895, + 3282096066350298749, + 3956046981299225896 + ], + [ + 12087054656445457911, + 7314398367646261307, + 7998118142061675046, + 11673364943123337175 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json index abb66a439231..a4a410d90a26 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_4_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 770856], - [1, 770856], - [2, 770856], - [3, 770856] + [ + 0, + 770856 + ], + [ + 1, + 770856 + ], + [ + 2, + 770856 + ], + [ + 3, + 770856 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [13241330279191725103, 13753032629530173038, 2076223530664948596, 3297807117114706044], - [11713836288112670191, 1177996762465404370, 7559895083149599749, 3210974432904624409], - [12556775438783409088, 12836668195118427958, 10659579382288992879, 14824820023358081641], - [12129434367710731467, 13223863980858698592, 15076313205959171338, 8812832758598326992], - [5619695298194316584, 1702543119292958822, 10286311332797928654, 5029271658667181176], - [7415141098448981547, 15663039494509354932, 13208197120197557194, 11245742858683836013], - [3002540241136310707, 11547797899694244403, 7124622061839424949, 10949013563713078494], - [17142575575809782204, 13800993532867337554, 4423537342426483807, 12089179399318945120], - [5543363940431137493, 14528536317911082899, 3928220692870214567, 7185369207264833028], - [2815159846192152478, 16507211682718130921, 1793329775903937916, 6473686931817864950], - [17815165628195346102, 9542948826192641186, 14973284068738873799, 13577641628730921985], - [17938393397553240876, 15660715751237780491, 12630446844016399148, 11862059154139259048], - [11953996319846633859, 12131238563851642562, 5803319004748576191, 10988868046472383675], - [3859400868090135128, 15214844687221204138, 13973059553580269639, 7853383910131759805], - [11592486898864810791, 4871056958970591747, 137946356858301988, 14529417267976359973], - [11093343120608557204, 14684319039324015274, 5221221840195929029, 17478918223903237221] + [ + 13241330279191725103, + 13753032629530173038, + 2076223530664948596, + 3297807117114706044 + ], + [ + 11713836288112670191, + 1177996762465404370, + 7559895083149599749, + 3210974432904624409 + ], + [ + 12556775438783409088, + 12836668195118427958, + 10659579382288992879, + 14824820023358081641 + ], + [ + 12129434367710731467, + 13223863980858698592, + 15076313205959171338, + 8812832758598326992 + ], + [ + 5619695298194316584, + 1702543119292958822, + 10286311332797928654, + 5029271658667181176 + ], + [ + 7415141098448981547, + 15663039494509354932, + 13208197120197557194, + 11245742858683836013 + ], + [ + 3002540241136310707, + 11547797899694244403, + 7124622061839424949, + 10949013563713078494 + ], + [ + 17142575575809782204, + 13800993532867337554, + 4423537342426483807, + 12089179399318945120 + ], + [ + 5543363940431137493, + 14528536317911082899, + 3928220692870214567, + 7185369207264833028 + ], + [ + 2815159846192152478, + 16507211682718130921, + 1793329775903937916, + 6473686931817864950 + ], + [ + 17815165628195346102, + 9542948826192641186, + 14973284068738873799, + 13577641628730921985 + ], + [ + 17938393397553240876, + 15660715751237780491, + 12630446844016399148, + 11862059154139259048 + ], + [ + 11953996319846633859, + 12131238563851642562, + 5803319004748576191, + 10988868046472383675 + ], + [ + 3859400868090135128, + 15214844687221204138, + 13973059553580269639, + 7853383910131759805 + ], + [ + 11592486898864810791, + 4871056958970591747, + 137946356858301988, + 14529417267976359973 + ], + [ + 11093343120608557204, + 14684319039324015274, + 5221221840195929029, + 17478918223903237221 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json index b3e63bb053d6..4537187b9b36 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_5_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [0, 1047292], - [1, 1047292], - [2, 1047292], - [3, 1047292] + [ + 0, + 1047292 + ], + [ + 1, + 1047292 + ], + [ + 2, + 1047292 + ], + [ + 3, + 1047292 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -129,22 +143,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [5926546619152935907, 11291861669768573654, 11100100891141895430, 1040099038134319144], - [9405378490457870663, 11971348617109093172, 7779954465112100917, 8521139113892942903], - [1041442145290466080, 2626937507866398782, 4297959424787982903, 7963254695121664304], - [8679424872010178168, 928230210029079843, 17862919271344969949, 9085342720844642067], - [2346566700143956389, 751827788815495159, 18018129704559687246, 6344673729449349673], - [12798999539756004171, 2962217720855368908, 17815764746262544024, 6141433679632029898], - [10612436896218340091, 5382517797965219051, 1440771605952502920, 6120504474919675320], - [5639210895028949894, 17579589483393163114, 8531068549022389838, 9055992165271810945], - [15625252378325581383, 11791782086341113568, 1976318982912441593, 16561636205817299485], - [9291503982934971506, 5967409911022700010, 9096839168538146295, 3004596177933970509], - [9243725287341188464, 6878316427230924845, 7270708110528992687, 15417458474646493002], - [15577762808206668193, 10775213926343901301, 4900917235853777300, 8940673145641313937], - [18157038451252266825, 13776543473230491269, 17449669960102455201, 1902286122568749061], - [10247491007925641249, 5411016508841956578, 11766519965796614613, 1073824923129670847], - [10691592838471536401, 16863854034452440410, 16989985027265774429, 10784858673090746367], - [5688638173552292266, 2543022480770607266, 1257951713416281965, 6435312724052439304] + [ + 5926546619152935907, + 11291861669768573654, + 11100100891141895430, + 1040099038134319144 + ], + [ + 9405378490457870663, + 11971348617109093172, + 7779954465112100917, + 8521139113892942903 + ], + [ + 1041442145290466080, + 2626937507866398782, + 4297959424787982903, + 7963254695121664304 + ], + [ + 8679424872010178168, + 928230210029079843, + 17862919271344969949, + 9085342720844642067 + ], + [ + 2346566700143956389, + 751827788815495159, + 18018129704559687246, + 6344673729449349673 + ], + [ + 12798999539756004171, + 2962217720855368908, + 17815764746262544024, + 6141433679632029898 + ], + [ + 10612436896218340091, + 5382517797965219051, + 1440771605952502920, + 6120504474919675320 + ], + [ + 5639210895028949894, + 17579589483393163114, + 8531068549022389838, + 9055992165271810945 + ], + [ + 15625252378325581383, + 11791782086341113568, + 1976318982912441593, + 16561636205817299485 + ], + [ + 9291503982934971506, + 5967409911022700010, + 9096839168538146295, + 3004596177933970509 + ], + [ + 9243725287341188464, + 6878316427230924845, + 7270708110528992687, + 15417458474646493002 + ], + [ + 15577762808206668193, + 10775213926343901301, + 4900917235853777300, + 8940673145641313937 + ], + [ + 18157038451252266825, + 13776543473230491269, + 17449669960102455201, + 1902286122568749061 + ], + [ + 10247491007925641249, + 5411016508841956578, + 11766519965796614613, + 1073824923129670847 + ], + [ + 10691592838471536401, + 16863854034452440410, + 16989985027265774429, + 10784858673090746367 + ], + [ + 5688638173552292266, + 2543022480770607266, + 1257951713416281965, + 6435312724052439304 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json index d72d240e25b5..48533211ab0c 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_6_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 12320, "public_inputs_locations": [ - [0, 1039793], - [1, 1039793], - [2, 1039793], - [3, 1039793] + [ + 0, + 1039793 + ], + [ + 1, + 1039793 + ], + [ + 2, + 1039793 + ], + [ + 3, + 1039793 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -129,22 +143,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [7131095197302553268, 8153577698865827964, 4503618255465567901, 14277683095622422701], - [17227565432950328258, 3812763700819798255, 11013754802988076876, 6868705666417715458], - [6323710131523972374, 2634684603167736396, 18066615186100844391, 12905391948029250777], - [3492005229273374536, 6055742838160324534, 1795486371688618704, 13052026771106363342], - [10281812076992462791, 7165153365649379245, 13022274058059396511, 13989909544832134378], - [12027415465257630320, 3276226892300848010, 8686471638009106913, 14892455799109213586], - [2589896055307349461, 2860115159278340436, 16194627146103061118, 7076143423549975584], - [13667404340259521763, 6297649363425018745, 16167424072873520384, 3830963799067739016], - [16665883187665722508, 314738727176100190, 4253386482569091860, 1926299543937236525], - [7820355437968047327, 6794680285466534678, 2978730525228113593, 3621380956903574094], - [4838056840641790939, 16842388520310131551, 11612178730147038952, 2346195292789238934], - [17810776396991797874, 12063662987004325494, 17932676844730723250, 14283996529720835225], - [4982429352434514173, 14856186579270143608, 4051922516960412257, 8367898317160268319], - [14584337208407353036, 15866593405986269360, 11704298830630250400, 14576621862375131798], - [3101118738129024336, 4028118980088627608, 9223187088487468736, 3845581921289713376], - [1013819453591993424, 13784105701097110976, 9114286772222497781, 10710488663310041007] + [ + 7131095197302553268, + 8153577698865827964, + 4503618255465567901, + 14277683095622422701 + ], + [ + 17227565432950328258, + 3812763700819798255, + 11013754802988076876, + 6868705666417715458 + ], + [ + 6323710131523972374, + 2634684603167736396, + 18066615186100844391, + 12905391948029250777 + ], + [ + 3492005229273374536, + 6055742838160324534, + 1795486371688618704, + 13052026771106363342 + ], + [ + 10281812076992462791, + 7165153365649379245, + 13022274058059396511, + 13989909544832134378 + ], + [ + 12027415465257630320, + 3276226892300848010, + 8686471638009106913, + 14892455799109213586 + ], + [ + 2589896055307349461, + 2860115159278340436, + 16194627146103061118, + 7076143423549975584 + ], + [ + 13667404340259521763, + 6297649363425018745, + 16167424072873520384, + 3830963799067739016 + ], + [ + 16665883187665722508, + 314738727176100190, + 4253386482569091860, + 1926299543937236525 + ], + [ + 7820355437968047327, + 6794680285466534678, + 2978730525228113593, + 3621380956903574094 + ], + [ + 4838056840641790939, + 16842388520310131551, + 11612178730147038952, + 2346195292789238934 + ], + [ + 17810776396991797874, + 12063662987004325494, + 17932676844730723250, + 14283996529720835225 + ], + [ + 4982429352434514173, + 14856186579270143608, + 4051922516960412257, + 8367898317160268319 + ], + [ + 14584337208407353036, + 15866593405986269360, + 11704298830630250400, + 14576621862375131798 + ], + [ + 3101118738129024336, + 4028118980088627608, + 9223187088487468736, + 3845581921289713376 + ], + [ + 1013819453591993424, + 13784105701097110976, + 9114286772222497781, + 10710488663310041007 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json index ffaae70e1fc7..b905a476ea43 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_7_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [0, 872841], - [1, 872841], - [2, 872841], - [3, 872841] + [ + 0, + 872841 + ], + [ + 1, + 872841 + ], + [ + 2, + 872841 + ], + [ + 3, + 872841 + ] ], "extra_constant_polys_for_selectors": 2, - "table_ids_column_idxes": [6], + "table_ids_column_idxes": [ + 6 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [13818450912197620420, 5079205692118648775, 14615787041360044769, 2941606671776647183], - [6715253104770723417, 3160280029457127352, 11108406980823166906, 15487865556610611893], - [14039903923831613967, 15298198763143829103, 17031409250405123985, 10266023324667771113], - [17366151300788544369, 13314676565834570017, 17521241757753748935, 13066688955830816807], - [14445090483790969730, 15708367780098206326, 2336844413511710318, 3268235585540529265], - [2882405134850480170, 14247534382965114291, 17531255653612736614, 11676635700695125188], - [11530141675448575062, 8910365257612403024, 300072654586353643, 8472188536913229506], - [1426612518547638168, 17806679375517512145, 14835333334022265221, 2007845272495904476], - [6034343869761808836, 13937750910508416181, 16942548919853718543, 16086518391257789831], - [15933462173546075175, 8612525819877657624, 4132383244121115701, 9288543398092863864], - [8157130847726661070, 4231891352218163681, 14620351586778336684, 4186724240746204294], - [7440132245224537493, 6666895991749911132, 8404993517441732468, 6556569653095950475], - [1982595939619922877, 17561202624392859313, 14381497498171193805, 17908865555917026633], - [7384278864004035589, 10191778068274570585, 6103937442735162958, 5142419559331404710], - [3651117166359200686, 3827322296271305097, 14799462710376656576, 13600220646083181205], - [1989104086172888026, 7796359126421144184, 16967575681666150511, 5993683835612332048] + [ + 13818450912197620420, + 5079205692118648775, + 14615787041360044769, + 2941606671776647183 + ], + [ + 6715253104770723417, + 3160280029457127352, + 11108406980823166906, + 15487865556610611893 + ], + [ + 14039903923831613967, + 15298198763143829103, + 17031409250405123985, + 10266023324667771113 + ], + [ + 17366151300788544369, + 13314676565834570017, + 17521241757753748935, + 13066688955830816807 + ], + [ + 14445090483790969730, + 15708367780098206326, + 2336844413511710318, + 3268235585540529265 + ], + [ + 2882405134850480170, + 14247534382965114291, + 17531255653612736614, + 11676635700695125188 + ], + [ + 11530141675448575062, + 8910365257612403024, + 300072654586353643, + 8472188536913229506 + ], + [ + 1426612518547638168, + 17806679375517512145, + 14835333334022265221, + 2007845272495904476 + ], + [ + 6034343869761808836, + 13937750910508416181, + 16942548919853718543, + 16086518391257789831 + ], + [ + 15933462173546075175, + 8612525819877657624, + 4132383244121115701, + 9288543398092863864 + ], + [ + 8157130847726661070, + 4231891352218163681, + 14620351586778336684, + 4186724240746204294 + ], + [ + 7440132245224537493, + 6666895991749911132, + 8404993517441732468, + 6556569653095950475 + ], + [ + 1982595939619922877, + 17561202624392859313, + 14381497498171193805, + 17908865555917026633 + ], + [ + 7384278864004035589, + 10191778068274570585, + 6103937442735162958, + 5142419559331404710 + ], + [ + 3651117166359200686, + 3827322296271305097, + 14799462710376656576, + 13600220646083181205 + ], + [ + 1989104086172888026, + 7796359126421144184, + 16967575681666150511, + 5993683835612332048 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json index 088a58c12d06..01b957e7a611 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_8_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 1044095], - [1, 1044095], - [2, 1044095], - [3, 1044095] + [ + 0, + 1044095 + ], + [ + 1, + 1044095 + ], + [ + 2, + 1044095 + ], + [ + 3, + 1044095 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [7748855058771730961, 18077946489631649497, 1126488644057748066, 14688059039599644438], - [4480629341804348299, 10505662440791981234, 4568412032951786787, 12296506456394181969], - [16177866372671364827, 6970256790084749443, 10619139891136255069, 1607793233799494191], - [16984252104671889635, 13549428959009290270, 18134611582044419523, 13805480879905126881], - [17770436976754840017, 7234588192906938750, 1676460085700470353, 17733573771328390126], - [1322939182961086562, 5294941824911180446, 10983825026212251207, 4904636572110590284], - [12784739321844360991, 12439305138735676805, 14983461304040938818, 17269069332772868104], - [14780190734158735021, 13940544738219743565, 6645149114623433718, 13466406487834863255], - [13329778603033226548, 10757456562158453823, 16599667503315631352, 7621238797658185159], - [14547407989101566794, 13324264894451648565, 16566710504362716031, 4779331080355111127], - [6132579229855214454, 17610416320024829323, 12304246579944377351, 9688211256511656964], - [8981542755583161308, 5091565442848149167, 13934425064181076259, 9294930870454289441], - [7427098481125065729, 13578369070049130481, 11513105383705002933, 9750527547580548099], - [5745702296484372803, 17242736621178757499, 11421559995636138498, 12684122852092168791], - [1002992144601037215, 16187923653560782188, 5293022176068028122, 9959247706453715838], - [4182061746333368731, 5244109339200264013, 10015150430260308263, 11549298210681275420] + [ + 7748855058771730961, + 18077946489631649497, + 1126488644057748066, + 14688059039599644438 + ], + [ + 4480629341804348299, + 10505662440791981234, + 4568412032951786787, + 12296506456394181969 + ], + [ + 16177866372671364827, + 6970256790084749443, + 10619139891136255069, + 1607793233799494191 + ], + [ + 16984252104671889635, + 13549428959009290270, + 18134611582044419523, + 13805480879905126881 + ], + [ + 17770436976754840017, + 7234588192906938750, + 1676460085700470353, + 17733573771328390126 + ], + [ + 1322939182961086562, + 5294941824911180446, + 10983825026212251207, + 4904636572110590284 + ], + [ + 12784739321844360991, + 12439305138735676805, + 14983461304040938818, + 17269069332772868104 + ], + [ + 14780190734158735021, + 13940544738219743565, + 6645149114623433718, + 13466406487834863255 + ], + [ + 13329778603033226548, + 10757456562158453823, + 16599667503315631352, + 7621238797658185159 + ], + [ + 14547407989101566794, + 13324264894451648565, + 16566710504362716031, + 4779331080355111127 + ], + [ + 6132579229855214454, + 17610416320024829323, + 12304246579944377351, + 9688211256511656964 + ], + [ + 8981542755583161308, + 5091565442848149167, + 13934425064181076259, + 9294930870454289441 + ], + [ + 7427098481125065729, + 13578369070049130481, + 11513105383705002933, + 9750527547580548099 + ], + [ + 5745702296484372803, + 17242736621178757499, + 11421559995636138498, + 12684122852092168791 + ], + [ + 1002992144601037215, + 16187923653560782188, + 5293022176068028122, + 9959247706453715838 + ], + [ + 4182061746333368731, + 5244109339200264013, + 10015150430260308263, + 11549298210681275420 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json index 950f3066741d..2823ffec627f 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_basic_9_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 256, "public_inputs_locations": [ - [0, 1044628], - [1, 1044628], - [2, 1044628], - [3, 1044628] + [ + 0, + 1044628 + ], + [ + 1, + 1044628 + ], + [ + 2, + 1044628 + ], + [ + 3, + 1044628 + ] ], "extra_constant_polys_for_selectors": 3, - "table_ids_column_idxes": [7], + "table_ids_column_idxes": [ + 7 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -142,22 +156,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [15152415627491818135, 7374237605577523933, 4465184016028924212, 2035234088595773309], - [5061557444963845839, 12386849184623218277, 13052284409578998174, 2142376146067763313], - [14276061640225729061, 3667833983304997823, 15567500985315483409, 10110252348727918570], - [12534291856385391774, 4931691717277748218, 10385184271370113628, 10333556044049798387], - [3902530530481162544, 11439177580828992768, 2956353447880097447, 2078779115341733037], - [14361126694241130224, 4508476390465174580, 14814630315120762635, 17198376643024594512], - [15399867818681370342, 17613339377988571860, 17463021656624906492, 18043402438787219822], - [4721341021989730415, 941889554702533152, 4492052956383425703, 11785343591616806540], - [14835583452718692456, 9747287794601877160, 13285319018669943605, 15566660322778346733], - [634069327924902339, 7509671875950276664, 17149763085975395897, 17558106862399785122], - [6504570481933973182, 9863954755773054818, 4192802816900646319, 11708054020605968244], - [5368022000476684675, 11854447477637281190, 773008757856055958, 7428874382179860306], - [820566450151427404, 14487105988932071384, 5168970873173217247, 16840718205559266321], - [15018168499898445860, 15893129254829262789, 1267456796490088156, 14049704864991807107], - [3678472314386256573, 4482269767107891177, 2891258367538769098, 10249141358181035242], - [1175499750244297798, 7441679809319866074, 15706614384330332074, 12399917843582101807] + [ + 15152415627491818135, + 7374237605577523933, + 4465184016028924212, + 2035234088595773309 + ], + [ + 5061557444963845839, + 12386849184623218277, + 13052284409578998174, + 2142376146067763313 + ], + [ + 14276061640225729061, + 3667833983304997823, + 15567500985315483409, + 10110252348727918570 + ], + [ + 12534291856385391774, + 4931691717277748218, + 10385184271370113628, + 10333556044049798387 + ], + [ + 3902530530481162544, + 11439177580828992768, + 2956353447880097447, + 2078779115341733037 + ], + [ + 14361126694241130224, + 4508476390465174580, + 14814630315120762635, + 17198376643024594512 + ], + [ + 15399867818681370342, + 17613339377988571860, + 17463021656624906492, + 18043402438787219822 + ], + [ + 4721341021989730415, + 941889554702533152, + 4492052956383425703, + 11785343591616806540 + ], + [ + 14835583452718692456, + 9747287794601877160, + 13285319018669943605, + 15566660322778346733 + ], + [ + 634069327924902339, + 7509671875950276664, + 17149763085975395897, + 17558106862399785122 + ], + [ + 6504570481933973182, + 9863954755773054818, + 4192802816900646319, + 11708054020605968244 + ], + [ + 5368022000476684675, + 11854447477637281190, + 773008757856055958, + 7428874382179860306 + ], + [ + 820566450151427404, + 14487105988932071384, + 5168970873173217247, + 16840718205559266321 + ], + [ + 15018168499898445860, + 15893129254829262789, + 1267456796490088156, + 14049704864991807107 + ], + [ + 3678472314386256573, + 4482269767107891177, + 2891258367538769098, + 10249141358181035242 + ], + [ + 1175499750244297798, + 7441679809319866074, + 15706614384330332074, + 12399917843582101807 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json index 1cf6e373b7ee..82e2d2f2fb54 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_10_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1125289536020813216, 13893991227523403350, 18221032481002623145, 6999555513372134161], - [14558032258404044879, 15896302942503207712, 4320679543001532335, 16312301655514654219], - [7101986692613628904, 7577883870349313041, 7352728228661094923, 18332380179278822986], - [4857477437658850102, 2600358150758031758, 11245333823831173537, 8338725066623873242], - [7533080307752291488, 7286216489335488511, 18156637335160778785, 7462498443331890731], - [606568432443359176, 8912183283992686330, 17421481837200753913, 17592999343458504164], - [13072668834394870334, 11175441683787645540, 3718467031089360132, 6303569707785751909], - [15139014418351999292, 13433960894156419831, 1081036147938149073, 5537900067858640688], - [16144198516884069513, 11760722486204114604, 9080477633162807038, 14878319203527003921], - [9887232148319546846, 11280977977331453386, 1634486104168251049, 1013174085024142997], - [8774759106642276381, 17014116512461272516, 5017632137039687644, 2879573590247199312], - [8532316813139433929, 10192336124962558528, 10208988044571331050, 7412443809890180963], - [1940771445624788955, 15990599983917575017, 12383682653785412359, 7243892390926482974], - [15783323653576062669, 7433660384180142428, 11341821314666985051, 13908042579613943595], - [6784650697753378650, 2429262522610065724, 3770879433095160288, 6633370836632857456], - [18435367235881428398, 13152985860267484403, 17561012172979073263, 15335033836397886699] + [ + 1125289536020813216, + 13893991227523403350, + 18221032481002623145, + 6999555513372134161 + ], + [ + 14558032258404044879, + 15896302942503207712, + 4320679543001532335, + 16312301655514654219 + ], + [ + 7101986692613628904, + 7577883870349313041, + 7352728228661094923, + 18332380179278822986 + ], + [ + 4857477437658850102, + 2600358150758031758, + 11245333823831173537, + 8338725066623873242 + ], + [ + 7533080307752291488, + 7286216489335488511, + 18156637335160778785, + 7462498443331890731 + ], + [ + 606568432443359176, + 8912183283992686330, + 17421481837200753913, + 17592999343458504164 + ], + [ + 13072668834394870334, + 11175441683787645540, + 3718467031089360132, + 6303569707785751909 + ], + [ + 15139014418351999292, + 13433960894156419831, + 1081036147938149073, + 5537900067858640688 + ], + [ + 16144198516884069513, + 11760722486204114604, + 9080477633162807038, + 14878319203527003921 + ], + [ + 9887232148319546846, + 11280977977331453386, + 1634486104168251049, + 1013174085024142997 + ], + [ + 8774759106642276381, + 17014116512461272516, + 5017632137039687644, + 2879573590247199312 + ], + [ + 8532316813139433929, + 10192336124962558528, + 10208988044571331050, + 7412443809890180963 + ], + [ + 1940771445624788955, + 15990599983917575017, + 12383682653785412359, + 7243892390926482974 + ], + [ + 15783323653576062669, + 7433660384180142428, + 11341821314666985051, + 13908042579613943595 + ], + [ + 6784650697753378650, + 2429262522610065724, + 3770879433095160288, + 6633370836632857456 + ], + [ + 18435367235881428398, + 13152985860267484403, + 17561012172979073263, + 15335033836397886699 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json index 865a75e0b747..14b20e4f718f 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_11_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [14038008090973880203, 7437991399998284269, 12502661164686015780, 6154468052477899229], - [4890279821462461425, 12267605659025997985, 16220814561210675069, 14958418982789304352], - [16239014851914932689, 11626285279514581577, 7827403995053907198, 3320808129263057989], - [9987109148114223767, 16027730699082584407, 16226544327370131567, 10505655809748447851], - [2426355028560688438, 13015409833156179441, 3357212938175132730, 9924499217906835800], - [7264556678081366657, 11014021481903289086, 1185381295776166890, 11220095453847753366], - [10738220050569983945, 2071033793611953608, 2836853848682426199, 18280211532291996343], - [4622574899935206725, 10283505057353003539, 10924169390994336784, 9267200805799259741], - [4991426063445236730, 292198960832094512, 6370230421874009175, 2987533577516974457], - [15100014620403370288, 17064710328307274600, 13596338039199898149, 7844302147920229272], - [6997319402399846472, 5312486909661565204, 8133503726683094273, 14376435888676319871], - [16536431163453527335, 8329243612205528007, 10332326446350256878, 6187024786825219302], - [15819705933365601754, 17218893784817004570, 7197154299986843671, 11662127518680895562], - [12757050724806983838, 14916998582501427105, 2903621530266216761, 12948020673936426635], - [14563493065638885359, 6770003101729110728, 11839394563403429402, 1065983546047670743], - [2845847955135199124, 16066115065717446946, 4482870472147946913, 8664518745998140088] + [ + 14038008090973880203, + 7437991399998284269, + 12502661164686015780, + 6154468052477899229 + ], + [ + 4890279821462461425, + 12267605659025997985, + 16220814561210675069, + 14958418982789304352 + ], + [ + 16239014851914932689, + 11626285279514581577, + 7827403995053907198, + 3320808129263057989 + ], + [ + 9987109148114223767, + 16027730699082584407, + 16226544327370131567, + 10505655809748447851 + ], + [ + 2426355028560688438, + 13015409833156179441, + 3357212938175132730, + 9924499217906835800 + ], + [ + 7264556678081366657, + 11014021481903289086, + 1185381295776166890, + 11220095453847753366 + ], + [ + 10738220050569983945, + 2071033793611953608, + 2836853848682426199, + 18280211532291996343 + ], + [ + 4622574899935206725, + 10283505057353003539, + 10924169390994336784, + 9267200805799259741 + ], + [ + 4991426063445236730, + 292198960832094512, + 6370230421874009175, + 2987533577516974457 + ], + [ + 15100014620403370288, + 17064710328307274600, + 13596338039199898149, + 7844302147920229272 + ], + [ + 6997319402399846472, + 5312486909661565204, + 8133503726683094273, + 14376435888676319871 + ], + [ + 16536431163453527335, + 8329243612205528007, + 10332326446350256878, + 6187024786825219302 + ], + [ + 15819705933365601754, + 17218893784817004570, + 7197154299986843671, + 11662127518680895562 + ], + [ + 12757050724806983838, + 14916998582501427105, + 2903621530266216761, + 12948020673936426635 + ], + [ + 14563493065638885359, + 6770003101729110728, + 11839394563403429402, + 1065983546047670743 + ], + [ + 2845847955135199124, + 16066115065717446946, + 4482870472147946913, + 8664518745998140088 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json index ad9636492afa..047a79433899 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_12_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [17762498852322133081, 12402705633936516386, 2303979245623416237, 15492962941180331409], - [1368919680062481249, 8419725427681044227, 12407005054982229959, 9729546646519366060], - [3694696222464991628, 10691747603876514511, 5648287760852638838, 15128008410193030270], - [5647849659158863308, 16391316755630265342, 17483459471194878342, 2382689231083026500], - [414523452897415096, 14712743039552404085, 14274376366377496980, 1540457029378813951], - [6437956396547385520, 10457280544359552653, 210288303177892964, 7009065088863365256], - [6189643588169700860, 2874522095144611328, 3459596951253545261, 14912093041250189548], - [2954035721997683722, 2628438295425873126, 9361498414301919378, 7780135632218518403], - [13376229283479650476, 13646160168852625209, 12342809006526169374, 16140909717103038788], - [14544916717622160085, 2335857756498039096, 12834512355397127233, 8257858357688008275], - [13637749549385428585, 1568326361689976373, 14573670474737748882, 8002611813857126901], - [4981475697544147574, 7477162419770815721, 13420952345288491036, 6849943909220872064], - [5645683284474222575, 10480504810673180938, 7038844793157124351, 10701205261596194736], - [2992787956816905753, 10666728141278334493, 4748213040479579674, 13258093297981567423], - [11477426903799919629, 24925561182649344, 11412223773538266154, 2852175545463505023], - [1060175052523024730, 6610510112497451814, 15229121744185849414, 12773820515972201248] + [ + 17762498852322133081, + 12402705633936516386, + 2303979245623416237, + 15492962941180331409 + ], + [ + 1368919680062481249, + 8419725427681044227, + 12407005054982229959, + 9729546646519366060 + ], + [ + 3694696222464991628, + 10691747603876514511, + 5648287760852638838, + 15128008410193030270 + ], + [ + 5647849659158863308, + 16391316755630265342, + 17483459471194878342, + 2382689231083026500 + ], + [ + 414523452897415096, + 14712743039552404085, + 14274376366377496980, + 1540457029378813951 + ], + [ + 6437956396547385520, + 10457280544359552653, + 210288303177892964, + 7009065088863365256 + ], + [ + 6189643588169700860, + 2874522095144611328, + 3459596951253545261, + 14912093041250189548 + ], + [ + 2954035721997683722, + 2628438295425873126, + 9361498414301919378, + 7780135632218518403 + ], + [ + 13376229283479650476, + 13646160168852625209, + 12342809006526169374, + 16140909717103038788 + ], + [ + 14544916717622160085, + 2335857756498039096, + 12834512355397127233, + 8257858357688008275 + ], + [ + 13637749549385428585, + 1568326361689976373, + 14573670474737748882, + 8002611813857126901 + ], + [ + 4981475697544147574, + 7477162419770815721, + 13420952345288491036, + 6849943909220872064 + ], + [ + 5645683284474222575, + 10480504810673180938, + 7038844793157124351, + 10701205261596194736 + ], + [ + 2992787956816905753, + 10666728141278334493, + 4748213040479579674, + 13258093297981567423 + ], + [ + 11477426903799919629, + 24925561182649344, + 11412223773538266154, + 2852175545463505023 + ], + [ + 1060175052523024730, + 6610510112497451814, + 15229121744185849414, + 12773820515972201248 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json index 8584987e43fc..9b8c7bca3296 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_13_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1107277819469948429, 7779138633457495557, 9933991506239962590, 13247997120867942045], - [10020877950065961527, 6525352303263078852, 10601857031603992424, 6699333963081308583], - [8019436446207312706, 17880026081547931046, 14023459613581442883, 12177363081042438182], - [17643512238638359026, 2759065364120570462, 1113452962298378930, 9944550331137276877], - [6208699382898547395, 9442366708032685349, 9362620233586526034, 6406469355002722194], - [17265154700194893264, 11486849446382907011, 1331827641678752332, 13890193454573854721], - [7338198937132638061, 9619578268260381257, 16966504852427653624, 5042032213830518832], - [9998014800451912206, 2764915420573986646, 12638108373731502079, 13849566240043998295], - [18402224478111895268, 10245397321907314013, 15810832121998678624, 16050833323870358750], - [5754119484130347551, 1334330314055286585, 1196783225751134982, 13693638204576454858], - [7476283313073466871, 3327838189135133206, 7576584001149251522, 4746763672176501097], - [8341294580974175099, 6996214973372400649, 2825261487886819108, 17611476352036968111], - [6481216673139681707, 12834349834818063790, 14423475559705119809, 15943814042360079510], - [7771500178827314392, 5968639878444939173, 18006309838458312166, 368714734303788414], - [2137428658614683231, 4604901863694850124, 3581156028309568037, 7485386108131533730], - [1078544443818230878, 14117476483719501663, 17985826373971579789, 10600652728062682193] + [ + 1107277819469948429, + 7779138633457495557, + 9933991506239962590, + 13247997120867942045 + ], + [ + 10020877950065961527, + 6525352303263078852, + 10601857031603992424, + 6699333963081308583 + ], + [ + 8019436446207312706, + 17880026081547931046, + 14023459613581442883, + 12177363081042438182 + ], + [ + 17643512238638359026, + 2759065364120570462, + 1113452962298378930, + 9944550331137276877 + ], + [ + 6208699382898547395, + 9442366708032685349, + 9362620233586526034, + 6406469355002722194 + ], + [ + 17265154700194893264, + 11486849446382907011, + 1331827641678752332, + 13890193454573854721 + ], + [ + 7338198937132638061, + 9619578268260381257, + 16966504852427653624, + 5042032213830518832 + ], + [ + 9998014800451912206, + 2764915420573986646, + 12638108373731502079, + 13849566240043998295 + ], + [ + 18402224478111895268, + 10245397321907314013, + 15810832121998678624, + 16050833323870358750 + ], + [ + 5754119484130347551, + 1334330314055286585, + 1196783225751134982, + 13693638204576454858 + ], + [ + 7476283313073466871, + 3327838189135133206, + 7576584001149251522, + 4746763672176501097 + ], + [ + 8341294580974175099, + 6996214973372400649, + 2825261487886819108, + 17611476352036968111 + ], + [ + 6481216673139681707, + 12834349834818063790, + 14423475559705119809, + 15943814042360079510 + ], + [ + 7771500178827314392, + 5968639878444939173, + 18006309838458312166, + 368714734303788414 + ], + [ + 2137428658614683231, + 4604901863694850124, + 3581156028309568037, + 7485386108131533730 + ], + [ + 1078544443818230878, + 14117476483719501663, + 17985826373971579789, + 10600652728062682193 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json index 9bde1915c202..e32be9870e7b 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_14_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1107277819469948429, 7779138633457495557, 9933991506239962590, 13247997120867942045], - [10020877950065961527, 6525352303263078852, 10601857031603992424, 6699333963081308583], - [8019436446207312706, 17880026081547931046, 14023459613581442883, 12177363081042438182], - [17643512238638359026, 2759065364120570462, 1113452962298378930, 9944550331137276877], - [6208699382898547395, 9442366708032685349, 9362620233586526034, 6406469355002722194], - [17265154700194893264, 11486849446382907011, 1331827641678752332, 13890193454573854721], - [7338198937132638061, 9619578268260381257, 16966504852427653624, 5042032213830518832], - [9998014800451912206, 2764915420573986646, 12638108373731502079, 13849566240043998295], - [18402224478111895268, 10245397321907314013, 15810832121998678624, 16050833323870358750], - [5754119484130347551, 1334330314055286585, 1196783225751134982, 13693638204576454858], - [7476283313073466871, 3327838189135133206, 7576584001149251522, 4746763672176501097], - [8341294580974175099, 6996214973372400649, 2825261487886819108, 17611476352036968111], - [6481216673139681707, 12834349834818063790, 14423475559705119809, 15943814042360079510], - [7771500178827314392, 5968639878444939173, 18006309838458312166, 368714734303788414], - [2137428658614683231, 4604901863694850124, 3581156028309568037, 7485386108131533730], - [1078544443818230878, 14117476483719501663, 17985826373971579789, 10600652728062682193] + [ + 1107277819469948429, + 7779138633457495557, + 9933991506239962590, + 13247997120867942045 + ], + [ + 10020877950065961527, + 6525352303263078852, + 10601857031603992424, + 6699333963081308583 + ], + [ + 8019436446207312706, + 17880026081547931046, + 14023459613581442883, + 12177363081042438182 + ], + [ + 17643512238638359026, + 2759065364120570462, + 1113452962298378930, + 9944550331137276877 + ], + [ + 6208699382898547395, + 9442366708032685349, + 9362620233586526034, + 6406469355002722194 + ], + [ + 17265154700194893264, + 11486849446382907011, + 1331827641678752332, + 13890193454573854721 + ], + [ + 7338198937132638061, + 9619578268260381257, + 16966504852427653624, + 5042032213830518832 + ], + [ + 9998014800451912206, + 2764915420573986646, + 12638108373731502079, + 13849566240043998295 + ], + [ + 18402224478111895268, + 10245397321907314013, + 15810832121998678624, + 16050833323870358750 + ], + [ + 5754119484130347551, + 1334330314055286585, + 1196783225751134982, + 13693638204576454858 + ], + [ + 7476283313073466871, + 3327838189135133206, + 7576584001149251522, + 4746763672176501097 + ], + [ + 8341294580974175099, + 6996214973372400649, + 2825261487886819108, + 17611476352036968111 + ], + [ + 6481216673139681707, + 12834349834818063790, + 14423475559705119809, + 15943814042360079510 + ], + [ + 7771500178827314392, + 5968639878444939173, + 18006309838458312166, + 368714734303788414 + ], + [ + 2137428658614683231, + 4604901863694850124, + 3581156028309568037, + 7485386108131533730 + ], + [ + 1078544443818230878, + 14117476483719501663, + 17985826373971579789, + 10600652728062682193 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json index 31ac2757183a..9457eb00fb97 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_15_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [18238935086181014750, 12673103801320172126, 1807450351340584945, 4080587540382410469], - [3576906271507691924, 15842010882262104289, 1545568012269070598, 15019610257262428212], - [16552529329663272195, 70143638148036568, 9441616425189858949, 12576239326961652577], - [13378751877668829423, 8821335076667849619, 8787507195664458069, 8033428383364368883], - [14859204728026468678, 67528639960702832, 12174200483518178527, 14324674266854914755], - [9830165552717527013, 2321461270838214863, 9268724714979319202, 9904762657753448069], - [14141058045407997705, 17031147612244105327, 12751542125666982456, 17817764425153554681], - [14795807291665277125, 12320949525745092193, 5617160704961099, 16219204181913320518], - [7773282231989156729, 13990108174498859083, 6307778800331536092, 5637115465294994933], - [3720582507396745477, 12235229471532413465, 2832424082557414313, 1295093033129086530], - [5238251184464937674, 2468597264523797445, 7200015202778095391, 6285172799678453354], - [14592230848145258634, 14635944054407782259, 16328656124118469880, 5673837317773168465], - [10220932976054066577, 587071736468910470, 18317195354162201630, 4442910666147223606], - [6686416988414600368, 14769819815353713716, 7130058524252605584, 9117426323287817862], - [9696785136959918927, 10735699192129851744, 4483660550392452518, 16920055661791281465], - [6465118959707729559, 15053655525644243783, 11077790678846863387, 377514359817848250] + [ + 18238935086181014750, + 12673103801320172126, + 1807450351340584945, + 4080587540382410469 + ], + [ + 3576906271507691924, + 15842010882262104289, + 1545568012269070598, + 15019610257262428212 + ], + [ + 16552529329663272195, + 70143638148036568, + 9441616425189858949, + 12576239326961652577 + ], + [ + 13378751877668829423, + 8821335076667849619, + 8787507195664458069, + 8033428383364368883 + ], + [ + 14859204728026468678, + 67528639960702832, + 12174200483518178527, + 14324674266854914755 + ], + [ + 9830165552717527013, + 2321461270838214863, + 9268724714979319202, + 9904762657753448069 + ], + [ + 14141058045407997705, + 17031147612244105327, + 12751542125666982456, + 17817764425153554681 + ], + [ + 14795807291665277125, + 12320949525745092193, + 5617160704961099, + 16219204181913320518 + ], + [ + 7773282231989156729, + 13990108174498859083, + 6307778800331536092, + 5637115465294994933 + ], + [ + 3720582507396745477, + 12235229471532413465, + 2832424082557414313, + 1295093033129086530 + ], + [ + 5238251184464937674, + 2468597264523797445, + 7200015202778095391, + 6285172799678453354 + ], + [ + 14592230848145258634, + 14635944054407782259, + 16328656124118469880, + 5673837317773168465 + ], + [ + 10220932976054066577, + 587071736468910470, + 18317195354162201630, + 4442910666147223606 + ], + [ + 6686416988414600368, + 14769819815353713716, + 7130058524252605584, + 9117426323287817862 + ], + [ + 9696785136959918927, + 10735699192129851744, + 4483660550392452518, + 16920055661791281465 + ], + [ + 6465118959707729559, + 15053655525644243783, + 11077790678846863387, + 377514359817848250 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json index 60aaf6b4cb55..228a0e9fe926 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_1_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [0, 993345], - [1, 993345], - [2, 993345], - [3, 993345] + [ + 0, + 993345 + ], + [ + 1, + 993345 + ], + [ + 2, + 993345 + ], + [ + 3, + 993345 + ] ], "extra_constant_polys_for_selectors": 4, - "table_ids_column_idxes": [8], + "table_ids_column_idxes": [ + 8 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -155,22 +169,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [5188923951567823784, 1839604164061896861, 3760614143058722712, 17614504340708244503], - [7889899638667026800, 14244435798393850379, 15230145556400915502, 12762495992738055897], - [1590798346328722678, 14143092007536417439, 10480901561038728792, 3201431705395147463], - [2780378477031897976, 11901528146276690135, 1343277030558816196, 6658753207411088573], - [11039463659901501365, 8235548863391687887, 1033553352576624721, 12882010447949399432], - [18078277235848158043, 14794319235551634496, 13982848369540832169, 11146980369941489422], - [5423143341883663864, 15258729611778297770, 7733187200367671156, 11434904591161598775], - [10914070908442174902, 8055525792807466851, 14391942428843610452, 11749906933466154458], - [14580351359387308464, 13254290427053014332, 7257863927775762043, 11078203905320069045], - [6123238811378029441, 11756658038961859601, 760000874907607862, 678236515728235822], - [15657816790157674514, 4104741954972330508, 4150394799973679527, 15124992265078810298], - [13825567788010925982, 636544017935987097, 2260460249587621344, 10354042489703999934], - [12710868603685796297, 91862114057079406, 5614554900380483346, 131393259919990755], - [13185811107579017595, 1006028503100864020, 2087984259170414019, 6445764843889735797], - [10414938568348349467, 15415934042755645234, 11692038010863343064, 2402843492027871760], - [17752536940710015241, 14329244239886245722, 16349180633511906354, 2663305413222761702] + [ + 5188923951567823784, + 1839604164061896861, + 3760614143058722712, + 17614504340708244503 + ], + [ + 7889899638667026800, + 14244435798393850379, + 15230145556400915502, + 12762495992738055897 + ], + [ + 1590798346328722678, + 14143092007536417439, + 10480901561038728792, + 3201431705395147463 + ], + [ + 2780378477031897976, + 11901528146276690135, + 1343277030558816196, + 6658753207411088573 + ], + [ + 11039463659901501365, + 8235548863391687887, + 1033553352576624721, + 12882010447949399432 + ], + [ + 18078277235848158043, + 14794319235551634496, + 13982848369540832169, + 11146980369941489422 + ], + [ + 5423143341883663864, + 15258729611778297770, + 7733187200367671156, + 11434904591161598775 + ], + [ + 10914070908442174902, + 8055525792807466851, + 14391942428843610452, + 11749906933466154458 + ], + [ + 14580351359387308464, + 13254290427053014332, + 7257863927775762043, + 11078203905320069045 + ], + [ + 6123238811378029441, + 11756658038961859601, + 760000874907607862, + 678236515728235822 + ], + [ + 15657816790157674514, + 4104741954972330508, + 4150394799973679527, + 15124992265078810298 + ], + [ + 13825567788010925982, + 636544017935987097, + 2260460249587621344, + 10354042489703999934 + ], + [ + 12710868603685796297, + 91862114057079406, + 5614554900380483346, + 131393259919990755 + ], + [ + 13185811107579017595, + 1006028503100864020, + 2087984259170414019, + 6445764843889735797 + ], + [ + 10414938568348349467, + 15415934042755645234, + 11692038010863343064, + 2402843492027871760 + ], + [ + 17752536940710015241, + 14329244239886245722, + 16349180633511906354, + 2663305413222761702 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json index 898044175ed2..7865e106454e 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_2_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [16110944391299715992, 6257581196984129533, 3238325178821009741, 2344850491864189019], - [9070724167014080545, 4270936005334206500, 14011092173278602876, 17233390044312666340], - [15882294806312417165, 4574813182503183418, 15374759504522847393, 12609068726586761599], - [5081359810005150600, 3073725930902770385, 12151383627606620216, 1678712612408922293], - [13389075440637154488, 1394733244174774927, 15897027408886080730, 8756205416909346149], - [9635595243774498130, 12944626865667316474, 11443383015868895087, 11271399114434241688], - [15730316965377191644, 9302195093067483199, 13013113029527355010, 16107136888029757437], - [4376996761649023946, 5151155327098069058, 5052643273518683586, 4214154406154441301], - [14323780220991293990, 8193587898306996901, 5671887774622993207, 9546628649033002185], - [16523271232278987128, 994857983084927437, 14501829109938165419, 9015660151307809950], - [1530238726285436995, 6261885523422263637, 11940153058268689285, 15737357444014615384], - [2670341602838046451, 10669331667080282584, 16656965855764533819, 13339778044433609883], - [17128805815986618686, 18194734266790270296, 5735422502154213482, 10164141197176685232], - [2629176720116777217, 6966722226648521547, 2937669813272776408, 2812827195714811672], - [6178870790111010071, 10834984121929556338, 2836091052290008872, 1311164878771236983], - [7411275786539821863, 3702190765468277039, 18130480549896087952, 5277641488054089382] + [ + 16110944391299715992, + 6257581196984129533, + 3238325178821009741, + 2344850491864189019 + ], + [ + 9070724167014080545, + 4270936005334206500, + 14011092173278602876, + 17233390044312666340 + ], + [ + 15882294806312417165, + 4574813182503183418, + 15374759504522847393, + 12609068726586761599 + ], + [ + 5081359810005150600, + 3073725930902770385, + 12151383627606620216, + 1678712612408922293 + ], + [ + 13389075440637154488, + 1394733244174774927, + 15897027408886080730, + 8756205416909346149 + ], + [ + 9635595243774498130, + 12944626865667316474, + 11443383015868895087, + 11271399114434241688 + ], + [ + 15730316965377191644, + 9302195093067483199, + 13013113029527355010, + 16107136888029757437 + ], + [ + 4376996761649023946, + 5151155327098069058, + 5052643273518683586, + 4214154406154441301 + ], + [ + 14323780220991293990, + 8193587898306996901, + 5671887774622993207, + 9546628649033002185 + ], + [ + 16523271232278987128, + 994857983084927437, + 14501829109938165419, + 9015660151307809950 + ], + [ + 1530238726285436995, + 6261885523422263637, + 11940153058268689285, + 15737357444014615384 + ], + [ + 2670341602838046451, + 10669331667080282584, + 16656965855764533819, + 13339778044433609883 + ], + [ + 17128805815986618686, + 18194734266790270296, + 5735422502154213482, + 10164141197176685232 + ], + [ + 2629176720116777217, + 6966722226648521547, + 2937669813272776408, + 2812827195714811672 + ], + [ + 6178870790111010071, + 10834984121929556338, + 2836091052290008872, + 1311164878771236983 + ], + [ + 7411275786539821863, + 3702190765468277039, + 18130480549896087952, + 5277641488054089382 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json index 9952afac334f..d117b3b0ade3 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_3_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [2692117301910616223, 11862373594405581684, 12092750955553531256, 5108545912057877223], - [13191057082261271313, 13461898869001565340, 3144977546711926190, 12887787173850649640], - [8723842528870621436, 9645915571392535116, 6025366220407814286, 4747467989456698429], - [7405718287975487752, 15471426320802247554, 8018397484818843188, 1076292840128333912], - [15567092204640112640, 13512378722158897717, 16839350703341635379, 6580006701757635256], - [478392572686859273, 1879898158113218624, 7956515309033309445, 15667184770862761054], - [4738701842169478640, 14432395387726327998, 14827473518830139511, 7026071202596813302], - [1832914181581899534, 12309614119776336180, 1786307750405330285, 9394109377731731297], - [11330017822804908986, 17965075245400465236, 178921019209832245, 9010774195056378656], - [10066603459136751242, 16922354046552351580, 1488715132336554574, 2488902959064634539], - [12764025501053651238, 10583029583148326399, 10919956138611547307, 193732647159610859], - [10812330075474661907, 11023893070918609227, 14153054852108697346, 3310659191720741717], - [12566885554555589997, 5264949142237538963, 10357889278039077105, 1693879812388879198], - [5143074524340781416, 1340176837904332618, 12593249647365922721, 16619880365401544994], - [8116207797925146203, 2436416957055038167, 1598938366845903588, 7153648406343743028], - [14400322751382246405, 4576201222988375875, 10482138496908129257, 1696076921104575474] + [ + 2692117301910616223, + 11862373594405581684, + 12092750955553531256, + 5108545912057877223 + ], + [ + 13191057082261271313, + 13461898869001565340, + 3144977546711926190, + 12887787173850649640 + ], + [ + 8723842528870621436, + 9645915571392535116, + 6025366220407814286, + 4747467989456698429 + ], + [ + 7405718287975487752, + 15471426320802247554, + 8018397484818843188, + 1076292840128333912 + ], + [ + 15567092204640112640, + 13512378722158897717, + 16839350703341635379, + 6580006701757635256 + ], + [ + 478392572686859273, + 1879898158113218624, + 7956515309033309445, + 15667184770862761054 + ], + [ + 4738701842169478640, + 14432395387726327998, + 14827473518830139511, + 7026071202596813302 + ], + [ + 1832914181581899534, + 12309614119776336180, + 1786307750405330285, + 9394109377731731297 + ], + [ + 11330017822804908986, + 17965075245400465236, + 178921019209832245, + 9010774195056378656 + ], + [ + 10066603459136751242, + 16922354046552351580, + 1488715132336554574, + 2488902959064634539 + ], + [ + 12764025501053651238, + 10583029583148326399, + 10919956138611547307, + 193732647159610859 + ], + [ + 10812330075474661907, + 11023893070918609227, + 14153054852108697346, + 3310659191720741717 + ], + [ + 12566885554555589997, + 5264949142237538963, + 10357889278039077105, + 1693879812388879198 + ], + [ + 5143074524340781416, + 1340176837904332618, + 12593249647365922721, + 16619880365401544994 + ], + [ + 8116207797925146203, + 2436416957055038167, + 1598938366845903588, + 7153648406343743028 + ], + [ + 14400322751382246405, + 4576201222988375875, + 10482138496908129257, + 1696076921104575474 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json index acdefe7d1ae3..e8b25fd5f245 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_4_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1866437491015022712, 11793636374252065717, 2771461065434523690, 14888818750197177871], - [13530099303626962147, 15053516955824087922, 12339234049539021204, 9708862473063699060], - [11432132052297230557, 6677170992284491097, 6366885341898621463, 8111143143511568092], - [9907106152447520228, 6682147062594018467, 10264912494418416112, 15503628246857005809], - [17195185271365515391, 13597952072744597251, 17744684609835730837, 2231158103010709548], - [14293262369681823328, 13130511952565359928, 10899311746723421149, 13247944667340766269], - [13892335977334728116, 8911034200951442707, 9940381085909975496, 2442123831058139778], - [6225220793196790211, 4712637343981148404, 17195066106455293379, 8613492331172308471], - [6909799331954538355, 10338179227896084459, 12127192147500716446, 17400998769923799388], - [16539422822493187900, 14101588151214983695, 13891327598256492007, 6120137922715167439], - [14993757510795074537, 2243361897978774751, 3014175478852553185, 1107614745766341650], - [13868198230244075748, 14568344587632252919, 18167720887640456957, 892660889500481924], - [17208474456800792292, 12638116024924785718, 17972572249167165358, 14432332670537563027], - [16794312278798106244, 18025850455584262724, 9034611355178459632, 4812066730993316535], - [9019282623207016172, 8465996543066345624, 11891692540217379621, 1309821012694343566], - [1009066940610956673, 6090643896458703235, 16512441752812232072, 14910610346758346291] + [ + 1866437491015022712, + 11793636374252065717, + 2771461065434523690, + 14888818750197177871 + ], + [ + 13530099303626962147, + 15053516955824087922, + 12339234049539021204, + 9708862473063699060 + ], + [ + 11432132052297230557, + 6677170992284491097, + 6366885341898621463, + 8111143143511568092 + ], + [ + 9907106152447520228, + 6682147062594018467, + 10264912494418416112, + 15503628246857005809 + ], + [ + 17195185271365515391, + 13597952072744597251, + 17744684609835730837, + 2231158103010709548 + ], + [ + 14293262369681823328, + 13130511952565359928, + 10899311746723421149, + 13247944667340766269 + ], + [ + 13892335977334728116, + 8911034200951442707, + 9940381085909975496, + 2442123831058139778 + ], + [ + 6225220793196790211, + 4712637343981148404, + 17195066106455293379, + 8613492331172308471 + ], + [ + 6909799331954538355, + 10338179227896084459, + 12127192147500716446, + 17400998769923799388 + ], + [ + 16539422822493187900, + 14101588151214983695, + 13891327598256492007, + 6120137922715167439 + ], + [ + 14993757510795074537, + 2243361897978774751, + 3014175478852553185, + 1107614745766341650 + ], + [ + 13868198230244075748, + 14568344587632252919, + 18167720887640456957, + 892660889500481924 + ], + [ + 17208474456800792292, + 12638116024924785718, + 17972572249167165358, + 14432332670537563027 + ], + [ + 16794312278798106244, + 18025850455584262724, + 9034611355178459632, + 4812066730993316535 + ], + [ + 9019282623207016172, + 8465996543066345624, + 11891692540217379621, + 1309821012694343566 + ], + [ + 1009066940610956673, + 6090643896458703235, + 16512441752812232072, + 14910610346758346291 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json index a99ed59cff3b..eb327eed3dd1 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_5_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [232279302667736671, 6726532338542220941, 13706010138770265797, 519282525097925002], - [1103871324670382881, 2908131767596043522, 1184743003960864148, 15387210180491180588], - [1835139914361735684, 16415559350382398669, 5395927063819619365, 11718217787759145490], - [16896753956696589678, 18311507677904418762, 3337753834358040142, 15261701009883534681], - [5146023192165443108, 6435094416669057886, 12102399260358768173, 11345203084302025912], - [12317726061088124860, 16542505080079874955, 14545249352878185130, 6198318878248226108], - [11741052063217712776, 6746988457930817443, 17049940702304400525, 664483646520961959], - [16848268934698055336, 15351522766275089309, 3303427044017225869, 8449387423137144953], - [3539943683510232958, 9977830546935578537, 14361154867928067261, 18078907485257653963], - [9615907517852235498, 4547984845394069068, 1881087510325623488, 8387507487023822878], - [4914791735672339571, 2927646189877435594, 8101987065768319522, 11220909861720631116], - [12470368453784044761, 11566657313839792570, 8916441472890022081, 2460153038592468216], - [11111897832305454757, 16681613892385931738, 11167212997482997212, 12907774125001975406], - [12356110082580425887, 2082693370541797346, 6346996203748293162, 13460912313801928], - [17583700199336254135, 3213348565987316027, 6373106379194368913, 3269747122288195701], - [6235590918094214281, 6461943464583505547, 16473683422501694355, 5297565830886346313] + [ + 232279302667736671, + 6726532338542220941, + 13706010138770265797, + 519282525097925002 + ], + [ + 1103871324670382881, + 2908131767596043522, + 1184743003960864148, + 15387210180491180588 + ], + [ + 1835139914361735684, + 16415559350382398669, + 5395927063819619365, + 11718217787759145490 + ], + [ + 16896753956696589678, + 18311507677904418762, + 3337753834358040142, + 15261701009883534681 + ], + [ + 5146023192165443108, + 6435094416669057886, + 12102399260358768173, + 11345203084302025912 + ], + [ + 12317726061088124860, + 16542505080079874955, + 14545249352878185130, + 6198318878248226108 + ], + [ + 11741052063217712776, + 6746988457930817443, + 17049940702304400525, + 664483646520961959 + ], + [ + 16848268934698055336, + 15351522766275089309, + 3303427044017225869, + 8449387423137144953 + ], + [ + 3539943683510232958, + 9977830546935578537, + 14361154867928067261, + 18078907485257653963 + ], + [ + 9615907517852235498, + 4547984845394069068, + 1881087510325623488, + 8387507487023822878 + ], + [ + 4914791735672339571, + 2927646189877435594, + 8101987065768319522, + 11220909861720631116 + ], + [ + 12470368453784044761, + 11566657313839792570, + 8916441472890022081, + 2460153038592468216 + ], + [ + 11111897832305454757, + 16681613892385931738, + 11167212997482997212, + 12907774125001975406 + ], + [ + 12356110082580425887, + 2082693370541797346, + 6346996203748293162, + 13460912313801928 + ], + [ + 17583700199336254135, + 3213348565987316027, + 6373106379194368913, + 3269747122288195701 + ], + [ + 6235590918094214281, + 6461943464583505547, + 16473683422501694355, + 5297565830886346313 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json index ef04a6dabffc..fcfc585f123a 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_6_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1255474782692205032, 16087518293005221749, 16120433120690725791, 13557959444835590881], - [16027822192018731390, 8319846902607826113, 11762447400221114192, 8443748859905122045], - [14217444156040642299, 11667925428120549150, 8770581120601633705, 13711220870168951809], - [7514565357525361228, 17561543150251615679, 3154909983341532730, 12214081580202496570], - [12103863316007597160, 3323941154151772169, 3020605753288032659, 13719536383629040140], - [5692457694309768505, 2819674835255412986, 762859630950656893, 8641902833919071345], - [17873529730032253633, 7201386304292118615, 11501182428688354869, 484571398574807569], - [14885817894337856307, 6275077850611154396, 11258872656630844770, 3539429443980133849], - [15063387858351738900, 4885324227361507661, 11843813664335157415, 12108718617943024927], - [5899829642851923448, 12815217964596374101, 5258792099613493578, 3492836714462054208], - [9767772893712446038, 9516937526725710003, 533138889369363889, 1960629141548643757], - [5192250756718034923, 6205844331296290914, 16547640844499692480, 13348222714661177711], - [6744522815256114347, 9303892902465539007, 14440545534790765924, 7421221195917428336], - [354635080958416363, 15720855927808633651, 885375182959288083, 10459197185009191208], - [3742508711441291317, 7193882150736289342, 17760334643806787982, 8575009527221694930], - [18274184058397159114, 5200115837479315537, 2808181877606937346, 17946239285125192080] + [ + 1255474782692205032, + 16087518293005221749, + 16120433120690725791, + 13557959444835590881 + ], + [ + 16027822192018731390, + 8319846902607826113, + 11762447400221114192, + 8443748859905122045 + ], + [ + 14217444156040642299, + 11667925428120549150, + 8770581120601633705, + 13711220870168951809 + ], + [ + 7514565357525361228, + 17561543150251615679, + 3154909983341532730, + 12214081580202496570 + ], + [ + 12103863316007597160, + 3323941154151772169, + 3020605753288032659, + 13719536383629040140 + ], + [ + 5692457694309768505, + 2819674835255412986, + 762859630950656893, + 8641902833919071345 + ], + [ + 17873529730032253633, + 7201386304292118615, + 11501182428688354869, + 484571398574807569 + ], + [ + 14885817894337856307, + 6275077850611154396, + 11258872656630844770, + 3539429443980133849 + ], + [ + 15063387858351738900, + 4885324227361507661, + 11843813664335157415, + 12108718617943024927 + ], + [ + 5899829642851923448, + 12815217964596374101, + 5258792099613493578, + 3492836714462054208 + ], + [ + 9767772893712446038, + 9516937526725710003, + 533138889369363889, + 1960629141548643757 + ], + [ + 5192250756718034923, + 6205844331296290914, + 16547640844499692480, + 13348222714661177711 + ], + [ + 6744522815256114347, + 9303892902465539007, + 14440545534790765924, + 7421221195917428336 + ], + [ + 354635080958416363, + 15720855927808633651, + 885375182959288083, + 10459197185009191208 + ], + [ + 3742508711441291317, + 7193882150736289342, + 17760334643806787982, + 8575009527221694930 + ], + [ + 18274184058397159114, + 5200115837479315537, + 2808181877606937346, + 17946239285125192080 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json index 5998d88228ba..1ab34e32a4f7 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_7_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [15278222994235313807, 4647505541828109982, 11601404244072907522, 7495301362149670205], - [2294446454282967643, 10852196555067806436, 4676542110718751671, 3650676510146080911], - [10036426682390389619, 15410534417517518379, 411748073143090898, 1725429274294449186], - [10773139363930294963, 14784009814759595952, 4523828744129500622, 14635565308295099932], - [11532260655451503527, 2889442075290561580, 7947536971337998641, 9006850837384135593], - [18268520902352688907, 17460815273130161567, 5448683527846534560, 16860223759333541117], - [8586752129609394016, 17056726335999361043, 13247832408825538184, 10865075704067323346], - [4810539255563012829, 3494541358111189199, 7443746985302784339, 1488118652209005646], - [13632843557374648899, 11530787504038845899, 8016420701220086345, 2100494706314940875], - [12565007434827640436, 2122488373912552994, 7924677296826511433, 4337201927455963919], - [9121346173552113908, 8257616625819727572, 1352571964050839537, 1245015447612032209], - [5550331618999138407, 15197131088442812142, 17401528975137618793, 7876503578710888777], - [10581471072917622415, 11057977535360446233, 4745650017347491925, 16374614618217057484], - [15877663159259953297, 13196700387970223678, 987069829507588466, 1239752961099076877], - [1564056242532596441, 8225585740585112689, 8013357208824893542, 8291061420556283364], - [10408011788640723232, 11035192730597666502, 7808927156371652130, 8373070655798680509] + [ + 15278222994235313807, + 4647505541828109982, + 11601404244072907522, + 7495301362149670205 + ], + [ + 2294446454282967643, + 10852196555067806436, + 4676542110718751671, + 3650676510146080911 + ], + [ + 10036426682390389619, + 15410534417517518379, + 411748073143090898, + 1725429274294449186 + ], + [ + 10773139363930294963, + 14784009814759595952, + 4523828744129500622, + 14635565308295099932 + ], + [ + 11532260655451503527, + 2889442075290561580, + 7947536971337998641, + 9006850837384135593 + ], + [ + 18268520902352688907, + 17460815273130161567, + 5448683527846534560, + 16860223759333541117 + ], + [ + 8586752129609394016, + 17056726335999361043, + 13247832408825538184, + 10865075704067323346 + ], + [ + 4810539255563012829, + 3494541358111189199, + 7443746985302784339, + 1488118652209005646 + ], + [ + 13632843557374648899, + 11530787504038845899, + 8016420701220086345, + 2100494706314940875 + ], + [ + 12565007434827640436, + 2122488373912552994, + 7924677296826511433, + 4337201927455963919 + ], + [ + 9121346173552113908, + 8257616625819727572, + 1352571964050839537, + 1245015447612032209 + ], + [ + 5550331618999138407, + 15197131088442812142, + 17401528975137618793, + 7876503578710888777 + ], + [ + 10581471072917622415, + 11057977535360446233, + 4745650017347491925, + 16374614618217057484 + ], + [ + 15877663159259953297, + 13196700387970223678, + 987069829507588466, + 1239752961099076877 + ], + [ + 1564056242532596441, + 8225585740585112689, + 8013357208824893542, + 8291061420556283364 + ], + [ + 10408011788640723232, + 11035192730597666502, + 7808927156371652130, + 8373070655798680509 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json index 51ed882ef0e9..53184d3b764a 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_8_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [6606882135817124908, 870347107746733688, 12589677233751162485, 589161009871845644], - [2653237880188520795, 5593713591941028430, 14924807074602279493, 7403178895756596709], - [4770385125899202728, 16848765286027915692, 7130735721393145418, 13542558858028383026], - [10198382868561538358, 11182212222601267089, 2158487448188796066, 7515784380092212678], - [18043800703311929788, 12605295159363639520, 16963777812872271598, 13934310487890398001], - [17306728193061605292, 6162556196186301425, 15123250614620584121, 7156136428077702076], - [3239169487219227705, 4415189033224694015, 10092040104298268727, 3953865385297495928], - [13842490303827572248, 8581552410557417158, 6306820342544224802, 1525290694317383658], - [16571790197298227277, 273370441868121439, 7446891486292543124, 5407600836394474442], - [11518012136298307119, 15035338047379067034, 11014561672957925556, 9225054298465248935], - [11950255612043468638, 10166628395020495040, 5673010277307553197, 3641423295115612757], - [1072894636907573868, 10523520096472094653, 4897453347544558657, 3772162500249343132], - [17527297802619704973, 16260964196666506939, 7653109999731571152, 15253570761269944834], - [16258769312952303884, 7720171109291562352, 11124452352545828178, 16830247676911180779], - [5288712429506529884, 13145012711898589816, 11490757447230521395, 5486824582454772190], - [16641639521175638360, 5677946044429642761, 12635856058275795326, 12340020456497165526] + [ + 6606882135817124908, + 870347107746733688, + 12589677233751162485, + 589161009871845644 + ], + [ + 2653237880188520795, + 5593713591941028430, + 14924807074602279493, + 7403178895756596709 + ], + [ + 4770385125899202728, + 16848765286027915692, + 7130735721393145418, + 13542558858028383026 + ], + [ + 10198382868561538358, + 11182212222601267089, + 2158487448188796066, + 7515784380092212678 + ], + [ + 18043800703311929788, + 12605295159363639520, + 16963777812872271598, + 13934310487890398001 + ], + [ + 17306728193061605292, + 6162556196186301425, + 15123250614620584121, + 7156136428077702076 + ], + [ + 3239169487219227705, + 4415189033224694015, + 10092040104298268727, + 3953865385297495928 + ], + [ + 13842490303827572248, + 8581552410557417158, + 6306820342544224802, + 1525290694317383658 + ], + [ + 16571790197298227277, + 273370441868121439, + 7446891486292543124, + 5407600836394474442 + ], + [ + 11518012136298307119, + 15035338047379067034, + 11014561672957925556, + 9225054298465248935 + ], + [ + 11950255612043468638, + 10166628395020495040, + 5673010277307553197, + 3641423295115612757 + ], + [ + 1072894636907573868, + 10523520096472094653, + 4897453347544558657, + 3772162500249343132 + ], + [ + 17527297802619704973, + 16260964196666506939, + 7653109999731571152, + 15253570761269944834 + ], + [ + 16258769312952303884, + 7720171109291562352, + 11124452352545828178, + 16830247676911180779 + ], + [ + 5288712429506529884, + 13145012711898589816, + 11490757447230521395, + 5486824582454772190 + ], + [ + 16641639521175638360, + 5677946044429642761, + 12635856058275795326, + 12340020456497165526 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json index 6e25abdddcbc..88a48a0bf911 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_leaf_9_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [1966688024276265163, 1600999376577297955, 9979283765343242481, 10853158383047279373], - [9617115799973676416, 1436692352837490106, 16621229234254045212, 17649471158808930813], - [10598997254576197179, 6191890180530301291, 485325547092687385, 17866822217569560015], - [17529069959174406385, 1822730242748867421, 10607268541276403219, 10369730414641253572], - [9559948904275293033, 271393452476373483, 10294727560225979037, 13356808215545342022], - [3330505141292591439, 14604912162246460234, 13747490798131143365, 9686392462153294316], - [1308334442155460802, 8411248012498029090, 1727122243552046217, 1891983150748887801], - [13628794098518472387, 9775581327398472118, 10952798350389999267, 3791915693702783252], - [5150729729317744106, 15268081752408833175, 11313693800895322733, 7645258866415024451], - [4492405884498997751, 1462600329700613046, 4494587633368393420, 13835293745083269390], - [16786735218378765255, 13489016634632055711, 780880140016370703, 1632417931049291348], - [15419598237747857050, 17379853454459968259, 1377883698753277247, 17090368996477921986], - [5453156352466670830, 7921752778252981104, 15901693682958424795, 7759079127470880643], - [13945928657949258565, 10630556046992331796, 5947903586431352857, 13970701039664769056], - [11402992940883704805, 14254801701412570920, 16823021910688666954, 16435058721419375579], - [1434897606543124534, 7242596307416400095, 1722748060955112357, 1262887759339605102] + [ + 1966688024276265163, + 1600999376577297955, + 9979283765343242481, + 10853158383047279373 + ], + [ + 9617115799973676416, + 1436692352837490106, + 16621229234254045212, + 17649471158808930813 + ], + [ + 10598997254576197179, + 6191890180530301291, + 485325547092687385, + 17866822217569560015 + ], + [ + 17529069959174406385, + 1822730242748867421, + 10607268541276403219, + 10369730414641253572 + ], + [ + 9559948904275293033, + 271393452476373483, + 10294727560225979037, + 13356808215545342022 + ], + [ + 3330505141292591439, + 14604912162246460234, + 13747490798131143365, + 9686392462153294316 + ], + [ + 1308334442155460802, + 8411248012498029090, + 1727122243552046217, + 1891983150748887801 + ], + [ + 13628794098518472387, + 9775581327398472118, + 10952798350389999267, + 3791915693702783252 + ], + [ + 5150729729317744106, + 15268081752408833175, + 11313693800895322733, + 7645258866415024451 + ], + [ + 4492405884498997751, + 1462600329700613046, + 4494587633368393420, + 13835293745083269390 + ], + [ + 16786735218378765255, + 13489016634632055711, + 780880140016370703, + 1632417931049291348 + ], + [ + 15419598237747857050, + 17379853454459968259, + 1377883698753277247, + 17090368996477921986 + ], + [ + 5453156352466670830, + 7921752778252981104, + 15901693682958424795, + 7759079127470880643 + ], + [ + 13945928657949258565, + 10630556046992331796, + 5947903586431352857, + 13970701039664769056 + ], + [ + 11402992940883704805, + 14254801701412570920, + 16823021910688666954, + 16435058721419375579 + ], + [ + 1434897606543124534, + 7242596307416400095, + 1722748060955112357, + 1262887759339605102 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json index 898044175ed2..7865e106454e 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_node_key.json @@ -11,10 +11,22 @@ "domain_size": 1048576, "total_tables_len": 0, "public_inputs_locations": [ - [0, 0], - [1, 0], - [2, 0], - [3, 0] + [ + 0, + 0 + ], + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] ], "extra_constant_polys_for_selectors": 4, "table_ids_column_idxes": [], @@ -149,22 +161,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [16110944391299715992, 6257581196984129533, 3238325178821009741, 2344850491864189019], - [9070724167014080545, 4270936005334206500, 14011092173278602876, 17233390044312666340], - [15882294806312417165, 4574813182503183418, 15374759504522847393, 12609068726586761599], - [5081359810005150600, 3073725930902770385, 12151383627606620216, 1678712612408922293], - [13389075440637154488, 1394733244174774927, 15897027408886080730, 8756205416909346149], - [9635595243774498130, 12944626865667316474, 11443383015868895087, 11271399114434241688], - [15730316965377191644, 9302195093067483199, 13013113029527355010, 16107136888029757437], - [4376996761649023946, 5151155327098069058, 5052643273518683586, 4214154406154441301], - [14323780220991293990, 8193587898306996901, 5671887774622993207, 9546628649033002185], - [16523271232278987128, 994857983084927437, 14501829109938165419, 9015660151307809950], - [1530238726285436995, 6261885523422263637, 11940153058268689285, 15737357444014615384], - [2670341602838046451, 10669331667080282584, 16656965855764533819, 13339778044433609883], - [17128805815986618686, 18194734266790270296, 5735422502154213482, 10164141197176685232], - [2629176720116777217, 6966722226648521547, 2937669813272776408, 2812827195714811672], - [6178870790111010071, 10834984121929556338, 2836091052290008872, 1311164878771236983], - [7411275786539821863, 3702190765468277039, 18130480549896087952, 5277641488054089382] + [ + 16110944391299715992, + 6257581196984129533, + 3238325178821009741, + 2344850491864189019 + ], + [ + 9070724167014080545, + 4270936005334206500, + 14011092173278602876, + 17233390044312666340 + ], + [ + 15882294806312417165, + 4574813182503183418, + 15374759504522847393, + 12609068726586761599 + ], + [ + 5081359810005150600, + 3073725930902770385, + 12151383627606620216, + 1678712612408922293 + ], + [ + 13389075440637154488, + 1394733244174774927, + 15897027408886080730, + 8756205416909346149 + ], + [ + 9635595243774498130, + 12944626865667316474, + 11443383015868895087, + 11271399114434241688 + ], + [ + 15730316965377191644, + 9302195093067483199, + 13013113029527355010, + 16107136888029757437 + ], + [ + 4376996761649023946, + 5151155327098069058, + 5052643273518683586, + 4214154406154441301 + ], + [ + 14323780220991293990, + 8193587898306996901, + 5671887774622993207, + 9546628649033002185 + ], + [ + 16523271232278987128, + 994857983084927437, + 14501829109938165419, + 9015660151307809950 + ], + [ + 1530238726285436995, + 6261885523422263637, + 11940153058268689285, + 15737357444014615384 + ], + [ + 2670341602838046451, + 10669331667080282584, + 16656965855764533819, + 13339778044433609883 + ], + [ + 17128805815986618686, + 18194734266790270296, + 5735422502154213482, + 10164141197176685232 + ], + [ + 2629176720116777217, + 6966722226648521547, + 2937669813272776408, + 2812827195714811672 + ], + [ + 6178870790111010071, + 10834984121929556338, + 2836091052290008872, + 1311164878771236983 + ], + [ + 7411275786539821863, + 3702190765468277039, + 18130480549896087952, + 5277641488054089382 + ] ] } -} +} \ No newline at end of file diff --git a/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json b/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json index 47aeb8dbf4f2..f73530a2ca1a 100644 --- a/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json +++ b/prover/vk_setup_data_generator_server_fri/data/verification_scheduler_key.json @@ -17,13 +17,27 @@ "domain_size": 1048576, "total_tables_len": 132096, "public_inputs_locations": [ - [0, 993345], - [1, 993345], - [2, 993345], - [3, 993345] + [ + 0, + 993345 + ], + [ + 1, + 993345 + ], + [ + 2, + 993345 + ], + [ + 3, + 993345 + ] ], "extra_constant_polys_for_selectors": 4, - "table_ids_column_idxes": [8], + "table_ids_column_idxes": [ + 8 + ], "quotient_degree": 8, "selectors_placement": { "Fork": { @@ -155,22 +169,102 @@ "cap_size": 16 }, "setup_merkle_tree_cap": [ - [15230555879575926816, 8670948681878777794, 767116401361787080, 13808751382541908272], - [1220486015450063297, 9567900108378427313, 18210974256257044632, 18338726330920132716], - [7568154221767192295, 11691578057855133612, 9987210827513697170, 17019942866370544662], - [14102673551475852761, 3839757807646647049, 8317169401280108378, 14477318175428765566], - [10669246787368115713, 11986124114638697341, 373240888095551057, 10600874540100090281], - [1967433817606548880, 1252531621216687635, 14092128528722989126, 15316007954882781751], - [5731133612849813361, 9439573956187051534, 15220234372923263193, 9871593147214385018], - [5432497552013782457, 6217935098775351854, 10788625265296640732, 7626134139872594266], - [16209439837876908945, 16958705495955599782, 2620710932184338631, 13207816187542048405], - [11540918781414391435, 13215620469361541671, 7261198944216226328, 14101141177393020403], - [10951103916546600353, 16291916249083597787, 8020395928888095904, 14831509381332343931], - [14614496581821229034, 570029684825245175, 11368483572681932607, 17857699424461379920], - [10549396205597068517, 16251363364669954894, 5619914240250798106, 15384760685177493623], - [6443594760777705854, 4350415958090847717, 7924647710631862693, 1595589969968983394], - [1575322136978699734, 1714883637605030004, 1403876268493429570, 5816075577953274504], - [1910730620955478970, 10199274156501303143, 8240588740333284151, 7977626984796160665] + [ + 15230555879575926816, + 8670948681878777794, + 767116401361787080, + 13808751382541908272 + ], + [ + 1220486015450063297, + 9567900108378427313, + 18210974256257044632, + 18338726330920132716 + ], + [ + 7568154221767192295, + 11691578057855133612, + 9987210827513697170, + 17019942866370544662 + ], + [ + 14102673551475852761, + 3839757807646647049, + 8317169401280108378, + 14477318175428765566 + ], + [ + 10669246787368115713, + 11986124114638697341, + 373240888095551057, + 10600874540100090281 + ], + [ + 1967433817606548880, + 1252531621216687635, + 14092128528722989126, + 15316007954882781751 + ], + [ + 5731133612849813361, + 9439573956187051534, + 15220234372923263193, + 9871593147214385018 + ], + [ + 5432497552013782457, + 6217935098775351854, + 10788625265296640732, + 7626134139872594266 + ], + [ + 16209439837876908945, + 16958705495955599782, + 2620710932184338631, + 13207816187542048405 + ], + [ + 11540918781414391435, + 13215620469361541671, + 7261198944216226328, + 14101141177393020403 + ], + [ + 10951103916546600353, + 16291916249083597787, + 8020395928888095904, + 14831509381332343931 + ], + [ + 14614496581821229034, + 570029684825245175, + 11368483572681932607, + 17857699424461379920 + ], + [ + 10549396205597068517, + 16251363364669954894, + 5619914240250798106, + 15384760685177493623 + ], + [ + 6443594760777705854, + 4350415958090847717, + 7924647710631862693, + 1595589969968983394 + ], + [ + 1575322136978699734, + 1714883637605030004, + 1403876268493429570, + 5816075577953274504 + ], + [ + 1910730620955478970, + 10199274156501303143, + 8240588740333284151, + 7977626984796160665 + ] ] } -} +} \ No newline at end of file diff --git a/renovate.json b/renovate.json index d98e5239274c..055bc3425806 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,11 @@ { "enabled": false, - "extends": ["config:base", "helpers:pinGitHubActionDigests"], - "enabledManagers": ["github-actions"], + "extends": [ + "config:base", + "helpers:pinGitHubActionDigests" + ], + "enabledManagers": [ + "github-actions" + ], "prCreation": "immediate" } diff --git a/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json b/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json index 8116e4410a50..57864f93317f 100644 --- a/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json +++ b/sdk/zksync-rs/src/ethereum/DepositERC20GasLimit.json @@ -1,42 +1,42 @@ { - "0x0000000000095413afc295d19edeb1ad7b71c952": 140000, - "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": 160000, - "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": 140000, - "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": 140000, - "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": 150000, - "0x9ba00d6856a4edf4665bca2c2309936572473b7e": 270000, - "0x8daebade922df735c38c80c7ebd708af50815faa": 140000, - "0x0d8775f648430679a709e98d2b0cb6250d2887ef": 140000, - "0xdac17f958d2ee523a2206206994597c13d831ec7": 140000, - "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": 150000, - "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": 180000, - "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": 140000, - "0x514910771af9ca656af840dff83e8264ecf986ca": 140000, - "0x1985365e9f78359a9b6ad760e32412f4a445e862": 180000, - "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": 140000, - "0xe41d2489571d322189246dafa5ebde1f4699f498": 140000, - "0x6b175474e89094c44da98b954eedeac495271d0f": 140000, - "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": 150000, - "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": 140000, - "0x65ece136b89ebaa72a7f7aa815674946e44ca3f9": 140000, - "0x0000000000085d4780b73119b644ae5ecd22b376": 150000, - "0xdb25f211ab05b1c97d595516f45794528a807ad8": 180000, - "0x408e41876cccdc0f92210600ef50372656052a38": 140000, - "0x15a2b3cfafd696e1c783fe99eed168b78a3a371e": 160000, - "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": 160000, - "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": 140000, - "0x56d811088235f11c8920698a204a5010a788f4b3": 240000, - "0x57ab1ec28d129707052df4df418d58a2d46d5f51": 220000, - "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": 140000, - "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": 150000, - "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": 200000, - "0x744d70fdbe2ba4cf95131626614a1763df805b9e": 230000, - "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": 140000, - "0x4c7065bca76fe44afb0d16c2441b1e6e163354e2": 250000, - "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": 140000, - "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": 140000, - "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": 140000, - "0x4fabb145d64652a948d72533023f6e7a623c7c53": 150000, - "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": 140000, - "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": 140000 + "0x0000000000095413afc295d19edeb1ad7b71c952": 140000, + "0xeb4c2781e4eba804ce9a9803c67d0893436bb27d": 160000, + "0xbbbbca6a901c926f240b89eacb641d8aec7aeafd": 140000, + "0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac": 140000, + "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": 150000, + "0x9ba00d6856a4edf4665bca2c2309936572473b7e": 270000, + "0x8daebade922df735c38c80c7ebd708af50815faa": 140000, + "0x0d8775f648430679a709e98d2b0cb6250d2887ef": 140000, + "0xdac17f958d2ee523a2206206994597c13d831ec7": 140000, + "0x6de037ef9ad2725eb40118bb1702ebb27e4aeb24": 150000, + "0x056fd409e1d7a124bd7017459dfea2f387b6d5cd": 180000, + "0x0f5d2fb29fb7d3cfee444a200298f468908cc942": 140000, + "0x514910771af9ca656af840dff83e8264ecf986ca": 140000, + "0x1985365e9f78359a9b6ad760e32412f4a445e862": 180000, + "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": 140000, + "0xe41d2489571d322189246dafa5ebde1f4699f498": 140000, + "0x6b175474e89094c44da98b954eedeac495271d0f": 140000, + "0xaaaebe6fe48e54f431b0c390cfaf0b017d09d42d": 150000, + "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39": 140000, + "0x65ece136b89ebaa72a7f7aa815674946e44ca3f9": 140000, + "0x0000000000085d4780b73119b644ae5ecd22b376": 150000, + "0xdb25f211ab05b1c97d595516f45794528a807ad8": 180000, + "0x408e41876cccdc0f92210600ef50372656052a38": 140000, + "0x15a2b3cfafd696e1c783fe99eed168b78a3a371e": 160000, + "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1": 160000, + "0x3108ccfd96816f9e663baa0e8c5951d229e8c6da": 140000, + "0x56d811088235f11c8920698a204a5010a788f4b3": 240000, + "0x57ab1ec28d129707052df4df418d58a2d46d5f51": 220000, + "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": 140000, + "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": 150000, + "0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": 200000, + "0x744d70fdbe2ba4cf95131626614a1763df805b9e": 230000, + "0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e": 140000, + "0x4c7065bca76fe44afb0d16c2441b1e6e163354e2": 250000, + "0xdd974d5c2e2928dea5f71b9825b8b646686bd200": 140000, + "0x80fb784b7ed66730e8b1dbd9820afd29931aab03": 140000, + "0xd56dac73a4d6766464b38ec6d91eb45ce7457c44": 140000, + "0x4fabb145d64652a948d72533023f6e7a623c7c53": 150000, + "0x38a2fdc11f526ddd5a607c1f251c065f40fbf2f7": 140000, + "0x7dd9c5cba05e151c895fde1cf355c9a1d5da6429": 140000 } diff --git a/sdk/zksync-web3.js/abi/IERC1271.json b/sdk/zksync-web3.js/abi/IERC1271.json index c7b4b514a4a2..5e153118a2af 100644 --- a/sdk/zksync-web3.js/abi/IERC1271.json +++ b/sdk/zksync-web3.js/abi/IERC1271.json @@ -1,28 +1,28 @@ { - "abi": [ - { - "inputs": [ + "abi": [ { - "internalType": "bytes32", - "name": "hash", - "type": "bytes32" - }, - { - "internalType": "bytes", - "name": "signature", - "type": "bytes" - } - ], - "name": "isValidSignature", - "outputs": [ - { - "internalType": "bytes4", - "name": "magicValue", - "type": "bytes4" + "inputs": [ + { + "internalType": "bytes32", + "name": "hash", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "signature", + "type": "bytes" + } + ], + "name": "isValidSignature", + "outputs": [ + { + "internalType": "bytes4", + "name": "magicValue", + "type": "bytes4" + } + ], + "stateMutability": "view", + "type": "function" } - ], - "stateMutability": "view", - "type": "function" - } - ] -} + ] +} \ No newline at end of file diff --git a/sdk/zksync-web3.js/tsconfig.json b/sdk/zksync-web3.js/tsconfig.json index e319b6167763..322b2cd47e0c 100644 --- a/sdk/zksync-web3.js/tsconfig.json +++ b/sdk/zksync-web3.js/tsconfig.json @@ -12,5 +12,7 @@ "noImplicitOverride": true }, - "files": ["./src/index.ts"] + "files": [ + "./src/index.ts" + ] } From 2639834d590b07f00996444ca874aa0603f98cd6 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Wed, 25 Oct 2023 13:36:17 +0100 Subject: [PATCH 06/15] Revert "fmt: json, yaml extensions added to prettier" This reverts commit f802bf370c0d0205ffc1f51f4b867f7e672ae795. --- etc/prettier-config/json.js | 6 ------ etc/prettier-config/yaml.js | 4 ---- infrastructure/zk/src/fmt.ts | 2 +- 3 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 etc/prettier-config/json.js delete mode 100644 etc/prettier-config/yaml.js diff --git a/etc/prettier-config/json.js b/etc/prettier-config/json.js deleted file mode 100644 index 3098dcb47d94..000000000000 --- a/etc/prettier-config/json.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - "tabWidth": 2, - "printWidth": 120, - "bracketSpacing": true - }; - \ No newline at end of file diff --git a/etc/prettier-config/yaml.js b/etc/prettier-config/yaml.js deleted file mode 100644 index 2b9a2d0eb13a..000000000000 --- a/etc/prettier-config/yaml.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - "tabWidth": 2, - "printWidth": 120 -}; diff --git a/infrastructure/zk/src/fmt.ts b/infrastructure/zk/src/fmt.ts index 9abc38e41510..4bb46dba7608 100644 --- a/infrastructure/zk/src/fmt.ts +++ b/infrastructure/zk/src/fmt.ts @@ -1,7 +1,7 @@ import { Command } from 'commander'; import * as utils from './utils'; -const EXTENSIONS = ['js', 'json', 'md', 'sol', 'ts', 'yaml']; +const EXTENSIONS = ['ts', 'md', 'sol', 'js']; const CONFIG_PATH = 'etc/prettier-config'; export async function prettier(extension: string, check: boolean = false) { From 90d3b63fd597d1b038486a75abf9d03a6f2672fd Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Wed, 1 Nov 2023 15:20:47 +0100 Subject: [PATCH 07/15] sync with latest release --- contracts | 2 +- etc/ERC20/hardhat.config.ts | 4 +- etc/ERC20/package.json | 2 +- etc/contracts-test-data/package.json | 2 +- etc/system-contracts | 2 +- infrastructure/zk/src/compiler.ts | 4 +- yarn.lock | 193 ++++++++++++++++++++++++++- 7 files changed, 198 insertions(+), 11 deletions(-) diff --git a/contracts b/contracts index df5f6a941613..86f2436e0e91 160000 --- a/contracts +++ b/contracts @@ -1 +1 @@ -Subproject commit df5f6a9416135b239584865ae60c01556b721d63 +Subproject commit 86f2436e0e91f56eab2dfc97c2739cb1e46da120 diff --git a/etc/ERC20/hardhat.config.ts b/etc/ERC20/hardhat.config.ts index 59080306c84e..7d1be0668aec 100644 --- a/etc/ERC20/hardhat.config.ts +++ b/etc/ERC20/hardhat.config.ts @@ -2,7 +2,7 @@ import '@matterlabs/hardhat-zksync-solc'; export default { zksolc: { - version: '1.3.1', + version: '1.3.14', compilerSource: 'binary', settings: { isSystem: true @@ -14,6 +14,6 @@ export default { } }, solidity: { - version: '0.8.16' + version: '0.8.20' } }; diff --git a/etc/ERC20/package.json b/etc/ERC20/package.json index 8e3113b2a19a..dccc730c260b 100644 --- a/etc/ERC20/package.json +++ b/etc/ERC20/package.json @@ -5,7 +5,7 @@ "license": "MIT", "devDependencies": { "@matterlabs/hardhat-zksync-solc": "^0.3.15", - "hardhat": "=2.12.4" + "hardhat": "=2.16.0" }, "scripts": { "build": "hardhat compile" diff --git a/etc/contracts-test-data/package.json b/etc/contracts-test-data/package.json index 7ba728af6580..e5d278874a55 100644 --- a/etc/contracts-test-data/package.json +++ b/etc/contracts-test-data/package.json @@ -4,7 +4,7 @@ "license": "MIT", "dependencies": { "@openzeppelin/contracts": "^4.8.0", - "hardhat": "2.12.4" + "hardhat": "=2.16.0" }, "devDependencies": { "@matterlabs/hardhat-zksync-solc": "^0.3.15" diff --git a/etc/system-contracts b/etc/system-contracts index ef5e5f7a7ddb..6a84befeb2eb 160000 --- a/etc/system-contracts +++ b/etc/system-contracts @@ -1 +1 @@ -Subproject commit ef5e5f7a7ddbf887bfb93c32b633a15c6f604196 +Subproject commit 6a84befeb2eb804c0b934789b93dc9459147fe90 diff --git a/infrastructure/zk/src/compiler.ts b/infrastructure/zk/src/compiler.ts index 2cb98e6ff37d..fadff30cdbcd 100644 --- a/infrastructure/zk/src/compiler.ts +++ b/infrastructure/zk/src/compiler.ts @@ -12,9 +12,7 @@ export async function compileSystemContracts() { process.chdir('etc/system-contracts'); await utils.spawn('yarn'); - await utils.spawn('yarn hardhat compile'); - await utils.spawn('yarn preprocess'); - await utils.spawn('yarn hardhat run ./scripts/compile-yul.ts'); + await utils.spawn('yarn build'); process.chdir('../..'); } diff --git a/yarn.lock b/yarn.lock index 71596665066e..97b4df4879ef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1577,6 +1577,19 @@ "@nomicfoundation/ethereumjs-util" "8.0.6" ethereum-cryptography "0.1.3" +"@nomicfoundation/ethereumjs-block@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz#6f89664f55febbd723195b6d0974773d29ee133d" + integrity sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw== + dependencies: + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-trie" "6.0.1" + "@nomicfoundation/ethereumjs-tx" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + ethereum-cryptography "0.1.3" + ethers "^5.7.1" + "@nomicfoundation/ethereumjs-block@5.0.2": version "5.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.2.tgz#13a7968f5964f1697da941281b7f7943b0465d04" @@ -1608,6 +1621,25 @@ lru-cache "^5.1.1" memory-level "^1.0.0" +"@nomicfoundation/ethereumjs-blockchain@7.0.1": + version "7.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz#80e0bd3535bfeb9baa29836b6f25123dab06a726" + integrity sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A== + dependencies: + "@nomicfoundation/ethereumjs-block" "5.0.1" + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-ethash" "3.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-trie" "6.0.1" + "@nomicfoundation/ethereumjs-tx" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + abstract-level "^1.0.3" + debug "^4.3.3" + ethereum-cryptography "0.1.3" + level "^8.0.0" + lru-cache "^5.1.1" + memory-level "^1.0.0" + "@nomicfoundation/ethereumjs-blockchain@7.0.2": version "7.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.2.tgz#45323b673b3d2fab6b5008535340d1b8fea7d446" @@ -1635,6 +1667,14 @@ "@nomicfoundation/ethereumjs-util" "8.0.6" crc-32 "^1.2.0" +"@nomicfoundation/ethereumjs-common@4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz#4702d82df35b07b5407583b54a45bf728e46a2f0" + integrity sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g== + dependencies: + "@nomicfoundation/ethereumjs-util" "9.0.1" + crc-32 "^1.2.0" + "@nomicfoundation/ethereumjs-common@4.0.2": version "4.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.2.tgz#a15d1651ca36757588fdaf2a7d381a150662a3c3" @@ -1655,6 +1695,18 @@ bigint-crypto-utils "^3.0.23" ethereum-cryptography "0.1.3" +"@nomicfoundation/ethereumjs-ethash@3.0.1": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz#65ca494d53e71e8415c9a49ef48bc921c538fc41" + integrity sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w== + dependencies: + "@nomicfoundation/ethereumjs-block" "5.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + abstract-level "^1.0.3" + bigint-crypto-utils "^3.0.23" + ethereum-cryptography "0.1.3" + "@nomicfoundation/ethereumjs-ethash@3.0.2": version "3.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.2.tgz#da77147f806401ee996bfddfa6487500118addca" @@ -1681,6 +1733,20 @@ mcl-wasm "^0.7.1" rustbn.js "~0.2.0" +"@nomicfoundation/ethereumjs-evm@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz#f35681e203363f69ce2b3d3bf9f44d4e883ca1f1" + integrity sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ== + dependencies: + "@ethersproject/providers" "^5.7.1" + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-tx" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + debug "^4.3.3" + ethereum-cryptography "0.1.3" + mcl-wasm "^0.7.1" + rustbn.js "~0.2.0" + "@nomicfoundation/ethereumjs-evm@2.0.2": version "2.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.2.tgz#4c2f4b84c056047102a4fa41c127454e3f0cfcf6" @@ -1700,6 +1766,11 @@ resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-4.0.3.tgz#8d9147fbd0d49e8f4c5ce729d226694a8fe03eb8" integrity sha512-DZMzB/lqPK78T6MluyXqtlRmOMcsZbTTbbEyAjo0ncaff2mqu/k8a79PBcyvpgAhWD/R59Fjq/x3ro5Lof0AtA== +"@nomicfoundation/ethereumjs-rlp@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz#0b30c1cf77d125d390408e391c4bb5291ef43c28" + integrity sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ== + "@nomicfoundation/ethereumjs-rlp@5.0.2": version "5.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.2.tgz#4fee8dc58a53ac6ae87fb1fca7c15dc06c6b5dea" @@ -1718,6 +1789,18 @@ ethereum-cryptography "0.1.3" functional-red-black-tree "^1.0.1" +"@nomicfoundation/ethereumjs-statemanager@2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz#8824a97938db4471911e2d2f140f79195def5935" + integrity sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ== + dependencies: + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + debug "^4.3.3" + ethereum-cryptography "0.1.3" + ethers "^5.7.1" + js-sdsl "^4.1.4" + "@nomicfoundation/ethereumjs-statemanager@2.0.2": version "2.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.2.tgz#3ba4253b29b1211cafe4f9265fee5a0d780976e0" @@ -1740,6 +1823,17 @@ ethereum-cryptography "0.1.3" readable-stream "^3.6.0" +"@nomicfoundation/ethereumjs-trie@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz#662c55f6b50659fd4b22ea9f806a7401cafb7717" + integrity sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA== + dependencies: + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + "@types/readable-stream" "^2.3.13" + ethereum-cryptography "0.1.3" + readable-stream "^3.6.0" + "@nomicfoundation/ethereumjs-trie@6.0.2": version "6.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.2.tgz#9a6dbd28482dca1bc162d12b3733acab8cd12835" @@ -1761,6 +1855,18 @@ "@nomicfoundation/ethereumjs-util" "8.0.6" ethereum-cryptography "0.1.3" +"@nomicfoundation/ethereumjs-tx@5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz#7629dc2036b4a33c34e9f0a592b43227ef4f0c7d" + integrity sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w== + dependencies: + "@chainsafe/ssz" "^0.9.2" + "@ethersproject/providers" "^5.7.2" + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + ethereum-cryptography "0.1.3" + "@nomicfoundation/ethereumjs-tx@5.0.2": version "5.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.2.tgz#117813b69c0fdc14dd0446698a64be6df71d7e56" @@ -1781,6 +1887,15 @@ "@nomicfoundation/ethereumjs-rlp" "4.0.3" ethereum-cryptography "0.1.3" +"@nomicfoundation/ethereumjs-util@9.0.1": + version "9.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz#530cda8bae33f8b5020a8f199ed1d0a2ce48ec89" + integrity sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA== + dependencies: + "@chainsafe/ssz" "^0.10.0" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + ethereum-cryptography "0.1.3" + "@nomicfoundation/ethereumjs-util@9.0.2": version "9.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.2.tgz#16bdc1bb36f333b8a3559bbb4b17dac805ce904d" @@ -1790,6 +1905,25 @@ "@nomicfoundation/ethereumjs-rlp" "5.0.2" ethereum-cryptography "0.1.3" +"@nomicfoundation/ethereumjs-vm@7.0.1": + version "7.0.1" + resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz#7d035e0993bcad10716c8b36e61dfb87fa3ca05f" + integrity sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ== + dependencies: + "@nomicfoundation/ethereumjs-block" "5.0.1" + "@nomicfoundation/ethereumjs-blockchain" "7.0.1" + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-evm" "2.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-statemanager" "2.0.1" + "@nomicfoundation/ethereumjs-trie" "6.0.1" + "@nomicfoundation/ethereumjs-tx" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + debug "^4.3.3" + ethereum-cryptography "0.1.3" + mcl-wasm "^0.7.1" + rustbn.js "~0.2.0" + "@nomicfoundation/ethereumjs-vm@7.0.2": version "7.0.2" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.2.tgz#3b0852cb3584df0e18c182d0672a3596c9ca95e6" @@ -7066,7 +7200,7 @@ hardhat-typechain@^0.3.3: resolved "https://registry.yarnpkg.com/hardhat-typechain/-/hardhat-typechain-0.3.5.tgz#8e50616a9da348b33bd001168c8fda9c66b7b4af" integrity sha512-w9lm8sxqTJACY+V7vijiH+NkPExnmtiQEjsV9JKD1KgMdVk2q8y+RhvU/c4B7+7b1+HylRUCxpOIvFuB3rE4+w== -hardhat@2.12.4, hardhat@=2.12.4: +hardhat@=2.12.4: version "2.12.4" resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.12.4.tgz#e539ba58bee9ba1a1ced823bfdcec0b3c5a3e70f" integrity sha512-rc9S2U/4M+77LxW1Kg7oqMMmjl81tzn5rNFARhbXKUA1am/nhfMJEujOjuKvt+ZGMiZ11PYSe8gyIpB/aRNDgw== @@ -7122,7 +7256,62 @@ hardhat@2.12.4, hardhat@=2.12.4: uuid "^8.3.2" ws "^7.4.6" -hardhat@^2.12.4: +hardhat@=2.16.0: + version "2.16.0" + resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.16.0.tgz#c5611d433416b31f6ce92f733b1f1b5236ad6230" + integrity sha512-7VQEJPQRAZdtrYUZaU9GgCpP3MBNy/pTdscARNJQMWKj5C+R7V32G5uIZKIqZ4QiqXa6CBfxxe+G+ahxUbHZHA== + dependencies: + "@ethersproject/abi" "^5.1.2" + "@metamask/eth-sig-util" "^4.0.0" + "@nomicfoundation/ethereumjs-block" "5.0.1" + "@nomicfoundation/ethereumjs-blockchain" "7.0.1" + "@nomicfoundation/ethereumjs-common" "4.0.1" + "@nomicfoundation/ethereumjs-evm" "2.0.1" + "@nomicfoundation/ethereumjs-rlp" "5.0.1" + "@nomicfoundation/ethereumjs-statemanager" "2.0.1" + "@nomicfoundation/ethereumjs-trie" "6.0.1" + "@nomicfoundation/ethereumjs-tx" "5.0.1" + "@nomicfoundation/ethereumjs-util" "9.0.1" + "@nomicfoundation/ethereumjs-vm" "7.0.1" + "@nomicfoundation/solidity-analyzer" "^0.1.0" + "@sentry/node" "^5.18.1" + "@types/bn.js" "^5.1.0" + "@types/lru-cache" "^5.1.0" + abort-controller "^3.0.0" + adm-zip "^0.4.16" + aggregate-error "^3.0.0" + ansi-escapes "^4.3.0" + chalk "^2.4.2" + chokidar "^3.4.0" + ci-info "^2.0.0" + debug "^4.1.1" + enquirer "^2.3.0" + env-paths "^2.2.0" + ethereum-cryptography "^1.0.3" + ethereumjs-abi "^0.6.8" + find-up "^2.1.0" + fp-ts "1.19.3" + fs-extra "^7.0.1" + glob "7.2.0" + immutable "^4.0.0-rc.12" + io-ts "1.10.4" + keccak "^3.0.2" + lodash "^4.17.11" + mnemonist "^0.38.0" + mocha "^10.0.0" + p-map "^4.0.0" + raw-body "^2.4.1" + resolve "1.17.0" + semver "^6.3.0" + solc "0.7.3" + source-map-support "^0.5.13" + stacktrace-parser "^0.1.10" + tsort "0.0.1" + undici "^5.14.0" + uuid "^8.3.2" + ws "^7.4.6" + +hardhat@^2.12.4, hardhat@^2.18.3: version "2.18.3" resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.18.3.tgz#8fd01348795c77086fff417a4d13c521dce28fcf" integrity sha512-JuYaTG+4ZHVjEHCW5Hn6jCHH3LpO75dtgznZpM/dLv12RcSlw/xHbeQh3FAsGahQr1epKryZcZEMHvztVZHe0g== From 1b9feae9ddb6ad3b4d7eb27b3d3e3f18d45ed2b0 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Wed, 1 Nov 2023 19:04:39 +0100 Subject: [PATCH 08/15] update scripts to use the correct facets --- contracts | 2 +- core/tests/upgrade-test/tests/upgrade.test.ts | 2 +- .../src/l1upgrade/deployer.ts | 10 ++-- .../protocol-upgrade/src/l1upgrade/facets.ts | 53 +++++-------------- 4 files changed, 19 insertions(+), 48 deletions(-) diff --git a/contracts b/contracts index 86f2436e0e91..5c10341d1ddc 160000 --- a/contracts +++ b/contracts @@ -1 +1 @@ -Subproject commit 86f2436e0e91f56eab2dfc97c2739cb1e46da120 +Subproject commit 5c10341d1ddcdf7d75b3928343ed484941ce0f42 diff --git a/core/tests/upgrade-test/tests/upgrade.test.ts b/core/tests/upgrade-test/tests/upgrade.test.ts index 42e15fd2333c..80e2c96c4b43 100644 --- a/core/tests/upgrade-test/tests/upgrade.test.ts +++ b/core/tests/upgrade-test/tests/upgrade.test.ts @@ -257,7 +257,7 @@ describe('Upgrade test', function () { // Run again. utils.background( - 'cd $ZKSYNC_HOME && cargo run --bin zksync_server --release -- --components=api,tree,eth,data_fetcher,state_keeper &>> upgrade.log', + 'cd $ZKSYNC_HOME && cargo run --bin zksync_server --release -- --components=api,tree,eth,data_fetcher,state_keeper &> upgrade.log', [null, logs, logs] ); await utils.sleep(10); diff --git a/infrastructure/protocol-upgrade/src/l1upgrade/deployer.ts b/infrastructure/protocol-upgrade/src/l1upgrade/deployer.ts index e0f8765ba21c..babcbb5b195f 100644 --- a/infrastructure/protocol-upgrade/src/l1upgrade/deployer.ts +++ b/infrastructure/protocol-upgrade/src/l1upgrade/deployer.ts @@ -7,8 +7,7 @@ export async function callFacetDeployer( create2Address: string, nonce: string, executor: boolean, - governance: boolean, - diamondCut: boolean, + admin: boolean, getters: boolean, mailbox: boolean, file: string @@ -19,11 +18,8 @@ export async function callFacetDeployer( if (executor) { argsString += ' --executor'; } - if (governance) { - argsString += ' --governance'; - } - if (diamondCut) { - argsString += ' --diamondCut'; + if (admin) { + argsString += ' --admin'; } if (getters) { argsString += ' --getters'; diff --git a/infrastructure/protocol-upgrade/src/l1upgrade/facets.ts b/infrastructure/protocol-upgrade/src/l1upgrade/facets.ts index 2d72fbd415bd..77dc913f7b91 100644 --- a/infrastructure/protocol-upgrade/src/l1upgrade/facets.ts +++ b/infrastructure/protocol-upgrade/src/l1upgrade/facets.ts @@ -13,19 +13,7 @@ async function deployAllFacets( environment: string ) { const file = getFacetsFileName(environment); - await callFacetDeployer( - l1RpcProvider, - privateKey, - gasPrice, - create2Address, - nonce, - true, - true, - true, - true, - true, - file - ); + await callFacetDeployer(l1RpcProvider, privateKey, gasPrice, create2Address, nonce, true, true, true, true, file); } async function deployFacetsAndMergeFiles( @@ -35,8 +23,7 @@ async function deployFacetsAndMergeFiles( create2Address: string, nonce: string, executor: boolean, - governance: boolean, - diamondCut: boolean, + admin: boolean, getters: boolean, mailbox: boolean, environment @@ -51,8 +38,7 @@ async function deployFacetsAndMergeFiles( create2Address, nonce, executor, - governance, - diamondCut, + admin, getters, mailbox, tmpFacetsFile @@ -77,9 +63,9 @@ async function generateFacetCuts(l1RpcProvider?: string, zksyncAddress?: string, if (gettersAddress) { gettersAddress = gettersAddress['address']; } - let diamondCutAddress = facets['DiamondCutFacet']; - if (diamondCutAddress) { - diamondCutAddress = diamondCutAddress['address']; + let adminAddress = facets['AdminFacet']; + if (adminAddress) { + adminAddress = adminAddress['address']; } let mailboxAddress = facets['MailboxFacet']; if (mailboxAddress) { @@ -89,20 +75,15 @@ async function generateFacetCuts(l1RpcProvider?: string, zksyncAddress?: string, if (executorAddress) { executorAddress = executorAddress['address']; } - let governanceAddress = facets['GovernanceFacet']; - if (governanceAddress) { - governanceAddress = governanceAddress['address']; - } await callGenerateFacetCuts( zksyncAddress, getFacetCutsFileName(environment), l1RpcProvider, - diamondCutAddress, + adminAddress, gettersAddress, mailboxAddress, - executorAddress, - governanceAddress + executorAddress ); } @@ -110,11 +91,10 @@ async function callGenerateFacetCuts( zksyncAddress: string, file: string, l1RpcProvider?: string, - diamondCutAddress?: string, + adminAddress?: string, gettersAddress?: string, mailboxAddress?: string, - executorAddress?: string, - governanceAddress?: string + executorAddress?: string ) { const cwd = process.cwd(); process.chdir(`${process.env.ZKSYNC_HOME}/contracts/ethereum/`); @@ -122,8 +102,8 @@ async function callGenerateFacetCuts( if (l1RpcProvider) { argsString += ` --l1Rpc ${l1RpcProvider}`; } - if (diamondCutAddress) { - argsString += ` --diamond-cut-facet-address ${diamondCutAddress}`; + if (adminAddress) { + argsString += ` --admin-address ${adminAddress}`; } if (gettersAddress) { argsString += ` --getters-address ${gettersAddress}`; @@ -134,9 +114,6 @@ async function callGenerateFacetCuts( if (executorAddress) { argsString += ` --executor-address ${executorAddress}`; } - if (governanceAddress) { - argsString += ` --governance-address ${governanceAddress}`; - } argsString += ` --zkSyncAddress ${zksyncAddress}`; argsString += ` --file ${file}`; @@ -196,8 +173,7 @@ command .option('--nonce ') .option('--l1rpc ') .option('--executor') - .option('--governance') - .option('--diamond-cut') + .option('--admin') .option('--getters') .option('--mailbox') .action(async (cmd) => { @@ -208,8 +184,7 @@ command cmd.create2Address, cmd.nonce, cmd.executor, - cmd.governance, - cmd.diamondCut, + cmd.admin, cmd.getters, cmd.mailbox, cmd.environment From 4787e86fd638ab4e44a690863e8c3d8669bccdd4 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Thu, 2 Nov 2023 17:33:37 +0100 Subject: [PATCH 09/15] nit for better compilation --- etc/system-contracts | 2 +- package.json | 1 + yarn.lock | 247 +++++++++++++++++++++++++++++++++++++++---- 3 files changed, 227 insertions(+), 23 deletions(-) diff --git a/etc/system-contracts b/etc/system-contracts index 1395b99b1add..db5bbad40b9d 160000 --- a/etc/system-contracts +++ b/etc/system-contracts @@ -1 +1 @@ -Subproject commit 1395b99b1addf4286e4c6dade886dc67d55b6407 +Subproject commit db5bbad40b9d2287b32871b7f55d09a87476c2d5 diff --git a/package.json b/package.json index 728d150d6196..fbd9f9303115 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "contracts/zksync", "etc/contracts-test-data", "etc/ERC20", + "etc/system-contracts", "infrastructure/zk", "infrastructure/local-setup-preparation", "core/tests/revert-test", diff --git a/yarn.lock b/yarn.lock index 84b7387d26f4..3402ed9dacb7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -314,6 +314,19 @@ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== +"@blakek/curry@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@blakek/curry/-/curry-2.0.2.tgz#979e927bcf5fa0426d2af681d7131df5791d1cd4" + integrity sha512-B/KkDnZqm9Y92LwETU80BaxbQ61bYTR2GaAY41mKisaICwBoC8lcuw7lwQLl52InMhviCTJBO39GJOA8d+BrVw== + +"@blakek/deep@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@blakek/deep/-/deep-2.2.0.tgz#eb97488e4a0943df4da09ad50efba4a98789f5e5" + integrity sha512-aRq/qF1yrlhCWNk2tI4epXNpo+cA8/MrxsR5oIkpKKNYtYOQKjAxRMbgnhASPx+b328MkDN+T706yFKJg8VZkQ== + dependencies: + "@blakek/curry" "^2.0.2" + pathington "^1.1.7" + "@chainsafe/as-sha256@^0.3.1": version "0.3.1" resolved "https://registry.yarnpkg.com/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz#3639df0e1435cab03f4d9870cc3ac079e57a6fc9" @@ -1499,6 +1512,11 @@ resolved "https://registry.yarnpkg.com/@matterlabs/eslint-config-typescript/-/eslint-config-typescript-1.1.2.tgz#a9be4e56aedf298800f247c5049fc412f8b301a7" integrity sha512-AhiWJQr+MSE3RVfgp5XwGoMK7kNSKh6a18+T7hkNJtyycP0306I6IGmuFA5ZVbcakGb+K32fQWzepSkrNCTAGg== +"@matterlabs/hardhat-zksync-chai-matchers@^0.1.4": + version "0.1.4" + resolved "https://registry.yarnpkg.com/@matterlabs/hardhat-zksync-chai-matchers/-/hardhat-zksync-chai-matchers-0.1.4.tgz#105cb0ec1367c8fcd3ce7e3773f747c71fff675b" + integrity sha512-eGQWiImg51fmayoQ7smIK/T6QZkSu38PK7xjp1RIrewGzw2ZgqFWGp40jb5oomkf8yOQPk52Hu4TwE3Ntp8CtA== + "@matterlabs/hardhat-zksync-deploy@^0.6.1", "@matterlabs/hardhat-zksync-deploy@^0.6.5": version "0.6.5" resolved "https://registry.yarnpkg.com/@matterlabs/hardhat-zksync-deploy/-/hardhat-zksync-deploy-0.6.5.tgz#fe56bf30850e71c8d328ac1a06a100c1a0af6e3e" @@ -1519,7 +1537,7 @@ fs-extra "^11.1.1" semver "^7.5.1" -"@matterlabs/hardhat-zksync-solc@0.4.2": +"@matterlabs/hardhat-zksync-solc@0.4.2", "@matterlabs/hardhat-zksync-solc@^0.4.2": version "0.4.2" resolved "https://registry.yarnpkg.com/@matterlabs/hardhat-zksync-solc/-/hardhat-zksync-solc-0.4.2.tgz#64121082e88c5ab22eb4e9594d120e504f6af499" integrity sha512-6NFWPSZiOAoo7wNuhMg4ztj7mMEH+tLrx09WuCbcURrHPijj/KxYNsJD6Uw5lapKr7G8H7SQISGid1/MTXVmXQ== @@ -2026,7 +2044,7 @@ mcl-wasm "^0.7.1" rustbn.js "~0.2.0" -"@nomicfoundation/hardhat-chai-matchers@^1.0.6": +"@nomicfoundation/hardhat-chai-matchers@^1.0.3", "@nomicfoundation/hardhat-chai-matchers@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-1.0.6.tgz#72a2e312e1504ee5dd73fe302932736432ba96bc" integrity sha512-f5ZMNmabZeZegEfuxn/0kW+mm7+yV7VNDxLpMOMGXWFJ2l/Ct3QShujzDRF9cOkK9Ui/hbDeOWGZqyQALDXVCQ== @@ -2135,7 +2153,7 @@ fs-extra "^7.0.1" node-fetch "^2.6.0" -"@nomiclabs/hardhat-ethers@^2.0.0": +"@nomiclabs/hardhat-ethers@^2.0.0", "@nomiclabs/hardhat-ethers@^2.0.6": version "2.2.3" resolved "https://registry.yarnpkg.com/@nomiclabs/hardhat-ethers/-/hardhat-ethers-2.2.3.tgz#b41053e360c31a32c2640c9a45ee981a7e603fe0" integrity sha512-YhzPdzb612X591FOe68q+qXVXGG2ANZRvDo0RRUtimev85rCrAlv/TLMEZw5c+kq9AbzocLTVX/h2jVIFPL9Xg== @@ -2156,7 +2174,7 @@ table "^6.8.0" undici "^5.14.0" -"@nomiclabs/hardhat-solpp@^2.0.0": +"@nomiclabs/hardhat-solpp@^2.0.0", "@nomiclabs/hardhat-solpp@^2.0.1": version "2.0.1" resolved "https://registry.yarnpkg.com/@nomiclabs/hardhat-solpp/-/hardhat-solpp-2.0.1.tgz#04039b3745b8d2b48c9b8bec6509e9785631aaba" integrity sha512-aWYvB91GPJcnye4Ph26Jd9BfBNNisI1iRNSbHB2i09OpxucSHAPMvvqTfWDN1HE5EMjqlTJ2rQLdlDcYqQxPJw== @@ -2438,6 +2456,14 @@ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== +"@typechain/ethers-v5@^10.0.0": + version "10.2.1" + resolved "https://registry.yarnpkg.com/@typechain/ethers-v5/-/ethers-v5-10.2.1.tgz#50241e6957683281ecfa03fb5a6724d8a3ce2391" + integrity sha512-n3tQmCZjRE6IU4h6lqUGiQ1j866n5MTCBJreNEHHVWXa2u9GJTaeYyU1/k+1qLutkyw+sS6VAN+AbeiTqsxd/A== + dependencies: + lodash "^4.17.15" + ts-essentials "^7.0.1" + "@typechain/ethers-v5@^2.0.0": version "2.0.0" resolved "https://registry.yarnpkg.com/@typechain/ethers-v5/-/ethers-v5-2.0.0.tgz#cd3ca1590240d587ca301f4c029b67bfccd08810" @@ -2445,6 +2471,13 @@ dependencies: ethers "^5.0.2" +"@typechain/hardhat@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@typechain/hardhat/-/hardhat-7.0.0.tgz#ffa7465328150e793007fee616ae7b76ed20784d" + integrity sha512-XB79i5ewg9Met7gMVGfgVkmypicbnI25T5clJBEooMoW2161p4zvKFpoS2O+lBppQyMrPIZkdvl2M3LMDayVcA== + dependencies: + fs-extra "^9.1.0" + "@types/argparse@^1.0.36": version "1.0.38" resolved "https://registry.yarnpkg.com/@types/argparse/-/argparse-1.0.38.tgz#a81fd8606d481f873a3800c6ebae4f1d768a56a9" @@ -2521,7 +2554,7 @@ dependencies: "@types/chai" "*" -"@types/chai@*", "@types/chai@^4.2.21": +"@types/chai@*", "@types/chai@^4.2.21", "@types/chai@^4.3.1": version "4.3.9" resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.9.tgz#144d762491967db8c6dea38e03d2206c2623feec" integrity sha512-69TtiDzu0bcmKQv3yg1Zx409/Kd7r0b5F1PfpYJfSHzLGtB53547V4u+9iqKYsTu/O2ai6KTb0TInNpvuQ3qmg== @@ -2614,6 +2647,11 @@ dependencies: "@types/node" "*" +"@types/lodash@^4.14.199": + version "4.14.200" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.200.tgz#435b6035c7eba9cdf1e039af8212c9e9281e7149" + integrity sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q== + "@types/lru-cache@^5.1.0": version "5.1.1" resolved "https://registry.yarnpkg.com/@types/lru-cache/-/lru-cache-5.1.1.tgz#c48c2e27b65d2a153b19bfc1a317e30872e01eef" @@ -2648,6 +2686,11 @@ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.2.3.tgz#bbeb55fbc73f28ea6de601fbfa4613f58d785323" integrity sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw== +"@types/mocha@^9.1.1": + version "9.1.1" + resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4" + integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw== + "@types/node-fetch@^2.5.5", "@types/node-fetch@^2.5.7": version "2.6.7" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.7.tgz#a1abe2ce24228b58ad97f99480fdcf9bbc6ab16d" @@ -2678,6 +2721,11 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.63.tgz#1788fa8da838dbb5f9ea994b834278205db6ca2b" integrity sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ== +"@types/node@^17.0.34": + version "17.0.45" + resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" + integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== + "@types/node@^8.0.0": version "8.10.66" resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.66.tgz#dd035d409df322acc83dff62a602f12a5783bbb3" @@ -3231,6 +3279,16 @@ array-back@^2.0.0: dependencies: typical "^2.6.1" +array-back@^3.0.1, array-back@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/array-back/-/array-back-3.1.0.tgz#b8859d7a508871c9a7b2cf42f99428f65e96bfb0" + integrity sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q== + +array-back@^4.0.1, array-back@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/array-back/-/array-back-4.0.2.tgz#8004e999a6274586beeb27342168652fdb89fa1e" + integrity sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg== + array-buffer-byte-length@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" @@ -4600,7 +4658,7 @@ chai-as-promised@^7.1.1: dependencies: check-error "^1.0.2" -chai@^4.3.4: +chai@^4.3.4, chai@^4.3.6: version "4.3.10" resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.10.tgz#d784cec635e3b7e2ffb66446a63b4e33bd390384" integrity sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g== @@ -4910,6 +4968,26 @@ command-line-args@^4.0.7: find-replace "^1.0.3" typical "^2.6.1" +command-line-args@^5.1.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.2.1.tgz#c44c32e437a57d7c51157696893c5909e9cec42e" + integrity sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg== + dependencies: + array-back "^3.1.0" + find-replace "^3.0.0" + lodash.camelcase "^4.3.0" + typical "^4.0.0" + +command-line-usage@^6.1.0: + version "6.1.3" + resolved "https://registry.yarnpkg.com/command-line-usage/-/command-line-usage-6.1.3.tgz#428fa5acde6a838779dfa30e44686f4b6761d957" + integrity sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw== + dependencies: + array-back "^4.0.2" + chalk "^2.4.2" + table-layout "^1.0.2" + typical "^5.2.0" + commander@3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/commander/-/commander-3.0.2.tgz#6837c3fb677ad9933d1cfba42dd14d5117d6b39e" @@ -4935,6 +5013,11 @@ commander@^8.1.0, commander@^8.3.0: resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== +commander@^9.4.1: + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== + commander@~2.9.0: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" @@ -5291,7 +5374,7 @@ deep-equal@~1.1.1: object-keys "^1.1.1" regexp.prototype.flags "^1.2.0" -deep-extend@^0.6.0: +deep-extend@^0.6.0, deep-extend@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== @@ -6998,6 +7081,13 @@ find-replace@^1.0.3: array-back "^1.0.4" test-value "^2.1.0" +find-replace@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-3.0.0.tgz#3e7e23d3b05167a76f770c9fbd5258b0def68c38" + integrity sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ== + dependencies: + array-back "^3.0.1" + find-up@5.0.0, find-up@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" @@ -7196,7 +7286,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0: +fs-extra@^9.0.0, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -7413,6 +7503,18 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" +glob@7.1.7, glob@~7.1.2: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + glob@7.2.0: version "7.2.0" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" @@ -7436,7 +7538,7 @@ glob@^5.0.15: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.0, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@~7.2.3: +glob@^7.0.0, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.2.3: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -7459,18 +7561,6 @@ glob@^8.0.3: minimatch "^5.0.1" once "^1.3.0" -glob@~7.1.2: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - glob@~8.0.3: version "8.0.3" resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" @@ -9589,6 +9679,11 @@ lodash.assign@^4.0.3, lodash.assign@^4.0.6: resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw== +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + lodash.clonedeep@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" @@ -10172,6 +10267,11 @@ mkdirp@0.5.x, mkdirp@^0.5.1, mkdirp@^0.5.5: dependencies: minimist "^1.2.6" +mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + mkdirp@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.6.tgz#964fbcb12b2d8c5d6fbc62a963ac95a273e2cc19" @@ -10782,6 +10882,13 @@ p-limit@^3.0.2, p-limit@^3.1.0: dependencies: yocto-queue "^0.1.0" +p-limit@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" + integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== + dependencies: + yocto-queue "^1.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -11007,6 +11114,11 @@ path@^0.12.7: process "^0.11.1" util "^0.10.3" +pathington@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/pathington/-/pathington-1.1.7.tgz#caf2d2db899a31fea4e81e3657af6acde5171903" + integrity sha512-JxzhUzagDfNIOm4qqwQqP3rWeo7rNNOfIahy4n+3GTEdwXLqw5cJHUR0soSopQtNEv763lzxb6eA2xBllpR8zw== + pathval@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" @@ -11242,6 +11354,13 @@ prepend-http@^2.0.0: resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== +preprocess@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/preprocess/-/preprocess-3.2.0.tgz#36b3e2c52331fbc6fabb26d4fd5709304b7e3675" + integrity sha512-cO+Rf+Ose/eD+ze8Hxd9p9nS1xT8thYqv8owG/V8+IS/Remd7Z17SvaRK/oJxp08yaM8zb+QTckDKJUul2pk7g== + dependencies: + xregexp "3.1.0" + prettier-linter-helpers@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" @@ -11270,7 +11389,7 @@ prettier-plugin-solidity@^1.1.3: semver "^7.3.8" solidity-comments-extractor "^0.0.7" -prettier@^2.1.2, prettier@^2.3.2, prettier@^2.8.3: +prettier@^2.1.2, prettier@^2.3.1, prettier@^2.3.2, prettier@^2.8.3: version "2.8.8" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== @@ -11652,6 +11771,11 @@ recursive-readdir@^2.2.2: dependencies: minimatch "^3.0.5" +reduce-flatten@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-2.0.0.tgz#734fd84e65f375d7ca4465c69798c25c9d10ae27" + integrity sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w== + regenerate@^1.2.1: version "1.4.2" resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" @@ -12628,6 +12752,11 @@ strict-uri-encode@^1.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== +string-format@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-format/-/string-format-2.0.0.tgz#f2df2e7097440d3b65de31b6d40d54c96eaffb9b" + integrity sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA== + string-length@^4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" @@ -12868,6 +12997,16 @@ synckit@^0.8.5: "@pkgr/utils" "^2.3.1" tslib "^2.5.0" +table-layout@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/table-layout/-/table-layout-1.0.2.tgz#c4038a1853b0136d63365a734b6931cf4fad4a04" + integrity sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A== + dependencies: + array-back "^4.0.1" + deep-extend "~0.6.0" + typical "^5.2.0" + wordwrapjs "^4.0.0" + table@^6.0.9, table@^6.8.0, table@^6.8.1: version "6.8.1" resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" @@ -12975,6 +13114,16 @@ tar@^4.0.2: safe-buffer "^5.2.1" yallist "^3.1.1" +template-file@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/template-file/-/template-file-6.0.1.tgz#ce4d1f48e56d637cc94bb97ec205e6e035bbb2a5" + integrity sha512-02hOa1psJUOsahWfx8w3p40CCulA2/InNFFPh5xLq5rUUm2XTzvmtOn/SXV+KZaq7ylG58SYSnT4yW3y/Smn4w== + dependencies: + "@blakek/deep" "^2.2.0" + glob "^7.1.6" + mkdirp "^1.0.4" + p-limit "^4.0.0" + test-exclude@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" @@ -13160,6 +13309,16 @@ ts-api-utils@^1.0.1: resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== +ts-command-line-args@^2.2.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/ts-command-line-args/-/ts-command-line-args-2.5.1.tgz#e64456b580d1d4f6d948824c274cf6fa5f45f7f0" + integrity sha512-H69ZwTw3rFHb5WYpQya40YAX2/w7Ut75uUECbgBIsLmM+BNuYnxsltfyyLMxy6sEeKxgijLTnQtLd0nKd6+IYw== + dependencies: + chalk "^4.1.0" + command-line-args "^5.1.1" + command-line-usage "^6.1.0" + string-format "^2.0.0" + ts-essentials@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-1.0.4.tgz#ce3b5dade5f5d97cf69889c11bf7d2da8555b15a" @@ -13363,6 +13522,22 @@ typechain@^4.0.0: ts-essentials "^7.0.1" ts-generator "^0.1.1" +typechain@^8.1.1: + version "8.3.2" + resolved "https://registry.yarnpkg.com/typechain/-/typechain-8.3.2.tgz#1090dd8d9c57b6ef2aed3640a516bdbf01b00d73" + integrity sha512-x/sQYr5w9K7yv3es7jo4KTX05CLxOf7TRWwoHlrjRh8H82G64g+k7VuWPJlgMo6qrjfCulOdfBjiaDtmhFYD/Q== + dependencies: + "@types/prettier" "^2.1.1" + debug "^4.3.1" + fs-extra "^7.0.0" + glob "7.1.7" + js-sha3 "^0.8.0" + lodash "^4.17.15" + mkdirp "^1.0.4" + prettier "^2.3.1" + ts-command-line-args "^2.2.0" + ts-essentials "^7.0.1" + typed-array-buffer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" @@ -13446,6 +13621,16 @@ typical@^2.6.0, typical@^2.6.1: resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d" integrity sha512-ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg== +typical@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/typical/-/typical-4.0.0.tgz#cbeaff3b9d7ae1e2bbfaf5a4e6f11eccfde94fc4" + integrity sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw== + +typical@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/typical/-/typical-5.2.0.tgz#4daaac4f2b5315460804f0acf6cb69c52bb93066" + integrity sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== + uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" @@ -14073,6 +14258,14 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== +wordwrapjs@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/wordwrapjs/-/wordwrapjs-4.0.1.tgz#d9790bccfb110a0fc7836b5ebce0937b37a8b98f" + integrity sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA== + dependencies: + reduce-flatten "^2.0.0" + typical "^5.2.0" + workerpool@6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" @@ -14181,6 +14374,11 @@ xhr@^2.0.4, xhr@^2.2.0, xhr@^2.3.3: parse-headers "^2.0.0" xtend "^4.0.0" +xregexp@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-3.1.0.tgz#14d8461e0bdd38224bfee5039a0898fc42fcd336" + integrity sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg== + xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" @@ -14312,6 +14510,11 @@ yocto-queue@^0.1.0: resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== +yocto-queue@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== + zksync-web3@^0.14.3: version "0.14.3" resolved "https://registry.yarnpkg.com/zksync-web3/-/zksync-web3-0.14.3.tgz#64ac2a16d597464c3fc4ae07447a8007631c57c9" From 041a67dafaac3f9ee64aa924deebfd08f2e02d4e Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Thu, 2 Nov 2023 17:45:53 +0100 Subject: [PATCH 10/15] fix unit tests --- .../src/versions/vm_latest/tests/upgrade.rs | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/core/lib/multivm/src/versions/vm_latest/tests/upgrade.rs b/core/lib/multivm/src/versions/vm_latest/tests/upgrade.rs index dd8554fbd230..94b6335f67c8 100644 --- a/core/lib/multivm/src/versions/vm_latest/tests/upgrade.rs +++ b/core/lib/multivm/src/versions/vm_latest/tests/upgrade.rs @@ -34,6 +34,10 @@ fn test_protocol_upgrade_is_first() { .build(); let bytecode_hash = hash_bytecode(&read_test_contract()); + vm.vm + .storage + .borrow_mut() + .set_value(get_known_code_key(&bytecode_hash), u256_to_h256(1.into())); // Here we just use some random transaction of protocol upgrade type: let protocol_upgrade_transaction = get_forced_deploy_tx(&[ForceDeployment { @@ -49,6 +53,20 @@ fn test_protocol_upgrade_is_first() { input: vec![], }]); + // Another random upgrade transaction + let another_protocol_upgrade_transaction = get_forced_deploy_tx(&[ForceDeployment { + // The bytecode hash to put on an address + bytecode_hash, + // The address on which to deploy the bytecodehash to + address: H160::random(), + // Whether to run the constructor on the force deployment + call_constructor: false, + // The value with which to initialize a contract + value: U256::zero(), + // The constructor calldata + input: vec![], + }]); + let normal_l1_transaction = vm.rich_accounts[0] .get_deploy_tx(&read_test_contract(), None, TxType::L1 { serial_id: 0 }) .tx; @@ -60,7 +78,7 @@ fn test_protocol_upgrade_is_first() { // Test 1: there must be only one system transaction in block vm.vm.push_transaction(protocol_upgrade_transaction.clone()); vm.vm.push_transaction(normal_l1_transaction.clone()); - vm.vm.push_transaction(protocol_upgrade_transaction.clone()); + vm.vm.push_transaction(another_protocol_upgrade_transaction); vm.vm.execute(VmExecutionMode::OneTx); vm.vm.execute(VmExecutionMode::OneTx); From f3532adfa6f1626d29aa24991e591bee0b5974da Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Fri, 3 Nov 2023 00:49:03 +0100 Subject: [PATCH 11/15] update hardhat package everywhere --- core/tests/ts-integration/package.json | 2 +- etc/ERC20/package.json | 2 +- etc/contracts-test-data/package.json | 2 +- infrastructure/protocol-upgrade/package.json | 2 +- infrastructure/zk/package.json | 2 +- yarn.lock | 214 +------------------ 6 files changed, 12 insertions(+), 212 deletions(-) diff --git a/core/tests/ts-integration/package.json b/core/tests/ts-integration/package.json index a4fe50beadcc..fe4ff18fcd78 100644 --- a/core/tests/ts-integration/package.json +++ b/core/tests/ts-integration/package.json @@ -23,7 +23,7 @@ "chalk": "^4.0.0", "ethereumjs-abi": "^0.6.8", "ethers": "~5.7.0", - "hardhat": "^2.12.4", + "hardhat": "=2.16.0", "jest": "^29.0.3", "jest-matcher-utils": "^29.0.3", "node-fetch": "^2.6.1", diff --git a/etc/ERC20/package.json b/etc/ERC20/package.json index 8a93f842e20c..502aa873da56 100644 --- a/etc/ERC20/package.json +++ b/etc/ERC20/package.json @@ -6,7 +6,7 @@ "devDependencies": { "@matterlabs/hardhat-zksync-deploy": "^0.6.1", "@matterlabs/hardhat-zksync-solc": "0.4.2", - "hardhat": "^2.12.4" + "hardhat": "=2.16.0" }, "scripts": { "build": "hardhat compile" diff --git a/etc/contracts-test-data/package.json b/etc/contracts-test-data/package.json index f76efbbf99e5..e5d278874a55 100644 --- a/etc/contracts-test-data/package.json +++ b/etc/contracts-test-data/package.json @@ -4,7 +4,7 @@ "license": "MIT", "dependencies": { "@openzeppelin/contracts": "^4.8.0", - "hardhat": "^2.12.4" + "hardhat": "=2.16.0" }, "devDependencies": { "@matterlabs/hardhat-zksync-solc": "^0.3.15" diff --git a/infrastructure/protocol-upgrade/package.json b/infrastructure/protocol-upgrade/package.json index e49df2d0888b..00ed57e05de8 100644 --- a/infrastructure/protocol-upgrade/package.json +++ b/infrastructure/protocol-upgrade/package.json @@ -20,7 +20,7 @@ "@types/node": "^14.6.1", "@types/node-fetch": "^2.5.7", "@types/tabtab": "^3.0.1", - "hardhat": "=2.12.4", + "hardhat": "=2.16.0", "typescript": "^4.3.5", "l2-zksync-contracts": "link:../../contracts/zksync", "l1-zksync-contracts": "link:../../contracts/ethereum", diff --git a/infrastructure/zk/package.json b/infrastructure/zk/package.json index 4f6855a1e60d..2240c96a2b72 100644 --- a/infrastructure/zk/package.json +++ b/infrastructure/zk/package.json @@ -29,7 +29,7 @@ "@types/node-fetch": "^2.5.7", "@types/pg": "^8.10.3", "@types/tabtab": "^3.0.1", - "hardhat": "=2.12.4", + "hardhat": "=2.16.0", "typescript": "^4.3.5" } } \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 3402ed9dacb7..6de1b38f7e78 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1644,18 +1644,6 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@nomicfoundation/ethereumjs-block@4.2.2", "@nomicfoundation/ethereumjs-block@^4.0.0": - version "4.2.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-4.2.2.tgz#f317078c810a54381c682d0c12e1e81acfc11599" - integrity sha512-atjpt4gc6ZGZUPHBAQaUJsm1l/VCo7FmyQ780tMGO8QStjLdhz09dXynmhwVTy5YbRr0FOh/uX3QaEM0yIB2Zg== - dependencies: - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-trie" "5.0.5" - "@nomicfoundation/ethereumjs-tx" "4.1.2" - "@nomicfoundation/ethereumjs-util" "8.0.6" - ethereum-cryptography "0.1.3" - "@nomicfoundation/ethereumjs-block@5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz#6f89664f55febbd723195b6d0974773d29ee133d" @@ -1682,24 +1670,6 @@ ethereum-cryptography "0.1.3" ethers "^5.7.1" -"@nomicfoundation/ethereumjs-blockchain@6.2.2", "@nomicfoundation/ethereumjs-blockchain@^6.0.0": - version "6.2.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-6.2.2.tgz#9f79dd2b3dc73f5d5a220f7d8a734330c4c26320" - integrity sha512-6AIB2MoTEPZJLl6IRKcbd8mUmaBAQ/NMe3O7OsAOIiDjMNPPH5KaUQiLfbVlegT4wKIg/GOsFH7XlH2KDVoJNg== - dependencies: - "@nomicfoundation/ethereumjs-block" "4.2.2" - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-ethash" "2.0.5" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-trie" "5.0.5" - "@nomicfoundation/ethereumjs-util" "8.0.6" - abstract-level "^1.0.3" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - level "^8.0.0" - lru-cache "^5.1.1" - memory-level "^1.0.0" - "@nomicfoundation/ethereumjs-blockchain@7.0.1": version "7.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz#80e0bd3535bfeb9baa29836b6f25123dab06a726" @@ -1738,14 +1708,6 @@ lru-cache "^5.1.1" memory-level "^1.0.0" -"@nomicfoundation/ethereumjs-common@3.1.2", "@nomicfoundation/ethereumjs-common@^3.0.0": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-3.1.2.tgz#041086da66ed40f2bf2a2116a1f2f0fcf33fb80d" - integrity sha512-JAEBpIua62dyObHM9KI2b4wHZcRQYYge9gxiygTWa3lNCr2zo+K0TbypDpgiNij5MCGNWP1eboNfNfx1a3vkvA== - dependencies: - "@nomicfoundation/ethereumjs-util" "8.0.6" - crc-32 "^1.2.0" - "@nomicfoundation/ethereumjs-common@4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz#4702d82df35b07b5407583b54a45bf728e46a2f0" @@ -1762,18 +1724,6 @@ "@nomicfoundation/ethereumjs-util" "9.0.2" crc-32 "^1.2.0" -"@nomicfoundation/ethereumjs-ethash@2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-2.0.5.tgz#0c605812f6f4589a9f6d597db537bbf3b86469db" - integrity sha512-xlLdcICGgAYyYmnI3r1t0R5fKGBJNDQSOQxXNjVO99JmxJIdXR5MgPo5CSJO1RpyzKOgzi3uIFn8agv564dZEQ== - dependencies: - "@nomicfoundation/ethereumjs-block" "4.2.2" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-util" "8.0.6" - abstract-level "^1.0.3" - bigint-crypto-utils "^3.0.23" - ethereum-cryptography "0.1.3" - "@nomicfoundation/ethereumjs-ethash@3.0.1": version "3.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz#65ca494d53e71e8415c9a49ef48bc921c538fc41" @@ -1798,20 +1748,6 @@ bigint-crypto-utils "^3.0.23" ethereum-cryptography "0.1.3" -"@nomicfoundation/ethereumjs-evm@1.3.2", "@nomicfoundation/ethereumjs-evm@^1.0.0": - version "1.3.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-1.3.2.tgz#f9d6bafd5c23d07ab75b8649d589af1a43b60bfc" - integrity sha512-I00d4MwXuobyoqdPe/12dxUQxTYzX8OckSaWsMcWAfQhgVDvBx6ffPyP/w1aL0NW7MjyerySPcSVfDJAMHjilw== - dependencies: - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-util" "8.0.6" - "@types/async-eventemitter" "^0.2.1" - async-eventemitter "^0.2.4" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - mcl-wasm "^0.7.1" - rustbn.js "~0.2.0" - "@nomicfoundation/ethereumjs-evm@2.0.1": version "2.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz#f35681e203363f69ce2b3d3bf9f44d4e883ca1f1" @@ -1840,11 +1776,6 @@ mcl-wasm "^0.7.1" rustbn.js "~0.2.0" -"@nomicfoundation/ethereumjs-rlp@4.0.3", "@nomicfoundation/ethereumjs-rlp@^4.0.0": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-4.0.3.tgz#8d9147fbd0d49e8f4c5ce729d226694a8fe03eb8" - integrity sha512-DZMzB/lqPK78T6MluyXqtlRmOMcsZbTTbbEyAjo0ncaff2mqu/k8a79PBcyvpgAhWD/R59Fjq/x3ro5Lof0AtA== - "@nomicfoundation/ethereumjs-rlp@5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz#0b30c1cf77d125d390408e391c4bb5291ef43c28" @@ -1855,19 +1786,6 @@ resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.2.tgz#4fee8dc58a53ac6ae87fb1fca7c15dc06c6b5dea" integrity sha512-QwmemBc+MMsHJ1P1QvPl8R8p2aPvvVcKBbvHnQOKBpBztEo0omN0eaob6FeZS/e3y9NSe+mfu3nNFBHszqkjTA== -"@nomicfoundation/ethereumjs-statemanager@1.0.5", "@nomicfoundation/ethereumjs-statemanager@^1.0.0": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-1.0.5.tgz#951cc9ff2c421d40233d2e9d0fe033db2391ee44" - integrity sha512-CAhzpzTR5toh/qOJIZUUOnWekUXuRqkkzaGAQrVcF457VhtCmr+ddZjjK50KNZ524c1XP8cISguEVNqJ6ij1sA== - dependencies: - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-trie" "5.0.5" - "@nomicfoundation/ethereumjs-util" "8.0.6" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - functional-red-black-tree "^1.0.1" - "@nomicfoundation/ethereumjs-statemanager@2.0.1": version "2.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz#8824a97938db4471911e2d2f140f79195def5935" @@ -1892,16 +1810,6 @@ ethers "^5.7.1" js-sdsl "^4.1.4" -"@nomicfoundation/ethereumjs-trie@5.0.5", "@nomicfoundation/ethereumjs-trie@^5.0.0": - version "5.0.5" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-5.0.5.tgz#bf31c9306dcbba2007fad668e96109ddb147040c" - integrity sha512-+8sNZrXkzvA1NH5F4kz5RSYl1I6iaRz7mAZRsyxOm0IVY4UaP43Ofvfp/TwOalFunurQrYB5pRO40+8FBcxFMA== - dependencies: - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-util" "8.0.6" - ethereum-cryptography "0.1.3" - readable-stream "^3.6.0" - "@nomicfoundation/ethereumjs-trie@6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz#662c55f6b50659fd4b22ea9f806a7401cafb7717" @@ -1924,16 +1832,6 @@ ethereum-cryptography "0.1.3" readable-stream "^3.6.0" -"@nomicfoundation/ethereumjs-tx@4.1.2", "@nomicfoundation/ethereumjs-tx@^4.0.0": - version "4.1.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-4.1.2.tgz#8659fad7f9094b7eb82aa6cc3c8097cb1c42ff31" - integrity sha512-emJBJZpmTdUa09cqxQqHaysbBI9Od353ZazeH7WgPb35miMgNY6mb7/3vBA98N5lUW/rgkiItjX0KZfIzihSoQ== - dependencies: - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-util" "8.0.6" - ethereum-cryptography "0.1.3" - "@nomicfoundation/ethereumjs-tx@5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz#7629dc2036b4a33c34e9f0a592b43227ef4f0c7d" @@ -1958,14 +1856,6 @@ "@nomicfoundation/ethereumjs-util" "9.0.2" ethereum-cryptography "0.1.3" -"@nomicfoundation/ethereumjs-util@8.0.6", "@nomicfoundation/ethereumjs-util@^8.0.0": - version "8.0.6" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-8.0.6.tgz#dbce5d258b017b37aa58b3a7c330ad59d10ccf0b" - integrity sha512-jOQfF44laa7xRfbfLXojdlcpkvxeHrE2Xu7tSeITsWFgoII163MzjOwFEzSNozHYieFysyoEMhCdP+NY5ikstw== - dependencies: - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - ethereum-cryptography "0.1.3" - "@nomicfoundation/ethereumjs-util@9.0.1": version "9.0.1" resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz#530cda8bae33f8b5020a8f199ed1d0a2ce48ec89" @@ -2022,28 +1912,6 @@ mcl-wasm "^0.7.1" rustbn.js "~0.2.0" -"@nomicfoundation/ethereumjs-vm@^6.0.0": - version "6.4.2" - resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-6.4.2.tgz#af1cf62e6c0054bc2b7febc8556d032433d1b18c" - integrity sha512-PRTyxZMP6kx+OdAzBhuH1LD2Yw+hrSpaytftvaK//thDy2OI07S0nrTdbrdk7b8ZVPAc9H9oTwFBl3/wJ3w15g== - dependencies: - "@nomicfoundation/ethereumjs-block" "4.2.2" - "@nomicfoundation/ethereumjs-blockchain" "6.2.2" - "@nomicfoundation/ethereumjs-common" "3.1.2" - "@nomicfoundation/ethereumjs-evm" "1.3.2" - "@nomicfoundation/ethereumjs-rlp" "4.0.3" - "@nomicfoundation/ethereumjs-statemanager" "1.0.5" - "@nomicfoundation/ethereumjs-trie" "5.0.5" - "@nomicfoundation/ethereumjs-tx" "4.1.2" - "@nomicfoundation/ethereumjs-util" "8.0.6" - "@types/async-eventemitter" "^0.2.1" - async-eventemitter "^0.2.4" - debug "^4.3.3" - ethereum-cryptography "0.1.3" - functional-red-black-tree "^1.0.1" - mcl-wasm "^0.7.1" - rustbn.js "~0.2.0" - "@nomicfoundation/hardhat-chai-matchers@^1.0.3", "@nomicfoundation/hardhat-chai-matchers@^1.0.6": version "1.0.6" resolved "https://registry.yarnpkg.com/@nomicfoundation/hardhat-chai-matchers/-/hardhat-chai-matchers-1.0.6.tgz#72a2e312e1504ee5dd73fe302932736432ba96bc" @@ -2483,13 +2351,6 @@ resolved "https://registry.yarnpkg.com/@types/argparse/-/argparse-1.0.38.tgz#a81fd8606d481f873a3800c6ebae4f1d768a56a9" integrity sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA== -"@types/async-eventemitter@^0.2.1": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@types/async-eventemitter/-/async-eventemitter-0.2.3.tgz#a825a14f9e0a95edb078a49d3533ee3441591cde" - integrity sha512-QHcih+LsYHY+ODMMTh1BoBC2f95HqkFzf7aEnre9xxkroCglpix7ZGKZI56AnwAipNoHLbIs4Ft9xTB5LFYslQ== - dependencies: - "@types/events" "*" - "@types/babel__core@^7.1.14": version "7.20.3" resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.3.tgz#d5625a50b6f18244425a1359a858c73d70340778" @@ -2571,11 +2432,6 @@ resolved "https://registry.yarnpkg.com/@types/deep-extend/-/deep-extend-0.4.32.tgz#0af51fffde55cb168e8d68f8236908c2cdfe7419" integrity sha512-7/pcMJr5I5OnpWTTfv0o3fJ9+f36EqoQa27/oJlbfvfZAMMrPyU5/+AUC+5OOtTEKdyoW4lAeIBYHtodtEdNUA== -"@types/events@*": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.2.tgz#c9b18152fdac34e924260532762255e34ef1d491" - integrity sha512-v4Mr60wJuF069iZZCdY5DKhfj0l6eXNJtbSM/oMDNdRLoBEUsktmKnswkz0X3OAic5W8Qy/YU6owKE4A66Y46A== - "@types/form-data@0.0.33": version "0.0.33" resolved "https://registry.yarnpkg.com/@types/form-data/-/form-data-0.0.33.tgz#c9ac85b2a5fd18435b8c85d9ecb50e6d6c893ff8" @@ -3430,7 +3286,7 @@ astral-regex@^2.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== -async-eventemitter@^0.2.2, async-eventemitter@^0.2.4: +async-eventemitter@^0.2.2: version "0.2.4" resolved "https://registry.yarnpkg.com/async-eventemitter/-/async-eventemitter-0.2.4.tgz#f5e7c8ca7d3e46aab9ec40a292baf686a0bafaca" integrity sha512-pd20BwL7Yt1zwDFy+8MX8F1+WCT8aQeKj0kQnTrH9WaeRETlRamVhD0JtRPmrV4GfOJ2F9CvdQkZeZhnh2TuHw== @@ -7755,62 +7611,6 @@ hardhat-typechain@^0.3.3: resolved "https://registry.yarnpkg.com/hardhat-typechain/-/hardhat-typechain-0.3.5.tgz#8e50616a9da348b33bd001168c8fda9c66b7b4af" integrity sha512-w9lm8sxqTJACY+V7vijiH+NkPExnmtiQEjsV9JKD1KgMdVk2q8y+RhvU/c4B7+7b1+HylRUCxpOIvFuB3rE4+w== -hardhat@=2.12.4: - version "2.12.4" - resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.12.4.tgz#e539ba58bee9ba1a1ced823bfdcec0b3c5a3e70f" - integrity sha512-rc9S2U/4M+77LxW1Kg7oqMMmjl81tzn5rNFARhbXKUA1am/nhfMJEujOjuKvt+ZGMiZ11PYSe8gyIpB/aRNDgw== - dependencies: - "@ethersproject/abi" "^5.1.2" - "@metamask/eth-sig-util" "^4.0.0" - "@nomicfoundation/ethereumjs-block" "^4.0.0" - "@nomicfoundation/ethereumjs-blockchain" "^6.0.0" - "@nomicfoundation/ethereumjs-common" "^3.0.0" - "@nomicfoundation/ethereumjs-evm" "^1.0.0" - "@nomicfoundation/ethereumjs-rlp" "^4.0.0" - "@nomicfoundation/ethereumjs-statemanager" "^1.0.0" - "@nomicfoundation/ethereumjs-trie" "^5.0.0" - "@nomicfoundation/ethereumjs-tx" "^4.0.0" - "@nomicfoundation/ethereumjs-util" "^8.0.0" - "@nomicfoundation/ethereumjs-vm" "^6.0.0" - "@nomicfoundation/solidity-analyzer" "^0.1.0" - "@sentry/node" "^5.18.1" - "@types/bn.js" "^5.1.0" - "@types/lru-cache" "^5.1.0" - abort-controller "^3.0.0" - adm-zip "^0.4.16" - aggregate-error "^3.0.0" - ansi-escapes "^4.3.0" - chalk "^2.4.2" - chokidar "^3.4.0" - ci-info "^2.0.0" - debug "^4.1.1" - enquirer "^2.3.0" - env-paths "^2.2.0" - ethereum-cryptography "^1.0.3" - ethereumjs-abi "^0.6.8" - find-up "^2.1.0" - fp-ts "1.19.3" - fs-extra "^7.0.1" - glob "7.2.0" - immutable "^4.0.0-rc.12" - io-ts "1.10.4" - keccak "^3.0.2" - lodash "^4.17.11" - mnemonist "^0.38.0" - mocha "^10.0.0" - p-map "^4.0.0" - qs "^6.7.0" - raw-body "^2.4.1" - resolve "1.17.0" - semver "^6.3.0" - solc "0.7.3" - source-map-support "^0.5.13" - stacktrace-parser "^0.1.10" - tsort "0.0.1" - undici "^5.4.0" - uuid "^8.3.2" - ws "^7.4.6" - hardhat@=2.16.0: version "2.16.0" resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.16.0.tgz#c5611d433416b31f6ce92f733b1f1b5236ad6230" @@ -7866,10 +7666,10 @@ hardhat@=2.16.0: uuid "^8.3.2" ws "^7.4.6" -hardhat@^2.12.4, hardhat@^2.18.3: - version "2.18.3" - resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.18.3.tgz#8fd01348795c77086fff417a4d13c521dce28fcf" - integrity sha512-JuYaTG+4ZHVjEHCW5Hn6jCHH3LpO75dtgznZpM/dLv12RcSlw/xHbeQh3FAsGahQr1epKryZcZEMHvztVZHe0g== +hardhat@^2.18.3: + version "2.19.0" + resolved "https://registry.yarnpkg.com/hardhat/-/hardhat-2.19.0.tgz#1e08658863550ba351788ea128e544ff80584a31" + integrity sha512-kMpwovOEfrFRQXEopCP+JTcKVwSYVj8rnXE0LynxDqnh06yvyKCQknmXL6IVYTHQL6Csysc/yNbCHQbjSeJGpA== dependencies: "@ethersproject/abi" "^5.1.2" "@metamask/eth-sig-util" "^4.0.0" @@ -11591,7 +11391,7 @@ qs@6.11.0: dependencies: side-channel "^1.0.4" -qs@^6.11.2, qs@^6.4.0, qs@^6.7.0: +qs@^6.11.2, qs@^6.4.0: version "6.11.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== @@ -13666,7 +13466,7 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici@^5.14.0, undici@^5.4.0: +undici@^5.14.0: version "5.27.0" resolved "https://registry.yarnpkg.com/undici/-/undici-5.27.0.tgz#789f2e40ce982b5507899abc2c2ddeb2712b4554" integrity sha512-l3ydWhlhOJzMVOYkymLykcRRXqbUaQriERtR70B9LzNkZ4bX52Fc8wbTDneMiwo8T+AemZXvXaTx+9o5ROxrXg== From f848c44cdd5232207c8f22795ead13389e948a04 Mon Sep 17 00:00:00 2001 From: Stanislav Breadless Date: Fri, 3 Nov 2023 10:49:03 +0100 Subject: [PATCH 12/15] fix lints --- contracts | 2 +- core/lib/zksync_core/src/eth_watch/tests.rs | 2 +- core/lib/zksync_core/src/state_keeper/io/seal_logic.rs | 2 +- etc/system-contracts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts b/contracts index abf191e92484..b2faedc4b58c 160000 --- a/contracts +++ b/contracts @@ -1 +1 @@ -Subproject commit abf191e92484bbbaf0081a5619b25ddb1b941a0b +Subproject commit b2faedc4b58c73d27252ed746954ec90a65d932e diff --git a/core/lib/zksync_core/src/eth_watch/tests.rs b/core/lib/zksync_core/src/eth_watch/tests.rs index 77dcfba07bef..fdabe3a8defe 100644 --- a/core/lib/zksync_core/src/eth_watch/tests.rs +++ b/core/lib/zksync_core/src/eth_watch/tests.rs @@ -9,7 +9,7 @@ use zksync_dal::{ConnectionPool, StorageProcessor}; use zksync_types::protocol_version::{ProtocolUpgradeTx, ProtocolUpgradeTxCommonData}; use zksync_types::web3::types::{Address, BlockNumber}; use zksync_types::{ - ethabi::{encode, Contract, Hash, Token}, + ethabi::{encode, Hash, Token}, l1::{L1Tx, OpProcessingType, PriorityQueueType}, web3::types::Log, Execute, L1TxCommonData, PriorityOpId, ProtocolUpgrade, ProtocolVersion, ProtocolVersionId, diff --git a/core/lib/zksync_core/src/state_keeper/io/seal_logic.rs b/core/lib/zksync_core/src/state_keeper/io/seal_logic.rs index e7d5738f6b2c..c4d3ff70e5b9 100644 --- a/core/lib/zksync_core/src/state_keeper/io/seal_logic.rs +++ b/core/lib/zksync_core/src/state_keeper/io/seal_logic.rs @@ -140,7 +140,7 @@ impl UpdatesManager { .blocks_dal() .insert_l1_batch( &l1_batch, - &finished_batch.final_bootloader_memory.as_ref().unwrap(), + finished_batch.final_bootloader_memory.as_ref().unwrap(), self.l1_batch.l1_gas_count, &events_queue, &finished_batch.final_execution_state.storage_refunds, diff --git a/etc/system-contracts b/etc/system-contracts index db5bbad40b9d..97208b70a9b6 160000 --- a/etc/system-contracts +++ b/etc/system-contracts @@ -1 +1 @@ -Subproject commit db5bbad40b9d2287b32871b7f55d09a87476c2d5 +Subproject commit 97208b70a9b6eb3883b09fb3f1ca1b8605720fb1 From 9fb881d5f0cb3e0d45be2d70f96bfb6820c0996f Mon Sep 17 00:00:00 2001 From: Bence Haromi <56651250+benceharomi@users.noreply.github.com> Date: Fri, 3 Nov 2023 09:50:44 +0000 Subject: [PATCH 13/15] Update compiler.ts --- infrastructure/zk/src/compiler.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/infrastructure/zk/src/compiler.ts b/infrastructure/zk/src/compiler.ts index fadff30cdbcd..271bfdcd0be3 100644 --- a/infrastructure/zk/src/compiler.ts +++ b/infrastructure/zk/src/compiler.ts @@ -10,10 +10,7 @@ export async function compileTestContracts() { export async function compileSystemContracts() { await utils.spawn('yarn workspace zksync-erc20 build'); - process.chdir('etc/system-contracts'); - await utils.spawn('yarn'); - await utils.spawn('yarn build'); - process.chdir('../..'); + await utils.spawn('yarn workspace system-contracts build'); } export async function compileAll() { From 0cff45dda6428d189190df6bc1445ab426e7b1bf Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Fri, 3 Nov 2023 10:06:38 +0000 Subject: [PATCH 14/15] @typescript-eslint/eslint-plugin updated --- package.json | 2 +- yarn.lock | 37 ++----------------------------------- 2 files changed, 3 insertions(+), 36 deletions(-) diff --git a/package.json b/package.json index fbd9f9303115..f256abbc4c66 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ }, "devDependencies": { "@ethersproject/bignumber": "~5.5.0", - "@typescript-eslint/eslint-plugin": "^4.10.0", + "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^4.10.0", "babel-eslint": "^10.1.0", "eslint": "^7.16.0", diff --git a/yarn.lock b/yarn.lock index 6de1b38f7e78..ea795e3e14cf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2486,7 +2486,7 @@ expect "^29.0.0" pretty-format "^29.0.0" -"@types/json-schema@^7.0.12", "@types/json-schema@^7.0.7": +"@types/json-schema@^7.0.12": version "7.0.14" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.14.tgz#74a97a5573980802f32c8e47b663530ab3b6b7d1" integrity sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw== @@ -2671,20 +2671,6 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^4.10.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz#c24dc7c8069c7706bc40d99f6fa87edcb2005276" - integrity sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg== - dependencies: - "@typescript-eslint/experimental-utils" "4.33.0" - "@typescript-eslint/scope-manager" "4.33.0" - debug "^4.3.1" - functional-red-black-tree "^1.0.1" - ignore "^5.1.8" - regexpp "^3.1.0" - semver "^7.3.5" - tsutils "^3.21.0" - "@typescript-eslint/eslint-plugin@^6.7.4": version "6.9.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.9.1.tgz#d8ce497dc0ed42066e195c8ecc40d45c7b1254f4" @@ -2702,18 +2688,6 @@ semver "^7.5.4" ts-api-utils "^1.0.1" -"@typescript-eslint/experimental-utils@4.33.0": - version "4.33.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz#6f2a786a4209fa2222989e9380b5331b2810f7fd" - integrity sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q== - dependencies: - "@types/json-schema" "^7.0.7" - "@typescript-eslint/scope-manager" "4.33.0" - "@typescript-eslint/types" "4.33.0" - "@typescript-eslint/typescript-estree" "4.33.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - "@typescript-eslint/parser@^4.10.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899" @@ -5862,13 +5836,6 @@ eslint-utils@^2.1.0: dependencies: eslint-visitor-keys "^1.1.0" -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" @@ -7977,7 +7944,7 @@ ignore@^4.0.6: resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== -ignore@^5.1.1, ignore@^5.1.8, ignore@^5.2.0, ignore@^5.2.4, ignore@~5.2.4: +ignore@^5.1.1, ignore@^5.2.0, ignore@^5.2.4, ignore@~5.2.4: version "5.2.4" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== From aa54e7a32d0498eaa3bdc0f007238d8157295919 Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Fri, 3 Nov 2023 10:21:59 +0000 Subject: [PATCH 15/15] fixed eslint errors --- core/tests/ts-integration/scripts/compile-yul.ts | 1 + core/tests/ts-integration/src/system.ts | 5 ++--- infrastructure/zk/src/init.ts | 13 +++++++------ infrastructure/zk/src/status.ts | 7 ++----- 4 files changed, 12 insertions(+), 14 deletions(-) diff --git a/core/tests/ts-integration/scripts/compile-yul.ts b/core/tests/ts-integration/scripts/compile-yul.ts index bf217cefeb30..26f779878ae2 100644 --- a/core/tests/ts-integration/scripts/compile-yul.ts +++ b/core/tests/ts-integration/scripts/compile-yul.ts @@ -1,5 +1,6 @@ import * as hre from 'hardhat'; import * as fs from 'fs'; +// eslint-disable-next-line @typescript-eslint/no-unused-vars import { exec as _exec, spawn as _spawn } from 'child_process'; import { getZksolcUrl, saltFromUrl } from '@matterlabs/hardhat-zksync-solc'; diff --git a/core/tests/ts-integration/src/system.ts b/core/tests/ts-integration/src/system.ts index f94e4fbe68cf..6e29f71f7ca7 100644 --- a/core/tests/ts-integration/src/system.ts +++ b/core/tests/ts-integration/src/system.ts @@ -1,6 +1,5 @@ -import { BigNumber, BytesLike } from 'ethers'; -import { ethers } from 'ethers'; -import { Provider, utils, Contract } from 'zksync-web3'; +import { BigNumber, BytesLike, ethers } from 'ethers'; +import { Provider, utils } from 'zksync-web3'; const L1_CONTRACTS_FOLDER = `${process.env.ZKSYNC_HOME}/contracts/ethereum/artifacts/cache/solpp-generated-contracts`; const DIAMOND_UPGRADE_INIT_ABI = new ethers.utils.Interface( diff --git a/infrastructure/zk/src/init.ts b/infrastructure/zk/src/init.ts index 528e3847a830..b3753e62aefa 100644 --- a/infrastructure/zk/src/init.ts +++ b/infrastructure/zk/src/init.ts @@ -1,15 +1,15 @@ -import { Command } from 'commander'; import chalk from 'chalk'; +import { Command } from 'commander'; import * as utils from './utils'; -import * as server from './server'; -import * as contract from './contract'; -import * as run from './run/run'; +import { clean } from './clean'; import * as compiler from './compiler'; +import * as contract from './contract'; import * as db from './database'; -import { clean } from './clean'; -import * as env from './env'; import * as docker from './docker'; +import * as env from './env'; +import * as run from './run/run'; +import * as server from './server'; import { up } from './up'; const entry = chalk.bold.yellow; @@ -22,6 +22,7 @@ export async function init(initArgs: InitArgs = DEFAULT_ARGS) { skipSubmodulesCheckout, skipEnvSetup, testTokens, + // eslint-disable-next-line @typescript-eslint/no-unused-vars deployerL1ContractInputArgs, governorPrivateKeyArgs, deployerL2ContractInput diff --git a/infrastructure/zk/src/status.ts b/infrastructure/zk/src/status.ts index 5311b47843c1..57a723b273f0 100644 --- a/infrastructure/zk/src/status.ts +++ b/infrastructure/zk/src/status.ts @@ -1,8 +1,8 @@ import { Command } from 'commander'; -import { Pool } from 'pg'; -import { ethers } from 'ethers'; import { assert } from 'console'; +import { ethers } from 'ethers'; +import { Pool } from 'pg'; // Postgress connection pool - must be intialized later - as the ENV variables are set later. let pool: Pool | null = null; @@ -16,10 +16,7 @@ const GETTER_ABI = [ const VERIFIER_ABI = ['function verificationKeyHash() view returns (bytes32)']; export async function query(text: string, params?: any[]): Promise { - const start = Date.now(); - const res = await pool!.query(text, params); - const duration = Date.now() - start; return res; }