diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..c8b241f
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1 @@
+target/*
\ No newline at end of file
diff --git a/.github/workflows/adhoc.yml b/.github/workflows/adhoc.yml
new file mode 100644
index 0000000..db5a953
--- /dev/null
+++ b/.github/workflows/adhoc.yml
@@ -0,0 +1,207 @@
+name: PR
+
+on:
+ workflow_dispatch:
+ inputs:
+ filename:
+ description: 'Filename for the benchmark'
+ required: true
+ default: 'benchmark'
+ type: string
+ trials:
+ description: 'Number of trials to run'
+ required: true
+ default: '1'
+ type: number
+ programs:
+ description: 'Programs to benchmark'
+ required: true
+ type: choice
+ options:
+ - loop
+ - fibonacci
+ - tendermint
+ - reth1
+ - reth2
+ provers:
+ description: 'Provers to use'
+ required: true
+ type: choice
+ options:
+ - sp1
+ - risc0
+ hashfns:
+ description: 'Hash functions to use'
+ required: true
+ type: choice
+ options:
+ - poseidon
+ shard_sizes:
+ description: 'Shard sizes to use'
+ required: true
+ default: '22'
+ type: string
+ block_1:
+ description: 'Block number for reth1'
+ required: true
+ default: '17106222'
+ type: string
+ block_2:
+ description: 'Block number for reth2'
+ required: true
+ default: '19409768'
+ type: string
+ instance_type:
+ description: 'Instance type'
+ required: true
+ type: choice
+ default: 'g6.4xlarge'
+ options:
+ - g6.16xlarge
+ - g6.8xlarge
+ - g6.4xlarge
+ - g6.2xlarge
+ ami_id:
+ description: 'AMI ID'
+ required: true
+ type: string
+ default: 'ami-079a6a210557ef0e4'
+ pull_request:
+ branches: [main]
+
+jobs:
+
+ start-runner:
+ name: Start Self-Hosted EC2 Runner
+ runs-on: "ubuntu-latest"
+ outputs:
+ label: ${{ steps.start-ec2-runner.outputs.label }}
+ ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
+
+ steps:
+ # Use an access key for an IAM user with these permissions:
+ # - ec2:RunInstances
+ # - ec2:TerminateInstances
+ # - ec2:DescribeInstances
+ # - ec2:DescribeInstanceStatus
+ - name: Configure AWS credentials
+ uses: "aws-actions/configure-aws-credentials@v1"
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ${{ secrets.AWS_REGION }}
+
+ - name: Start EC2 runner
+ id: "start-ec2-runner"
+ uses: "xJonathanLEI/ec2-github-runner@main"
+ with:
+ mode: "start"
+ # Must use personal access token here as `GITHUB_TOKEN` does not have access to runners.
+ # Use a fine-grained token with these permissions to at least this repository:
+ # - Administration: Read and write
+ # - Contents: Read and write
+ # - Metadata: Read-only
+ # - Workflows: Read and write
+ github-token: "${{ secrets.GH_PAT }}"
+ ec2-image-id: "${{ inputs.ami_id || 'ami-079a6a210557ef0e4' }}"
+ ec2-instance-type: "${{ inputs.instance_type || 'g6.4xlarge' }}"
+ # Use a subnet in the default VPC
+ subnet-id: "${{ secrets.AWS_SUBNET_ID }}"
+ # Use a security group attached to the default VPC
+ security-group-id: "${{ secrets.AWS_SG_ID }}"
+ storage-size: 1024
+
+ perf:
+ name: Run ZKVM-Perf
+ runs-on: "${{ needs.start-runner.outputs.label }}"
+ needs:
+ - "start-runner"
+ env:
+ CARGO_NET_GIT_FETCH_WITH_CLI: "true"
+ steps:
+ - name: Checkout sources
+ uses: actions/checkout@v4
+
+ # - name: Setup Self-Hosted Runner
+ # uses: ./.github/actions/self-hosted
+
+ - name: rust-cache
+ uses: actions/cache@v3
+ with:
+ path: |
+ ~/.cargo/bin/
+ ~/.cargo/registry/index/
+ ~/.cargo/registry/cache/
+ ~/.cargo/git/db/
+ target/
+ ~/.rustup/
+ key: rust-1.79.0-${{ hashFiles('**/Cargo.toml') }}
+ restore-keys: rust-1.79.0-
+
+ # Commented out because the latency of the docker buildx cache is high enough
+ # with the EC2 builder that it's a wash. Can be added back in if the toolchain gets complex.
+ # - name: Set up Docker Buildx
+ # uses: docker/setup-buildx-action@v3
+
+ # - name: Cache Docker layers
+ # uses: actions/cache@v3
+ # with:
+ # path: /tmp/.buildx-cache
+ # key: ${{ runner.os }}-buildx-${{ github.sha }}
+ # restore-keys: |
+ # ${{ runner.os }}-buildx-
+
+ # - name: Build and cache Docker image
+ # uses: docker/build-push-action@v5
+ # with:
+ # context: .
+ # file: ./Dockerfile.toolchain
+ # push: false
+ # load: true
+ # tags: moongate-toolchain:latest
+ # cache-from: type=local,src=/tmp/.buildx-cache
+ # cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
+
+ # This step is necessary to prevent the cache from growing indefinitely
+ # - name: Move cache
+ # run: |
+ # rm -rf /tmp/.buildx-cache
+ # mv /tmp/.buildx-cache-new /tmp/.buildx-cache
+
+ - name: Run docker build
+ run: |
+ docker build -t zkvm-perf --platform linux/amd64 -f Dockerfile.gpu .
+ # we need to run cargo test --release in the docker container
+ - name: Run Tests (docker)
+ run: |
+ docker run --gpus all --platform linux/amd64 \
+ -v /var/run/docker.sock:/var/run/docker.sock \
+ -v ./benchmarks:/usr/src/app/benchmarks \
+ -e RUST_BACKTRACE=full \
+ --network host \
+ zkvm-perf \
+ "python3 sweep.py --filename ${{ inputs.filename || 'benchmark' }} --trials ${{ inputs.trials || '1' }} --programs ${{ inputs.programs || 'loop' }} --provers ${{ inputs.provers || 'sp1' }} --hashfns ${{ inputs.hashfns || 'poseidon' }} --shard-sizes ${{ inputs.shard_sizes || '22' }} --block-1 ${{ inputs.block_1 || '17106222' }} --block-2 ${{ inputs.block_2 || '19409768' }}"
+
+ stop-runner:
+ name: Stop Self-Hosted EC2 Runner
+ runs-on: "ubuntu-latest"
+ needs:
+ - "start-runner"
+ - "perf"
+ if: ${{ always() }}
+
+ steps:
+ - name: Configure AWS credentials
+ uses: "aws-actions/configure-aws-credentials@v1"
+ with:
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ aws-region: ${{ secrets.AWS_REGION }}
+
+ - name: Stop EC2 runner
+ uses: "xJonathanLEI/ec2-github-runner@main"
+ with:
+ mode: "stop"
+ github-token: ${{ secrets.GH_PAT }}
+ label: "${{ needs.start-runner.outputs.label }}"
+ ec2-instance-id: "${{ needs.start-runner.outputs.ec2-instance-id }}"
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 2063c79..c6267fa 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,6 +1,6 @@
{
"rust-analyzer.linkedProjects": [
- "eval/cli/Cargo.toml",
+ "Cargo.toml",
// "programs/fibonacci-jolt/Cargo.toml",
// "programs/fibonacci/Cargo.toml",
// "programs/tendermint-sp1/Cargo.toml",
diff --git a/Cargo.lock b/Cargo.lock
index caec779..eb1b1d5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -70,7 +70,7 @@ dependencies = [
"alloy-rlp",
"num_enum 0.7.3",
"serde",
- "strum 0.26.3",
+ "strum",
]
[[package]]
@@ -84,7 +84,7 @@ dependencies = [
"alloy-serde 0.1.0",
"c-kzg",
"serde",
- "sha2 0.10.8",
+ "sha2",
]
[[package]]
@@ -124,7 +124,7 @@ dependencies = [
"c-kzg",
"once_cell",
"serde",
- "sha2 0.10.8",
+ "sha2",
]
[[package]]
@@ -158,13 +158,13 @@ dependencies = [
"cfg-if",
"const-hex",
"derive_more",
- "getrandom 0.2.15",
+ "getrandom",
"hex-literal",
"itoa",
"k256",
"keccak-asm",
"proptest",
- "rand 0.8.5",
+ "rand",
"ruint",
"serde",
"tiny-keccak",
@@ -319,7 +319,7 @@ checksum = "867a5469d61480fea08c7333ffeca52d5b621f5ca2e44f271b117ec1fc9a0525"
dependencies = [
"alloy-sol-macro-input",
"const-hex",
- "heck 0.5.0",
+ "heck",
"indexmap 2.3.0",
"proc-macro-error",
"proc-macro2",
@@ -337,7 +337,7 @@ checksum = "2e482dc33a32b6fadbc0f599adea520bd3aaa585c141a80b404d0a3e3fa72528"
dependencies = [
"const-hex",
"dunce",
- "heck 0.5.0",
+ "heck",
"proc-macro2",
"quote",
"syn 2.0.74",
@@ -386,12 +386,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "anes"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
-
[[package]]
name = "ansi_term"
version = "0.12.1"
@@ -500,7 +494,7 @@ dependencies = [
"blake2",
"derivative",
"digest 0.10.7",
- "sha2 0.10.8",
+ "sha2",
]
[[package]]
@@ -516,7 +510,6 @@ dependencies = [
"hashbrown 0.13.2",
"itertools 0.10.5",
"num-traits",
- "rayon",
"zeroize",
]
@@ -553,7 +546,6 @@ dependencies = [
"num-bigint 0.4.6",
"num-traits",
"paste",
- "rayon",
"rustc_version 0.4.0",
"zeroize",
]
@@ -703,7 +695,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c"
dependencies = [
"num-traits",
- "rand 0.8.5",
+ "rand",
]
[[package]]
@@ -713,8 +705,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
dependencies = [
"num-traits",
- "rand 0.8.5",
- "rayon",
+ "rand",
]
[[package]]
@@ -740,12 +731,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "atomic-waker"
-version = "1.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
-
[[package]]
name = "aurora-engine-modexp"
version = "1.1.0"
@@ -986,27 +971,6 @@ dependencies = [
"rayon-core",
]
-[[package]]
-name = "block-buffer"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
-dependencies = [
- "block-padding",
- "byte-tools",
- "byteorder",
- "generic-array 0.12.4",
-]
-
-[[package]]
-name = "block-buffer"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
-dependencies = [
- "generic-array 0.14.7",
-]
-
[[package]]
name = "block-buffer"
version = "0.10.4"
@@ -1016,15 +980,6 @@ dependencies = [
"generic-array 0.14.7",
]
-[[package]]
-name = "block-padding"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
-dependencies = [
- "byte-tools",
-]
-
[[package]]
name = "bls12_381"
version = "0.7.1"
@@ -1034,7 +989,7 @@ dependencies = [
"ff 0.12.1",
"group 0.12.1",
"pairing",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -1074,12 +1029,6 @@ version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c"
-[[package]]
-name = "byte-tools"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
-
[[package]]
name = "bytemuck"
version = "1.16.3"
@@ -1129,12 +1078,6 @@ dependencies = [
"serde",
]
-[[package]]
-name = "cast"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
-
[[package]]
name = "cc"
version = "1.1.10"
@@ -1181,33 +1124,6 @@ dependencies = [
"windows-targets 0.52.6",
]
-[[package]]
-name = "ciborium"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
-dependencies = [
- "ciborium-io",
- "ciborium-ll",
- "serde",
-]
-
-[[package]]
-name = "ciborium-io"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
-
-[[package]]
-name = "ciborium-ll"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
-dependencies = [
- "ciborium-io",
- "half",
-]
-
[[package]]
name = "clang-sys"
version = "1.8.1"
@@ -1247,7 +1163,7 @@ version = "4.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
dependencies = [
- "heck 0.5.0",
+ "heck",
"proc-macro2",
"quote",
"syn 2.0.74",
@@ -1271,40 +1187,6 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
-[[package]]
-name = "colored"
-version = "2.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
-dependencies = [
- "lazy_static",
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "common"
-version = "0.2.0"
-source = "git+https://github.com/a16z/jolt?rev=845d39af373de078ee2616cf36a255f36f38334a#845d39af373de078ee2616cf36a255f36f38334a"
-dependencies = [
- "ark-serialize 0.4.2",
- "serde",
- "serde_json",
- "strum_macros 0.25.3",
-]
-
-[[package]]
-name = "console"
-version = "0.15.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
-dependencies = [
- "encode_unicode",
- "lazy_static",
- "libc",
- "unicode-width",
- "windows-sys 0.52.0",
-]
-
[[package]]
name = "const-hex"
version = "1.12.0"
@@ -1403,42 +1285,6 @@ dependencies = [
"cfg-if",
]
-[[package]]
-name = "criterion"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
-dependencies = [
- "anes",
- "cast",
- "ciborium",
- "clap",
- "criterion-plot",
- "is-terminal",
- "itertools 0.10.5",
- "num-traits",
- "once_cell",
- "oorandom",
- "plotters",
- "rayon",
- "regex",
- "serde",
- "serde_derive",
- "serde_json",
- "tinytemplate",
- "walkdir",
-]
-
-[[package]]
-name = "criterion-plot"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
-dependencies = [
- "cast",
- "itertools 0.10.5",
-]
-
[[package]]
name = "crossbeam"
version = "0.8.4"
@@ -1508,7 +1354,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
dependencies = [
"generic-array 0.14.7",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
"zeroize",
]
@@ -1580,19 +1426,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "curve25519-dalek-ng"
-version = "4.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8"
-dependencies = [
- "byteorder",
- "digest 0.9.0",
- "rand_core 0.6.4",
- "subtle-ng",
- "zeroize",
-]
-
[[package]]
name = "cust"
version = "0.3.2"
@@ -1674,6 +1507,84 @@ dependencies = [
"syn 2.0.74",
]
+[[package]]
+name = "dashu"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85b3e5ac1e23ff1995ef05b912e2b012a8784506987a2651552db2c73fb3d7e0"
+dependencies = [
+ "dashu-base",
+ "dashu-float",
+ "dashu-int",
+ "dashu-macros",
+ "dashu-ratio",
+ "rustversion",
+]
+
+[[package]]
+name = "dashu-base"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c0b80bf6b85aa68c58ffea2ddb040109943049ce3fbdf4385d0380aef08ef289"
+
+[[package]]
+name = "dashu-float"
+version = "0.4.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "85078445a8dbd2e1bd21f04a816f352db8d333643f0c9b78ca7c3d1df71063e7"
+dependencies = [
+ "dashu-base",
+ "dashu-int",
+ "num-modular",
+ "num-order",
+ "rustversion",
+ "static_assertions",
+]
+
+[[package]]
+name = "dashu-int"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ee99d08031ca34a4d044efbbb21dff9b8c54bb9d8c82a189187c0651ffdb9fbf"
+dependencies = [
+ "cfg-if",
+ "dashu-base",
+ "num-modular",
+ "num-order",
+ "rustversion",
+ "static_assertions",
+]
+
+[[package]]
+name = "dashu-macros"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "93381c3ef6366766f6e9ed9cf09e4ef9dec69499baf04f0c60e70d653cf0ab10"
+dependencies = [
+ "dashu-base",
+ "dashu-float",
+ "dashu-int",
+ "dashu-ratio",
+ "paste",
+ "proc-macro2",
+ "quote",
+ "rustversion",
+]
+
+[[package]]
+name = "dashu-ratio"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "47e33b04dd7ce1ccf8a02a69d3419e354f2bbfdf4eb911a0b7465487248764c9"
+dependencies = [
+ "dashu-base",
+ "dashu-float",
+ "dashu-int",
+ "num-modular",
+ "num-order",
+ "rustversion",
+]
+
[[package]]
name = "der"
version = "0.7.9"
@@ -1740,15 +1651,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "digest"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
-dependencies = [
- "generic-array 0.12.4",
-]
-
[[package]]
name = "digest"
version = "0.9.0"
@@ -1764,7 +1666,7 @@ version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
- "block-buffer 0.10.4",
+ "block-buffer",
"const-oid",
"crypto-common",
"subtle",
@@ -1825,22 +1727,12 @@ checksum = "d05213e96f184578b5f70105d4d0a644a168e99e12d7bea0b200c15d67b5c182"
dependencies = [
"digest 0.10.7",
"futures",
- "rand 0.8.5",
+ "rand",
"reqwest 0.11.27",
"thiserror",
"tokio",
]
-[[package]]
-name = "drawille"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e64e461c3f1e69d99372620640b3fd5f0309eeda2e26e4af69f6760c0e1df845"
-dependencies = [
- "colored",
- "fnv",
-]
-
[[package]]
name = "dunce"
version = "1.0.5"
@@ -1867,29 +1759,6 @@ dependencies = [
"spki",
]
-[[package]]
-name = "ed25519"
-version = "2.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
-dependencies = [
- "pkcs8",
- "signature",
-]
-
-[[package]]
-name = "ed25519-consensus"
-version = "2.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3c8465edc8ee7436ffea81d21a019b16676ee3db267aa8d5a8d729581ecf998b"
-dependencies = [
- "curve25519-dalek-ng",
- "hex",
- "rand_core 0.6.4",
- "sha2 0.9.9",
- "zeroize",
-]
-
[[package]]
name = "either"
version = "1.13.0"
@@ -1915,7 +1784,7 @@ dependencies = [
"generic-array 0.14.7",
"group 0.13.0",
"pkcs8",
- "rand_core 0.6.4",
+ "rand_core",
"sec1",
"subtle",
"tap",
@@ -1928,12 +1797,6 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
-[[package]]
-name = "encode_unicode"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
-
[[package]]
name = "encoding_rs"
version = "0.8.34"
@@ -1944,12 +1807,21 @@ dependencies = [
]
[[package]]
-name = "enum_dispatch"
-version = "0.3.13"
+name = "enum-map"
+version = "2.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
+checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
+dependencies = [
+ "enum-map-derive",
+ "serde",
+]
+
+[[package]]
+name = "enum-map-derive"
+version = "0.17.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb"
dependencies = [
- "once_cell",
"proc-macro2",
"quote",
"syn 2.0.74",
@@ -2032,7 +1904,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
dependencies = [
"bitvec",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -2045,7 +1917,7 @@ dependencies = [
"bitvec",
"byteorder",
"ff_derive",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -2071,14 +1943,6 @@ version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
-[[package]]
-name = "fibonacci-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
- "serde",
-]
-
[[package]]
name = "find_cuda_helper"
version = "0.2.0"
@@ -2095,17 +1959,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
dependencies = [
"byteorder",
- "rand 0.8.5",
+ "rand",
"rustc-hex",
"static_assertions",
]
-[[package]]
-name = "fixedbitset"
-version = "0.5.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
-
[[package]]
name = "flate2"
version = "1.0.31"
@@ -2116,36 +1974,12 @@ dependencies = [
"miniz_oxide",
]
-[[package]]
-name = "flex-error"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c606d892c9de11507fa0dcffc116434f94e105d0bbdc4e405b61519464c49d7b"
-dependencies = [
- "paste",
-]
-
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-[[package]]
-name = "foreign-types"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
-dependencies = [
- "foreign-types-shared",
-]
-
-[[package]]
-name = "foreign-types-shared"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-
[[package]]
name = "form_urlencoded"
version = "1.2.1"
@@ -2256,15 +2090,6 @@ version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a"
-[[package]]
-name = "generic-array"
-version = "0.12.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
-dependencies = [
- "typenum",
-]
-
[[package]]
name = "generic-array"
version = "0.14.7"
@@ -2286,17 +2111,6 @@ dependencies = [
"typenum",
]
-[[package]]
-name = "getrandom"
-version = "0.1.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
-dependencies = [
- "cfg-if",
- "libc",
- "wasi 0.9.0+wasi-snapshot-preview1",
-]
-
[[package]]
name = "getrandom"
version = "0.2.15"
@@ -2305,7 +2119,7 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
dependencies = [
"cfg-if",
"libc",
- "wasi 0.11.0+wasi-snapshot-preview1",
+ "wasi",
]
[[package]]
@@ -2354,7 +2168,7 @@ checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
dependencies = [
"ff 0.12.1",
"memuse",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -2365,7 +2179,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff 0.13.0",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -2389,46 +2203,17 @@ dependencies = [
]
[[package]]
-name = "h2"
-version = "0.4.5"
+name = "halo2"
+version = "0.1.0-beta.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
+checksum = "2a23c779b38253fe1538102da44ad5bd5378495a61d2c4ee18d64eaa61ae5995"
dependencies = [
- "atomic-waker",
- "bytes",
- "fnv",
- "futures-core",
- "futures-sink",
- "http 1.1.0",
- "indexmap 2.3.0",
- "slab",
- "tokio",
- "tokio-util",
- "tracing",
+ "halo2_proofs",
]
[[package]]
-name = "half"
-version = "2.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
-dependencies = [
- "cfg-if",
- "crunchy",
-]
-
-[[package]]
-name = "halo2"
-version = "0.1.0-beta.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a23c779b38253fe1538102da44ad5bd5378495a61d2c4ee18d64eaa61ae5995"
-dependencies = [
- "halo2_proofs",
-]
-
-[[package]]
-name = "halo2_proofs"
-version = "0.1.0"
+name = "halo2_proofs"
+version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e925780549adee8364c7f2b685c753f6f3df23bde520c67416e93bf615933760"
dependencies = [
@@ -2436,7 +2221,7 @@ dependencies = [
"ff 0.12.1",
"group 0.12.1",
"pasta_curves 0.4.1",
- "rand_core 0.6.4",
+ "rand_core",
"rayon",
]
@@ -2466,12 +2251,6 @@ dependencies = [
"serde",
]
-[[package]]
-name = "heck"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
[[package]]
name = "heck"
version = "0.5.0"
@@ -2595,7 +2374,7 @@ dependencies = [
"futures-channel",
"futures-core",
"futures-util",
- "h2 0.3.26",
+ "h2",
"http 0.2.12",
"http-body 0.4.6",
"httparse",
@@ -2618,7 +2397,6 @@ dependencies = [
"bytes",
"futures-channel",
"futures-util",
- "h2 0.4.5",
"http 1.1.0",
"http-body 1.0.1",
"httparse",
@@ -2662,22 +2440,6 @@ dependencies = [
"webpki-roots 0.26.3",
]
-[[package]]
-name = "hyper-tls"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
-dependencies = [
- "bytes",
- "http-body-util",
- "hyper 1.4.1",
- "hyper-util",
- "native-tls",
- "tokio",
- "tokio-native-tls",
- "tower-service",
-]
-
[[package]]
name = "hyper-util"
version = "0.1.7"
@@ -2698,41 +2460,6 @@ dependencies = [
"tracing",
]
-[[package]]
-name = "iai-callgrind"
-version = "0.10.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e99bf26f496b13ac6273014f40afda46a233fbfb0289ce50fb4daaad2f2ffc80"
-dependencies = [
- "bincode",
- "bindgen",
- "cc",
- "iai-callgrind-macros",
- "iai-callgrind-runner",
- "regex",
-]
-
-[[package]]
-name = "iai-callgrind-macros"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2a4bb39225592c0a28cfca6f70af52ebd8da23f533c2cdd0a3329c1fa252d56"
-dependencies = [
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn 2.0.74",
-]
-
-[[package]]
-name = "iai-callgrind-runner"
-version = "0.10.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c23a951b9eccaa1e38556d27473d1462a9c247a27961812edcaac156af861282"
-dependencies = [
- "serde",
-]
-
[[package]]
name = "iana-time-zone"
version = "0.1.60"
@@ -2820,28 +2547,6 @@ dependencies = [
"serde",
]
-[[package]]
-name = "indicatif"
-version = "0.17.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
-dependencies = [
- "console",
- "instant",
- "number_prefix",
- "portable-atomic",
- "unicode-width",
-]
-
-[[package]]
-name = "instant"
-version = "0.1.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
-dependencies = [
- "cfg-if",
-]
-
[[package]]
name = "inventory"
version = "0.3.15"
@@ -2854,17 +2559,6 @@ version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
-[[package]]
-name = "is-terminal"
-version = "0.4.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
-dependencies = [
- "hermit-abi",
- "libc",
- "windows-sys 0.52.0",
-]
-
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
@@ -2913,84 +2607,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "jolt-core"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=845d39af373de078ee2616cf36a255f36f38334a#845d39af373de078ee2616cf36a255f36f38334a"
-dependencies = [
- "ark-bn254",
- "ark-ec",
- "ark-ff 0.4.2",
- "ark-serialize 0.4.2",
- "ark-std 0.4.0",
- "bincode",
- "clap",
- "common",
- "criterion",
- "digest 0.8.1",
- "dirs",
- "enum_dispatch",
- "eyre",
- "fixedbitset",
- "iai-callgrind",
- "indicatif",
- "itertools 0.10.5",
- "lazy_static",
- "merlin",
- "num-integer",
- "postcard",
- "rand 0.7.3",
- "rand_chacha 0.3.1",
- "rand_core 0.5.1",
- "rayon",
- "reqwest 0.12.5",
- "rgb",
- "serde",
- "sha3 0.8.2",
- "smallvec",
- "strum 0.25.0",
- "strum_macros 0.25.3",
- "target-lexicon",
- "textplots",
- "thiserror",
- "tokio",
- "tracer",
- "tracing",
- "tracing-chrome",
- "tracing-flame",
- "tracing-subscriber 0.3.18",
- "tracing-texray",
-]
-
-[[package]]
-name = "jolt-sdk"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=845d39af373de078ee2616cf36a255f36f38334a#845d39af373de078ee2616cf36a255f36f38334a"
-dependencies = [
- "ark-bn254",
- "ark-ec",
- "ark-ff 0.4.2",
- "ark-serialize 0.4.2",
- "common",
- "eyre",
- "jolt-core",
- "jolt-sdk-macros",
- "postcard",
- "serde",
- "tracer",
-]
-
-[[package]]
-name = "jolt-sdk-macros"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=845d39af373de078ee2616cf36a255f36f38334a#845d39af373de078ee2616cf36a255f36f38334a"
-dependencies = [
- "common",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
[[package]]
name = "js-sys"
version = "0.3.69"
@@ -3023,7 +2639,7 @@ dependencies = [
"bls12_381",
"ff 0.12.1",
"group 0.12.1",
- "rand_core 0.6.4",
+ "rand_core",
"subtle",
]
@@ -3037,7 +2653,7 @@ dependencies = [
"ecdsa",
"elliptic-curve",
"once_cell",
- "sha2 0.10.8",
+ "sha2",
"signature",
]
@@ -3182,14 +2798,6 @@ version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
-[[package]]
-name = "loop-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
- "serde",
-]
-
[[package]]
name = "matchers"
version = "0.1.0"
@@ -3236,18 +2844,6 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2145869435ace5ea6ea3d35f59be559317ec9a0d04e1812d5f185a87b6d36f1a"
-[[package]]
-name = "merlin"
-version = "3.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
-dependencies = [
- "byteorder",
- "keccak",
- "rand_core 0.6.4",
- "zeroize",
-]
-
[[package]]
name = "mime"
version = "0.3.17"
@@ -3283,7 +2879,7 @@ checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
dependencies = [
"hermit-abi",
"libc",
- "wasi 0.11.0+wasi-snapshot-preview1",
+ "wasi",
"windows-sys 0.52.0",
]
@@ -3308,23 +2904,6 @@ dependencies = [
"syn 1.0.109",
]
-[[package]]
-name = "native-tls"
-version = "0.2.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
-dependencies = [
- "libc",
- "log",
- "openssl",
- "openssl-probe",
- "openssl-sys",
- "schannel",
- "security-framework",
- "security-framework-sys",
- "tempfile",
-]
-
[[package]]
name = "ndarray"
version = "0.15.6"
@@ -3367,6 +2946,15 @@ dependencies = [
"minimal-lexical",
]
+[[package]]
+name = "ntapi"
+version = "0.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
+dependencies = [
+ "winapi",
+]
+
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
@@ -3427,17 +3015,6 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
-[[package]]
-name = "num-derive"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
[[package]]
name = "num-integer"
version = "0.1.46"
@@ -3458,6 +3035,21 @@ dependencies = [
"num-traits",
]
+[[package]]
+name = "num-modular"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
+
+[[package]]
+name = "num-order"
+version = "1.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
+dependencies = [
+ "num-modular",
+]
+
[[package]]
name = "num-rational"
version = "0.4.2"
@@ -3539,12 +3131,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "number_prefix"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
-
[[package]]
name = "nvtx"
version = "1.3.0"
@@ -3567,17 +3153,6 @@ dependencies = [
"smallvec",
]
-[[package]]
-name = "object"
-version = "0.32.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
-dependencies = [
- "flate2",
- "memchr",
- "ruzstd 0.5.0",
-]
-
[[package]]
name = "object"
version = "0.35.0"
@@ -3586,7 +3161,7 @@ checksum = "b8ec7ab813848ba4522158d5517a6093db1ded27575b070f4177b8d12b41db5e"
dependencies = [
"flate2",
"memchr",
- "ruzstd 0.6.0",
+ "ruzstd",
]
[[package]]
@@ -3610,68 +3185,6 @@ version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29"
-[[package]]
-name = "oorandom"
-version = "11.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
-
-[[package]]
-name = "opaque-debug"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
-
-[[package]]
-name = "opaque-debug"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
-
-[[package]]
-name = "openssl"
-version = "0.10.66"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
-dependencies = [
- "bitflags 2.6.0",
- "cfg-if",
- "foreign-types",
- "libc",
- "once_cell",
- "openssl-macros",
- "openssl-sys",
-]
-
-[[package]]
-name = "openssl-macros"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.74",
-]
-
-[[package]]
-name = "openssl-probe"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
-
-[[package]]
-name = "openssl-sys"
-version = "0.9.103"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
-dependencies = [
- "cc",
- "libc",
- "pkg-config",
- "vcpkg",
-]
-
[[package]]
name = "option-ext"
version = "0.2.0"
@@ -3705,7 +3218,7 @@ dependencies = [
"p3-mds",
"p3-poseidon2",
"p3-symmetric",
- "rand 0.8.5",
+ "rand",
"serde",
]
@@ -3730,7 +3243,7 @@ dependencies = [
"p3-field",
"p3-poseidon2",
"p3-symmetric",
- "rand 0.8.5",
+ "rand",
"serde",
]
@@ -3784,7 +3297,7 @@ dependencies = [
"num-bigint 0.4.6",
"num-traits",
"p3-util",
- "rand 0.8.5",
+ "rand",
"serde",
]
@@ -3854,7 +3367,7 @@ dependencies = [
"p3-field",
"p3-maybe-rayon",
"p3-util",
- "rand 0.8.5",
+ "rand",
"serde",
"tracing",
]
@@ -3880,7 +3393,7 @@ dependencies = [
"p3-matrix",
"p3-symmetric",
"p3-util",
- "rand 0.8.5",
+ "rand",
]
[[package]]
@@ -3910,7 +3423,7 @@ dependencies = [
"p3-field",
"p3-mds",
"p3-symmetric",
- "rand 0.8.5",
+ "rand",
]
[[package]]
@@ -4023,7 +3536,7 @@ dependencies = [
"ff 0.12.1",
"group 0.12.1",
"lazy_static",
- "rand 0.8.5",
+ "rand",
"static_assertions",
"subtle",
]
@@ -4038,7 +3551,7 @@ dependencies = [
"ff 0.13.0",
"group 0.13.0",
"lazy_static",
- "rand 0.8.5",
+ "rand",
"static_assertions",
"subtle",
]
@@ -4114,40 +3627,6 @@ version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
-[[package]]
-name = "plotters"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a15b6eccb8484002195a3e44fe65a4ce8e93a625797a063735536fd59cb01cf3"
-dependencies = [
- "num-traits",
- "plotters-backend",
- "plotters-svg",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "plotters-backend"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "414cec62c6634ae900ea1c56128dfe87cf63e7caece0852ec76aba307cebadb7"
-
-[[package]]
-name = "plotters-svg"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "81b30686a7d9c3e010b84284bdd26a29f2138574f52f5eb6f794fc0ad924e705"
-dependencies = [
- "plotters-backend",
-]
-
-[[package]]
-name = "portable-atomic"
-version = "1.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
-
[[package]]
name = "postcard"
version = "1.0.8"
@@ -4258,8 +3737,8 @@ dependencies = [
"bitflags 2.6.0",
"lazy_static",
"num-traits",
- "rand 0.8.5",
- "rand_chacha 0.3.1",
+ "rand",
+ "rand_chacha",
"rand_xorshift",
"regex-syntax 0.8.4",
"rusty-fork",
@@ -4339,7 +3818,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba92fb39ec7ad06ca2582c0ca834dfeadcaf06ddfc8e635c80aa7e1c05315fdd"
dependencies = [
"bytes",
- "rand 0.8.5",
+ "rand",
"ring",
"rustc-hash 2.0.0",
"rustls 0.23.12",
@@ -4379,36 +3858,13 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
[[package]]
name = "rand"
-version = "0.7.3"
+version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
- "getrandom 0.1.16",
"libc",
- "rand_chacha 0.2.2",
- "rand_core 0.5.1",
- "rand_hc",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-dependencies = [
- "libc",
- "rand_chacha 0.3.1",
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.5.1",
+ "rand_chacha",
+ "rand_core",
]
[[package]]
@@ -4418,16 +3874,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-dependencies = [
- "getrandom 0.1.16",
+ "rand_core",
]
[[package]]
@@ -4436,16 +3883,7 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
- "getrandom 0.2.15",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-dependencies = [
- "rand_core 0.5.1",
+ "getrandom",
]
[[package]]
@@ -4454,7 +3892,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
dependencies = [
- "rand_core 0.6.4",
+ "rand_core",
]
[[package]]
@@ -4507,7 +3945,7 @@ version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
dependencies = [
- "getrandom 0.2.15",
+ "getrandom",
"libredox",
"thiserror",
]
@@ -4567,7 +4005,7 @@ dependencies = [
"encoding_rs",
"futures-core",
"futures-util",
- "h2 0.3.26",
+ "h2",
"http 0.2.12",
"http-body 0.4.6",
"hyper 0.14.30",
@@ -4605,23 +4043,19 @@ checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
dependencies = [
"base64 0.22.1",
"bytes",
- "encoding_rs",
"futures-channel",
"futures-core",
"futures-util",
- "h2 0.4.5",
"http 1.1.0",
"http-body 1.0.1",
"http-body-util",
"hyper 1.4.1",
"hyper-rustls 0.27.2",
- "hyper-tls",
"hyper-util",
"ipnet",
"js-sys",
"log",
"mime",
- "native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
@@ -4633,9 +4067,7 @@ dependencies = [
"serde_json",
"serde_urlencoded",
"sync_wrapper 1.0.1",
- "system-configuration",
"tokio",
- "tokio-native-tls",
"tokio-rustls 0.26.0",
"tower-service",
"url",
@@ -4712,7 +4144,7 @@ dependencies = [
"serde_json",
"serde_with",
"sp1-lib",
- "strum 0.26.3",
+ "strum",
"thiserror",
]
@@ -4787,7 +4219,7 @@ dependencies = [
"revm-primitives",
"ripemd",
"secp256k1",
- "sha2 0.10.8",
+ "sha2",
"substrate-bn",
]
@@ -4802,7 +4234,7 @@ dependencies = [
"once_cell",
"revm-primitives",
"ripemd",
- "sha2 0.10.8",
+ "sha2",
"sp1-lib",
"substrate-bn",
]
@@ -4835,15 +4267,6 @@ dependencies = [
"subtle",
]
-[[package]]
-name = "rgb"
-version = "0.8.48"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f86ae463694029097b846d8f99fd5536740602ae00022c0c50c5600720b2f71"
-dependencies = [
- "bytemuck",
-]
-
[[package]]
name = "ring"
version = "0.17.8"
@@ -4852,7 +4275,7 @@ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
"cfg-if",
- "getrandom 0.2.15",
+ "getrandom",
"libc",
"spin",
"untrusted",
@@ -4893,7 +4316,7 @@ dependencies = [
"glob",
"hex",
"rayon",
- "sha2 0.10.8",
+ "sha2",
"tempfile",
"which 6.0.2",
]
@@ -4910,13 +4333,13 @@ dependencies = [
"downloader",
"hex",
"nvtx",
- "rand 0.8.5",
+ "rand",
"rayon",
"risc0-circuit-recursion-sys",
"risc0-core",
"risc0-sys",
"risc0-zkp",
- "sha2 0.10.8",
+ "sha2",
"tracing",
"zip",
]
@@ -4949,7 +4372,7 @@ dependencies = [
"derive-debug",
"lazy-regex",
"nvtx",
- "rand 0.8.5",
+ "rand",
"rayon",
"risc0-binfmt",
"risc0-circuit-rv32im-sys",
@@ -4958,7 +4381,7 @@ dependencies = [
"risc0-zkp",
"risc0-zkvm-platform",
"serde",
- "sha2 0.10.8",
+ "sha2",
"tracing",
]
@@ -4982,7 +4405,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "047cc26c68c092d664ded7488dcac0462d9e31190e1598a7820fe4246d313583"
dependencies = [
"bytemuck",
- "rand_core 0.6.4",
+ "rand_core",
]
[[package]]
@@ -5040,14 +4463,14 @@ dependencies = [
"nvtx",
"parking_lot",
"paste",
- "rand 0.8.5",
- "rand_core 0.6.4",
+ "rand",
+ "rand_core",
"rayon",
"risc0-core",
"risc0-sys",
"risc0-zkvm-platform",
"serde",
- "sha2 0.10.8",
+ "sha2",
"tracing",
]
@@ -5065,12 +4488,12 @@ dependencies = [
"bytes",
"cfg-if",
"elf",
- "getrandom 0.2.15",
+ "getrandom",
"hex",
"lazy-regex",
"nvtx",
"prost",
- "rand 0.8.5",
+ "rand",
"rayon",
"risc0-binfmt",
"risc0-circuit-recursion",
@@ -5083,7 +4506,7 @@ dependencies = [
"rustc-demangle",
"semver 1.0.23",
"serde",
- "sha2 0.10.8",
+ "sha2",
"tempfile",
"tracing",
"typetag",
@@ -5096,7 +4519,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16735dab52ae8bf0dc30df78fce901b674f469dfd7b5f5dfddd54caea22f14d5"
dependencies = [
"bytemuck",
- "getrandom 0.2.15",
+ "getrandom",
"libm",
]
@@ -5157,7 +4580,7 @@ dependencies = [
"parity-scale-codec",
"primitive-types",
"proptest",
- "rand 0.8.5",
+ "rand",
"rlp",
"ruint-macro",
"serde",
@@ -5316,17 +4739,6 @@ dependencies = [
"wait-timeout",
]
-[[package]]
-name = "ruzstd"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "58c4eb8a81997cf040a091d1f7e1938aeab6749d3a0dfa73af43cdc32393483d"
-dependencies = [
- "byteorder",
- "derive_more",
- "twox-hash",
-]
-
[[package]]
name = "ruzstd"
version = "0.6.0"
@@ -5344,15 +4756,6 @@ version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
-[[package]]
-name = "same-file"
-version = "1.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
-dependencies = [
- "winapi-util",
-]
-
[[package]]
name = "scale-info"
version = "2.11.3"
@@ -5386,15 +4789,6 @@ dependencies = [
"sdd",
]
-[[package]]
-name = "schannel"
-version = "0.1.23"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
-dependencies = [
- "windows-sys 0.52.0",
-]
-
[[package]]
name = "scopeguard"
version = "1.2.0"
@@ -5437,7 +4831,7 @@ version = "0.28.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10"
dependencies = [
- "rand 0.8.5",
+ "rand",
"secp256k1-sys",
]
@@ -5450,29 +4844,6 @@ dependencies = [
"cc",
]
-[[package]]
-name = "security-framework"
-version = "2.11.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
-dependencies = [
- "bitflags 2.6.0",
- "core-foundation",
- "core-foundation-sys",
- "libc",
- "security-framework-sys",
-]
-
-[[package]]
-name = "security-framework-sys"
-version = "2.11.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
[[package]]
name = "semver"
version = "0.11.0"
@@ -5499,27 +4870,18 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.206"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284"
+checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
dependencies = [
"serde_derive",
]
-[[package]]
-name = "serde_bytes"
-version = "0.11.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a"
-dependencies = [
- "serde",
-]
-
[[package]]
name = "serde_derive"
-version = "1.0.206"
+version = "1.0.210"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97"
+checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
dependencies = [
"proc-macro2",
"quote",
@@ -5549,17 +4911,6 @@ dependencies = [
"serde",
]
-[[package]]
-name = "serde_repr"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.74",
-]
-
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
@@ -5627,19 +4978,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "sha2"
-version = "0.9.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
-dependencies = [
- "block-buffer 0.9.0",
- "cfg-if",
- "cpufeatures",
- "digest 0.9.0",
- "opaque-debug 0.3.1",
-]
-
[[package]]
name = "sha2"
version = "0.10.8"
@@ -5651,28 +4989,6 @@ dependencies = [
"digest 0.10.7",
]
-[[package]]
-name = "sha2-chain-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
- "serde",
- "sha2 0.10.8",
-]
-
-[[package]]
-name = "sha3"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd26bc0e7a2e3a7c959bc494caf58b72ee0c71d67704e9520f736ca7e4853ecf"
-dependencies = [
- "block-buffer 0.7.3",
- "byte-tools",
- "digest 0.8.1",
- "keccak",
- "opaque-debug 0.2.3",
-]
-
[[package]]
name = "sha3"
version = "0.10.8"
@@ -5724,7 +5040,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
dependencies = [
"digest 0.10.7",
- "rand_core 0.6.4",
+ "rand_core",
]
[[package]]
@@ -5785,25 +5101,59 @@ dependencies = [
"chrono",
"clap",
"csv",
- "fibonacci-jolt",
- "jolt-sdk",
- "loop-jolt",
"risc0-zkvm",
"serde",
"serde_json",
- "sha2-chain-jolt",
- "sp1-core",
+ "sp1-core-executor",
+ "sp1-core-machine",
+ "sp1-cuda",
"sp1-prover",
"sp1-reth-primitives",
- "sp1-server",
- "tendermint-jolt",
+ "sp1-stark",
"vergen",
]
[[package]]
-name = "sp1-core"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+name = "sp1-core-executor"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
+dependencies = [
+ "bincode",
+ "bytemuck",
+ "elf",
+ "enum-map",
+ "eyre",
+ "generic-array 1.1.0",
+ "hashbrown 0.14.5",
+ "hex",
+ "itertools 0.13.0",
+ "log",
+ "nohash-hasher",
+ "num",
+ "p3-field",
+ "p3-keccak-air",
+ "p3-maybe-rayon",
+ "rand",
+ "rrs-succinct",
+ "serde",
+ "serde_with",
+ "sp1-curves",
+ "sp1-derive",
+ "sp1-primitives",
+ "sp1-stark",
+ "strum",
+ "strum_macros",
+ "thiserror",
+ "tiny-keccak",
+ "tracing",
+ "typenum",
+ "vec_map",
+]
+
+[[package]]
+name = "sp1-core-machine"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"anyhow",
"arrayref",
@@ -5841,18 +5191,21 @@ dependencies = [
"p3-symmetric",
"p3-uni-stark",
"p3-util",
- "rand 0.8.5",
+ "rand",
"rayon-scan",
"rrs-succinct",
"serde",
"serde_with",
"size",
"snowbridge-amcl",
+ "sp1-core-executor",
+ "sp1-curves",
"sp1-derive",
"sp1-primitives",
+ "sp1-stark",
"static_assertions",
- "strum 0.26.3",
- "strum_macros 0.26.4",
+ "strum",
+ "strum_macros",
"tempfile",
"thiserror",
"tracing",
@@ -5862,10 +5215,50 @@ dependencies = [
"web-time",
]
+[[package]]
+name = "sp1-cuda"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
+dependencies = [
+ "bincode",
+ "ctrlc",
+ "prost",
+ "prost-types",
+ "serde",
+ "serde_json",
+ "sp1-core-machine",
+ "sp1-prover",
+ "sp1-stark",
+ "tokio",
+ "tracing",
+ "tracing-subscriber 0.3.18",
+ "twirp-rs",
+]
+
+[[package]]
+name = "sp1-curves"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
+dependencies = [
+ "curve25519-dalek",
+ "dashu",
+ "elliptic-curve",
+ "generic-array 1.1.0",
+ "itertools 0.13.0",
+ "k256",
+ "num",
+ "p3-field",
+ "serde",
+ "snowbridge-amcl",
+ "sp1-primitives",
+ "sp1-stark",
+ "typenum",
+]
+
[[package]]
name = "sp1-derive"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"proc-macro2",
"quote",
@@ -5886,8 +5279,8 @@ dependencies = [
[[package]]
name = "sp1-primitives"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"itertools 0.13.0",
"lazy_static",
@@ -5899,8 +5292,8 @@ dependencies = [
[[package]]
name = "sp1-prover"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"anyhow",
"bincode",
@@ -5920,13 +5313,15 @@ dependencies = [
"serde",
"serde_json",
"serial_test",
- "sp1-core",
+ "sp1-core-executor",
+ "sp1-core-machine",
"sp1-primitives",
"sp1-recursion-circuit",
"sp1-recursion-compiler",
"sp1-recursion-core",
"sp1-recursion-gnark-ffi",
"sp1-recursion-program",
+ "sp1-stark",
"subtle-encoding",
"tempfile",
"thiserror",
@@ -5936,8 +5331,8 @@ dependencies = [
[[package]]
name = "sp1-recursion-circuit"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"bincode",
"itertools 0.13.0",
@@ -5950,17 +5345,18 @@ dependencies = [
"p3-matrix",
"p3-util",
"serde",
- "sp1-core",
+ "sp1-core-machine",
"sp1-recursion-compiler",
"sp1-recursion-core",
"sp1-recursion-derive",
"sp1-recursion-program",
+ "sp1-stark",
]
[[package]]
name = "sp1-recursion-compiler"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"backtrace",
"itertools 0.13.0",
@@ -5974,18 +5370,22 @@ dependencies = [
"p3-poseidon2",
"p3-symmetric",
"p3-util",
+ "rayon",
"serde",
- "sp1-core",
+ "sp1-core-machine",
"sp1-primitives",
"sp1-recursion-core",
+ "sp1-recursion-core-v2",
"sp1-recursion-derive",
+ "sp1-stark",
"tracing",
+ "vec_map",
]
[[package]]
name = "sp1-recursion-core"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"arrayref",
"backtrace",
@@ -6009,18 +5409,60 @@ dependencies = [
"p3-util",
"serde",
"serde_with",
- "sp1-core",
+ "sp1-core-executor",
+ "sp1-core-machine",
"sp1-derive",
"sp1-primitives",
+ "sp1-stark",
"static_assertions",
"tracing",
"zkhash",
]
+[[package]]
+name = "sp1-recursion-core-v2"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
+dependencies = [
+ "arrayref",
+ "backtrace",
+ "ff 0.13.0",
+ "hashbrown 0.14.5",
+ "itertools 0.13.0",
+ "num_cpus",
+ "p3-air",
+ "p3-baby-bear",
+ "p3-bn254-fr",
+ "p3-challenger",
+ "p3-commit",
+ "p3-dft",
+ "p3-field",
+ "p3-fri",
+ "p3-matrix",
+ "p3-maybe-rayon",
+ "p3-merkle-tree",
+ "p3-poseidon2",
+ "p3-symmetric",
+ "p3-util",
+ "serde",
+ "serde_with",
+ "sp1-core-executor",
+ "sp1-core-machine",
+ "sp1-derive",
+ "sp1-primitives",
+ "sp1-recursion-core",
+ "sp1-stark",
+ "static_assertions",
+ "thiserror",
+ "tracing",
+ "vec_map",
+ "zkhash",
+]
+
[[package]]
name = "sp1-recursion-derive"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"proc-macro2",
"quote",
@@ -6029,8 +5471,8 @@ dependencies = [
[[package]]
name = "sp1-recursion-gnark-ffi"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"anyhow",
"bincode",
@@ -6043,19 +5485,20 @@ dependencies = [
"p3-baby-bear",
"p3-field",
"p3-symmetric",
- "rand 0.8.5",
+ "rand",
"serde",
"serde_json",
- "sha2 0.10.8",
- "sp1-core",
+ "sha2",
+ "sp1-core-machine",
"sp1-recursion-compiler",
+ "sp1-stark",
"tempfile",
]
[[package]]
name = "sp1-recursion-program"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
"itertools 0.13.0",
"p3-air",
@@ -6071,12 +5514,14 @@ dependencies = [
"p3-poseidon2",
"p3-symmetric",
"p3-util",
- "rand 0.8.5",
+ "rand",
"serde",
- "sp1-core",
+ "sp1-core-executor",
+ "sp1-core-machine",
"sp1-primitives",
"sp1-recursion-compiler",
"sp1-recursion-core",
+ "sp1-stark",
"stacker",
"tracing",
]
@@ -6102,22 +5547,34 @@ dependencies = [
]
[[package]]
-name = "sp1-server"
-version = "1.1.1"
-source = "git+https://github.com/succinctlabs/sp1?rev=v1.1.1#5f3b8d74beabe6029669f5972d9515666f628560"
+name = "sp1-stark"
+version = "2.0.0"
+source = "git+https://github.com/succinctlabs/sp1.git?branch=dev#7457d8be7a25e0429f6ca5d8ce9565130545e2f9"
dependencies = [
- "bincode",
- "ctrlc",
- "prost",
- "prost-types",
+ "arrayref",
+ "getrandom",
+ "hashbrown 0.14.5",
+ "itertools 0.13.0",
+ "p3-air",
+ "p3-baby-bear",
+ "p3-challenger",
+ "p3-commit",
+ "p3-dft",
+ "p3-field",
+ "p3-fri",
+ "p3-matrix",
+ "p3-maybe-rayon",
+ "p3-merkle-tree",
+ "p3-poseidon2",
+ "p3-symmetric",
+ "p3-uni-stark",
+ "p3-util",
+ "rayon-scan",
"serde",
- "serde_json",
- "sp1-core",
- "sp1-prover",
- "tokio",
+ "sp1-derive",
+ "sp1-primitives",
+ "sysinfo",
"tracing",
- "tracing-subscriber 0.3.18",
- "twirp-rs",
]
[[package]]
@@ -6177,32 +5634,13 @@ version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
-[[package]]
-name = "strum"
-version = "0.25.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
-
[[package]]
name = "strum"
version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
dependencies = [
- "strum_macros 0.26.4",
-]
-
-[[package]]
-name = "strum_macros"
-version = "0.25.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
-dependencies = [
- "heck 0.4.1",
- "proc-macro2",
- "quote",
- "rustversion",
- "syn 2.0.74",
+ "strum_macros",
]
[[package]]
@@ -6211,7 +5649,7 @@ version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
dependencies = [
- "heck 0.5.0",
+ "heck",
"proc-macro2",
"quote",
"rustversion",
@@ -6227,7 +5665,7 @@ dependencies = [
"byteorder",
"crunchy",
"lazy_static",
- "rand 0.8.5",
+ "rand",
"rustc-hex",
]
@@ -6246,12 +5684,6 @@ dependencies = [
"zeroize",
]
-[[package]]
-name = "subtle-ng"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"
-
[[package]]
name = "syn"
version = "1.0.109"
@@ -6298,6 +5730,21 @@ version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
+[[package]]
+name = "sysinfo"
+version = "0.30.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
+dependencies = [
+ "cfg-if",
+ "core-foundation-sys",
+ "libc",
+ "ntapi",
+ "once_cell",
+ "rayon",
+ "windows",
+]
+
[[package]]
name = "system-configuration"
version = "0.5.1"
@@ -6325,12 +5772,6 @@ version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
-[[package]]
-name = "target-lexicon"
-version = "0.12.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
-
[[package]]
name = "tempfile"
version = "3.12.0"
@@ -6344,97 +5785,6 @@ dependencies = [
"windows-sys 0.59.0",
]
-[[package]]
-name = "tendermint"
-version = "0.34.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15ab8f0a25d0d2ad49ac615da054d6a76aa6603ff95f7d18bafdd34450a1a04b"
-dependencies = [
- "bytes",
- "digest 0.10.7",
- "ed25519",
- "ed25519-consensus",
- "flex-error",
- "futures",
- "num-traits",
- "once_cell",
- "prost",
- "prost-types",
- "serde",
- "serde_bytes",
- "serde_json",
- "serde_repr",
- "sha2 0.10.8",
- "signature",
- "subtle",
- "subtle-encoding",
- "tendermint-proto",
- "time",
- "zeroize",
-]
-
-[[package]]
-name = "tendermint-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
- "serde",
- "serde_json",
- "tendermint",
- "tendermint-light-client-verifier",
-]
-
-[[package]]
-name = "tendermint-light-client-verifier"
-version = "0.34.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b8090d0eef9ad57b1b913b5e358e26145c86017e87338136509b94383a4af25"
-dependencies = [
- "derive_more",
- "flex-error",
- "serde",
- "tendermint",
- "time",
-]
-
-[[package]]
-name = "tendermint-proto"
-version = "0.34.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b797dd3d2beaaee91d2f065e7bdf239dc8d80bba4a183a288bc1279dd5a69a1e"
-dependencies = [
- "bytes",
- "flex-error",
- "num-derive",
- "num-traits",
- "prost",
- "prost-types",
- "serde",
- "serde_bytes",
- "subtle-encoding",
- "time",
-]
-
-[[package]]
-name = "term_size"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
-dependencies = [
- "libc",
- "winapi",
-]
-
-[[package]]
-name = "textplots"
-version = "0.8.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f59b64803118dbff62f92842b3154a2c802dfd8e18660132bbcbfb141c637ae3"
-dependencies = [
- "drawille",
- "rgb",
-]
-
[[package]]
name = "thiserror"
version = "1.0.63"
@@ -6516,16 +5866,6 @@ dependencies = [
"crunchy",
]
-[[package]]
-name = "tinytemplate"
-version = "1.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
-dependencies = [
- "serde",
- "serde_json",
-]
-
[[package]]
name = "tinyvec"
version = "1.8.0"
@@ -6570,16 +5910,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "tokio-native-tls"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
-dependencies = [
- "native-tls",
- "tokio",
-]
-
[[package]]
name = "tokio-rustls"
version = "0.24.1"
@@ -6670,17 +6000,6 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
-[[package]]
-name = "tracer"
-version = "0.2.0"
-source = "git+https://github.com/a16z/jolt?rev=845d39af373de078ee2616cf36a255f36f38334a#845d39af373de078ee2616cf36a255f36f38334a"
-dependencies = [
- "common",
- "fnv",
- "object 0.32.2",
- "tracing",
-]
-
[[package]]
name = "tracing"
version = "0.1.40"
@@ -6704,17 +6023,6 @@ dependencies = [
"syn 2.0.74",
]
-[[package]]
-name = "tracing-chrome"
-version = "0.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf0a738ed5d6450a9fb96e86a23ad808de2b727fd1394585da5cdd6788ffe724"
-dependencies = [
- "serde_json",
- "tracing-core",
- "tracing-subscriber 0.3.18",
-]
-
[[package]]
name = "tracing-core"
version = "0.1.32"
@@ -6725,17 +6033,6 @@ dependencies = [
"valuable",
]
-[[package]]
-name = "tracing-flame"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9"
-dependencies = [
- "lazy_static",
- "tracing",
- "tracing-subscriber 0.3.18",
-]
-
[[package]]
name = "tracing-forest"
version = "0.1.6"
@@ -6787,19 +6084,6 @@ dependencies = [
"tracing-log",
]
-[[package]]
-name = "tracing-texray"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "07b7943a21ef76920e7250b59946b0068221c323bf1077baab36164477d63efc"
-dependencies = [
- "lazy_static",
- "parking_lot",
- "term_size",
- "tracing",
- "tracing-subscriber 0.3.18",
-]
-
[[package]]
name = "try-lock"
version = "0.2.5"
@@ -6926,12 +6210,6 @@ version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
-[[package]]
-name = "unicode-width"
-version = "0.1.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
-
[[package]]
name = "untrusted"
version = "0.9.0"
@@ -6967,6 +6245,15 @@ version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
+[[package]]
+name = "vec_map"
+version = "0.8.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
+dependencies = [
+ "serde",
+]
+
[[package]]
name = "vek"
version = "0.15.10"
@@ -7007,16 +6294,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "walkdir"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
-dependencies = [
- "same-file",
- "winapi-util",
-]
-
[[package]]
name = "want"
version = "0.3.1"
@@ -7026,12 +6303,6 @@ dependencies = [
"try-lock",
]
-[[package]]
-name = "wasi"
-version = "0.9.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
@@ -7179,21 +6450,22 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-[[package]]
-name = "winapi-util"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
-dependencies = [
- "windows-sys 0.59.0",
-]
-
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
+[[package]]
+name = "windows"
+version = "0.52.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
+dependencies = [
+ "windows-core",
+ "windows-targets 0.52.6",
+]
+
[[package]]
name = "windows-core"
version = "0.52.0"
@@ -7473,10 +6745,10 @@ dependencies = [
"jubjub",
"lazy_static",
"pasta_curves 0.5.1",
- "rand 0.8.5",
+ "rand",
"serde",
- "sha2 0.10.8",
- "sha3 0.10.8",
+ "sha2",
+ "sha3",
"subtle",
]
diff --git a/Dockerfile.gpu b/Dockerfile.gpu
new file mode 100644
index 0000000..dec858b
--- /dev/null
+++ b/Dockerfile.gpu
@@ -0,0 +1,42 @@
+FROM nvidia/cuda:12.5.1-devel-ubuntu20.04
+
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \
+ curl \
+ build-essential \
+ protobuf-compiler \
+ git \
+ libssl-dev \
+ pkg-config \
+ python3 \
+ python3-pip \
+ build-essential \
+ libc6 \
+ gcc \
+ g++ \
+ && rm -rf /var/lib/apt/lists/*
+
+# ENV DONT_USE_CPU_EXTENSIONS=1
+# ENV RUSTFLAGS="-C target-cpu=generic"
+
+# Install Rust
+RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
+ENV PATH="/root/.cargo/bin:${PATH}"
+
+# Install Toolchains
+ADD install.sh /install.sh
+RUN chmod +x /install.sh && /install.sh
+
+# Set the working directory in the container
+WORKDIR /usr/src/app
+
+# Add source code to container
+ADD . /usr/src/app
+
+RUN cargo build -p sp1-benchmarks-eval
+
+# install docker for dind
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \
+ docker.io
+
+
+ENTRYPOINT ["/bin/bash", "-c"]
\ No newline at end of file
diff --git a/eval.sh b/eval.sh
index 18e0cb7..a9c88d5 100755
--- a/eval.sh
+++ b/eval.sh
@@ -45,9 +45,9 @@ else
fi
# Set the compilation flags.
-if [ "$GPU_EXISTS" = false ]; then
- export RUSTFLAGS='-C target-cpu=native -C target_feature=+avx512ifma,+avx512vl'
-fi
+# if [ "$GPU_EXISTS" = false ]; then
+# export RUSTFLAGS='-C target-cpu=native'
+# fi
# Set the logging level.
export RUST_LOG=info
diff --git a/eval/Cargo.toml b/eval/Cargo.toml
index f331870..9974cbc 100644
--- a/eval/Cargo.toml
+++ b/eval/Cargo.toml
@@ -13,42 +13,25 @@ vergen = { version = "8", default-features = false, features = [
[dependencies]
clap = { version = "4.5.9", features = ["derive"] }
csv = "1.3.0"
-serde = { version = "1.0.196", features = ["derive"] }
+serde = { version = "1.0.207", features = ["derive"] }
bincode = "1.3.3"
serde_json = "1.0"
+chrono = "0.4.38"
# sp1
-sp1-prover = { git = "https://github.com/succinctlabs/sp1", rev = "v1.1.1" }
-sp1-core = { git = "https://github.com/succinctlabs/sp1", rev = "v1.1.1" }
-sp1-server = { git = "https://github.com/succinctlabs/sp1", rev = "v1.1.1", optional = true }
+sp1-prover = { git = "https://github.com/succinctlabs/sp1", rev = "2e8b0a8" }
+sp1-core-executor = { git = "https://github.com/succinctlabs/sp1.git", rev = "2e8b0a8" }
+sp1-core-machine = { git = "https://github.com/succinctlabs/sp1.git", rev = "2e8b0a8" }
+sp1-cuda = { git = "https://github.com/succinctlabs/sp1.git", rev = "2e8b0a8", optional = true }
+sp1-stark = { git = "https://github.com/succinctlabs/sp1.git", rev = "2e8b0a8" }
# risc0
-risc0-zkvm = { version = "=1.0.0", default-features = false, features = [
- "prove",
-] }
-
-# jolt
-jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", features = [
- "host",
-], optional = true, rev = "845d39af373de078ee2616cf36a255f36f38334a" }
-fibonacci-jolt = { path = "../programs/fibonacci-jolt", optional = true }
-loop-jolt = { path = "../programs/loop-jolt", optional = true }
-tendermint-jolt = { path = "../programs/tendermint-jolt", optional = true }
-sha2-chain-jolt = { path = "../programs/sha2-chain-jolt", optional = true }
+risc0-zkvm = { version = "=1.0.0", default-features = false, features = ["prove"], optional = true }
-# reth
+# sp1-reth
sp1-reth-primitives = { git = "https://github.com/succinctlabs/sp1-reth.git", branch = "john/update-for-v1" }
-chrono = "0.4.38"
[features]
default = []
-cuda = ["dep:sp1-server", "risc0-zkvm/cuda"]
-
-# jolt
-jolt-zkvm = [
- "jolt",
- "fibonacci-jolt",
- "loop-jolt",
- "tendermint-jolt",
- "sha2-chain-jolt",
-]
+cuda = ["dep:sp1-cuda", "risc0-zkvm?/cuda"]
+risc0 = ["dep:risc0-zkvm"]
\ No newline at end of file
diff --git a/eval/src/jolt.rs b/eval/src/jolt.rs
deleted file mode 100644
index 6389d6e..0000000
--- a/eval/src/jolt.rs
+++ /dev/null
@@ -1,190 +0,0 @@
-use std::time::Instant;
-
-use jolt::{
- host::{analyze::ProgramSummary, Program},
- Jolt, JoltPreprocessing, Proof, RV32IJoltVM, F, G,
-};
-
-use crate::{EvalArgs, PerformanceReport, PerformanceReportGenerator, ProgramId};
-use fibonacci_jolt::{analyze_fibonacci, preprocess_fibonacci, prove_fibonacci};
-use loop_jolt::{analyze_loop_jolt, preprocess_loop_jolt, prove_loop_jolt};
-use sha2_chain_jolt::{analyze_sha2_chain, preprocess_sha2_chain, prove_sha2_chain};
-use tendermint_jolt::{analyze_tendermint, preprocess_tendermint, prove_tendermint};
-
-pub struct JoltPerformanceReportGenerator {}
-
-struct ProveAndVerifyResult {
- total_cycles: u64,
- prove_duration: f64,
- verify_duration: f64,
- proof_size: usize,
-}
-
-fn get_jolt_statistics
(
- analyze: fn() -> ProgramSummary,
- program: Program,
- preprocessing: JoltPreprocessing,
- prove: P,
-) -> ProveAndVerifyResult
-where
- P: Fn(Program, JoltPreprocessing) -> Proof,
-{
- // Get the cycle count of the program.
- let summary = analyze();
- let instruction_counts = summary.analyze::();
- let total_cycles = instruction_counts.iter().map(|(_, count)| count).sum::();
- println!("Total cycles: {}", total_cycles);
-
- // Generate the proof.
- let prove_start = Instant::now();
- let proof = prove(program, preprocessing.clone());
- let prove_duration = prove_start.elapsed().as_secs_f64();
-
- // Get the proof size.
- let proof_size = proof.size().expect("Failed to get proof size");
-
- // Verify the proof.
- let verify_start = Instant::now();
- let _ = RV32IJoltVM::verify(preprocessing, proof.proof, proof.commitments);
- let verify_duration = verify_start.elapsed().as_secs_f64();
-
- ProveAndVerifyResult {
- total_cycles: total_cycles as u64,
- prove_duration,
- verify_duration,
- proof_size,
- }
-}
-
-fn get_jolt_statistics_v2(
- analyze: fn([u8; 32], u32) -> ProgramSummary,
- program: Program,
- preprocessing: JoltPreprocessing,
- prove: P,
- a: [u8; 32],
- b: u32,
-) -> ProveAndVerifyResult
-where
- P: Fn(Program, JoltPreprocessing) -> Proof,
-{
- // Get the cycle count of the program.
- let summary = analyze(a, b);
- let instruction_counts = summary.analyze::();
- let total_cycles = instruction_counts.iter().map(|(_, count)| count).sum::();
- println!("Total cycles: {}", total_cycles);
-
- // Generate the proof.
- let prove_start = Instant::now();
- let proof = prove(program, preprocessing.clone());
- let prove_duration = prove_start.elapsed().as_secs_f64();
-
- // Get the proof size.
- let proof_size = proof.size().expect("Failed to get proof size");
-
- // Verify the proof.
- let verify_start = Instant::now();
- let _ = RV32IJoltVM::verify(preprocessing, proof.proof, proof.commitments);
- let verify_duration = verify_start.elapsed().as_secs_f64();
-
- ProveAndVerifyResult {
- total_cycles: total_cycles as u64,
- prove_duration,
- verify_duration,
- proof_size,
- }
-}
-
-fn get_jolt_statistics_for_program(program: ProgramId) -> ProveAndVerifyResult {
- match program {
- ProgramId::Fibonacci => {
- println!("Preprocessing fibonacci");
- // Preprocess to separate compilation and trace generation separately from proving.
- let (program, preprocessing) = preprocess_fibonacci();
- println!("Starting proving");
- // Wrap the prove function in a closure that ignores the output.
- let prove_wrapper = |program: Program, preprocessing: JoltPreprocessing| {
- let (_, proof) = prove_fibonacci(program, preprocessing);
- proof
- };
- get_jolt_statistics(analyze_fibonacci, program, preprocessing, prove_wrapper)
- }
- ProgramId::Loop => {
- println!("Preprocessing loop");
- // Preprocess to separate compilation and trace generation separately from proving.
- let (program, preprocessing) = preprocess_loop_jolt();
- println!("Starting proving");
- // Wrap the prove function in a closure that ignores the output.
- let prove_wrapper = |program: Program, preprocessing: JoltPreprocessing| {
- let (_, proof) = prove_loop_jolt(program, preprocessing);
- proof
- };
- get_jolt_statistics(analyze_loop_jolt, program, preprocessing, prove_wrapper)
- }
- ProgramId::Tendermint => {
- println!("Preprocessing tendermint");
- // Preprocess to separate compilation and trace generation separately from proving.
- let (program, preprocessing) = preprocess_tendermint();
- println!("Starting proving");
- // Wrap the prove function in a closure that ignores the output.
- let prove_wrapper = |program: Program, preprocessing: JoltPreprocessing| {
- let (_, proof) = prove_tendermint(program, preprocessing);
- proof
- };
- get_jolt_statistics(analyze_tendermint, program, preprocessing, prove_wrapper)
- }
- ProgramId::Sha2Chain => {
- println!("Preprocessing sha2-chain");
- // Preprocess to separate compilation and trace generation separately from proving.
- let (program, preprocessing) = preprocess_sha2_chain();
- println!("Starting proving");
- // Wrap the prove function in a closure that ignores the output.
- let input = [5u8; 32];
- let num_iters: u32 = 2500;
- let prove_wrapper = |program: Program, preprocessing: JoltPreprocessing| {
- let (_, proof) = prove_sha2_chain(program, preprocessing, input, num_iters);
- proof
- };
- get_jolt_statistics_v2(
- analyze_sha2_chain,
- program,
- preprocessing,
- prove_wrapper,
- input,
- num_iters,
- )
- }
- _ => {
- todo!();
- }
- }
-}
-
-impl PerformanceReportGenerator for JoltPerformanceReportGenerator {
- fn get_report(args: &EvalArgs) -> PerformanceReport {
- let res = get_jolt_statistics_for_program(args.program.clone());
-
- // Create the performance report.
- PerformanceReport {
- program: args.program.to_string(),
- prover: args.prover.to_string(),
- hashfn: args.hashfn.to_string(),
- shard_size: 0,
- shards: 0,
- cycles: res.total_cycles,
- speed: (res.total_cycles as f64 / res.prove_duration) as f64,
- execution_duration: 0.0,
- prove_duration: 0.0,
- core_prove_duration: res.prove_duration,
- core_verify_duration: res.verify_duration,
- core_proof_size: res.proof_size,
- recursive_prove_duration: 0.0,
- recursive_verify_duration: 0.0,
- recursive_proof_size: 0,
- compressed_proof_size: None,
- compressed_proof_duration: None,
- bn254_compress_duration: 0.0,
- bn254_compress_proof_size: 0,
- groth16_compress_duration: 0.0,
- }
- }
-}
diff --git a/eval/src/main.rs b/eval/src/main.rs
index 7851de7..2f545e5 100644
--- a/eval/src/main.rs
+++ b/eval/src/main.rs
@@ -1,6 +1,3 @@
-#[cfg(feature = "jolt-zkvm")]
-mod jolt;
-
mod risc0;
mod sp1;
mod types;
@@ -78,16 +75,6 @@ fn main() {
let report = match args.prover {
ProverId::Risc0 => risc0::Risc0Evaluator::eval(&args),
ProverId::SP1 => sp1::SP1Evaluator::eval(&args),
- ProverId::JoltZkvm => {
- #[cfg(feature = "jolt-zkvm")]
- {
- jolt::JoltPerformanceReportGenerator::get_report(&args)
- }
- #[cfg(not(feature = "jolt-zkvm"))]
- {
- unreachable!()
- }
- }
};
// Create the results directory if it doesn't exist.
diff --git a/eval/src/risc0.rs b/eval/src/risc0.rs
index 26813b6..77f18d5 100644
--- a/eval/src/risc0.rs
+++ b/eval/src/risc0.rs
@@ -1,17 +1,24 @@
+#[cfg(feature = "risc0")]
use std::fs;
+#[cfg(feature = "risc0")]
use risc0_zkvm::{
compute_image_id, get_prover_server, ExecutorEnv, ExecutorImpl, ProverOpts, VerifierContext,
};
-
+#[cfg(feature = "risc0")]
use crate::{
utils::{get_elf, get_reth_input, time_operation},
- EvalArgs, HashFnId, PerformanceReport, ProgramId,
+ HashFnId, ProgramId,
+};
+
+use crate::{
+ EvalArgs, PerformanceReport,
};
pub struct Risc0Evaluator;
impl Risc0Evaluator {
+ #[cfg(feature = "risc0")]
pub fn eval(args: &EvalArgs) -> PerformanceReport {
if args.hashfn != HashFnId::Poseidon {
panic!("Only Poseidon hash function is supported for Risc0.");
@@ -79,7 +86,6 @@ impl Risc0Evaluator {
let ((), core_verify_duration) = time_operation(|| receipt.verify(image_id).unwrap());
// Now compress the proof with recursion.
- // let composite_receipt = receipt.inner.composite().unwrap();
let (compressed_proof, compress_duration) =
time_operation(|| prover.compress(&ProverOpts::succinct(), &receipt).unwrap());
@@ -112,4 +118,9 @@ impl Risc0Evaluator {
compress_proof_size: recursive_proof_size,
}
}
-}
+
+ #[cfg(not(feature = "risc0"))]
+ pub fn eval(_args: &EvalArgs) -> PerformanceReport {
+ panic!("RISC0 feature is not enabled. Please compile with --features risc0");
+ }
+}
\ No newline at end of file
diff --git a/eval/src/sp1.rs b/eval/src/sp1.rs
index d8269b0..b54cda4 100644
--- a/eval/src/sp1.rs
+++ b/eval/src/sp1.rs
@@ -5,18 +5,22 @@ use crate::{
EvalArgs, PerformanceReport, ProgramId,
};
-use sp1_core::{runtime::SP1Context, utils::SP1ProverOpts};
+use sp1_core_executor::SP1Context;
+
use sp1_prover::{components::DefaultProverComponents, utils::get_cycles, SP1Prover, SP1Stdin};
#[cfg(feature = "cuda")]
-use sp1_server::SP1ProverServer;
+use sp1_cuda::SP1CudaProver;
+
+#[cfg(not(feature = "cuda"))]
+use sp1_stark::SP1ProverOpts;
pub struct SP1Evaluator;
impl SP1Evaluator {
pub fn eval(args: &EvalArgs) -> PerformanceReport {
// Setup the logger.
- sp1_core::utils::setup_logger();
+ sp1_core_machine::utils::setup_logger();
// Set enviroment variables to configure the prover.
std::env::set_var("SHARD_SIZE", format!("{}", 1 << args.shard_size));
@@ -42,7 +46,7 @@ impl SP1Evaluator {
let prover = SP1Prover::::new();
#[cfg(feature = "cuda")]
- let server = SP1ProverServer::new();
+ let server = SP1CudaProver::new().expect("Failed to initialize CUDA prover");
// Setup the program.
let (pk, vk) = prover.setup(&elf);
diff --git a/eval/src/types.rs b/eval/src/types.rs
index c81928b..92dbac4 100644
--- a/eval/src/types.rs
+++ b/eval/src/types.rs
@@ -15,7 +15,6 @@ pub enum ProgramId {
pub enum ProverId {
Risc0,
SP1,
- JoltZkvm,
}
/// An identifier used to select the hash function to evaluate.
@@ -47,7 +46,6 @@ impl ProverId {
match self {
ProverId::Risc0 => "risc0".to_string(),
ProverId::SP1 => "sp1".to_string(),
- ProverId::JoltZkvm => "jolt-zkvm".to_string(),
}
}
}
diff --git a/install.sh b/install.sh
index b3b3f1b..ba6cc3d 100644
--- a/install.sh
+++ b/install.sh
@@ -9,23 +9,29 @@ error_exit() {
exit 1
}
-# Install Rust and the nightly toolchain
-echo 1 | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh || error_exit "Installing Rust"
+# Install Rust
+curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y || error_exit "Installing Rust"
source $HOME/.cargo/env
-yes |rustup install nightly || error_exit "Installing nightly toolchain"
+
+# Install the nightly toolchain
+rustup toolchain install nightly --profile minimal -c rust-src || error_exit "Installing nightly toolchain"
+
+# Set the default toolchain to nightly
+rustup default nightly || error_exit "Setting default toolchain to nightly"
# Install the Succinct toolchain
curl -L https://sp1.succinct.xyz | bash || error_exit "Installing Succinct toolchain"
+export PATH="$PATH:$HOME/.sp1/bin"
sp1up || error_exit "Updating Succinct toolchain"
cargo prove --version || error_exit "Checking cargo prove version"
# Install the jolt toolchain
-yes | cargo +nightly install --git https://github.com/a16z/jolt --force --bins jolt || error_exit "Installing jolt toolchain"
-yes | jolt install-toolchain || error_exit "Installing jolt runtime"
+cargo install --git https://github.com/a16z/jolt --force --bins jolt || error_exit "Installing jolt toolchain"
+jolt install-toolchain || error_exit "Installing jolt runtime"
# Install the Risc0 toolchain
-yes | cargo install cargo-binstall || error_exit "Installing cargo-binstall"
-yes | cargo binstall cargo-risczero || error_exit "Installing cargo-risczero"
-yes | cargo risczero install || error_exit "Installing Risc0 toolchain"
+cargo install cargo-binstall --force || error_exit "Installing cargo-binstall"
+cargo binstall cargo-risczero -y || error_exit "Installing cargo-risczero"
+cargo risczero install || error_exit "Installing Risc0 toolchain"
echo "All installations completed successfully."
\ No newline at end of file
diff --git a/programs/fibonacci-jolt/Cargo.lock b/programs/fibonacci-jolt/Cargo.lock
deleted file mode 100644
index 5d5e7f8..0000000
--- a/programs/fibonacci-jolt/Cargo.lock
+++ /dev/null
@@ -1,320 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "ark-serialize"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
-dependencies = [
- "ark-serialize-derive",
- "ark-std",
- "digest",
- "num-bigint",
-]
-
-[[package]]
-name = "ark-serialize-derive"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "ark-std"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
-dependencies = [
- "num-traits",
- "rand",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
-
-[[package]]
-name = "cobs"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
-
-[[package]]
-name = "common"
-version = "0.2.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "ark-serialize",
- "serde",
- "serde_json",
- "strum_macros",
-]
-
-[[package]]
-name = "crypto-common"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
-dependencies = [
- "generic-array",
- "typenum",
-]
-
-[[package]]
-name = "digest"
-version = "0.10.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
-dependencies = [
- "crypto-common",
-]
-
-[[package]]
-name = "embedded-io"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
-
-[[package]]
-name = "fibonacci-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
-]
-
-[[package]]
-name = "generic-array"
-version = "0.14.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
-dependencies = [
- "typenum",
- "version_check",
-]
-
-[[package]]
-name = "heck"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-[[package]]
-name = "itoa"
-version = "1.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
-
-[[package]]
-name = "jolt-sdk"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "jolt-sdk-macros",
- "postcard",
- "serde",
-]
-
-[[package]]
-name = "jolt-sdk-macros"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "common",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "num-bigint"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
-dependencies = [
- "autocfg",
- "num-integer",
- "num-traits",
-]
-
-[[package]]
-name = "num-integer"
-version = "0.1.46"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.2.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "postcard"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8"
-dependencies = [
- "cobs",
- "embedded-io",
- "serde",
-]
-
-[[package]]
-name = "ppv-lite86"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.81"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.36"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-dependencies = [
- "rand_chacha",
- "rand_core",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-dependencies = [
- "ppv-lite86",
- "rand_core",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-
-[[package]]
-name = "rustversion"
-version = "1.0.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
-
-[[package]]
-name = "ryu"
-version = "1.0.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
-
-[[package]]
-name = "serde"
-version = "1.0.198"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.198"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.60",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.116"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
-dependencies = [
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "strum_macros"
-version = "0.25.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
-dependencies = [
- "heck",
- "proc-macro2",
- "quote",
- "rustversion",
- "syn 2.0.60",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.109"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "syn"
-version = "2.0.60"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "typenum"
-version = "1.17.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
-
-[[package]]
-name = "version_check"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
diff --git a/programs/fibonacci-jolt/Cargo.toml b/programs/fibonacci-jolt/Cargo.toml
deleted file mode 100644
index 289e347..0000000
--- a/programs/fibonacci-jolt/Cargo.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[package]
-name = "fibonacci-jolt"
-version = "0.1.0"
-edition = "2021"
-
-[[bin]]
-name = "guest"
-path = "./src/lib.rs"
-
-[dependencies]
-jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", features = [
- "guest-std",
-], rev = "845d39af373de078ee2616cf36a255f36f38334a" }
-serde = { version = "1.0.204", default-features = false, features = ["derive"] }
-
-[features]
-guest = []
diff --git a/programs/fibonacci-jolt/src/lib.rs b/programs/fibonacci-jolt/src/lib.rs
deleted file mode 100644
index ea6cbf8..0000000
--- a/programs/fibonacci-jolt/src/lib.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![no_main]
-
-#[jolt::provable]
-fn fibonacci() -> u32 {
- let n = 300000;
- let mut a = 0;
- let mut b = 1;
- for _ in 0..n {
- let sum = (a + b) % 7919; // Mod to avoid overflow
- a = b;
- b = sum;
- }
- b
-}
diff --git a/programs/loop-jolt/Cargo.lock b/programs/loop-jolt/Cargo.lock
deleted file mode 100644
index 5d5e7f8..0000000
--- a/programs/loop-jolt/Cargo.lock
+++ /dev/null
@@ -1,320 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "ark-serialize"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
-dependencies = [
- "ark-serialize-derive",
- "ark-std",
- "digest",
- "num-bigint",
-]
-
-[[package]]
-name = "ark-serialize-derive"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "ark-std"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
-dependencies = [
- "num-traits",
- "rand",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
-
-[[package]]
-name = "cobs"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67ba02a97a2bd10f4b59b25c7973101c79642302776489e030cd13cdab09ed15"
-
-[[package]]
-name = "common"
-version = "0.2.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "ark-serialize",
- "serde",
- "serde_json",
- "strum_macros",
-]
-
-[[package]]
-name = "crypto-common"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
-dependencies = [
- "generic-array",
- "typenum",
-]
-
-[[package]]
-name = "digest"
-version = "0.10.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
-dependencies = [
- "crypto-common",
-]
-
-[[package]]
-name = "embedded-io"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
-
-[[package]]
-name = "fibonacci-jolt"
-version = "0.1.0"
-dependencies = [
- "jolt-sdk",
-]
-
-[[package]]
-name = "generic-array"
-version = "0.14.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
-dependencies = [
- "typenum",
- "version_check",
-]
-
-[[package]]
-name = "heck"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-[[package]]
-name = "itoa"
-version = "1.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
-
-[[package]]
-name = "jolt-sdk"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "jolt-sdk-macros",
- "postcard",
- "serde",
-]
-
-[[package]]
-name = "jolt-sdk-macros"
-version = "0.1.0"
-source = "git+https://github.com/a16z/jolt?rev=8852dd1#8852dd14839e96201c5f18a6711787e21287ac18"
-dependencies = [
- "common",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "num-bigint"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
-dependencies = [
- "autocfg",
- "num-integer",
- "num-traits",
-]
-
-[[package]]
-name = "num-integer"
-version = "0.1.46"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.2.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "postcard"
-version = "1.0.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a55c51ee6c0db07e68448e336cf8ea4131a620edefebf9893e759b2d793420f8"
-dependencies = [
- "cobs",
- "embedded-io",
- "serde",
-]
-
-[[package]]
-name = "ppv-lite86"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.81"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.36"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-dependencies = [
- "rand_chacha",
- "rand_core",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-dependencies = [
- "ppv-lite86",
- "rand_core",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-
-[[package]]
-name = "rustversion"
-version = "1.0.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47"
-
-[[package]]
-name = "ryu"
-version = "1.0.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
-
-[[package]]
-name = "serde"
-version = "1.0.198"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.198"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.60",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.116"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
-dependencies = [
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "strum_macros"
-version = "0.25.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
-dependencies = [
- "heck",
- "proc-macro2",
- "quote",
- "rustversion",
- "syn 2.0.60",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.109"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "syn"
-version = "2.0.60"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "typenum"
-version = "1.17.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
-
-[[package]]
-name = "version_check"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
diff --git a/programs/loop-jolt/Cargo.toml b/programs/loop-jolt/Cargo.toml
deleted file mode 100644
index dd01caf..0000000
--- a/programs/loop-jolt/Cargo.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[package]
-name = "loop-jolt"
-version = "0.1.0"
-edition = "2021"
-
-[[bin]]
-name = "guest"
-path = "./src/lib.rs"
-
-[dependencies]
-jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", features = [
- "guest-std",
-], rev = "845d39af373de078ee2616cf36a255f36f38334a" }
-serde = { version = "1.0.204", default-features = false, features = ["derive"] }
-
-[features]
-guest = []
diff --git a/programs/loop-jolt/src/lib.rs b/programs/loop-jolt/src/lib.rs
deleted file mode 100644
index 00ddaf3..0000000
--- a/programs/loop-jolt/src/lib.rs
+++ /dev/null
@@ -1,38 +0,0 @@
-// This code is borrowed from RISC Zero's benchmarks.
-//
-// Copyright 2024 RISC Zero, Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-#![no_main]
-
-#[cfg(target_os = "zkvm")]
-use core::arch::asm;
-
-#[jolt::provable]
-fn loop_jolt() {
- let iterations = 3000 * 1024;
- for i in 0..iterations {
- memory_barrier(&i);
- }
-}
-
-#[allow(unused_variables)]
-pub fn memory_barrier(ptr: *const T) {
- #[cfg(target_os = "zkvm")]
- unsafe {
- asm!("/* {0} */", in(reg) (ptr))
- }
- #[cfg(not(target_os = "zkvm"))]
- core::sync::atomic::fence(core::sync::atomic::Ordering::SeqCst)
-}
diff --git a/programs/sha2-chain-jolt/Cargo.toml b/programs/sha2-chain-jolt/Cargo.toml
deleted file mode 100644
index 304f9e6..0000000
--- a/programs/sha2-chain-jolt/Cargo.toml
+++ /dev/null
@@ -1,19 +0,0 @@
-[package]
-name = "sha2-chain-jolt"
-version = "0.1.0"
-edition = "2021"
-
-[[bin]]
-name = "guest"
-path = "./src/lib.rs"
-
-[dependencies]
-
-jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", features = [
- "guest-std",
-], rev = "845d39af373de078ee2616cf36a255f36f38334a" }
-sha2 = { version = "0.10.8", default-features = false }
-serde = { version = "1.0.204", default-features = false, features = ["derive"] }
-
-[features]
-guest = []
diff --git a/programs/sha2-chain-jolt/src/lib.rs b/programs/sha2-chain-jolt/src/lib.rs
deleted file mode 100644
index 7eb8763..0000000
--- a/programs/sha2-chain-jolt/src/lib.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// Code taken from JOLT's benchmark repository.
-
-#![cfg_attr(feature = "guest", no_std)]
-#![no_main]
-
-use sha2::{Digest, Sha256};
-
-#[jolt::provable]
-fn sha2_chain(input: [u8; 32], num_iters: u32) -> [u8; 32] {
- let mut hash = input;
- for _ in 0..num_iters {
- let mut hasher = Sha256::new();
- hasher.update(hash);
- let res = &hasher.finalize();
- hash = Into::<[u8; 32]>::into(*res);
- }
-
- hash
-}
diff --git a/programs/tendermint-jolt/Cargo.lock b/programs/tendermint-jolt/Cargo.lock
deleted file mode 100644
index 278d4c7..0000000
--- a/programs/tendermint-jolt/Cargo.lock
+++ /dev/null
@@ -1,1239 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "ahash"
-version = "0.8.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42cd52102d3df161c77a887b608d7a4897d7cc112886a9537b738a887a03aaff"
-dependencies = [
- "cfg-if",
- "once_cell",
- "version_check",
- "zerocopy",
-]
-
-[[package]]
-name = "anyhow"
-version = "1.0.79"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
-
-[[package]]
-name = "ark-bn254"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a22f4561524cd949590d78d7d4c5df8f592430d221f7f3c9497bbafd8972120f"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-std",
-]
-
-[[package]]
-name = "ark-crypto-primitives"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f3a13b34da09176a8baba701233fdffbaa7c1b1192ce031a3da4e55ce1f1a56"
-dependencies = [
- "ark-ec",
- "ark-ff",
- "ark-relations",
- "ark-serialize",
- "ark-snark",
- "ark-std",
- "blake2",
- "derivative",
- "digest",
- "sha2",
-]
-
-[[package]]
-name = "ark-ec"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba"
-dependencies = [
- "ark-ff",
- "ark-poly",
- "ark-serialize",
- "ark-std",
- "derivative",
- "hashbrown",
- "itertools 0.10.5",
- "num-traits",
- "zeroize",
-]
-
-[[package]]
-name = "ark-ff"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba"
-dependencies = [
- "ark-ff-asm",
- "ark-ff-macros",
- "ark-serialize",
- "ark-std",
- "derivative",
- "digest",
- "itertools 0.10.5",
- "num-bigint",
- "num-traits",
- "paste",
- "rustc_version",
- "zeroize",
-]
-
-[[package]]
-name = "ark-ff-asm"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348"
-dependencies = [
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "ark-ff-macros"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565"
-dependencies = [
- "num-bigint",
- "num-traits",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "ark-groth16"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "20ceafa83848c3e390f1cbf124bc3193b3e639b3f02009e0e290809a501b95fc"
-dependencies = [
- "ark-crypto-primitives",
- "ark-ec",
- "ark-ff",
- "ark-poly",
- "ark-relations",
- "ark-serialize",
- "ark-std",
-]
-
-[[package]]
-name = "ark-poly"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf"
-dependencies = [
- "ark-ff",
- "ark-serialize",
- "ark-std",
- "derivative",
- "hashbrown",
-]
-
-[[package]]
-name = "ark-relations"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00796b6efc05a3f48225e59cb6a2cda78881e7c390872d5786aaf112f31fb4f0"
-dependencies = [
- "ark-ff",
- "ark-std",
- "tracing",
- "tracing-subscriber",
-]
-
-[[package]]
-name = "ark-serialize"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5"
-dependencies = [
- "ark-serialize-derive",
- "ark-std",
- "digest",
- "num-bigint",
-]
-
-[[package]]
-name = "ark-serialize-derive"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "ark-snark"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "84d3cc6833a335bb8a600241889ead68ee89a3cf8448081fb7694c0fe503da63"
-dependencies = [
- "ark-ff",
- "ark-relations",
- "ark-serialize",
- "ark-std",
-]
-
-[[package]]
-name = "ark-std"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
-dependencies = [
- "num-traits",
- "rand",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-
-[[package]]
-name = "base64ct"
-version = "1.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
-
-[[package]]
-name = "blake2"
-version = "0.10.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
-dependencies = [
- "digest",
-]
-
-[[package]]
-name = "block-buffer"
-version = "0.10.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
-dependencies = [
- "generic-array",
-]
-
-[[package]]
-name = "bytemuck"
-version = "1.14.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f"
-dependencies = [
- "bytemuck_derive",
-]
-
-[[package]]
-name = "bytemuck_derive"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "bytes"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "cfg-if"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-[[package]]
-name = "const-oid"
-version = "0.9.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
-
-[[package]]
-name = "cpufeatures"
-version = "0.2.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "crypto-bigint"
-version = "0.5.2"
-source = "git+https://github.com/risc0/RustCrypto-crypto-bigint?tag=v0.5.2-risczero.0#8b30304277cfe553b51a78a0e693f48bbb059eb3"
-dependencies = [
- "getrandom",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "crypto-common"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
-dependencies = [
- "generic-array",
- "typenum",
-]
-
-[[package]]
-name = "curve25519-dalek"
-version = "4.1.0"
-source = "git+https://github.com/risc0/curve25519-dalek?tag=curve25519-4.1.0-risczero.1#42c4faf7dc3f640a7e3f7e4cbf43e7d5d6d46b67"
-dependencies = [
- "cfg-if",
- "cpufeatures",
- "crypto-bigint",
- "curve25519-dalek-derive",
- "digest",
- "fiat-crypto",
- "hex",
- "platforms",
- "rustc_version",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "curve25519-dalek-derive"
-version = "0.1.0"
-source = "git+https://github.com/risc0/curve25519-dalek?tag=curve25519-4.1.0-risczero.1#42c4faf7dc3f640a7e3f7e4cbf43e7d5d6d46b67"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "der"
-version = "0.7.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
-dependencies = [
- "const-oid",
- "zeroize",
-]
-
-[[package]]
-name = "deranged"
-version = "0.3.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
-dependencies = [
- "powerfmt",
-]
-
-[[package]]
-name = "derivative"
-version = "2.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "derive_more"
-version = "0.99.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "digest"
-version = "0.10.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
-dependencies = [
- "block-buffer",
- "const-oid",
- "crypto-common",
- "subtle",
-]
-
-[[package]]
-name = "downcast-rs"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
-
-[[package]]
-name = "ed25519"
-version = "2.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
-dependencies = [
- "pkcs8",
- "signature",
-]
-
-[[package]]
-name = "ed25519-consensus"
-version = "2.1.0"
-source = "git+ssh://git@github.com/succinctlabs/ed25519-consensus-private.git?branch=uma/risc0#c977b675bbc5507960a63c885e513eeb4b8be96d"
-dependencies = [
- "curve25519-dalek",
- "hex",
- "rand_core",
- "sha2",
- "zeroize",
-]
-
-[[package]]
-name = "either"
-version = "1.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
-
-[[package]]
-name = "elf"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b"
-
-[[package]]
-name = "fiat-crypto"
-version = "0.2.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1676f435fc1dadde4d03e43f5d62b259e1ce5f40bd4ffb21db2b42ebe59c1382"
-
-[[package]]
-name = "flex-error"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c606d892c9de11507fa0dcffc116434f94e105d0bbdc4e405b61519464c49d7b"
-dependencies = [
- "paste",
-]
-
-[[package]]
-name = "futures"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-channel"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
-dependencies = [
- "futures-core",
- "futures-sink",
-]
-
-[[package]]
-name = "futures-core"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
-
-[[package]]
-name = "futures-io"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
-
-[[package]]
-name = "futures-sink"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
-
-[[package]]
-name = "futures-task"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
-
-[[package]]
-name = "futures-util"
-version = "0.3.30"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
-dependencies = [
- "futures-core",
- "futures-sink",
- "futures-task",
- "pin-project-lite",
- "pin-utils",
-]
-
-[[package]]
-name = "generic-array"
-version = "0.14.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
-dependencies = [
- "typenum",
- "version_check",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.2.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
-dependencies = [
- "cfg-if",
- "libc",
- "wasi",
-]
-
-[[package]]
-name = "hashbrown"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
-dependencies = [
- "ahash",
-]
-
-[[package]]
-name = "hex"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
-
-[[package]]
-name = "itertools"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itertools"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itoa"
-version = "1.0.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
-
-[[package]]
-name = "libc"
-version = "0.2.153"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
-
-[[package]]
-name = "libm"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
-
-[[package]]
-name = "log"
-version = "0.4.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
-
-[[package]]
-name = "num-bigint"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
-dependencies = [
- "autocfg",
- "num-integer",
- "num-traits",
-]
-
-[[package]]
-name = "num-conv"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
-
-[[package]]
-name = "num-derive"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "num-derive"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "num-integer"
-version = "0.1.46"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "num-traits"
-version = "0.2.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "once_cell"
-version = "1.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
-
-[[package]]
-name = "paste"
-version = "1.0.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
-
-[[package]]
-name = "pin-project-lite"
-version = "0.2.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
-
-[[package]]
-name = "pin-utils"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-[[package]]
-name = "pkcs8"
-version = "0.10.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
-dependencies = [
- "der",
- "spki",
-]
-
-[[package]]
-name = "platforms"
-version = "3.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
-
-[[package]]
-name = "powerfmt"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
-
-[[package]]
-name = "ppv-lite86"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.78"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "prost"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a"
-dependencies = [
- "bytes",
- "prost-derive",
-]
-
-[[package]]
-name = "prost-derive"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e"
-dependencies = [
- "anyhow",
- "itertools 0.11.0",
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "prost-types"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "193898f59edcf43c26227dcd4c8427f00d99d61e95dcde58dabd49fa291d470e"
-dependencies = [
- "prost",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.35"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-dependencies = [
- "rand_chacha",
- "rand_core",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-dependencies = [
- "ppv-lite86",
- "rand_core",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-
-[[package]]
-name = "risc0-binfmt"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ae2939426c60756f910352184716a3538748208c9e11ade4a507db3b2757157"
-dependencies = [
- "anyhow",
- "elf",
- "risc0-zkp",
- "risc0-zkvm-platform",
- "serde",
- "tracing",
-]
-
-[[package]]
-name = "risc0-circuit-recursion"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a43cade35f73ad81ba974fe1d5e1513331f87052af8377b26b00a838f39c6920"
-dependencies = [
- "anyhow",
- "bytemuck",
- "hex",
- "risc0-core",
- "risc0-zkp",
- "tracing",
-]
-
-[[package]]
-name = "risc0-circuit-rv32im"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "31440989146b342a7d37c15079c9568c69b7f988f3b789f422c7d4ed76526ddb"
-dependencies = [
- "anyhow",
- "risc0-core",
- "risc0-zkp",
- "risc0-zkvm-platform",
- "tracing",
-]
-
-[[package]]
-name = "risc0-core"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02e0cbd09d03c23b572b66cd96a56143adb22bf895aca89c1a153ccebedaa0b4"
-dependencies = [
- "bytemuck",
- "rand_core",
-]
-
-[[package]]
-name = "risc0-groth16"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da1e9b8dae3f9c3862b6278b2812989a2f5a537975e5bd6a687f07cf1df68a36"
-dependencies = [
- "anyhow",
- "ark-bn254",
- "ark-groth16",
- "ark-serialize",
- "hex",
- "num-bigint",
- "num-derive 0.4.2",
- "num-traits",
- "risc0-zkp",
- "serde",
-]
-
-[[package]]
-name = "risc0-zkp"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b96b035f744ecaaa7e9809c699bc85cf669cbab6f297f141d918e9b4c8098b79"
-dependencies = [
- "anyhow",
- "blake2",
- "bytemuck",
- "digest",
- "hex",
- "paste",
- "rand_core",
- "risc0-core",
- "risc0-zkvm-platform",
- "serde",
- "sha2",
- "tracing",
-]
-
-[[package]]
-name = "risc0-zkvm"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a1275834c86176efc122a172c2b5f271a8a5d792de7efbc47dfbecaaaff9432"
-dependencies = [
- "anyhow",
- "bytemuck",
- "cfg-if",
- "getrandom",
- "hex",
- "num-derive 0.4.2",
- "num-traits",
- "risc0-binfmt",
- "risc0-circuit-recursion",
- "risc0-circuit-rv32im",
- "risc0-core",
- "risc0-groth16",
- "risc0-zkp",
- "risc0-zkvm-platform",
- "rrs-lib",
- "semver",
- "serde",
- "sha2",
- "tracing",
-]
-
-[[package]]
-name = "risc0-zkvm-platform"
-version = "0.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03b6378c9e407be18a1560ed030fd87fb6056293c56263efac46c507ae97e0d7"
-dependencies = [
- "bytemuck",
- "getrandom",
- "libm",
-]
-
-[[package]]
-name = "rrs-lib"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4382d3af3a4ebdae7f64ba6edd9114fff92c89808004c4943b393377a25d001"
-dependencies = [
- "downcast-rs",
- "paste",
-]
-
-[[package]]
-name = "rustc_version"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
-dependencies = [
- "semver",
-]
-
-[[package]]
-name = "ryu"
-version = "1.0.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
-
-[[package]]
-name = "semver"
-version = "1.0.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
-
-[[package]]
-name = "serde"
-version = "1.0.196"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_bytes"
-version = "0.11.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b8497c313fd43ab992087548117643f6fcd935cbf36f176ffda0aacf9591734"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.196"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.113"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
-dependencies = [
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "serde_repr"
-version = "0.1.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b2e6b945e9d3df726b65d6ee24060aff8e3533d431f677a9695db04eff9dfdb"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "sha2"
-version = "0.10.6"
-source = "git+https://github.com/risc0/RustCrypto-hashes?tag=sha2-v0.10.6-risczero.0#7fd6900c4f637bd15ee2642dfa77110f8f1ad065"
-dependencies = [
- "cfg-if",
- "cpufeatures",
- "digest",
-]
-
-[[package]]
-name = "signature"
-version = "2.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
-
-[[package]]
-name = "spki"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
-dependencies = [
- "base64ct",
- "der",
-]
-
-[[package]]
-name = "subtle"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
-
-[[package]]
-name = "subtle-encoding"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7dcb1ed7b8330c5eed5441052651dd7a12c75e2ed88f2ec024ae1fa3a5e59945"
-dependencies = [
- "zeroize",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.109"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "syn"
-version = "2.0.48"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "tendermint"
-version = "0.34.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc2294fa667c8b548ee27a9ba59115472d0a09c2ba255771092a7f1dcf03a789"
-dependencies = [
- "bytes",
- "digest",
- "ed25519",
- "ed25519-consensus",
- "flex-error",
- "futures",
- "num-traits",
- "once_cell",
- "prost",
- "prost-types",
- "serde",
- "serde_bytes",
- "serde_json",
- "serde_repr",
- "sha2",
- "signature",
- "subtle",
- "subtle-encoding",
- "tendermint-proto",
- "time",
- "zeroize",
-]
-
-[[package]]
-name = "tendermint-light-client-verifier"
-version = "0.34.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74994da9de4b1144837a367ca2c60c650f5526a7c1a54760a3020959b522e474"
-dependencies = [
- "derive_more",
- "flex-error",
- "serde",
- "tendermint",
- "time",
-]
-
-[[package]]
-name = "tendermint-proto"
-version = "0.34.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2cc728a4f9e891d71adf66af6ecaece146f9c7a11312288a3107b3e1d6979aaf"
-dependencies = [
- "bytes",
- "flex-error",
- "num-derive 0.3.3",
- "num-traits",
- "prost",
- "prost-types",
- "serde",
- "serde_bytes",
- "subtle-encoding",
- "time",
-]
-
-[[package]]
-name = "tendermint-risc0"
-version = "0.1.0"
-dependencies = [
- "risc0-zkvm",
- "serde",
- "serde_json",
- "tendermint",
- "tendermint-light-client-verifier",
-]
-
-[[package]]
-name = "time"
-version = "0.3.34"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749"
-dependencies = [
- "deranged",
- "num-conv",
- "powerfmt",
- "time-core",
- "time-macros",
-]
-
-[[package]]
-name = "time-core"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
-
-[[package]]
-name = "time-macros"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ba3a3ef41e6672a2f0f001392bb5dcd3ff0a9992d618ca761a11c3121547774"
-dependencies = [
- "num-conv",
- "time-core",
-]
-
-[[package]]
-name = "tracing"
-version = "0.1.40"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
-dependencies = [
- "log",
- "pin-project-lite",
- "tracing-attributes",
- "tracing-core",
-]
-
-[[package]]
-name = "tracing-attributes"
-version = "0.1.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "tracing-core"
-version = "0.1.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
-dependencies = [
- "once_cell",
- "valuable",
-]
-
-[[package]]
-name = "tracing-subscriber"
-version = "0.2.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
-dependencies = [
- "tracing-core",
-]
-
-[[package]]
-name = "typenum"
-version = "1.17.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
-
-[[package]]
-name = "valuable"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
-
-[[package]]
-name = "version_check"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
-
-[[package]]
-name = "wasi"
-version = "0.11.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
-
-[[package]]
-name = "zerocopy"
-version = "0.7.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
-dependencies = [
- "zerocopy-derive",
-]
-
-[[package]]
-name = "zerocopy-derive"
-version = "0.7.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
-
-[[package]]
-name = "zeroize"
-version = "1.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
-dependencies = [
- "zeroize_derive",
-]
-
-[[package]]
-name = "zeroize_derive"
-version = "1.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.48",
-]
diff --git a/programs/tendermint-jolt/Cargo.toml b/programs/tendermint-jolt/Cargo.toml
deleted file mode 100644
index cc83233..0000000
--- a/programs/tendermint-jolt/Cargo.toml
+++ /dev/null
@@ -1,23 +0,0 @@
-[package]
-version = "0.1.0"
-name = "tendermint-jolt"
-edition = "2021"
-
-[[bin]]
-name = "guest"
-path = "./src/lib.rs"
-
-[dependencies]
-serde = { version = "1.0.204", default-features = false, features = ["derive"] }
-serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
-tendermint = { version = "0.34.0", default-features = false }
-tendermint-light-client-verifier = { version = "0.34.0", default-features = false, features = [
- "rust-crypto",
-] }
-jolt = { package = "jolt-sdk", git = "https://github.com/a16z/jolt", features = [
- "guest-std",
-], rev = "845d39af373de078ee2616cf36a255f36f38334a" }
-
-
-[features]
-guest = []
diff --git a/programs/tendermint-jolt/src/fixtures/1/next_validators.json b/programs/tendermint-jolt/src/fixtures/1/next_validators.json
deleted file mode 100644
index 66874ec..0000000
--- a/programs/tendermint-jolt/src/fixtures/1/next_validators.json
+++ /dev/null
@@ -1,911 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "10001",
- "validators": [
- {
- "address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R7Q6xW90/E3jXhfp5ugU+uHzYyrI3H6XwiZFsTnaGJ4="
- },
- "voting_power": "32136470",
- "proposer_priority": "77048555"
- },
- {
- "address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5N3jb5uAIrp6ACxWY4bxyMErpqsf+/TBsfYCvWQOaxM="
- },
- "voting_power": "31778876",
- "proposer_priority": "115813269"
- },
- {
- "address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QCmZPTlolao6WnkQkjE9nB26wNIcjWAOc2gMn8tns4="
- },
- "voting_power": "29209693",
- "proposer_priority": "-106191701"
- },
- {
- "address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rm4LhKWZEO8B1HeEJnQaUOAjzgJrHnvOMlNOj+tzKiA="
- },
- "voting_power": "22855687",
- "proposer_priority": "57912772"
- },
- {
- "address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "TFWxyudpTzYq2s5V3bQgkKoImG/xhG5f2yQYmdHsNTo="
- },
- "voting_power": "19405121",
- "proposer_priority": "84697106"
- },
- {
- "address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cT4xvVdjyaTzlC4IDvitSHQGZ2xTs0eaYg7a3nFDLQw="
- },
- "voting_power": "11070177",
- "proposer_priority": "-47409754"
- },
- {
- "address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "qWEq7neppaXl9C3BkYN9OXBy9A5lIiOV551oFzj097c="
- },
- "voting_power": "9986470",
- "proposer_priority": "12638221"
- },
- {
- "address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "X53KLdX7D9S4M64VGeIQ7lNHPVc+RRYiPLtbBNZE+6I="
- },
- "voting_power": "6151834",
- "proposer_priority": "-50726197"
- },
- {
- "address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "daVukec1DptNcV/8ewjiPvCewsFzAH7tBVyYlkOR+Ls="
- },
- "voting_power": "5968314",
- "proposer_priority": "-70413040"
- },
- {
- "address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gyYb6DPPt85NlxKT3FNYJ+9rYV0kcnw9BuQ6tc4JIZE="
- },
- "voting_power": "5482108",
- "proposer_priority": "39119530"
- },
- {
- "address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YI3najh0I3cLeXbIuPhVNkGG3sq3/EVwjlPaHJi0yx8="
- },
- "voting_power": "5233735",
- "proposer_priority": "31103257"
- },
- {
- "address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqlNbjpwlN8E9H8dXUIuSO7LkJXDdH2HtK6oWhF3r6M="
- },
- "voting_power": "5000001",
- "proposer_priority": "82951916"
- },
- {
- "address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+uKbyW/ACHtvDZZ8iufjsNMJ8zAFyv2fRL8w8J6R54w="
- },
- "voting_power": "4179233",
- "proposer_priority": "-65417558"
- },
- {
- "address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "AmKkkByeyV68Ejp8WC4U4BFnkEG3HIKcmOOTShKbe28="
- },
- "voting_power": "4095074",
- "proposer_priority": "88762033"
- },
- {
- "address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hf7BPUuIEY5mNTAXT33NvzEpineM5SsnjQrvzchnSpE="
- },
- "voting_power": "3911796",
- "proposer_priority": "-41526227"
- },
- {
- "address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "P0Fju/UVVtGbxQ5CiwkQ5FssuintfgKz2ZIxcFYWMlk="
- },
- "voting_power": "3697187",
- "proposer_priority": "66935956"
- },
- {
- "address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cQZHcOGkyQeBZzydXfZwjKKIxHBOBOCGq5jML1bH5dM="
- },
- "voting_power": "3685361",
- "proposer_priority": "-31601925"
- },
- {
- "address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hykgLmpkKVGwfjJRxafw9ymRmckZ8b8bQ7LS6rrWi58="
- },
- "voting_power": "3592068",
- "proposer_priority": "36782187"
- },
- {
- "address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WJJElHEmeEREbb6vbYE6If9laLyipD5IkqCtpKrXGuM="
- },
- "voting_power": "3418513",
- "proposer_priority": "-18573088"
- },
- {
- "address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "v+oTaOh1AGOQGv2Fml4S3rOCQOfcnfKeyVB0IQ4UwjE="
- },
- "voting_power": "3369482",
- "proposer_priority": "25747125"
- },
- {
- "address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "9ExpHkbi6LQJu2GMfdHA2OzXLV/LKMZ9neZThB0mOrY="
- },
- "voting_power": "3352541",
- "proposer_priority": "-148382057"
- },
- {
- "address": "CBFB913FC967932260667909727676760FA8FA24",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "N3ahgaKgiMosD9d7fl7KU4hxwwKpMGth2o0zVsq6/+k="
- },
- "voting_power": "3278478",
- "proposer_priority": "-109380564"
- },
- {
- "address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ueUh8xh/b1zlBcCgblxHrZ9impMwKOkgyG5P3f1HkjE="
- },
- "voting_power": "3204439",
- "proposer_priority": "45645202"
- },
- {
- "address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Rt3Fh5rJJblo7Ljh1u6R63aTWMnxtdGOvvV8ktWvXmY="
- },
- "voting_power": "3033095",
- "proposer_priority": "-16056790"
- },
- {
- "address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "nfJs6LqABJd1oDZLo1HuHdWtbgOWBmWmtwu95gg7180="
- },
- "voting_power": "2871836",
- "proposer_priority": "-110065569"
- },
- {
- "address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "HRbnBq6RQdMLnVE81prrgNiCEA5i5uFqidQtleYktOA="
- },
- "voting_power": "2849151",
- "proposer_priority": "113829587"
- },
- {
- "address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "10RXq49DicpaZHG/CZfD1QG1ZyX6Ifve/JTIaDJtqaU="
- },
- "voting_power": "2767131",
- "proposer_priority": "7597498"
- },
- {
- "address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dZ1cV+w2F5KYKh13FkPYoUD/kTzU4Q0AQSkDAIT+u9I="
- },
- "voting_power": "2453633",
- "proposer_priority": "26912166"
- },
- {
- "address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "zPYTB+0OM56gFu6V03k1DIvyHP6IIEu2yNsTGRvkfu0="
- },
- "voting_power": "2430767",
- "proposer_priority": "-19586042"
- },
- {
- "address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "1NfzJ7SfbqNONm8nVvSkvUhl9srbpv1NrOerb3LFJmI="
- },
- "voting_power": "1954769",
- "proposer_priority": "-62539407"
- },
- {
- "address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FDsFjNGMbMIxr4uPI76gIBLfrgSJqhOtYCZioNoFAlg="
- },
- "voting_power": "1636773",
- "proposer_priority": "-10485937"
- },
- {
- "address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "RxfIMOqG/8D+oPuCMci22JH4xG8ss8JyIYswkBlYwgc="
- },
- "voting_power": "1550365",
- "proposer_priority": "41925008"
- },
- {
- "address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "LlPYsY3SJVZpj453ugU31a+Ue/++MSbgh0PgsI+iuhs="
- },
- "voting_power": "1511186",
- "proposer_priority": "-134043235"
- },
- {
- "address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WN5n8XM+TzDQnoq1q6tRggEZCum603LAYoItzZcGLCA="
- },
- "voting_power": "1360820",
- "proposer_priority": "-91640537"
- },
- {
- "address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FMxXDtNPGfUajZIUaKqGkuqCSiUGtebIytw1IoxstyE="
- },
- "voting_power": "1045952",
- "proposer_priority": "102738035"
- },
- {
- "address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NHPP98+UqQ+0ra4cnCXpTWtt0wO5c/gxilOs2VUIjY8="
- },
- "voting_power": "1044203",
- "proposer_priority": "-5096002"
- },
- {
- "address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wABEWz0WhQoHosUoSM0nw86u261vJiikQ2jgCQ0mNYk="
- },
- "voting_power": "1039491",
- "proposer_priority": "104095368"
- },
- {
- "address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tKUn3zWwNVswn5yN2x9O0FiCSsYf/rGC1CG4fFo8pJk="
- },
- "voting_power": "1037464",
- "proposer_priority": "120407307"
- },
- {
- "address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "uYt4XtZC8NJ3a8bjPvO4WCluuHez4YAtPAWKlxLLtn4="
- },
- "voting_power": "1007290",
- "proposer_priority": "66932487"
- },
- {
- "address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xB/m+P/1AyztkX0gSx6cObbcfWtSimiqQdhucu23unA="
- },
- "voting_power": "967636",
- "proposer_priority": "113649345"
- },
- {
- "address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Xyh/BhvPUETay1aNSmcEX9VYK86qzYRZN1pyxxcV5lY="
- },
- "voting_power": "902322",
- "proposer_priority": "-150236458"
- },
- {
- "address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wczCYkuNdDxE07chLzR7UgeKR2SNTGwXK4j6f464hhE="
- },
- "voting_power": "749758",
- "proposer_priority": "51574348"
- },
- {
- "address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+Fd7ar/vc1cnJVgX3px7N5LrDbQsirHND+5wtfRK1DA="
- },
- "voting_power": "686645",
- "proposer_priority": "34707056"
- },
- {
- "address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "G1NPnHRULa7EnokMr4uFFhulXJh1wXqa0Qr352+tdoY="
- },
- "voting_power": "624248",
- "proposer_priority": "-139722951"
- },
- {
- "address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dfJTI59/NFW36V8r4Sf2h0r83UROTzUklIDa9Aii+Hg="
- },
- "voting_power": "607027",
- "proposer_priority": "-89897299"
- },
- {
- "address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R/KxXMRw4+sPN8oCg83HyzLBbdI1nQ8uczn08GkkwsY="
- },
- "voting_power": "591462",
- "proposer_priority": "62787981"
- },
- {
- "address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YYCXr43pteNhGfV5nFA4UQQTU/ldof/3N/8TiTCiGUY="
- },
- "voting_power": "569820",
- "proposer_priority": "114671882"
- },
- {
- "address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5+ni9aeP93pN4TjFnxOZm8Yj7Cke4SurpQzgjdV8678="
- },
- "voting_power": "519518",
- "proposer_priority": "92957922"
- },
- {
- "address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "/LK4+c0nWOj1dcOF6jXZnNFGE01JYVNVx+GZBi0EJK0="
- },
- "voting_power": "517755",
- "proposer_priority": "-78684279"
- },
- {
- "address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "GPhLy9RdAJq/SqyxX0M4Wt5hqQ+Xx5yZqzXu4v2cMp4="
- },
- "voting_power": "506892",
- "proposer_priority": "-72228095"
- },
- {
- "address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gxPYrd5G0ZoaQZGTJatw2ISQ59dEZi0W9cVbeIURPaw="
- },
- "voting_power": "497213",
- "proposer_priority": "89663897"
- },
- {
- "address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eLP+nlzPsFzgEnbev9YPA1sdU2I+uN5+CTfPgTmbiLY="
- },
- "voting_power": "495769",
- "proposer_priority": "45921508"
- },
- {
- "address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yFOHPDSiBjo+MyNIeuZ2sTLZJIwkWRwbEo7Y3fEYwXo="
- },
- "voting_power": "487844",
- "proposer_priority": "-28782784"
- },
- {
- "address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DUjLobSYVLIGTJaUHx7dpExRTnh/E5FhktNDVq18Zv0="
- },
- "voting_power": "480012",
- "proposer_priority": "10989177"
- },
- {
- "address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JN3I8u+mdTRe57lw7VDDXV/ROZv8c1U3dk4frW3kxfk="
- },
- "voting_power": "472919",
- "proposer_priority": "72184891"
- },
- {
- "address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FHQWcMOQZ5swBeL139jDlKexydl9ZT9iZ2PELRFFGn0="
- },
- "voting_power": "454428",
- "proposer_priority": "68444053"
- },
- {
- "address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "bKM4TE/YxPphrFOLqil/CDkHkeGiiXLHkLtnc6aZ/M4="
- },
- "voting_power": "439962",
- "proposer_priority": "28823323"
- },
- {
- "address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Zd6HWnViTNpzq/sKpVPyUJKrS7uMgtmEVEtQfjcdr3c="
- },
- "voting_power": "438872",
- "proposer_priority": "46933679"
- },
- {
- "address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QjWHj5OsJ2WhD9Kny13I0qubrdpHITzfR/34MhSzGk="
- },
- "voting_power": "438207",
- "proposer_priority": "-106145909"
- },
- {
- "address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YrMG8QfYW5/ww/s82Z1wR13x8lewK+9S3tfy/tqU0aA="
- },
- "voting_power": "437952",
- "proposer_priority": "55690345"
- },
- {
- "address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "J+TjVEWF8QcOdjJAfuaVjK+AlZdUn3wK5qW5DrVIDFo="
- },
- "voting_power": "436059",
- "proposer_priority": "-39065595"
- },
- {
- "address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ttvi0PTnyhzaKjXGo7h+UFhucyS9le3lBLZziiHbTXM="
- },
- "voting_power": "435734",
- "proposer_priority": "-154619529"
- },
- {
- "address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "8Hc6OxUDcBFA3br+FiHGcyJUYHaz7tGU8aRU3BpkU4I="
- },
- "voting_power": "435514",
- "proposer_priority": "-48565368"
- },
- {
- "address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yT3q+LmNieKBkE7iFs5txYaRqHwxuYgCUqPthe4Jm/Y="
- },
- "voting_power": "428068",
- "proposer_priority": "-156693800"
- },
- {
- "address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ZbIukxRVlvD2EugqyWY5oq8VPvxLDBs61qzHVK0bqAo="
- },
- "voting_power": "427511",
- "proposer_priority": "-135441707"
- },
- {
- "address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "e4g7CnAmtrrq6E3b03itBdoxVblOnwyTAwkshzoV9QU="
- },
- "voting_power": "427364",
- "proposer_priority": "-95288328"
- },
- {
- "address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "jBDHJNSkgFhEfseF60+/4Cn7luH3zFSvn5PAcXpBZrQ="
- },
- "voting_power": "426005",
- "proposer_priority": "6243974"
- },
- {
- "address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rx/gvLop1aFsgQuat/513H30+xoRhDJo1rEySxQ3xdM="
- },
- "voting_power": "425850",
- "proposer_priority": "-89943156"
- },
- {
- "address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "PPWwBozpIT4BLPo5WUZBog9E4HrfL6PYO2+6lwePpFE="
- },
- "voting_power": "422621",
- "proposer_priority": "-21395324"
- },
- {
- "address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Kw9ZMXqaRVALHVjVACA+WNIMFQ1hpxpWERzqs3ruuHs="
- },
- "voting_power": "419872",
- "proposer_priority": "25425502"
- },
- {
- "address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "vrSsYrWno/rLAE0wFry5RYXA/o/jh7XI8aGsqO/XkrE="
- },
- "voting_power": "419870",
- "proposer_priority": "-42859825"
- },
- {
- "address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "VyW0FrwvwaL6P2wFIJlfMlq80pM/qPd+HcERkAxWcxs="
- },
- "voting_power": "419193",
- "proposer_priority": "445278"
- },
- {
- "address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xwbuyz6bUNd+Ef79w0ysCU4qgDru1OZTn/yHnPaw5JE="
- },
- "voting_power": "417011",
- "proposer_priority": "-25030021"
- },
- {
- "address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eFL4Um4Y8r9FPLdJcHR5l8ebOmMgnK2h3M+HPZHLl3I="
- },
- "voting_power": "416862",
- "proposer_priority": "-34253624"
- },
- {
- "address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n3OpFWpY1FDepbaqwB0dBVyzhozeN5TL1lL1cN2yEQo="
- },
- "voting_power": "416840",
- "proposer_priority": "-150840953"
- },
- {
- "address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqnevZ6bUB6+Vs83BeHyXQCPmruLGmXviVAjgUaa9kA="
- },
- "voting_power": "415571",
- "proposer_priority": "-112388856"
- },
- {
- "address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "IAuGeG6xR60hG+bfwmSL1S4vsFWxI7qUOuCIORiVV5Q="
- },
- "voting_power": "414823",
- "proposer_priority": "-105671874"
- },
- {
- "address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tvFMgCZUlAbgNeipsvsP9bQsk5S9HwxKR/AeT/R4fI8="
- },
- "voting_power": "413890",
- "proposer_priority": "123919431"
- },
- {
- "address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ptuoujxCDDF4+F0M5J7Gv8jwMwijkxFNmphxzxavcvM="
- },
- "voting_power": "412741",
- "proposer_priority": "114888271"
- },
- {
- "address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iZQLsep99TpmB0bb8EQD4MDGWcvTtzO9aCMWhJxBwHc="
- },
- "voting_power": "411076",
- "proposer_priority": "-150794296"
- },
- {
- "address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iM+kGBPIpJ8wxzqSOYrVROydaUQs5AO+Zp4NjanHPg0="
- },
- "voting_power": "411001",
- "proposer_priority": "-152077821"
- },
- {
- "address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "u8d0XUmrwGbENHHCJQqMcs5ooHXa9jUeVr5QhhcDEHY="
- },
- "voting_power": "410431",
- "proposer_priority": "48872157"
- },
- {
- "address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UgfOzR+CtVCvvxeYtxP2aslAUA8SHYkk//FmgzmB0pg="
- },
- "voting_power": "408609",
- "proposer_priority": "89795618"
- },
- {
- "address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YT4/Xc+fP+1EvVhq9WsivOJgFr/+Vit8On8H3PDY9cY="
- },
- "voting_power": "408591",
- "proposer_priority": "69537516"
- },
- {
- "address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xkKGQ6TDgEiMJ9LaIf1EpD7dVllC3Cl1In0gpQUVrVw="
- },
- "voting_power": "408439",
- "proposer_priority": "74248278"
- },
- {
- "address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "T3MYxMlrc+6Mbfg3m0/XJwYctpRBHSj6RBFqeETehU0="
- },
- "voting_power": "408000",
- "proposer_priority": "48569953"
- },
- {
- "address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NvoYjJx1Fgv+xEUihHwXxwaWduQ+JnHa5j/Bi7fWq9A="
- },
- "voting_power": "406908",
- "proposer_priority": "70300759"
- },
- {
- "address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UP2MGLh3O4qD++Hj/79KPUouhtdExHxcVa/zmvGZ/uw="
- },
- "voting_power": "406579",
- "proposer_priority": "33344496"
- },
- {
- "address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "riL4KuTil0lTokRsr4aPFBCjmFDc170O/ORFCFM4wuE="
- },
- "voting_power": "406376",
- "proposer_priority": "48516170"
- },
- {
- "address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DiYTDGlIQlhuxbH6hc/lJ3Bi4BGc2Tpf1dvLVH+r62A="
- },
- "voting_power": "406057",
- "proposer_priority": "37949407"
- },
- {
- "address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "njOL+kmlgZZHb6mf3/Mrep9jUK6A3lhpQyIkknlME4U="
- },
- "voting_power": "405512",
- "proposer_priority": "27133219"
- },
- {
- "address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "i2jI3tw8z/3AO+3G17/jQZlNxi4ufSxoAlmvKqU/fng="
- },
- "voting_power": "404540",
- "proposer_priority": "35014193"
- },
- {
- "address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ri715K13nR7tANI+KZOUCJJn3o61aO0bJT2IrrXb7kQ="
- },
- "voting_power": "404173",
- "proposer_priority": "16655071"
- },
- {
- "address": "19C633702B0252082A410C81444333AD6BF814DF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wZuyeykwQKPPi+UMxbNILha7/YzsJvZi5dCtlREdfRQ="
- },
- "voting_power": "403530",
- "proposer_priority": "22145962"
- },
- {
- "address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "m7tzBRBy/nTfmNCNelQtq0Bme3QOK3Bv+ACrnUfNFgo="
- },
- "voting_power": "403000",
- "proposer_priority": "15011201"
- },
- {
- "address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "meCW/d9wIhUoWKqVyfbzNOTwn/cb/lCP0e3c5HK85KE="
- },
- "voting_power": "402021",
- "proposer_priority": "40144"
- },
- {
- "address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "XKPJp8fSr/wPh3RcIAApC25x2B/jLoRmYXkUzBu5MV4="
- },
- "voting_power": "366288",
- "proposer_priority": "13439926"
- },
- {
- "address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n49VVDSlBIHGWPNZwpDhjx20WSdAD6jtPADodqB2oz8="
- },
- "voting_power": "193747",
- "proposer_priority": "121908936"
- },
- {
- "address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Uc4u8Z6qk8ryXr5mg5ea9HuWT8yn7Mkfj6GNjfX4p4o="
- },
- "voting_power": "193284",
- "proposer_priority": "-3014925"
- },
- {
- "address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "SkbJ3Ef0g7WEce6EHz0h+GzEb5qpIMjJ+isHDMPIYBk="
- },
- "voting_power": "178097",
- "proposer_priority": "40779036"
- }
- ],
- "count": "100",
- "total": "100"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/1/signed_header.json b/programs/tendermint-jolt/src/fixtures/1/signed_header.json
deleted file mode 100644
index ac61396..0000000
--- a/programs/tendermint-jolt/src/fixtures/1/signed_header.json
+++ /dev/null
@@ -1,647 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "signed_header": {
- "header": {
- "version": {
- "block": "11",
- "app": "1"
- },
- "chain_id": "celestia",
- "height": "10000",
- "time": "2023-11-01T23:01:52.787257207Z",
- "last_block_id": {
- "hash": "5DB623A543EEA431EC8DD76B919D2D2D1EF7CBF6FD12BA90BA6165C634F5178C",
- "parts": {
- "total": 1,
- "hash": "1B8F7D88B757546DFB4DA85B3E2DFD573BF56660A42B90673297EDAEC6636844"
- }
- },
- "last_commit_hash": "C546FD6504C032AE3936B2380435AD37D0449899746F980D612A0A7F5186985B",
- "data_hash": "694F52677DDA82F3148D0A170ECC2A6A74A72563CC3F042BA7277AF3C1558127",
- "validators_hash": "1FE23CD2AED526FFC9EF957562F0219DE062A3D58C02E0B9D6089F12DB54C789",
- "next_validators_hash": "1FE23CD2AED526FFC9EF957562F0219DE062A3D58C02E0B9D6089F12DB54C789",
- "consensus_hash": "C0B6A634B72AE9687EA53B6D277A73ABA1386BA3CFC6D0F26963602F7F6FFCD6",
- "app_hash": "91A080374881D37751EAEB1867653C7FA276BE2550EC2905E2413349EF05B428",
- "last_results_hash": "E3F893DBC610A7FEBADB0DCEFBE53A92BEBFA8AE591B0798901D46B0B209F50A",
- "evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "proposer_address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45"
- },
- "commit": {
- "height": "10000",
- "round": 0,
- "block_id": {
- "hash": "FB81BD0774B12EF7D1A40D1C730AD9FD341567B8144C1EF30FC41C49A867C1E7",
- "parts": {
- "total": 1,
- "hash": "C992ACFE8B6DAFF9925E296131C39541391942E68C5F035BFA257AF7E129025F"
- }
- },
- "signatures": [
- {
- "block_id_flag": 2,
- "validator_address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "timestamp": "2023-11-01T23:02:04.657819815Z",
- "signature": "DNMkylySdJNbmvPpNED/usNPnIDIzfaNO8+G75m3x8dZPLybOaH5oKqVqKz60kvRH1QiEg30oJwIdgboTsFVDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "timestamp": "2023-11-01T23:02:04.647922557Z",
- "signature": "f+FcoEZb/LvYccQM/vX3DL7kcq5Z7FDzl+4xnTnykEUZlw9UxaygKsyOma89oRnNeP7Bo7N8UOK4LJec2KJ1BA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "timestamp": "2023-11-01T23:02:04.700555352Z",
- "signature": "+AOWEBwzHRgdJ7xB6lBbs/vXl+Vs5UiOWTVGuUKfXaGzJzypX0T0xDNMNB2IPzuq0QlM2ISe+u/B3iKHqgUtCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "timestamp": "2023-11-01T23:02:04.674876345Z",
- "signature": "ZrtMhKy4vTl+Ph8RCv3ccq5QVxYJEnnvLCkkUbJ0LYAsXdHayFs3a3XfoyAyDVIosGn4ugXHCxRpufd6xixoCA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "timestamp": "2023-11-01T23:02:04.613100518Z",
- "signature": "nLeuLdUbv0EbISnw0W3fo8SF74+f/JVb2gW3ZzYQultDFAbEVWtZj31wFCVC9W5ieRJ+vE9vrvaPGZeZlQVpCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "timestamp": "2023-11-01T23:02:04.644111607Z",
- "signature": "nCRd5bupp37OL2wxe/iC1uUGlRBC98Y8svfb2Og+Xc3sm55ZSNylUl2GlF/fkq5hnp9JbIcTK/e2aXQslKBuBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "timestamp": "2023-11-01T23:02:04.764240793Z",
- "signature": "11hYLOj7YPxPPr0VB3lR5XvsrWA7jpofOzBTUvDQdDmo622kNBX6SNLqzQr6UXkfIklHvolq6jxAQ4VVIenSBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "timestamp": "2023-11-01T23:02:04.656328252Z",
- "signature": "1sXvQNK7snHZz2vB+wQVUsiT9aGekGViF8PvizQlYhMxaXWssJ3gWXZg+XeS8Ta+e2/l/XADipwtLNJyrxOOAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "timestamp": "2023-11-01T23:02:04.690907431Z",
- "signature": "9u1RhyR1jcQFc7ELC56zqiXLjFHQA6rvR98I1D13LCPaBq/YHClK3l7R2NWxGdXDzKmWU+/Kt6/rWqUCOI85Cw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "timestamp": "2023-11-01T23:02:04.673697182Z",
- "signature": "gcXt3K0MLOtZOdH54m2q0CgJYD9QjE+JMsgvpO2YNbWgzEQ8LktI1by6XjHMocTsKpGw17tMj+Bd9iC2IxxTBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "timestamp": "2023-11-01T23:02:04.731657353Z",
- "signature": "u7PHZXFdl5G+N+L0vNmE6/QsAWHZ4RUUWzfBvyFkU5GaN1S3vbwWnryb/kVR7M+eaRI9kiCCPrg73lgfTrNPAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "timestamp": "2023-11-01T23:02:04.833390816Z",
- "signature": "1BKrxBvxTTxYCBRomge4DWgutwg7Gv8h/+pZs8mNZWWetSaKOn2L9ik5MDxjXhu1nBvp8QyAMYf5nTDCHYD7BA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "timestamp": "2023-11-01T23:02:04.73791797Z",
- "signature": "o2kCP9RkzqPLQTBtOBqGHNNF5LaV+Q4UPi4+aFMf4nTLoddv6hP1U6jzf6ov8q7H4X1+lOogJ+F2ncK6JzllDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "timestamp": "2023-11-01T23:02:04.698644848Z",
- "signature": "JvM/pk8TLwteSMaNQ1kas82fQgC4zeE7+pT491ynGkxN464wxt7yKASl0flrvz+SuC+kaivdA7w2u4TqHeF5Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "timestamp": "2023-11-01T23:02:04.687892Z",
- "signature": "TSd+5agXULiQBA2B6XEL1nKUpU4DjRn01xC4DoON72bII2KHOh2p/FIwC/YuK94qF3gOhWUJ41KB/V9kAe8hAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "timestamp": "2023-11-01T23:02:04.634193297Z",
- "signature": "aNYaD4xFcCiEYwK/XL4uGhvt9SP6t0uFF9DXUQTRcxrHgAMUDXVmEYY/9GimcZQlWEo1Q+O9mA5/h/jEBsN0Aw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "timestamp": "2023-11-01T23:02:04.716568797Z",
- "signature": "twpUQ8uk4kegk46zLCXN7XpWp6aTqWgvVxFl06+53/ZtHqHvJZ+o1g7I1vyXSL6gBObks/oqxWHSYd8IIZovBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "timestamp": "2023-11-01T23:02:04.619931847Z",
- "signature": "pefQpywc3K8UsuwBttmlTUnHUukBTMF02EwHko/1aQizCxLp9uarZRr7rzQYMX2xTKDKvlRgHTLlMuHMW56DBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "timestamp": "2023-11-01T23:02:02.740395433Z",
- "signature": "RTikpRjS1Bo2ysSyhQj1raS2Nbdwg1EAuZg/Rk+x/2LJi15GVlANmNdweFZgMArpHHXFGHSEnELTRdy5fGYbBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "timestamp": "2023-11-01T23:02:04.63526192Z",
- "signature": "NniMyB6Iy7HA8h02cdhcdCOqFLw2WFLnKGnEMsKHtoWS6DK+HqWNNi5bfE0E8lPTrPYblpzeoYhZvpvk8AvxBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "timestamp": "2023-11-01T23:02:04.62684988Z",
- "signature": "9PpjyMjR7tepDY6XxI4Ybp9OF3dVQAZ9RQbQDD3w27MbxvPVqqCajNe1Lfhtkm+Ho3ukBbxWGphdXRccEt9KDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CBFB913FC967932260667909727676760FA8FA24",
- "timestamp": "2023-11-01T23:02:04.661509102Z",
- "signature": "h0koiW8Wx25KtfPGDvsqByM/2N+zPcAa6yIdcASnafYAmIt/KhCau6CfYf6inuVwZrSC4ajluA7SryI/45m9DA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "timestamp": "2023-11-01T23:02:04.633252756Z",
- "signature": "DxucocJAcdhoeHDKl9tfzkmI5rD2VNVyStUqfkkAUi0h+dpZud3va5Nu9lsLkM2vMh5LKwFYcb1TUo/+u99QDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "timestamp": "2023-11-01T23:02:04.632151949Z",
- "signature": "7tu4qRitrdPAb/nJy01XynW+VzwTEVIO8bcV+ZOicQCjEr2rFV7a161vwBKeePCMGpNnFOZnn8x67WylFCo4DA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "timestamp": "2023-11-01T23:02:04.655915444Z",
- "signature": "mTzkBEseUyMvvsE7t12XL7bQxeHVFcz98PO1Ub8vIgYLDW/YsdUKvuP7ckyToy+AmCOKkcjaoCVo7mE0eKuGBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "timestamp": "2023-11-01T23:02:04.673725196Z",
- "signature": "qJ3YW3qbnLXK/TpLB3qokeOinOpcauFzPvkU1oeUqTwEHUweINRX2oSr78i3ElDDwJPzHhpVlha6I0niROhyDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "timestamp": "2023-11-01T23:02:04.692767765Z",
- "signature": "8qoX2MYf8K21dmb1NSYgnZRoX/LvJPe87DCELBBiwMwH154JCuchcfc1gZsXCLJ9ol6SQZsXBAnxingh3rKCBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "timestamp": "2023-11-01T23:02:04.66819663Z",
- "signature": "Cm9ZDae1G0CzTi+qu6epQA1eYpgRUO+IGhaj6wEOS0wX3ZMFgSI88qWnDtbCGSXgS6KChE+hoIQqrX0sww25Ag=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "timestamp": "2023-11-01T23:02:04.660645023Z",
- "signature": "0a7bzbE2loA10I4NjgNxGPZvalOQEU/hnicAqgQ2ux98Sy/gPAzzGVvD21AmRf9yQrDYFcC1RleqWR6xnQBdAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "timestamp": "2023-11-01T23:02:04.678097656Z",
- "signature": "3DsNeGC3yKWMA45ZsBV007LrsTjd6aNqIhNdPj9RgySj3ZEikRTUiOckcJn2PVyhSlJez8FnIyh0h4r/EZidAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "timestamp": "2023-11-01T23:02:04.69238751Z",
- "signature": "W8fTvb6ugwRd3TqLH26pDz9NwctE5E8EFciPGIXMkhC8m3Jthg424gTAcDTnMdLG9yO5zJC4VP5Bn1Hg7uEqDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "timestamp": "2023-11-01T23:02:04.707864298Z",
- "signature": "l/tn/QbQcBR73Iq0Msvqdbycx4e9Sm159fv3OMsGp9G+8itJA0+Hiwk/e4Em241+j2cDFPfCDFX93l78YeZDDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "timestamp": "2023-11-01T23:02:04.730570962Z",
- "signature": "MhetkkXnZiKdDbBbP8VHPfq0LZgRnmd+LZz2fsMZoKkayceAGEiLWnDhiHXGhfT449+Ohc2DivxaUT8woXB1AQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "timestamp": "2023-11-01T23:02:04.653222807Z",
- "signature": "zh0ZL7xzsXpvxbyVcnnIX5XkEwaNuYj2kpxTM7yZu7M711MBAQmV73UC5IRTEEq7qbhxHqcXm3iGOVhz7fVtCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "timestamp": "2023-11-01T23:02:04.645378268Z",
- "signature": "rS4cPklv+LVa3kkCoCTIC9pibEs1d6Vvf8GuQfJYnagfmiUgQNcs8oWCm7Bzk8dvVyF4ke/ll+odikLo9mqyDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "timestamp": "2023-11-01T23:02:04.872791088Z",
- "signature": "TjYC5M5wSaCRBkHTb0eQkFqpbiE9NiuY2pWMs8BeeHxP9ouhUrjMjOz9fRsKekETjVhQx/L51I1AWPpVGmDjCA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "timestamp": "2023-11-01T23:02:04.648033066Z",
- "signature": "HBmSwr10dMohcWwI9DkokcFJZurFLLUGTtx4SPKTimLpSEf8MGmzAZ6CdXsigQHWjPLARoJhdidNcL3kP6QBBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "timestamp": "2023-11-01T23:02:04.673123091Z",
- "signature": "wt0Rs1pV+4gOpC/TRVt6qeHtuyfNaCm4kUFoasMHIVzOfuaZMWn/qyz7JmlvxZq6SkEtzPb8Lg4UHRyu2igUBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "timestamp": "2023-11-01T23:02:04.824883068Z",
- "signature": "gy+QXr3pnZV92n3r3gbX9fVs5M38hAKjusQCjibX9p5RfhEDbMXYkgYt/G3mmHrz9sAOn0NnUzTrxW/S2HZ3BA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "timestamp": "2023-11-01T23:02:04.726380733Z",
- "signature": "FbRhkpwZk5O12+Hg6bWhUOkNwudHJcQua9GO6hCsP9173YksJM+sv8gpiHBe4JOXg+SqA9+XwApXcxfQcxF3Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "timestamp": "2023-11-01T23:02:04.655872042Z",
- "signature": "Pye7vFOSe2u1rOBXxFgKdbctpsvJRj45StNO8iJ1blmoUge6oxajypw9yFzH1jL/sac+GB7tddUeEnhfTkgNBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "timestamp": "2023-11-01T23:02:04.655542157Z",
- "signature": "95HRKqF9xwu92dJYxjTCFDEDNvJe51EAgWjJd0xgkW3YnBUT34JpfG73msGImQYHNNWn0RP0+HsT/ak+JYsoBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "timestamp": "2023-11-01T23:02:04.670013743Z",
- "signature": "c9UUvc6qT4RgooKPCmT0o7GtYuatZLjsgyJH57ToorglxflV6jBXtNqzArbTCTLIguKzuUym1lmPeTa/vBZ6Dg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "timestamp": "2023-11-01T23:02:04.662982743Z",
- "signature": "9VqMPz1/8VOeH68Pl4XuseK2vSTzQ129722SrVqdCMm2T0Ty+VfBPpHXk2hx5nX3JWDAq+dRjEUlA8WTSa0DBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "timestamp": "2023-11-01T23:02:04.652642822Z",
- "signature": "QJvEA7qybJjwfjQnDm3UECqA7mLntQxRW5s8nNBJLRjD+aKYm0CZWd7Lp7wpZcPfCWSKpF05zvdQvlqAsophDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "timestamp": "2023-11-01T23:02:04.6855566Z",
- "signature": "yyv/HevanWw9L4dEqYhEYwoRjS5eIBv6oiIxqIgpXAz3HO0u5GWJ+27NYwV2ojgPlfzg3oKlH+f/75WAXQgGDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "timestamp": "2023-11-01T23:02:04.633337241Z",
- "signature": "QgGVmDQjniNp/undwVnCbIoZROKLCUsVPtMbMZfnZ571EOd/xBtZuXkfiHKSj00sLV0XYJq9ErhN0g/e/ZiiBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "timestamp": "2023-11-01T23:02:04.764000896Z",
- "signature": "MBJg47sBb3Ut1HIs+0zRGoWBbLkF3eRYQvjT+0029PZrqoMnv8qi0qX/km7qvIkn+xgnvKXGNPIsgRRNknyZDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "timestamp": "2023-11-01T23:02:04.655504773Z",
- "signature": "F2OTpVWw5+ZXDBYbn4gT/i9GiOJMVyN9qpB8ziNEPxGg5pUF/D1X3ZRDSCU2gq4ACErDJKw3yl8EWs9Dajn3AA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "timestamp": "2023-11-01T23:02:04.636382418Z",
- "signature": "C1k1N8//G7GZjOanjHmcFJw+mrJF/V4lkSUxR95uiCBeJePWVPzj+2cg9HVyqqvm8ceNxpLFJMY6Oi5WZsxdCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "timestamp": "2023-11-01T23:02:04.717526001Z",
- "signature": "yPgC0iRbrucsd3DIuVJR4iTv+P1rLD5iGttw/ipMIwCyxQfN1Sb/8z4Ee+Sk1RPLvSru4cXMYmGOy/77zMiXDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "timestamp": "2023-11-01T23:02:04.718877442Z",
- "signature": "13tgyv2DnWp82XWDyOsmy85BJYCyUSqTtTnnKGFAUXlcG/CD8ZNMPxSOscOIEBlWFKPBYMa7JGUgk1TY/SUUAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "timestamp": "2023-11-01T23:02:04.73517098Z",
- "signature": "EZtjk38gsgl/IVj1Zo6HqHx7s66AjeS4IcWZGhk9IYw0ax93HU1YQg5Fq1jJVXU0wqGOQbYQNZer4cYclfOvAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "timestamp": "2023-11-01T23:02:04.692038168Z",
- "signature": "W3kwLbpCpQRMOMAas+XTmO76VhkPi37s9FbQG1/f5Wa9b2GNys8PLJljW2Y2GXO1fYLFsyfjrADDA6kvfBdrBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "timestamp": "2023-11-01T23:02:04.626196025Z",
- "signature": "IW8OQZLUR1/R8T8hxFtEA0lb84n9TxRv5WpKh5wiuTDRqaCoRA47tNhjrPEmZQu+H/p948BhJE7BnWtP3zLKDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "timestamp": "2023-11-01T23:02:04.679068217Z",
- "signature": "Ghp2IXPnmlYSCCX/sM1L5Zbx6gRSFjJHNplHBb4gb0N5B0F0KNddjfDbonMTLG7f69MS4vupbAefAbH/ieXoBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "timestamp": "2023-11-01T23:02:04.663327919Z",
- "signature": "6FdrjQH3K+OnXwPxsUAfNlY1syvlAAaYAiKZLfkVPuLlDoSIYr9s6wrVIwr7wgbsjtkY6AjPnJT1daF4qvqXDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "timestamp": "2023-11-01T23:02:04.651439441Z",
- "signature": "kcC6T/F9zBr9tbEhsURe02xbmijEXowNhpASznpZwDhlgyOSkWaSAnScrmA8tSo3D9A0sese5v4fxP1ZC8ImDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "timestamp": "2023-11-01T23:02:04.709631855Z",
- "signature": "gVpqroanUosft6L4eBonfOqns80ORQcSQTXQCugVfTah+jwSK/9o9FjBhXZOEc+E2qStby034I2o+w8f7cJzDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "timestamp": "2023-11-01T23:02:04.724644514Z",
- "signature": "ZXTVED032eytuZnH2TTy9o+O8grfEl+YQXCCY4HGT8N28symIcTAX7hvA9vZDxWcXqIwHDxuq34xVDo+u5BQBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "timestamp": "2023-11-01T23:02:04.650279755Z",
- "signature": "R0l1ghVDtpkMDVnbap+dDKxO0bCJQGP0heOoIcVYCn6g+nZuDRLG7hEnkFC+NmO0lZksgmJCiNDTSjN609IJDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "timestamp": "2023-11-01T23:02:04.765837026Z",
- "signature": "m/amIZx8zeH1bvQ10VYzObJJey6uOcJs3Gt2EP9AzoSqNrdcx8AwiIFrKVSOVneBHeQJjOCeOI/LkNaF++jLBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "timestamp": "2023-11-01T23:02:04.725698804Z",
- "signature": "Pf/H2TbTFZh0eu4xPicUjGFTHK52E7w2RSDXSTfkR/2bWoK2lbrnRbpmUqCJBm8MILEoRveZ4j/d8mXIwyT2Dg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "timestamp": "2023-11-01T23:02:04.701393796Z",
- "signature": "wBIunnCDWHfOs/DhBA9rUn0WC0Z8nE7miDiBaF+9kn98mrjgaP+bx+A+aNuIrCeK80ZtZfecbocoub83bG4YCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "timestamp": "2023-11-01T23:02:04.65734096Z",
- "signature": "HVaeXVnRR37Tpdj1JFqIf2kRuxsqjkx2JFmRGjBo/bEjL45acg+X0kAZlTeY+whJTnTmWEJU8F9CuCj594M8Bg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "timestamp": "2023-11-01T23:02:04.665771574Z",
- "signature": "y7j8V1Z26NGKebgOTndth23PyXMjNvFDtCmBiOrV8oEVhbrCgm+c4s1N7o53hDV97TfuFdp/gKw8Y3Fpb3jzAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "timestamp": "2023-11-01T23:02:04.660603153Z",
- "signature": "zvrlRf0mp+rel+KYnZW9invpYpcVJlhcz6AJQC7rKbxdefZA+ULH8oPEMdjrxSMH1gVzLKByHuuydp640WiZCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "timestamp": "2023-11-01T23:02:04.667357015Z",
- "signature": "6mduZpULwIJmACEXPPqmc3RE0a2rcoyHTIKe8jp37ZKJNYeEOSgcYOMXe/dzqlPIqJuOBaNpdDKL3eomSGcUDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "timestamp": "2023-11-01T23:02:04.722583441Z",
- "signature": "wpY/wgUmZyUlu3WkNvkZ5wzUnKaCHaBLKrhefiOyL2ehGb6t6jjKTRTxGvnJmd8C56+lr3G1lrhUyr9hnO3lAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "timestamp": "2023-11-01T23:02:04.654991083Z",
- "signature": "ZoCZ3EefWxG246rkJQbtPmDy2bhjgG2CfsSvwvj6Ukc//iHp3kK5etQPSZSqLe7l0O71ZgbYOh/MclikRLU4Bg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "timestamp": "2023-11-01T23:02:04.695912415Z",
- "signature": "uJ5gVRRKQytZdN6PGvF5YCYzE0cMPdJQndOtLd3nn2A65sf/kpnXILcMpbrol/LLB3k/MUudj2mXoi+uzAVJAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "timestamp": "2023-11-01T23:02:04.704607485Z",
- "signature": "7vYDDyCs2ZUtNQkedbH1vO5+M0TpBORGWiKRGTI5UmksxcRBa6Hg17Lqr2gPIrB+1TLQtM/L9r6hl6MzzqtjBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "timestamp": "2023-11-01T23:02:04.60578143Z",
- "signature": "qxLv7nkXlN1j71U0XhBUCM7MVR+a10NOoNmJAwxGIWC9utgKH8tYGFrPQOLnpjRaNn0qCCRE8s/y9j8psjBiDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "timestamp": "2023-11-01T23:02:04.653605021Z",
- "signature": "iaLtYAMSltrXseiiPW6LGS4xaFbBJTy94ce5ZZteSjstYTEFRl7nqcfCH4Z6k7jO7MwDBDfk6HD6s2UYd+XWAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "timestamp": "2023-11-01T23:02:04.655939863Z",
- "signature": "YmN0N4n6iZhy9AKmJQDXtZycB038a6gvCBK35wM54ul7q2uwdcFCKapM5MF+14KfNenuXYG8Ox19vFp87IpjDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "timestamp": "2023-11-01T23:02:04.78779076Z",
- "signature": "ov7SekcQ+W46McROd/asG1CKrmfovyIgn2gnuRb5iHfNVOITcZDo7MJp8NeiaaOvrQI6Z5Xy5a8W7F4GoOzBAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "timestamp": "2023-11-01T23:02:04.663517697Z",
- "signature": "HnHrKceK6tKt33BwgCi8pAI0ozMqcfxiEpmhgoM3t+8gdcTRAwhRSQqP/pS+hV3lu4Sva49kfm/zIhvizYBXCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "timestamp": "2023-11-01T23:02:04.680463379Z",
- "signature": "9CkVid2UFCrClxVOe2stxwTeKqi1Df6fSqv1YCxgaDN+xLATil7qqyeTiRAqVc2TaU6nHBlk4QGl5wwzh1HsCA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "timestamp": "2023-11-01T23:02:04.644110892Z",
- "signature": "NRcWgcTyFVaHTDNSIOVNsbcfKaaYkZXFoyl9NVLFIk8xFAh+mHRtGB6xNmqrGZ065KrDRRu0GcnykJ83DxL9AA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "timestamp": "2023-11-01T23:02:04.629079799Z",
- "signature": "v+g1z+D4pW80msPBsoXb5v6KkpHq1uo8jZFeT7EAN0Oe+AWG81KOrJlh5DbLpyzJsxYsE+2C/niCCceVjam+AQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "timestamp": "2023-11-01T23:02:04.74302141Z",
- "signature": "TtPza+C12z2NTFJqs60EJv+P9gSheJXywD0vKU5yZChOR4ORSV90MdL9LMj+jgsvfar4gGcoJCbdOfm0kuK1DA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "timestamp": "2023-11-01T23:02:04.657565867Z",
- "signature": "7Ljf5xeilek3PIp387ppLUJRwwBF5iHgmuHUDheqyxIhJEk+DpRMfNdaHrz0VueDLtSlTN17O8MTFyFDfJ5DDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "timestamp": "2023-11-01T23:02:04.685242794Z",
- "signature": "1+21afMDdmiIJzzbf3AM1RdPLFB3VqMPWbvo8jAGZoVPuXAWVIFBq9Lnd8Tz1u+lma6UMBREzYVoQVE6MEqxBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "timestamp": "2023-11-01T23:02:04.647859768Z",
- "signature": "8UkYbOIs4NtXc41RwqjTOQhL1AQBO1Cj1pRwvhoPOrExiFOrrFD+15Xhtp+dt9Q85KjGlfHAC0u+rTR4nt5cAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "timestamp": "2023-11-01T23:02:04.652936122Z",
- "signature": "85RQ91SJD2XoREjft/9Xw0vKL0q8JikQaGOIYBm94w4FoL6rxLDzUQYFjSBKCb8SBFEe0tFiMHT+xkxzLIOXDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "timestamp": "2023-11-01T23:02:04.668298714Z",
- "signature": "mpirzWgoYPnmAu/o4dphevzNs4aEkOF9zX5p8wOJaekOcLJOmiiXDr9r68u2s+nmADEDqrJsX8ZuTQ9gbOIICg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "timestamp": "2023-11-01T23:02:04.667249618Z",
- "signature": "rzsM1MCavyAqjEjQad+VvrknFG3Q/IXgweGy1ZlYT2Cpj9j1atLDlGPHEKpUDZxgIx+BFL2XAzqlrzkk68wOCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "timestamp": "2023-11-01T23:02:04.672723786Z",
- "signature": "oIjj15vLxx3BT0gtIlA5hjmLm3m0QzLPT4caYyNpVsiNeTa6J9a71iWdrg3CD8PZ11RzJSEXtAPzsuYbHhiGBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "timestamp": "2023-11-01T23:02:04.648818854Z",
- "signature": "y2VhHezp39L0tS7zSZwp6KTDdbjBZl7oPIBXbSZ0QKLz8Xr9N5nMmRoFGtYQ/7rjeu/o7EgTJHuyfEGyvd1eBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "timestamp": "2023-11-01T23:02:04.749924868Z",
- "signature": "VsF0VmMcm2EB52MudXHR6IAfhl3hkB+0yMQBd+SR96wybZzLoKPhyonSh/3FpSoPFBCBpx6sJMlWJUb00I44Ag=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "timestamp": "2023-11-01T23:02:04.676385692Z",
- "signature": "LrJ4/YEXTJKiwaJ4U7Nng5dbqpkrY9JIxvMu3zxCG2e1c5IlydY+1wOuAkY7fMuOmu5nt/lRTmYqxcPLxMM+Dw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "timestamp": "2023-11-01T23:02:04.670953806Z",
- "signature": "/NO8B+ru6eRgQFAtfSCIMEYfhDW3oMiY/lgaLloAm0fEF2Dp1JEwUwCYHNv8N0Pe2biqO8ZvSMHgqwzRgjKoAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "timestamp": "2023-11-01T23:02:04.646021866Z",
- "signature": "C6dtvPk2De0VsZ362oPe/+xny41T3kQp0iBWn1N72HS+Hc/elIxEZ5xWNAH0XZNQSqIHXZRRZjvs65Ml07hLDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "19C633702B0252082A410C81444333AD6BF814DF",
- "timestamp": "2023-11-01T23:02:04.667578365Z",
- "signature": "SMxo6HSrn8pOE3gTPGhQRMYUDCgKaEzGqgnzvyymrVjh6OfpMQZKnWz/vBYW82vaylORwO1mapvcI+8c4nLRDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "timestamp": "2023-11-01T23:02:04.801244401Z",
- "signature": "ay1vOZyswzgACssATxWSoS6JbMj56n/cR/nqleQ8lbyxFp/PK8KBKg1F+zvW/l8XLCvM9k6Hv8BCSZdr0vrbCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "timestamp": "2023-11-01T23:02:04.67384504Z",
- "signature": "SplRcvztpkHUj0U/i1EmgXkvR3McKTgkoi98cZFe2kq4QR3+i3nZ11V9B4UfJKdkSTHwvc5iOqMnTHKFHcLYBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "timestamp": "2023-11-01T23:02:04.67532081Z",
- "signature": "79S1cVmPyP2k2Iq/0Il4eVgFqiudYCG2HzmUICC5A5P8Ja5LyO95MQ0GFHdtJM0Gp+oM54XMhEeLgrqtJu1qCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "timestamp": "2023-11-01T23:02:04.663651869Z",
- "signature": "DgE5OMCAvsnCqIpNQzOm1YqFunjUGVAmi1/ApY+gmzuc8laFc/gRmhUOTRwQ5rkN9N9Z7xbMZHA3BGxqDK2zCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "timestamp": "2023-11-01T23:02:04.72466448Z",
- "signature": "BAYBFBbvc3zlj3dCx2v9nW7folEWuiT93T/PYdJjB4nS5XxNwIA4b2+Lf8HiiXYHjzmO1iaiXNJ5VypLfSlgDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "timestamp": "2023-11-01T23:02:04.655260405Z",
- "signature": "IpvOAd4apvDpS1GyYGTaSPduLrOgbJtJnoilV9E2oIiB1y0jfUvuMHWfUkvWqMKermCCTo+cDHLWDz0hUoZiCQ=="
- }
- ]
- }
- },
- "canonical": true
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/1/validators.json b/programs/tendermint-jolt/src/fixtures/1/validators.json
deleted file mode 100644
index 01d7ec5..0000000
--- a/programs/tendermint-jolt/src/fixtures/1/validators.json
+++ /dev/null
@@ -1,911 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "10000",
- "validators": [
- {
- "address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R7Q6xW90/E3jXhfp5ugU+uHzYyrI3H6XwiZFsTnaGJ4="
- },
- "voting_power": "32136470",
- "proposer_priority": "44912085"
- },
- {
- "address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5N3jb5uAIrp6ACxWY4bxyMErpqsf+/TBsfYCvWQOaxM="
- },
- "voting_power": "31778876",
- "proposer_priority": "84034393"
- },
- {
- "address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QCmZPTlolao6WnkQkjE9nB26wNIcjWAOc2gMn8tns4="
- },
- "voting_power": "29209693",
- "proposer_priority": "-135401394"
- },
- {
- "address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rm4LhKWZEO8B1HeEJnQaUOAjzgJrHnvOMlNOj+tzKiA="
- },
- "voting_power": "22855687",
- "proposer_priority": "35057085"
- },
- {
- "address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "TFWxyudpTzYq2s5V3bQgkKoImG/xhG5f2yQYmdHsNTo="
- },
- "voting_power": "19405121",
- "proposer_priority": "65291985"
- },
- {
- "address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cT4xvVdjyaTzlC4IDvitSHQGZ2xTs0eaYg7a3nFDLQw="
- },
- "voting_power": "11070177",
- "proposer_priority": "-58479931"
- },
- {
- "address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "qWEq7neppaXl9C3BkYN9OXBy9A5lIiOV551oFzj097c="
- },
- "voting_power": "9986470",
- "proposer_priority": "2651751"
- },
- {
- "address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "X53KLdX7D9S4M64VGeIQ7lNHPVc+RRYiPLtbBNZE+6I="
- },
- "voting_power": "6151834",
- "proposer_priority": "-56878031"
- },
- {
- "address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "daVukec1DptNcV/8ewjiPvCewsFzAH7tBVyYlkOR+Ls="
- },
- "voting_power": "5968314",
- "proposer_priority": "-76381354"
- },
- {
- "address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gyYb6DPPt85NlxKT3FNYJ+9rYV0kcnw9BuQ6tc4JIZE="
- },
- "voting_power": "5482108",
- "proposer_priority": "33637422"
- },
- {
- "address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YI3najh0I3cLeXbIuPhVNkGG3sq3/EVwjlPaHJi0yx8="
- },
- "voting_power": "5233735",
- "proposer_priority": "25869522"
- },
- {
- "address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqlNbjpwlN8E9H8dXUIuSO7LkJXDdH2HtK6oWhF3r6M="
- },
- "voting_power": "5000001",
- "proposer_priority": "77951915"
- },
- {
- "address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+uKbyW/ACHtvDZZ8iufjsNMJ8zAFyv2fRL8w8J6R54w="
- },
- "voting_power": "4179233",
- "proposer_priority": "-69596791"
- },
- {
- "address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "AmKkkByeyV68Ejp8WC4U4BFnkEG3HIKcmOOTShKbe28="
- },
- "voting_power": "4095074",
- "proposer_priority": "84666959"
- },
- {
- "address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hf7BPUuIEY5mNTAXT33NvzEpineM5SsnjQrvzchnSpE="
- },
- "voting_power": "3911796",
- "proposer_priority": "-45438023"
- },
- {
- "address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "P0Fju/UVVtGbxQ5CiwkQ5FssuintfgKz2ZIxcFYWMlk="
- },
- "voting_power": "3697187",
- "proposer_priority": "63238769"
- },
- {
- "address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cQZHcOGkyQeBZzydXfZwjKKIxHBOBOCGq5jML1bH5dM="
- },
- "voting_power": "3685361",
- "proposer_priority": "-35287286"
- },
- {
- "address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hykgLmpkKVGwfjJRxafw9ymRmckZ8b8bQ7LS6rrWi58="
- },
- "voting_power": "3592068",
- "proposer_priority": "33190119"
- },
- {
- "address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WJJElHEmeEREbb6vbYE6If9laLyipD5IkqCtpKrXGuM="
- },
- "voting_power": "3418513",
- "proposer_priority": "-21991601"
- },
- {
- "address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "v+oTaOh1AGOQGv2Fml4S3rOCQOfcnfKeyVB0IQ4UwjE="
- },
- "voting_power": "3369482",
- "proposer_priority": "22377643"
- },
- {
- "address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "9ExpHkbi6LQJu2GMfdHA2OzXLV/LKMZ9neZThB0mOrY="
- },
- "voting_power": "3352541",
- "proposer_priority": "-151734598"
- },
- {
- "address": "CBFB913FC967932260667909727676760FA8FA24",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "N3ahgaKgiMosD9d7fl7KU4hxwwKpMGth2o0zVsq6/+k="
- },
- "voting_power": "3278478",
- "proposer_priority": "-112659042"
- },
- {
- "address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ueUh8xh/b1zlBcCgblxHrZ9impMwKOkgyG5P3f1HkjE="
- },
- "voting_power": "3204439",
- "proposer_priority": "42440763"
- },
- {
- "address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Rt3Fh5rJJblo7Ljh1u6R63aTWMnxtdGOvvV8ktWvXmY="
- },
- "voting_power": "3033095",
- "proposer_priority": "-19089885"
- },
- {
- "address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "nfJs6LqABJd1oDZLo1HuHdWtbgOWBmWmtwu95gg7180="
- },
- "voting_power": "2871836",
- "proposer_priority": "-112937405"
- },
- {
- "address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "HRbnBq6RQdMLnVE81prrgNiCEA5i5uFqidQtleYktOA="
- },
- "voting_power": "2849151",
- "proposer_priority": "110980436"
- },
- {
- "address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "10RXq49DicpaZHG/CZfD1QG1ZyX6Ifve/JTIaDJtqaU="
- },
- "voting_power": "2767131",
- "proposer_priority": "4830367"
- },
- {
- "address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dZ1cV+w2F5KYKh13FkPYoUD/kTzU4Q0AQSkDAIT+u9I="
- },
- "voting_power": "2453633",
- "proposer_priority": "24458533"
- },
- {
- "address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "zPYTB+0OM56gFu6V03k1DIvyHP6IIEu2yNsTGRvkfu0="
- },
- "voting_power": "2430767",
- "proposer_priority": "-22016809"
- },
- {
- "address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "1NfzJ7SfbqNONm8nVvSkvUhl9srbpv1NrOerb3LFJmI="
- },
- "voting_power": "1954769",
- "proposer_priority": "-64494176"
- },
- {
- "address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FDsFjNGMbMIxr4uPI76gIBLfrgSJqhOtYCZioNoFAlg="
- },
- "voting_power": "1636773",
- "proposer_priority": "-12122710"
- },
- {
- "address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "RxfIMOqG/8D+oPuCMci22JH4xG8ss8JyIYswkBlYwgc="
- },
- "voting_power": "1550365",
- "proposer_priority": "40374643"
- },
- {
- "address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "LlPYsY3SJVZpj453ugU31a+Ue/++MSbgh0PgsI+iuhs="
- },
- "voting_power": "1511186",
- "proposer_priority": "-135554421"
- },
- {
- "address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WN5n8XM+TzDQnoq1q6tRggEZCum603LAYoItzZcGLCA="
- },
- "voting_power": "1360820",
- "proposer_priority": "-93001357"
- },
- {
- "address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FMxXDtNPGfUajZIUaKqGkuqCSiUGtebIytw1IoxstyE="
- },
- "voting_power": "1045952",
- "proposer_priority": "101692083"
- },
- {
- "address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NHPP98+UqQ+0ra4cnCXpTWtt0wO5c/gxilOs2VUIjY8="
- },
- "voting_power": "1044203",
- "proposer_priority": "-6140205"
- },
- {
- "address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wABEWz0WhQoHosUoSM0nw86u261vJiikQ2jgCQ0mNYk="
- },
- "voting_power": "1039491",
- "proposer_priority": "103055877"
- },
- {
- "address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tKUn3zWwNVswn5yN2x9O0FiCSsYf/rGC1CG4fFo8pJk="
- },
- "voting_power": "1037464",
- "proposer_priority": "119369843"
- },
- {
- "address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "uYt4XtZC8NJ3a8bjPvO4WCluuHez4YAtPAWKlxLLtn4="
- },
- "voting_power": "1007290",
- "proposer_priority": "65925197"
- },
- {
- "address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xB/m+P/1AyztkX0gSx6cObbcfWtSimiqQdhucu23unA="
- },
- "voting_power": "967636",
- "proposer_priority": "112681709"
- },
- {
- "address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Xyh/BhvPUETay1aNSmcEX9VYK86qzYRZN1pyxxcV5lY="
- },
- "voting_power": "902322",
- "proposer_priority": "-151138780"
- },
- {
- "address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wczCYkuNdDxE07chLzR7UgeKR2SNTGwXK4j6f464hhE="
- },
- "voting_power": "749758",
- "proposer_priority": "50824590"
- },
- {
- "address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+Fd7ar/vc1cnJVgX3px7N5LrDbQsirHND+5wtfRK1DA="
- },
- "voting_power": "686645",
- "proposer_priority": "34020411"
- },
- {
- "address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "G1NPnHRULa7EnokMr4uFFhulXJh1wXqa0Qr352+tdoY="
- },
- "voting_power": "624248",
- "proposer_priority": "-140347199"
- },
- {
- "address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dfJTI59/NFW36V8r4Sf2h0r83UROTzUklIDa9Aii+Hg="
- },
- "voting_power": "607027",
- "proposer_priority": "-90504326"
- },
- {
- "address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R/KxXMRw4+sPN8oCg83HyzLBbdI1nQ8uczn08GkkwsY="
- },
- "voting_power": "591462",
- "proposer_priority": "62196519"
- },
- {
- "address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YYCXr43pteNhGfV5nFA4UQQTU/ldof/3N/8TiTCiGUY="
- },
- "voting_power": "569820",
- "proposer_priority": "114102062"
- },
- {
- "address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5+ni9aeP93pN4TjFnxOZm8Yj7Cke4SurpQzgjdV8678="
- },
- "voting_power": "519518",
- "proposer_priority": "92438404"
- },
- {
- "address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "/LK4+c0nWOj1dcOF6jXZnNFGE01JYVNVx+GZBi0EJK0="
- },
- "voting_power": "517755",
- "proposer_priority": "-79202034"
- },
- {
- "address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "GPhLy9RdAJq/SqyxX0M4Wt5hqQ+Xx5yZqzXu4v2cMp4="
- },
- "voting_power": "506892",
- "proposer_priority": "-72734987"
- },
- {
- "address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gxPYrd5G0ZoaQZGTJatw2ISQ59dEZi0W9cVbeIURPaw="
- },
- "voting_power": "497213",
- "proposer_priority": "89166684"
- },
- {
- "address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eLP+nlzPsFzgEnbev9YPA1sdU2I+uN5+CTfPgTmbiLY="
- },
- "voting_power": "495769",
- "proposer_priority": "45425739"
- },
- {
- "address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yFOHPDSiBjo+MyNIeuZ2sTLZJIwkWRwbEo7Y3fEYwXo="
- },
- "voting_power": "487844",
- "proposer_priority": "-29270628"
- },
- {
- "address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DUjLobSYVLIGTJaUHx7dpExRTnh/E5FhktNDVq18Zv0="
- },
- "voting_power": "480012",
- "proposer_priority": "10509165"
- },
- {
- "address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JN3I8u+mdTRe57lw7VDDXV/ROZv8c1U3dk4frW3kxfk="
- },
- "voting_power": "472919",
- "proposer_priority": "71711972"
- },
- {
- "address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FHQWcMOQZ5swBeL139jDlKexydl9ZT9iZ2PELRFFGn0="
- },
- "voting_power": "454428",
- "proposer_priority": "67989625"
- },
- {
- "address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "bKM4TE/YxPphrFOLqil/CDkHkeGiiXLHkLtnc6aZ/M4="
- },
- "voting_power": "439962",
- "proposer_priority": "28383361"
- },
- {
- "address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Zd6HWnViTNpzq/sKpVPyUJKrS7uMgtmEVEtQfjcdr3c="
- },
- "voting_power": "438872",
- "proposer_priority": "46494807"
- },
- {
- "address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QjWHj5OsJ2WhD9Kny13I0qubrdpHITzfR/34MhSzGk="
- },
- "voting_power": "438207",
- "proposer_priority": "-106584116"
- },
- {
- "address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YrMG8QfYW5/ww/s82Z1wR13x8lewK+9S3tfy/tqU0aA="
- },
- "voting_power": "437952",
- "proposer_priority": "55252393"
- },
- {
- "address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "J+TjVEWF8QcOdjJAfuaVjK+AlZdUn3wK5qW5DrVIDFo="
- },
- "voting_power": "436059",
- "proposer_priority": "-39501654"
- },
- {
- "address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ttvi0PTnyhzaKjXGo7h+UFhucyS9le3lBLZziiHbTXM="
- },
- "voting_power": "435734",
- "proposer_priority": "-155055263"
- },
- {
- "address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "8Hc6OxUDcBFA3br+FiHGcyJUYHaz7tGU8aRU3BpkU4I="
- },
- "voting_power": "435514",
- "proposer_priority": "-49000882"
- },
- {
- "address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yT3q+LmNieKBkE7iFs5txYaRqHwxuYgCUqPthe4Jm/Y="
- },
- "voting_power": "428068",
- "proposer_priority": "124298635"
- },
- {
- "address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ZbIukxRVlvD2EugqyWY5oq8VPvxLDBs61qzHVK0bqAo="
- },
- "voting_power": "427511",
- "proposer_priority": "-135869218"
- },
- {
- "address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "e4g7CnAmtrrq6E3b03itBdoxVblOnwyTAwkshzoV9QU="
- },
- "voting_power": "427364",
- "proposer_priority": "-95715692"
- },
- {
- "address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "jBDHJNSkgFhEfseF60+/4Cn7luH3zFSvn5PAcXpBZrQ="
- },
- "voting_power": "426005",
- "proposer_priority": "5817969"
- },
- {
- "address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rx/gvLop1aFsgQuat/513H30+xoRhDJo1rEySxQ3xdM="
- },
- "voting_power": "425850",
- "proposer_priority": "-90369006"
- },
- {
- "address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "PPWwBozpIT4BLPo5WUZBog9E4HrfL6PYO2+6lwePpFE="
- },
- "voting_power": "422621",
- "proposer_priority": "-21817945"
- },
- {
- "address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Kw9ZMXqaRVALHVjVACA+WNIMFQ1hpxpWERzqs3ruuHs="
- },
- "voting_power": "419872",
- "proposer_priority": "25005630"
- },
- {
- "address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "vrSsYrWno/rLAE0wFry5RYXA/o/jh7XI8aGsqO/XkrE="
- },
- "voting_power": "419870",
- "proposer_priority": "-43279695"
- },
- {
- "address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "VyW0FrwvwaL6P2wFIJlfMlq80pM/qPd+HcERkAxWcxs="
- },
- "voting_power": "419193",
- "proposer_priority": "26085"
- },
- {
- "address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xwbuyz6bUNd+Ef79w0ysCU4qgDru1OZTn/yHnPaw5JE="
- },
- "voting_power": "417011",
- "proposer_priority": "-25447032"
- },
- {
- "address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eFL4Um4Y8r9FPLdJcHR5l8ebOmMgnK2h3M+HPZHLl3I="
- },
- "voting_power": "416862",
- "proposer_priority": "-34670486"
- },
- {
- "address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n3OpFWpY1FDepbaqwB0dBVyzhozeN5TL1lL1cN2yEQo="
- },
- "voting_power": "416840",
- "proposer_priority": "-151257793"
- },
- {
- "address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqnevZ6bUB6+Vs83BeHyXQCPmruLGmXviVAjgUaa9kA="
- },
- "voting_power": "415571",
- "proposer_priority": "-112804427"
- },
- {
- "address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "IAuGeG6xR60hG+bfwmSL1S4vsFWxI7qUOuCIORiVV5Q="
- },
- "voting_power": "414823",
- "proposer_priority": "-106086697"
- },
- {
- "address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tvFMgCZUlAbgNeipsvsP9bQsk5S9HwxKR/AeT/R4fI8="
- },
- "voting_power": "413890",
- "proposer_priority": "123505541"
- },
- {
- "address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ptuoujxCDDF4+F0M5J7Gv8jwMwijkxFNmphxzxavcvM="
- },
- "voting_power": "412741",
- "proposer_priority": "114475530"
- },
- {
- "address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iZQLsep99TpmB0bb8EQD4MDGWcvTtzO9aCMWhJxBwHc="
- },
- "voting_power": "411076",
- "proposer_priority": "-151205372"
- },
- {
- "address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iM+kGBPIpJ8wxzqSOYrVROydaUQs5AO+Zp4NjanHPg0="
- },
- "voting_power": "411001",
- "proposer_priority": "-152488822"
- },
- {
- "address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "u8d0XUmrwGbENHHCJQqMcs5ooHXa9jUeVr5QhhcDEHY="
- },
- "voting_power": "410431",
- "proposer_priority": "48461726"
- },
- {
- "address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UgfOzR+CtVCvvxeYtxP2aslAUA8SHYkk//FmgzmB0pg="
- },
- "voting_power": "408609",
- "proposer_priority": "89387009"
- },
- {
- "address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YT4/Xc+fP+1EvVhq9WsivOJgFr/+Vit8On8H3PDY9cY="
- },
- "voting_power": "408591",
- "proposer_priority": "69128925"
- },
- {
- "address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xkKGQ6TDgEiMJ9LaIf1EpD7dVllC3Cl1In0gpQUVrVw="
- },
- "voting_power": "408439",
- "proposer_priority": "73839839"
- },
- {
- "address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "T3MYxMlrc+6Mbfg3m0/XJwYctpRBHSj6RBFqeETehU0="
- },
- "voting_power": "408000",
- "proposer_priority": "48161953"
- },
- {
- "address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NvoYjJx1Fgv+xEUihHwXxwaWduQ+JnHa5j/Bi7fWq9A="
- },
- "voting_power": "406908",
- "proposer_priority": "69893851"
- },
- {
- "address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UP2MGLh3O4qD++Hj/79KPUouhtdExHxcVa/zmvGZ/uw="
- },
- "voting_power": "406579",
- "proposer_priority": "32937917"
- },
- {
- "address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "riL4KuTil0lTokRsr4aPFBCjmFDc170O/ORFCFM4wuE="
- },
- "voting_power": "406376",
- "proposer_priority": "48109794"
- },
- {
- "address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DiYTDGlIQlhuxbH6hc/lJ3Bi4BGc2Tpf1dvLVH+r62A="
- },
- "voting_power": "406057",
- "proposer_priority": "37543350"
- },
- {
- "address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "njOL+kmlgZZHb6mf3/Mrep9jUK6A3lhpQyIkknlME4U="
- },
- "voting_power": "405512",
- "proposer_priority": "26727707"
- },
- {
- "address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "i2jI3tw8z/3AO+3G17/jQZlNxi4ufSxoAlmvKqU/fng="
- },
- "voting_power": "404540",
- "proposer_priority": "34609653"
- },
- {
- "address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ri715K13nR7tANI+KZOUCJJn3o61aO0bJT2IrrXb7kQ="
- },
- "voting_power": "404173",
- "proposer_priority": "16250898"
- },
- {
- "address": "19C633702B0252082A410C81444333AD6BF814DF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wZuyeykwQKPPi+UMxbNILha7/YzsJvZi5dCtlREdfRQ="
- },
- "voting_power": "403530",
- "proposer_priority": "21742432"
- },
- {
- "address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "m7tzBRBy/nTfmNCNelQtq0Bme3QOK3Bv+ACrnUfNFgo="
- },
- "voting_power": "403000",
- "proposer_priority": "14608201"
- },
- {
- "address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "meCW/d9wIhUoWKqVyfbzNOTwn/cb/lCP0e3c5HK85KE="
- },
- "voting_power": "402021",
- "proposer_priority": "-361877"
- },
- {
- "address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "XKPJp8fSr/wPh3RcIAApC25x2B/jLoRmYXkUzBu5MV4="
- },
- "voting_power": "366288",
- "proposer_priority": "13073638"
- },
- {
- "address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n49VVDSlBIHGWPNZwpDhjx20WSdAD6jtPADodqB2oz8="
- },
- "voting_power": "193747",
- "proposer_priority": "121715189"
- },
- {
- "address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Uc4u8Z6qk8ryXr5mg5ea9HuWT8yn7Mkfj6GNjfX4p4o="
- },
- "voting_power": "193284",
- "proposer_priority": "-3208209"
- },
- {
- "address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "SkbJ3Ef0g7WEce6EHz0h+GzEb5qpIMjJ+isHDMPIYBk="
- },
- "voting_power": "178097",
- "proposer_priority": "40600939"
- }
- ],
- "count": "100",
- "total": "100"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/2/next_validators.json b/programs/tendermint-jolt/src/fixtures/2/next_validators.json
deleted file mode 100644
index d4be28d..0000000
--- a/programs/tendermint-jolt/src/fixtures/2/next_validators.json
+++ /dev/null
@@ -1,911 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "10021",
- "validators": [
- {
- "address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R7Q6xW90/E3jXhfp5ugU+uHzYyrI3H6XwiZFsTnaGJ4="
- },
- "voting_power": "32136470",
- "proposer_priority": "156936621"
- },
- {
- "address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5N3jb5uAIrp6ACxWY4bxyMErpqsf+/TBsfYCvWQOaxM="
- },
- "voting_power": "31778876",
- "proposer_priority": "-92871343"
- },
- {
- "address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QCmZPTlolao6WnkQkjE9nB26wNIcjWAOc2gMn8tns4="
- },
- "voting_power": "29209693",
- "proposer_priority": "-84839224"
- },
- {
- "address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rm4LhKWZEO8B1HeEJnQaUOAjzgJrHnvOMlNOj+tzKiA="
- },
- "voting_power": "22855687",
- "proposer_priority": "-47814823"
- },
- {
- "address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "TFWxyudpTzYq2s5V3bQgkKoImG/xhG5f2yQYmdHsNTo="
- },
- "voting_power": "19405121",
- "proposer_priority": "-90041834"
- },
- {
- "address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cT4xvVdjyaTzlC4IDvitSHQGZ2xTs0eaYg7a3nFDLQw="
- },
- "voting_power": "11070177",
- "proposer_priority": "-107426963"
- },
- {
- "address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "qWEq7neppaXl9C3BkYN9OXBy9A5lIiOV551oFzj097c="
- },
- "voting_power": "9986470",
- "proposer_priority": "-69053127"
- },
- {
- "address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "X53KLdX7D9S4M64VGeIQ7lNHPVc+RRYiPLtbBNZE+6I="
- },
- "voting_power": "6152059",
- "proposer_priority": "72312886"
- },
- {
- "address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "daVukec1DptNcV/8ewjiPvCewsFzAH7tBVyYlkOR+Ls="
- },
- "voting_power": "5968314",
- "proposer_priority": "48953240"
- },
- {
- "address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gyYb6DPPt85NlxKT3FNYJ+9rYV0kcnw9BuQ6tc4JIZE="
- },
- "voting_power": "5482108",
- "proposer_priority": "148761690"
- },
- {
- "address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YI3najh0I3cLeXbIuPhVNkGG3sq3/EVwjlPaHJi0yx8="
- },
- "voting_power": "5233735",
- "proposer_priority": "135777957"
- },
- {
- "address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqlNbjpwlN8E9H8dXUIuSO7LkJXDdH2HtK6oWhF3r6M="
- },
- "voting_power": "5000001",
- "proposer_priority": "-98468650"
- },
- {
- "address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+uKbyW/ACHtvDZZ8iufjsNMJ8zAFyv2fRL8w8J6R54w="
- },
- "voting_power": "4179233",
- "proposer_priority": "18167102"
- },
- {
- "address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "AmKkkByeyV68Ejp8WC4U4BFnkEG3HIKcmOOTShKbe28="
- },
- "voting_power": "4095074",
- "proposer_priority": "-110757235"
- },
- {
- "address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hf7BPUuIEY5mNTAXT33NvzEpineM5SsnjQrvzchnSpE="
- },
- "voting_power": "3911796",
- "proposer_priority": "36709693"
- },
- {
- "address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "P0Fju/UVVtGbxQ5CiwkQ5FssuintfgKz2ZIxcFYWMlk="
- },
- "voting_power": "3697210",
- "proposer_priority": "140879742"
- },
- {
- "address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cQZHcOGkyQeBZzydXfZwjKKIxHBOBOCGq5jML1bH5dM="
- },
- "voting_power": "3685361",
- "proposer_priority": "42105295"
- },
- {
- "address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hykgLmpkKVGwfjJRxafw9ymRmckZ8b8bQ7LS6rrWi58="
- },
- "voting_power": "3592120",
- "proposer_priority": "108624587"
- },
- {
- "address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WJJElHEmeEREbb6vbYE6If9laLyipD5IkqCtpKrXGuM="
- },
- "voting_power": "3418513",
- "proposer_priority": "49797172"
- },
- {
- "address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "v+oTaOh1AGOQGv2Fml4S3rOCQOfcnfKeyVB0IQ4UwjE="
- },
- "voting_power": "3369482",
- "proposer_priority": "93136765"
- },
- {
- "address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "9ExpHkbi6LQJu2GMfdHA2OzXLV/LKMZ9neZThB0mOrY="
- },
- "voting_power": "3352541",
- "proposer_priority": "-81331237"
- },
- {
- "address": "CBFB913FC967932260667909727676760FA8FA24",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "N3ahgaKgiMosD9d7fl7KU4hxwwKpMGth2o0zVsq6/+k="
- },
- "voting_power": "3278478",
- "proposer_priority": "-43811004"
- },
- {
- "address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ueUh8xh/b1zlBcCgblxHrZ9impMwKOkgyG5P3f1HkjE="
- },
- "voting_power": "3204439",
- "proposer_priority": "109733982"
- },
- {
- "address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Rt3Fh5rJJblo7Ljh1u6R63aTWMnxtdGOvvV8ktWvXmY="
- },
- "voting_power": "3033095",
- "proposer_priority": "44605110"
- },
- {
- "address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "nfJs6LqABJd1oDZLo1HuHdWtbgOWBmWmtwu95gg7180="
- },
- "voting_power": "2871836",
- "proposer_priority": "-52628849"
- },
- {
- "address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "HRbnBq6RQdMLnVE81prrgNiCEA5i5uFqidQtleYktOA="
- },
- "voting_power": "2849151",
- "proposer_priority": "-110607979"
- },
- {
- "address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "10RXq49DicpaZHG/CZfD1QG1ZyX6Ifve/JTIaDJtqaU="
- },
- "voting_power": "2767131",
- "proposer_priority": "62940118"
- },
- {
- "address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dZ1cV+w2F5KYKh13FkPYoUD/kTzU4Q0AQSkDAIT+u9I="
- },
- "voting_power": "2453633",
- "proposer_priority": "75984826"
- },
- {
- "address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "zPYTB+0OM56gFu6V03k1DIvyHP6IIEu2yNsTGRvkfu0="
- },
- "voting_power": "2430767",
- "proposer_priority": "29029298"
- },
- {
- "address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "1NfzJ7SfbqNONm8nVvSkvUhl9srbpv1NrOerb3LFJmI="
- },
- "voting_power": "1954769",
- "proposer_priority": "-23444027"
- },
- {
- "address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FDsFjNGMbMIxr4uPI76gIBLfrgSJqhOtYCZioNoFAlg="
- },
- "voting_power": "1636773",
- "proposer_priority": "22249523"
- },
- {
- "address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "RxfIMOqG/8D+oPuCMci22JH4xG8ss8JyIYswkBlYwgc="
- },
- "voting_power": "1550365",
- "proposer_priority": "72932308"
- },
- {
- "address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "LlPYsY3SJVZpj453ugU31a+Ue/++MSbgh0PgsI+iuhs="
- },
- "voting_power": "1511186",
- "proposer_priority": "-103819515"
- },
- {
- "address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WN5n8XM+TzDQnoq1q6tRggEZCum603LAYoItzZcGLCA="
- },
- "voting_power": "1360820",
- "proposer_priority": "-64424137"
- },
- {
- "address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FMxXDtNPGfUajZIUaKqGkuqCSiUGtebIytw1IoxstyE="
- },
- "voting_power": "1045952",
- "proposer_priority": "123657075"
- },
- {
- "address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NHPP98+UqQ+0ra4cnCXpTWtt0wO5c/gxilOs2VUIjY8="
- },
- "voting_power": "1044203",
- "proposer_priority": "15788058"
- },
- {
- "address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wABEWz0WhQoHosUoSM0nw86u261vJiikQ2jgCQ0mNYk="
- },
- "voting_power": "1039491",
- "proposer_priority": "124885188"
- },
- {
- "address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tKUn3zWwNVswn5yN2x9O0FiCSsYf/rGC1CG4fFo8pJk="
- },
- "voting_power": "1037464",
- "proposer_priority": "-140263999"
- },
- {
- "address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "uYt4XtZC8NJ3a8bjPvO4WCluuHez4YAtPAWKlxLLtn4="
- },
- "voting_power": "1007290",
- "proposer_priority": "87078287"
- },
- {
- "address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xB/m+P/1AyztkX0gSx6cObbcfWtSimiqQdhucu23unA="
- },
- "voting_power": "967661",
- "proposer_priority": "-148418608"
- },
- {
- "address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Xyh/BhvPUETay1aNSmcEX9VYK86qzYRZN1pyxxcV5lY="
- },
- "voting_power": "902322",
- "proposer_priority": "-132190018"
- },
- {
- "address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wczCYkuNdDxE07chLzR7UgeKR2SNTGwXK4j6f464hhE="
- },
- "voting_power": "749758",
- "proposer_priority": "66569508"
- },
- {
- "address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+Fd7ar/vc1cnJVgX3px7N5LrDbQsirHND+5wtfRK1DA="
- },
- "voting_power": "686646",
- "proposer_priority": "48439961"
- },
- {
- "address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "G1NPnHRULa7EnokMr4uFFhulXJh1wXqa0Qr352+tdoY="
- },
- "voting_power": "624248",
- "proposer_priority": "-127237991"
- },
- {
- "address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dfJTI59/NFW36V8r4Sf2h0r83UROTzUklIDa9Aii+Hg="
- },
- "voting_power": "607027",
- "proposer_priority": "-77756759"
- },
- {
- "address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R/KxXMRw4+sPN8oCg83HyzLBbdI1nQ8uczn08GkkwsY="
- },
- "voting_power": "591462",
- "proposer_priority": "74617221"
- },
- {
- "address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YYCXr43pteNhGfV5nFA4UQQTU/ldof/3N/8TiTCiGUY="
- },
- "voting_power": "569820",
- "proposer_priority": "126068282"
- },
- {
- "address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5+ni9aeP93pN4TjFnxOZm8Yj7Cke4SurpQzgjdV8678="
- },
- "voting_power": "519518",
- "proposer_priority": "103348282"
- },
- {
- "address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "/LK4+c0nWOj1dcOF6jXZnNFGE01JYVNVx+GZBi0EJK0="
- },
- "voting_power": "517755",
- "proposer_priority": "-68329179"
- },
- {
- "address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "GPhLy9RdAJq/SqyxX0M4Wt5hqQ+Xx5yZqzXu4v2cMp4="
- },
- "voting_power": "506892",
- "proposer_priority": "-62090255"
- },
- {
- "address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gxPYrd5G0ZoaQZGTJatw2ISQ59dEZi0W9cVbeIURPaw="
- },
- "voting_power": "497213",
- "proposer_priority": "99608157"
- },
- {
- "address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eLP+nlzPsFzgEnbev9YPA1sdU2I+uN5+CTfPgTmbiLY="
- },
- "voting_power": "495769",
- "proposer_priority": "55836888"
- },
- {
- "address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yFOHPDSiBjo+MyNIeuZ2sTLZJIwkWRwbEo7Y3fEYwXo="
- },
- "voting_power": "487844",
- "proposer_priority": "-19025904"
- },
- {
- "address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DUjLobSYVLIGTJaUHx7dpExRTnh/E5FhktNDVq18Zv0="
- },
- "voting_power": "480012",
- "proposer_priority": "20589417"
- },
- {
- "address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JN3I8u+mdTRe57lw7VDDXV/ROZv8c1U3dk4frW3kxfk="
- },
- "voting_power": "472919",
- "proposer_priority": "81643271"
- },
- {
- "address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FHQWcMOQZ5swBeL139jDlKexydl9ZT9iZ2PELRFFGn0="
- },
- "voting_power": "454428",
- "proposer_priority": "77532613"
- },
- {
- "address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "bKM4TE/YxPphrFOLqil/CDkHkeGiiXLHkLtnc6aZ/M4="
- },
- "voting_power": "439962",
- "proposer_priority": "37622563"
- },
- {
- "address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Zd6HWnViTNpzq/sKpVPyUJKrS7uMgtmEVEtQfjcdr3c="
- },
- "voting_power": "438872",
- "proposer_priority": "55711119"
- },
- {
- "address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QjWHj5OsJ2WhD9Kny13I0qubrdpHITzfR/34MhSzGk="
- },
- "voting_power": "438207",
- "proposer_priority": "-97381769"
- },
- {
- "address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YrMG8QfYW5/ww/s82Z1wR13x8lewK+9S3tfy/tqU0aA="
- },
- "voting_power": "437952",
- "proposer_priority": "64449385"
- },
- {
- "address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "J+TjVEWF8QcOdjJAfuaVjK+AlZdUn3wK5qW5DrVIDFo="
- },
- "voting_power": "436059",
- "proposer_priority": "-30344415"
- },
- {
- "address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ttvi0PTnyhzaKjXGo7h+UFhucyS9le3lBLZziiHbTXM="
- },
- "voting_power": "435734",
- "proposer_priority": "-145904849"
- },
- {
- "address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "8Hc6OxUDcBFA3br+FiHGcyJUYHaz7tGU8aRU3BpkU4I="
- },
- "voting_power": "435514",
- "proposer_priority": "-39855088"
- },
- {
- "address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yT3q+LmNieKBkE7iFs5txYaRqHwxuYgCUqPthe4Jm/Y="
- },
- "voting_power": "428068",
- "proposer_priority": "-148132440"
- },
- {
- "address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ZbIukxRVlvD2EugqyWY5oq8VPvxLDBs61qzHVK0bqAo="
- },
- "voting_power": "427511",
- "proposer_priority": "-126891487"
- },
- {
- "address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "e4g7CnAmtrrq6E3b03itBdoxVblOnwyTAwkshzoV9QU="
- },
- "voting_power": "427364",
- "proposer_priority": "-86741048"
- },
- {
- "address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "jBDHJNSkgFhEfseF60+/4Cn7luH3zFSvn5PAcXpBZrQ="
- },
- "voting_power": "426005",
- "proposer_priority": "14764074"
- },
- {
- "address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rx/gvLop1aFsgQuat/513H30+xoRhDJo1rEySxQ3xdM="
- },
- "voting_power": "425850",
- "proposer_priority": "-81426156"
- },
- {
- "address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "PPWwBozpIT4BLPo5WUZBog9E4HrfL6PYO2+6lwePpFE="
- },
- "voting_power": "422621",
- "proposer_priority": "-12942904"
- },
- {
- "address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Kw9ZMXqaRVALHVjVACA+WNIMFQ1hpxpWERzqs3ruuHs="
- },
- "voting_power": "419872",
- "proposer_priority": "33822942"
- },
- {
- "address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "vrSsYrWno/rLAE0wFry5RYXA/o/jh7XI8aGsqO/XkrE="
- },
- "voting_power": "419870",
- "proposer_priority": "-34462425"
- },
- {
- "address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "VyW0FrwvwaL6P2wFIJlfMlq80pM/qPd+HcERkAxWcxs="
- },
- "voting_power": "419193",
- "proposer_priority": "8829138"
- },
- {
- "address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xwbuyz6bUNd+Ef79w0ysCU4qgDru1OZTn/yHnPaw5JE="
- },
- "voting_power": "417011",
- "proposer_priority": "-16689801"
- },
- {
- "address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eFL4Um4Y8r9FPLdJcHR5l8ebOmMgnK2h3M+HPZHLl3I="
- },
- "voting_power": "416862",
- "proposer_priority": "-25916384"
- },
- {
- "address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n3OpFWpY1FDepbaqwB0dBVyzhozeN5TL1lL1cN2yEQo="
- },
- "voting_power": "416840",
- "proposer_priority": "-142504153"
- },
- {
- "address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqnevZ6bUB6+Vs83BeHyXQCPmruLGmXviVAjgUaa9kA="
- },
- "voting_power": "415571",
- "proposer_priority": "-104077436"
- },
- {
- "address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "IAuGeG6xR60hG+bfwmSL1S4vsFWxI7qUOuCIORiVV5Q="
- },
- "voting_power": "414823",
- "proposer_priority": "-97375414"
- },
- {
- "address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tvFMgCZUlAbgNeipsvsP9bQsk5S9HwxKR/AeT/R4fI8="
- },
- "voting_power": "413890",
- "proposer_priority": "-149223355"
- },
- {
- "address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ptuoujxCDDF4+F0M5J7Gv8jwMwijkxFNmphxzxavcvM="
- },
- "voting_power": "412741",
- "proposer_priority": "123143091"
- },
- {
- "address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iZQLsep99TpmB0bb8EQD4MDGWcvTtzO9aCMWhJxBwHc="
- },
- "voting_power": "411076",
- "proposer_priority": "-142572776"
- },
- {
- "address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iM+kGBPIpJ8wxzqSOYrVROydaUQs5AO+Zp4NjanHPg0="
- },
- "voting_power": "411001",
- "proposer_priority": "-143857801"
- },
- {
- "address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "u8d0XUmrwGbENHHCJQqMcs5ooHXa9jUeVr5QhhcDEHY="
- },
- "voting_power": "410431",
- "proposer_priority": "57080777"
- },
- {
- "address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UgfOzR+CtVCvvxeYtxP2aslAUA8SHYkk//FmgzmB0pg="
- },
- "voting_power": "408609",
- "proposer_priority": "97967798"
- },
- {
- "address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YT4/Xc+fP+1EvVhq9WsivOJgFr/+Vit8On8H3PDY9cY="
- },
- "voting_power": "408591",
- "proposer_priority": "77709336"
- },
- {
- "address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xkKGQ6TDgEiMJ9LaIf1EpD7dVllC3Cl1In0gpQUVrVw="
- },
- "voting_power": "408439",
- "proposer_priority": "82417058"
- },
- {
- "address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "T3MYxMlrc+6Mbfg3m0/XJwYctpRBHSj6RBFqeETehU0="
- },
- "voting_power": "408000",
- "proposer_priority": "56729953"
- },
- {
- "address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NvoYjJx1Fgv+xEUihHwXxwaWduQ+JnHa5j/Bi7fWq9A="
- },
- "voting_power": "406908",
- "proposer_priority": "78438919"
- },
- {
- "address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UP2MGLh3O4qD++Hj/79KPUouhtdExHxcVa/zmvGZ/uw="
- },
- "voting_power": "406579",
- "proposer_priority": "41476076"
- },
- {
- "address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "riL4KuTil0lTokRsr4aPFBCjmFDc170O/ORFCFM4wuE="
- },
- "voting_power": "406376",
- "proposer_priority": "56643690"
- },
- {
- "address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DiYTDGlIQlhuxbH6hc/lJ3Bi4BGc2Tpf1dvLVH+r62A="
- },
- "voting_power": "406057",
- "proposer_priority": "46070547"
- },
- {
- "address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "njOL+kmlgZZHb6mf3/Mrep9jUK6A3lhpQyIkknlME4U="
- },
- "voting_power": "405512",
- "proposer_priority": "35243459"
- },
- {
- "address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "i2jI3tw8z/3AO+3G17/jQZlNxi4ufSxoAlmvKqU/fng="
- },
- "voting_power": "404540",
- "proposer_priority": "43104993"
- },
- {
- "address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ri715K13nR7tANI+KZOUCJJn3o61aO0bJT2IrrXb7kQ="
- },
- "voting_power": "404173",
- "proposer_priority": "24738531"
- },
- {
- "address": "19C633702B0252082A410C81444333AD6BF814DF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wZuyeykwQKPPi+UMxbNILha7/YzsJvZi5dCtlREdfRQ="
- },
- "voting_power": "403530",
- "proposer_priority": "30216562"
- },
- {
- "address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "m7tzBRBy/nTfmNCNelQtq0Bme3QOK3Bv+ACrnUfNFgo="
- },
- "voting_power": "403000",
- "proposer_priority": "23071201"
- },
- {
- "address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "meCW/d9wIhUoWKqVyfbzNOTwn/cb/lCP0e3c5HK85KE="
- },
- "voting_power": "402021",
- "proposer_priority": "8080564"
- },
- {
- "address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "XKPJp8fSr/wPh3RcIAApC25x2B/jLoRmYXkUzBu5MV4="
- },
- "voting_power": "366288",
- "proposer_priority": "20765686"
- },
- {
- "address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n49VVDSlBIHGWPNZwpDhjx20WSdAD6jtPADodqB2oz8="
- },
- "voting_power": "193747",
- "proposer_priority": "-155636872"
- },
- {
- "address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Uc4u8Z6qk8ryXr5mg5ea9HuWT8yn7Mkfj6GNjfX4p4o="
- },
- "voting_power": "193284",
- "proposer_priority": "850755"
- },
- {
- "address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "SkbJ3Ef0g7WEce6EHz0h+GzEb5qpIMjJ+isHDMPIYBk="
- },
- "voting_power": "178097",
- "proposer_priority": "44340976"
- }
- ],
- "count": "100",
- "total": "100"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/2/signed_header.json b/programs/tendermint-jolt/src/fixtures/2/signed_header.json
deleted file mode 100644
index 06276e0..0000000
--- a/programs/tendermint-jolt/src/fixtures/2/signed_header.json
+++ /dev/null
@@ -1,647 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "signed_header": {
- "header": {
- "version": {
- "block": "11",
- "app": "1"
- },
- "chain_id": "celestia",
- "height": "10020",
- "time": "2023-11-01T23:05:45.979102328Z",
- "last_block_id": {
- "hash": "9130D95ACCB9EEEB6C1A6FBE6998D72997E23DC682021FC6FB16C08F8AE6CF00",
- "parts": {
- "total": 1,
- "hash": "0D7B112D1E5A6CDCF1EA6E89A99D35A1C36ACF073D06C60F77F8D6B85A4B9B0F"
- }
- },
- "last_commit_hash": "BF5A766818F542ECD8B9B184283FD2E93FE63989E3F00BDC94E3FFC8122164E4",
- "data_hash": "B37E406A6B51261B01B7BED59FEC0F612EB8E836101FFF2AC8EFF943107E14F9",
- "validators_hash": "5EEA3C22B0D32B696CD666A6D61BE7BA89C825162253D03DB50441E4DB86307D",
- "next_validators_hash": "94B3FAAA29F49C9DDA873EE83352368144ACB14AE7DB0AC5AEC3316A3F2D3627",
- "consensus_hash": "C0B6A634B72AE9687EA53B6D277A73ABA1386BA3CFC6D0F26963602F7F6FFCD6",
- "app_hash": "88434EFDE1E87862B5AC013618FDBA91C82C8484471A99C1BBD6C713F0A14B78",
- "last_results_hash": "A39AAAA6624DC9DEA4E0FE143ECD96A71A964CA3AC235A878346607E0B771B2E",
- "evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "proposer_address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45"
- },
- "commit": {
- "height": "10020",
- "round": 0,
- "block_id": {
- "hash": "90C52D000117B859A85DC8B41AFD920D9093AB9BA3FE359CACBCC38ADA45A6FE",
- "parts": {
- "total": 2,
- "hash": "3D0E3C13F9EEADF591EAA83E928BDC6E54E353671CE9A84EB6EC31B645070BBC"
- }
- },
- "signatures": [
- {
- "block_id_flag": 2,
- "validator_address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "timestamp": "2023-11-01T23:05:57.943706399Z",
- "signature": "EEYVdyy2vQLhOgTRgUnrVUHHStVL0vaPEXUlwiiKHwkJp2VuDDyWViV0oO6WUOG2v1WUuASH2n7A/cdBnjkxCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "timestamp": "2023-11-01T23:05:57.93640435Z",
- "signature": "mMYxGtfOVqqkmfVz5QhLuS/Pe1gJDo23D1Cb+I0yR2sa/YbktXmPzwS+sa8V9KdrojPlrpv3IDn8+qXOZwzrAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "timestamp": "2023-11-01T23:05:57.962110872Z",
- "signature": "s401ZNuNpntOa6Uz2+3K4ATm/bEALiiZSaXnnv7JH5CZUP0vjHrMNr0jTqt6I7ZKqH3haALzsD8cmJqFv34fCA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "timestamp": "2023-11-01T23:05:57.950229053Z",
- "signature": "zVgco3j9JFZPo8eX3Jq+vRzcbFuK553yLPcbm8CTUa3LBQRPjdGgyrTBj8cJPvmiyUvv+SvjUxqcPBft030XBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "timestamp": "2023-11-01T23:05:57.940915794Z",
- "signature": "9uCRPht2lRBMcSa7Ka6EQQhTU62oUmlltA4ns4d1adMrxyre/cq3q6zNxXBqfrVpeZQUa46CsHY6a3QXBydkAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "timestamp": "2023-11-01T23:05:57.942239222Z",
- "signature": "6lbLLO6ePyYkEIB/a0wele3RzkFCmz/0lEz5Pqfx53BAyRL8/OZfMWoZ1R+KecLL2QfLE35IhujsUeiqEM+rBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "timestamp": "2023-11-01T23:05:58.052937127Z",
- "signature": "7Oz46FFOq/WP93yR0itDm76ubD/E7Gnj7waejGWCgAxIe8uDBvxw5Wcgj5DIMxWDC1ydYwOeUHLP9JkhzYF3CA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "timestamp": "2023-11-01T23:05:57.933642311Z",
- "signature": "vA//6OhhWf3cWw1YnNiz3FG7hvWR2kNrbbnZVElXWyMd4SyJQcaRxvbdDzfkj03oKYlbFdGGDiYll7IPZVNfCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "timestamp": "2023-11-01T23:05:57.990138974Z",
- "signature": "bN/RkOIE27r6DUkkgdPYGq4GRQuHciH3a5DNwoXu7kXMe9+Z9S3iIezK/bdmvd4dvTAMrN42PvrjZBfdoFbLBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "timestamp": "2023-11-01T23:05:57.917962993Z",
- "signature": "EZxgV+jMz/WyAt6r45mn/lIzg3eg7X2Y7DSdT373r3zxiJPyTHRjBJVnGRlUEHHfYKu93iFZ436HeZQqv7r+Cg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "timestamp": "2023-11-01T23:05:58.023720505Z",
- "signature": "oxvMnTqOnWOYeaFMAx39ya1rduqM41TeaB8OiAtFnMF1rycL8tYGjRI6FPaA5rPIdbYwkV/tT0w1bn/sVdCjDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "timestamp": "2023-11-01T23:05:58.087864982Z",
- "signature": "yZelomZ2s6jUJJledVMX8JlRSmtoPkGOYJhIRl+9f9IL+4OZULS+lUCxAMPQDQptVQnzUTQFVPiS6g273885Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "timestamp": "2023-11-01T23:05:58.011116019Z",
- "signature": "43e8ckafjMxVg/hJUDU3ZBB5YJjXxTDTk1AVEcChuzW6iTDgU5/aQdCp7jVdJ7oyJut4fBAzVlSlUiL4D/ifDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "timestamp": "2023-11-01T23:05:57.939572703Z",
- "signature": "2OHX9Vdj38Qnbo6fSTcO/qO0RawzIXt70POmJClzrG4+EC+vmCTp+per9HhTcx0NZI6sY5fJV5l0QNj2En9pCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "timestamp": "2023-11-01T23:05:57.980113938Z",
- "signature": "BSjuC60xk9E/nbKjKC3SpnoObIQhSG2hJ6VAMWLeVSecGODIUMxJOlryEcnVns2t/goU1VsO16naRbWc2AgzCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "timestamp": "2023-11-01T23:05:57.908591553Z",
- "signature": "XQCh5kfyXCvTamM39g4NN908QQBHbohavjTQrkrB+A4hUF6yKDSjn1JexKzNfIMwduqv6XlCrd2C0lpBNXYiBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "timestamp": "2023-11-01T23:05:57.921637259Z",
- "signature": "fsk7jErBdEtplT8b0/hqAzZKCjbM9KYN/QsT9zHRJT+yvnGNPIWXRxu/10KELg7T64pRFtnfXJEk1LhqMCluDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "timestamp": "2023-11-01T23:05:57.872903927Z",
- "signature": "2MMTA8w7FPhLG/Ckplybg8fOsrVKpqd/msSkleXetKzm/NChRxBdvpx8EuWghKyyE5HcrFp5JbPOpWQdkc+EDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "timestamp": "2023-11-01T23:05:56.035124202Z",
- "signature": "m64VlV9wY8EwRaQXBqt205LB52kX6QhQfs1/WZCQv3irMXTVsnCr7KgeLnYuFXvQdtto/WUGT4Fj08tO/VvqBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "timestamp": "2023-11-01T23:05:57.968668313Z",
- "signature": "1zKeImEsL26Miom1SrGaOymcioRR0NIYZqkRT+iDQL4+KkeUA90ZhSBixMvMK+zWiAeDNCJ52QCfTJDsIXlVAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "timestamp": "2023-11-01T23:05:57.900736041Z",
- "signature": "q2QAnzFaLZqX1kf/ItcvXHAGH25cWjdOzMAsQUsMEq6h+ObOWI6o7Kf46InFxdSum2UchetM2ozTaSVXhiseAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CBFB913FC967932260667909727676760FA8FA24",
- "timestamp": "2023-11-01T23:05:57.949481876Z",
- "signature": "t7F/r9oSul1qm0mcvC+czinM25c5uDSknAhq+KOjYlZ3l6tIm+RTugMMcRJi4RezfImvq9ZAL0SeMLnDeQm6Ag=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "timestamp": "2023-11-01T23:05:57.923283931Z",
- "signature": "rqqtTbhSr/QcgtV43R646mt+2WJiArIySuPEtd3lZ2RgXcURLlmfV2WqPz3VxrLhz0+yRV0di/sMxSBvuKlTCA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "timestamp": "2023-11-01T23:05:57.889722647Z",
- "signature": "9TpB8lmbJPWenMix1poa1DnLgHJRwd0ERadTFet+S4Y+6NipPuNiYl9rBk2U5HUEcbKI8YBTM+CfNHVCQTGgCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "timestamp": "2023-11-01T23:05:57.907608488Z",
- "signature": "0AnoxBSMTi1Ckf9DAfjgvXRy8+XoiVs/8n4d5tLr2aQMW8cGKSMgsYvHk7S54mhx12TWsOeErb/H4dHPUo9ZDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "timestamp": "2023-11-01T23:05:57.922429653Z",
- "signature": "NMUNRpkbdYUKt6Jg3d+zWxfO+lIhGnOc5fmNEd/ttGA7khArWYSSoEZD3JlY4c0fPXWgg2C/EPpVVp3edHFjAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "timestamp": "2023-11-01T23:05:57.966980667Z",
- "signature": "WT2DOgV0kOgahWhLVZlHPblqD45BCwH7Ph/XAQJTLfwarqsl1rj7DTzY40aIT1bQkpA+i3703X4f/5EypnRZAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "timestamp": "2023-11-01T23:05:57.941458564Z",
- "signature": "EWzoj4GZGXQXBPpbo81/A/0IdKDPympL0YB8GcEQ32b28sIstI0mv31a4UfRMrUY6SzVL2MwS3Rft2dXHyItAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "timestamp": "2023-11-01T23:05:57.929670362Z",
- "signature": "Ox3VxnO4rz5DQIu//9KjCbRRFyAYkMok42dGYs64NH/G6RpeOxWLBG6iG1ajdlj9x6z+hGosXJIMAQumc1DNCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "timestamp": "2023-11-01T23:05:57.934063648Z",
- "signature": "bXHPAgkm3i8YMeiR0kaCjuwwNxBPjyHZFzCWT8S0QWVefSqUYZ+LBx/fSJTM7IuB8FnRLANoUfmBb3WN094rAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "timestamp": "2023-11-01T23:05:58.163272591Z",
- "signature": "jeyKREApWE9+avSGaP51jVRaqTKKWr4Am+1pnQlLoS094rR/2yoD8T5ilPGJxhLjtq6SyJfSkVb9pRzyh2qdDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "timestamp": "2023-11-01T23:05:57.956015424Z",
- "signature": "flRZp7AoMkedwI8NHRrYI3sVJQGWBLeFlRHr0YUYRuNfH+EJ17tIW9dXV6Skej/p8cx5ancM4zxsAJdlucWLDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "timestamp": "2023-11-01T23:05:58.027336868Z",
- "signature": "pyxFwfjEytMed/N262ljAJnHL92vnt6/qpu0UBR/yOQxtFt5LPtlt0oSiRGNhtS9t3CXQXk56dA2QI9Q6fIeAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "timestamp": "2023-11-01T23:05:57.906372177Z",
- "signature": "dW/7UCKCKp/FjtIzCZ/P8dWgwPC5531UWwWWAbTH8mgU9Zn1/CTxszlTy3N6ZOMFQs6VtefjuvBbeFUu8pNrBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "timestamp": "2023-11-01T23:05:58.081813286Z",
- "signature": "EMCxXQ1OwiDm0iiTZEaAsfcFaZb/hLJEEWdcb/jYXDLqbRQjDau3bKCI1HJXVXE9cIlJlT40bmHbB505wFISCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "timestamp": "2023-11-01T23:05:58.433995714Z",
- "signature": "xXuFWwUyripWTIZSo5GRsaoEqgJ70QHN57a7pFj7K4LdQNjNwnFUWWf8A7CVY0LsAqIPKhykDc/LtPftSnpCBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "timestamp": "2023-11-01T23:05:57.920907465Z",
- "signature": "k1fDGrBdcQhMJYnCZ8CmuTPDHh06HN5YKzTkebAP6G9KKwxOjzeJkjna6Y4eh/Yot+c5S84art4RAqxOdVi0Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "timestamp": "2023-11-01T23:05:57.984839374Z",
- "signature": "zLy0vtUp9j8Y3EW7IPXSKC2VL/8ELE5W6N8QKpKFZbFsmW3MlECmeB0NKNa8fRAEP+WIavUecDAspmxV/cQ8Dw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "timestamp": "2023-11-01T23:05:58.087461555Z",
- "signature": "BMzQ9klovgwPwtgSSSG+Swf9NllBasLxQw3PETo2aDjK5HkmOxYK1ba7Hpy634ngQXHTKe8/ZxQREREr9/RcBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "timestamp": "2023-11-01T23:05:57.98100528Z",
- "signature": "JCRBmfHcDeZ9MmoXqrH55pmQY9rRmL0HNj2vhAGNVwmizOYvPF7EUGRIP9q8KbmV7AprFjdAu5bIxN+1lUHPDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "timestamp": "2023-11-01T23:05:57.904906307Z",
- "signature": "mMriYL2E7kICEaHfqLeyvCzb2mc7gqs66aQh8O9dPmtpjrEfaoPWw92e8pRb+6Vz/GslAksnyA6AcdpikanMBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "timestamp": "2023-11-01T23:05:57.93542183Z",
- "signature": "lxR4E940IW3s3R4/OPnjtC60JaLCobJCpY3jka3KhVJTy2gafvRPGGxZ6fKeD9WImgjRUhoL88qju3cvDSkVAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "timestamp": "2023-11-01T23:05:57.962103494Z",
- "signature": "vX9r1OPjt4vpHOwn502qYsvhp2xV4UIJ2kmaFA5EZNBC7PEIVjZ+fOaNZyQnipDw5VZjkz4554AIz9BGi5aIDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "timestamp": "2023-11-01T23:05:57.940987417Z",
- "signature": "ihOKmO7RAkYncbzlYFwKsXLtkFYCMbunHS53zPWRdGG1aiTkm8r8jpV3Jy9qxgFBSGcE70JaTD8aPtzc8cBwDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "timestamp": "2023-11-01T23:05:57.946997042Z",
- "signature": "FSGVaflnFje1DoyL7kiQqES1trnhzrI1Ncd+qDvbMnVZRogaGnS6intf4AzskHy/Mh7QuyGA78jgf0386qX3AA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "timestamp": "2023-11-01T23:05:57.973205606Z",
- "signature": "QwyP2e17vDwVqv/801ERcqXtASwqO5cWmr1eq8wwbpMGV6kj2KIQKrSsUiMZvLj4CdfJVpX9cWt3bURGvh1RCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "timestamp": "2023-11-01T23:05:57.92224664Z",
- "signature": "2f7l8MlUFfM8vNpVJELucCKB8kT+laEbVhHaj0OOQn2yeRquz3t3x3KrboEaYbV1059H7qRSyO6iMOm/3sxTDw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "timestamp": "2023-11-01T23:05:58.018814775Z",
- "signature": "WeWXX/FWoxzGGAmzJ81l+m0LTXFNSXnG1r71G9tFDAcxvFLr3a0Nq+tznDsCxToyAex2imMqfHT1ZebEyaloCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "timestamp": "2023-11-01T23:05:57.948975885Z",
- "signature": "//vtSPp0Ge2jG1DgsHO2S++7YFiaUMUXqgXJzkPk88/OgVg0UE9/IHt+/ImXpQ6Q5a9cs29YDhyORNXqNbqfCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "timestamp": "2023-11-01T23:05:57.903008496Z",
- "signature": "5a6b1WoNB2NtqE7HmYSlQUpiliITbRZvVYxU3XAjqaxVVpUd2qOSD2eq/5nNQQWjjs2qSwLXAJSVSS8xDu1/AA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "timestamp": "2023-11-01T23:05:58.011540941Z",
- "signature": "UEzGK+/Pd/pNYBTE1gf/doU3oMo3pia4P3uienAC1QvgqbVImN0eoXg0B9BEba8Sy1DIzhfHSXSlSQxzmKl6Cw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "timestamp": "2023-11-01T23:05:58.00327666Z",
- "signature": "pAJwU/geeYk8RXu6cSpJB4iPlP8Iv9Tn/fy+uBOuRlxZLE3wgs0SXNQTRr1jlMbgbAX6DwQi0Fx79+oN7RCeBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "timestamp": "2023-11-01T23:05:57.98698321Z",
- "signature": "UIoLaxsgiop8KWfhZfoGaWxa7YSL87w/aNJtTNcGqQtM6ihyy/oLAv/Bka0HaVQWAbGaE8cLBL0ImqeXAX4sBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "timestamp": "2023-11-01T23:05:57.999718169Z",
- "signature": "KaNvVAm2Q47b1uLwZgJJ8u+Uxntx7HReux4ORAe+k9DHMrjSEaBmqSOfWElmepeSH5Zg7XsukKh/bdnelrNtDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "timestamp": "2023-11-01T23:05:57.926304556Z",
- "signature": "PjGD3VvytXMbPDzs9kZZd4g8+Q5wRA+mlsTCpc2AGuStsx/XNJgMehyLl85KoyvnHPdGIy99G1UcimWcVNfBCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "timestamp": "2023-11-01T23:05:57.989064718Z",
- "signature": "AMDPzofTGyfDhXrBbBYXhRa46j0m09CNxTuR3bHAe93O8suz2hHhBT0AA9l2htnVGL9WOwddfKEbz8/Jfj9xBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "timestamp": "2023-11-01T23:05:57.983041574Z",
- "signature": "RhNvi8xIi5KGjACmwcF0WRUf+odsuEHyQdrOwYfJtuWukapoaD4q9HaUXwPR0y0roosVQztZZHFiWmq1rS59Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "timestamp": "2023-11-01T23:05:57.946514637Z",
- "signature": "p1Y4ANOmzPK7Z43HjTDyDw80gHYMcXsS7UVWcm74XslzDs3otzjA2pMTDnrXNuApSSiPlfhsT7wa4Hu+EsjTBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "timestamp": "2023-11-01T23:05:57.953193502Z",
- "signature": "HLCr/hgDP/Y61vfDlkH6MvYAesmWBpqLUOCQf1sKhsFo4vRR/PiK9Yl+Hkw86KpYxAUl6HTEK/WEWiGW9adzDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "timestamp": "2023-11-01T23:05:57.952794496Z",
- "signature": "IKzMQ0hsqLucxiy1z/W5qSQtSKesUNwhI4+jsKtYOhV8HMYIyK8S1pn6nfOn9Lgmf0hoeBlE/rGfQsQhzDsNAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "timestamp": "2023-11-01T23:05:57.93428081Z",
- "signature": "anEZ76JYwwr5qHDWl6csexM71pgpny5QutVHUWaIXEYxjNv52rDTBJ9/0/FctJ3Vc95xLo5VDy9XBOb56iPdCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "timestamp": "2023-11-01T23:05:58.141131209Z",
- "signature": "x0XjFOR6iYAbqCpVordCBJKJPqXKjHw+7gJo8QEmBzxnFXNbQz7hW5TZKljia2Dh241NFfNlQ+007Ya77TM+CA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "timestamp": "2023-11-01T23:05:58.076486607Z",
- "signature": "gcSgwgVfMTUVIqN7Tk209S7w//h8or9dSBWu9jBQRrh1haXCj/wFbiuk3I7n/m728+cR8IswoOz1l09mDqN1Ag=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "timestamp": "2023-11-01T23:05:57.999448745Z",
- "signature": "XsLUa+sgwRSLkpw6RyAh8BQDJNj93y073T8FyXp0Vs1NN/FQsOaSU8wZdgccijpO8WnpFsCAL0D3vnGKdhX6AA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "timestamp": "2023-11-01T23:05:57.944621581Z",
- "signature": "UC8SPX5DLzbihPA5JOAjpXvrfQ2lkyXKjvB4R7KZ+huywF3JebpVWoGTCaP0u47RDawBEXOTq/UoTdV7ElWEAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "timestamp": "2023-11-01T23:05:57.96335181Z",
- "signature": "8E8zoIk72xu2z7VdYA6GnPoUFDMgKQPPUrhSrkOepQNbjQ7JqiNqTqz/wNJUKAPLYUHjrdjce4hqfP65mnDUDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "timestamp": "2023-11-01T23:05:57.915096604Z",
- "signature": "vwqgo33YpuKGe0jhn111KphbJgf4zJZo6HJhox7oCkg0OBNcNVmzX7KOgc4i3NpzLUot02vGBq641vlmIaK3Dg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "timestamp": "2023-11-01T23:05:57.965020783Z",
- "signature": "zglLH/Knm2QVxW1JYaxc40DFMaxfTuNhjG2UbrsUdXN9+vF8K24ytLwxmystw/r7UYq0kvKzq88i0B7HCPgqBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "timestamp": "2023-11-01T23:05:58.084018303Z",
- "signature": "j5+lnyuQ9jaxC083XspDfUv1Ir6yTwy5mdzIltODSC2B4NZg0LH8IJcHCt76nyggDd4/y70x0UpkfEv85/9wAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "timestamp": "2023-11-01T23:05:57.95385426Z",
- "signature": "JoogIqSbWo0i6dwSMIinfwOzMV2bpd0r1XJTRBk38es2/8j7ZS1EB+uKU9QQ0TQEUDVEbuWOXNNQigF6xxVdAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "timestamp": "2023-11-01T23:05:57.975708456Z",
- "signature": "TrcD08txb/Ys2hwl93+Wrgc9yLSkqwKIdtIr1XHOeU740PZVTrbIKbFxk8GG8c+9qsfzGSvmKZbWVANivtDEAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "timestamp": "2023-11-01T23:05:57.976893145Z",
- "signature": "JmtYQ8iowjQV78OMGkUpjP+DO6fV/PFLuQH+M1Uv9t9sWQJZSwFvHCmixj4sHuji11Vk53vpkSTpsTfD8I/qBQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "timestamp": "2023-11-01T23:05:57.874461255Z",
- "signature": "ug6cqX/emd7/00/w7hhzu8LxY0kXjvWrNSdQ7w+nPtiyOnlnvjFENOrL6lB4yO9+MReTPZfnKplvorDIvevjBg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "timestamp": "2023-11-01T23:05:57.955555187Z",
- "signature": "DDx9oGm8CnrRBQMxJOnBvgZobL14CsJ3833JmkL70866gZ5BGN7FYLPil6nIeDuPIuZb7MwXMlHRFclDEFhSDQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "timestamp": "2023-11-01T23:05:57.914161059Z",
- "signature": "t0ry06oDl822Auz8QBb+b2YeGwrCGInUnOSjgzKL/mx5tZ+qcw8ivZ0gfkRANUlesEmBTUWuF8Ilf7KwOyn1CQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "timestamp": "2023-11-01T23:05:58.055367448Z",
- "signature": "Cv4uF0P0zlga1utlR+plsK4WLb2oR4G1JF9Vqp9Y5mWtffZYptqAgWwXpB6iXQoE9om0W2a6QaYRT2aAqGQsBw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "timestamp": "2023-11-01T23:05:57.92773447Z",
- "signature": "PGF8yhZCRaV9yTMrtjuHvo26P9GsoniW+ehkq3/g8habEWC+knqqz4jKoZXoP5b9RobXjd53dZOtZ5uPW13GCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "timestamp": "2023-11-01T23:05:57.986698724Z",
- "signature": "VTemtiXuKqqK5YDDZ1Sp1mLhPvHtocL/oadcsxKnSYvMgjx+UwgY8Y5BIaD9n77q5KtN1BkvADfJ9T2Q2+bvAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "timestamp": "2023-11-01T23:05:57.921055258Z",
- "signature": "x0IqY5JvXdX3+XxjWRETyyhSHdlYzjzbX7QujewaqEukxfIWLDE1M73mn8AI9Jy5i+n+obBAP3ocvZt2p2CNAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "timestamp": "2023-11-01T23:05:57.896389388Z",
- "signature": "4l55Tr+K6uDTknuZMICn9ixKk3WRQY3mrN+c+qhei38MlhY/rvdgXgArjYtiaJ3w2eDIHIaLdeaKbZGeBowuAQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "timestamp": "2023-11-01T23:05:58.076729024Z",
- "signature": "0jsfD5e1vZ6Yej1W4Z/vgRENMJGdGPkry29NflPCi70dJHiEI/FpSXNvzfQwtfN2EpT6XaosfWESPul7RMS1Bw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "timestamp": "2023-11-01T23:05:57.917621953Z",
- "signature": "Kii6DvEmA6EoJcFzyT4i7pPv6mLqVLVneCnUNjLNpeTW1BpkCiI55nnRJoskwf++r2c70RAFMYaoatV3k0yvAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "timestamp": "2023-11-01T23:05:57.957572995Z",
- "signature": "zZCWbCqNLvBHFvao34mezLIZRSwz9cAFyuxDgQg/mIhOu58WYGTNp9j1VHOmOlCwD+ZHAVPixHuE2Ez229DPAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "timestamp": "2023-11-01T23:05:57.909101899Z",
- "signature": "mzXitnCd0TX4peXIvt4slwA3QSdDEDehFZE17DN2RGyQbYDZOp1MrMFBB63bGVABDzWETIxYlFobbOTpZa37BA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "timestamp": "2023-11-01T23:05:57.928349572Z",
- "signature": "9qeCdWMrrGZCDw3vtu+1RX+lXtI9tq54KrA3NE8p4arpinKg+UumDDxpzQ1rrqh/L8ZW+SYdUspsJ98/bx1aCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "timestamp": "2023-11-01T23:05:57.946779713Z",
- "signature": "YC1VnRVJ/E1M6RoSQGw7d3XiMj2TXtuGZTqDvsh0xl+s6SBObSf/DZ/T6WR2ECl0xBYmLg2mZcuHv7jF1DTWCg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "timestamp": "2023-11-01T23:05:57.943854853Z",
- "signature": "gnAxgbFnn1goCBITFJdlO1SBOPnihGE0IztYPcSd84WGOgw2FNfKs1Sv2agXvUI3YPfBDckGj4BDzFl7gkU7BQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "timestamp": "2023-11-01T23:05:57.920839105Z",
- "signature": "hgG3Sxlwp7Jcxd+WsvthU2KFIFQnxm/bwftYaNGqpmcdCYyJzbXbohAFjyBk+nfekLpY7FIjqpd9yGU9s2QjCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "timestamp": "2023-11-01T23:05:57.918484911Z",
- "signature": "ce4yvPnV1XXmMw6s9vHVKET4QWZ0xTfr4HuY8CJ4dEx2NprNW+ei2SyJEaVv77Xo85G/GM4dRI7K9p0/it4WAg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "timestamp": "2023-11-01T23:05:57.942518328Z",
- "signature": "6deoeUPtBasHYwVvmJmSMGXCF5Z5z1lEfiZiXnzuHsUa1wrHLNDAtZ965ID4oMLA/+YDdJbCxjcDNvqs9C+iAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "timestamp": "2023-11-01T23:05:57.952111413Z",
- "signature": "M5chTPW+363GUNhCxk4QnBtpAUCTkvy7XOzmV3iDAfeyIUTI/JktrqJ8SXVPJ/uBhaJ1Uztj3w9xcPEMpkfWCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "timestamp": "2023-11-01T23:05:57.954434031Z",
- "signature": "TNrUUkCcLEjZxfl5iuzSqGXfg46tnYKo3uD9YPW6lGeTz3M8++aTeRBsZ3F06w7g+2ku8wACyyDxCqOg/SUgBA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "timestamp": "2023-11-01T23:05:57.923572824Z",
- "signature": "AyfQIdQvR4WkL9KtH7XascjBTXopgAYUg2bowb4O1N0EKPlT5CEiElgfNAkZRpIM1t/VFttM6L0stHXLTVaqDg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "19C633702B0252082A410C81444333AD6BF814DF",
- "timestamp": "2023-11-01T23:05:57.960844308Z",
- "signature": "JSW5wkW60g8NONUiqq8F+ygzR2I/F6Tt6s45Nhrdhm+S8athDtZw/h7Uc/22XnkO/M2xVupaO/1f4GK/+RucCw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "timestamp": "2023-11-01T23:05:58.193921301Z",
- "signature": "Bt0FxEHq1pchVd+z0eYMztRhLg9M1D1iAS/02/aWnKIRSeln1qixSuVIbP9PUOg+gVjtun3znRAXq67YzGE/Bg=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "timestamp": "2023-11-01T23:05:57.963582254Z",
- "signature": "OTcuvtbGk+KBgKGAqfx8j/Gp5dYbE4a4X7qooyvox2bHy/a0s0SsxeQg/vM46sBNHOCNVzDTcZ/m6IvVHJIxCQ=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "timestamp": "2023-11-01T23:05:57.92794141Z",
- "signature": "EixMfcwLndnheZCYyRKnw4s6i/op3VY905z9+QbEFXrhOpukNiqLE7lehO0niMdF3efWWt79c0C+wmuinQshAw=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "timestamp": "2023-11-01T23:05:57.939695761Z",
- "signature": "uKHjbvK4fchvjRIY9pKg8FMvtRigYpRa/uxa/w9b9eQZAtdXagEZqDojCjZlOrLZKmQBgjLNw+Q8qhhPHO0dDA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "timestamp": "2023-11-01T23:05:57.967144836Z",
- "signature": "O54ZEjoP8MZ3RLns7WN63MwHV3nNkj5d0GgZwbRsk3nK40hlI+oq6dFHEliNZvJyZyBVyHEMsJ9nBM71is8GAA=="
- },
- {
- "block_id_flag": 2,
- "validator_address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "timestamp": "2023-11-01T23:05:57.93316353Z",
- "signature": "3OkW8zCWIcLcQ+lJUAJaR+2SfKrCem8uBIltUAhcDLTbxwV6EuWV8YRCPOv2tBvZ4QVdrVQL72QLQUmAjabgDA=="
- }
- ]
- }
- },
- "canonical": true
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/2/validators.json b/programs/tendermint-jolt/src/fixtures/2/validators.json
deleted file mode 100644
index f279e39..0000000
--- a/programs/tendermint-jolt/src/fixtures/2/validators.json
+++ /dev/null
@@ -1,911 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "10020",
- "validators": [
- {
- "address": "09C48558CB9E0B90B828B98E5E442404214D1E2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R7Q6xW90/E3jXhfp5ugU+uHzYyrI3H6XwiZFsTnaGJ4="
- },
- "voting_power": "32136470",
- "proposer_priority": "124800151"
- },
- {
- "address": "5944971767F0F5F1B03E0F5B48E1E539C8196CA8",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5N3jb5uAIrp6ACxWY4bxyMErpqsf+/TBsfYCvWQOaxM="
- },
- "voting_power": "31778876",
- "proposer_priority": "156770610"
- },
- {
- "address": "37A6D5CE166147CDCDD81372FEA5A7F2CE7F2A45",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QCmZPTlolao6WnkQkjE9nB26wNIcjWAOc2gMn8tns4="
- },
- "voting_power": "29209693",
- "proposer_priority": "-114048917"
- },
- {
- "address": "D83849519A5CB73E4A9E3BCDF044C6EE8A32156B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rm4LhKWZEO8B1HeEJnQaUOAjzgJrHnvOMlNOj+tzKiA="
- },
- "voting_power": "22855687",
- "proposer_priority": "-70670510"
- },
- {
- "address": "434AE26ED089AA7256563AF8DFA04906D2778916",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "TFWxyudpTzYq2s5V3bQgkKoImG/xhG5f2yQYmdHsNTo="
- },
- "voting_power": "19405121",
- "proposer_priority": "-109446955"
- },
- {
- "address": "1650146F478A6096E4F980803646FC8EE3C36103",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cT4xvVdjyaTzlC4IDvitSHQGZ2xTs0eaYg7a3nFDLQw="
- },
- "voting_power": "11070177",
- "proposer_priority": "-118497140"
- },
- {
- "address": "5EF4AC700C3122DC3C52738C87C55DDA9532645A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "qWEq7neppaXl9C3BkYN9OXBy9A5lIiOV551oFzj097c="
- },
- "voting_power": "9986470",
- "proposer_priority": "-79039597"
- },
- {
- "address": "05D2E22C1216CD30104BCDB6B122B1E7F1ACB5CD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "X53KLdX7D9S4M64VGeIQ7lNHPVc+RRYiPLtbBNZE+6I="
- },
- "voting_power": "6152027",
- "proposer_priority": "66160827"
- },
- {
- "address": "3267A9ABDFA8C74963C059B6B3EF9BC68A074CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "daVukec1DptNcV/8ewjiPvCewsFzAH7tBVyYlkOR+Ls="
- },
- "voting_power": "5968314",
- "proposer_priority": "42984926"
- },
- {
- "address": "8352ECF62EFCF7DBACDE852E6D9FC1A1583C14D3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gyYb6DPPt85NlxKT3FNYJ+9rYV0kcnw9BuQ6tc4JIZE="
- },
- "voting_power": "5482108",
- "proposer_priority": "143279582"
- },
- {
- "address": "071BE4CD2F0486F297C6530918804261034C8F7C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YI3najh0I3cLeXbIuPhVNkGG3sq3/EVwjlPaHJi0yx8="
- },
- "voting_power": "5233735",
- "proposer_priority": "130544222"
- },
- {
- "address": "3DEA7F647851564D6764306F108921BBFC29ADCE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqlNbjpwlN8E9H8dXUIuSO7LkJXDdH2HtK6oWhF3r6M="
- },
- "voting_power": "5000001",
- "proposer_priority": "-103468651"
- },
- {
- "address": "70C6BD00EE64DB5D60F5ACC8B4629CD610346889",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+uKbyW/ACHtvDZZ8iufjsNMJ8zAFyv2fRL8w8J6R54w="
- },
- "voting_power": "4179233",
- "proposer_priority": "13987869"
- },
- {
- "address": "2F7DE8DA14567B86B026F045DACA45F5574E7E40",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "AmKkkByeyV68Ejp8WC4U4BFnkEG3HIKcmOOTShKbe28="
- },
- "voting_power": "4095074",
- "proposer_priority": "-114852309"
- },
- {
- "address": "CB6133C282991C32985AC2779EA277EE8978AC63",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hf7BPUuIEY5mNTAXT33NvzEpineM5SsnjQrvzchnSpE="
- },
- "voting_power": "3911796",
- "proposer_priority": "32797897"
- },
- {
- "address": "E2BD4F895F9DE0B46B2ED4BAA12EE2DE6A415450",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "P0Fju/UVVtGbxQ5CiwkQ5FssuintfgKz2ZIxcFYWMlk="
- },
- "voting_power": "3697210",
- "proposer_priority": "137182532"
- },
- {
- "address": "7B3A6C6838B90C5663CB54E87B9535941A87D27B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "cQZHcOGkyQeBZzydXfZwjKKIxHBOBOCGq5jML1bH5dM="
- },
- "voting_power": "3685361",
- "proposer_priority": "38419934"
- },
- {
- "address": "D74EC29E6E4597943942E7E97B1F519A0615E3B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "hykgLmpkKVGwfjJRxafw9ymRmckZ8b8bQ7LS6rrWi58="
- },
- "voting_power": "3592120",
- "proposer_priority": "105032467"
- },
- {
- "address": "15F7A1BA6B07700B1F537CAFC907737D43CFF48F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WJJElHEmeEREbb6vbYE6If9laLyipD5IkqCtpKrXGuM="
- },
- "voting_power": "3418513",
- "proposer_priority": "46378659"
- },
- {
- "address": "D291511283BEE9A7B91BD222E40F09A74D4AF558",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "v+oTaOh1AGOQGv2Fml4S3rOCQOfcnfKeyVB0IQ4UwjE="
- },
- "voting_power": "3369482",
- "proposer_priority": "89767283"
- },
- {
- "address": "63325279515C1C3A91D7E2DB1AF8D1BF201948FB",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "9ExpHkbi6LQJu2GMfdHA2OzXLV/LKMZ9neZThB0mOrY="
- },
- "voting_power": "3352541",
- "proposer_priority": "-84683778"
- },
- {
- "address": "CBFB913FC967932260667909727676760FA8FA24",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "N3ahgaKgiMosD9d7fl7KU4hxwwKpMGth2o0zVsq6/+k="
- },
- "voting_power": "3278478",
- "proposer_priority": "-47089482"
- },
- {
- "address": "1E7BA20AACF7EF2CDEA41CDFF8DCEDFBCF12F363",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ueUh8xh/b1zlBcCgblxHrZ9impMwKOkgyG5P3f1HkjE="
- },
- "voting_power": "3204439",
- "proposer_priority": "106529543"
- },
- {
- "address": "65AFA0603AAD6F854F8EC3BF8F1030E6D0568486",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Rt3Fh5rJJblo7Ljh1u6R63aTWMnxtdGOvvV8ktWvXmY="
- },
- "voting_power": "3033095",
- "proposer_priority": "41572015"
- },
- {
- "address": "EBBC23A35E43E6A2460BDE3BCD024D964697FFFA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "nfJs6LqABJd1oDZLo1HuHdWtbgOWBmWmtwu95gg7180="
- },
- "voting_power": "2871836",
- "proposer_priority": "-55500685"
- },
- {
- "address": "9F6E7F3058CCEFD736FA8D6F1C2FE73726230678",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "HRbnBq6RQdMLnVE81prrgNiCEA5i5uFqidQtleYktOA="
- },
- "voting_power": "2849151",
- "proposer_priority": "-113457130"
- },
- {
- "address": "865C98A4AA8DCF8DE523E543A04E4FDC4093EE33",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "10RXq49DicpaZHG/CZfD1QG1ZyX6Ifve/JTIaDJtqaU="
- },
- "voting_power": "2767131",
- "proposer_priority": "60172987"
- },
- {
- "address": "8AC8EE7942D79BAC27B5B38CEDD2404C5E0D8BBD",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dZ1cV+w2F5KYKh13FkPYoUD/kTzU4Q0AQSkDAIT+u9I="
- },
- "voting_power": "2453633",
- "proposer_priority": "73531193"
- },
- {
- "address": "49D9FAD47329B418AE6FFF41F8E548C4D1AB7003",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "zPYTB+0OM56gFu6V03k1DIvyHP6IIEu2yNsTGRvkfu0="
- },
- "voting_power": "2430767",
- "proposer_priority": "26598531"
- },
- {
- "address": "126403A2CAA36DBDE0FB64A7AE72ED82979366F7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "1NfzJ7SfbqNONm8nVvSkvUhl9srbpv1NrOerb3LFJmI="
- },
- "voting_power": "1954769",
- "proposer_priority": "-25398796"
- },
- {
- "address": "D1F244351AFAC81FCC7411B9EA622EAA4426D263",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FDsFjNGMbMIxr4uPI76gIBLfrgSJqhOtYCZioNoFAlg="
- },
- "voting_power": "1636773",
- "proposer_priority": "20612750"
- },
- {
- "address": "E641C7A2C964833E556AEF934FBF166B712874B6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "RxfIMOqG/8D+oPuCMci22JH4xG8ss8JyIYswkBlYwgc="
- },
- "voting_power": "1550365",
- "proposer_priority": "71381943"
- },
- {
- "address": "07E5EAFEE033B9897E4136DDF30D9715E6AC63AE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "LlPYsY3SJVZpj453ugU31a+Ue/++MSbgh0PgsI+iuhs="
- },
- "voting_power": "1511186",
- "proposer_priority": "-105330701"
- },
- {
- "address": "7771D9AAF8CCBEFAA7540E862F42D41C2C34028D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "WN5n8XM+TzDQnoq1q6tRggEZCum603LAYoItzZcGLCA="
- },
- "voting_power": "1360820",
- "proposer_priority": "-65784957"
- },
- {
- "address": "64A69907D6AE18450250C7820F7C6776C2C06FC6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FMxXDtNPGfUajZIUaKqGkuqCSiUGtebIytw1IoxstyE="
- },
- "voting_power": "1045952",
- "proposer_priority": "122611123"
- },
- {
- "address": "AB3B14A9C6C45A62AEC21F0F8DE66BE4C5268D86",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NHPP98+UqQ+0ra4cnCXpTWtt0wO5c/gxilOs2VUIjY8="
- },
- "voting_power": "1044203",
- "proposer_priority": "14743855"
- },
- {
- "address": "506DAF706B14EAC53B07CACA749BA16887DDCF80",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wABEWz0WhQoHosUoSM0nw86u261vJiikQ2jgCQ0mNYk="
- },
- "voting_power": "1039491",
- "proposer_priority": "123845697"
- },
- {
- "address": "C5F95CC6D11E428E581F4F48DC9E821B1D55DEF5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tKUn3zWwNVswn5yN2x9O0FiCSsYf/rGC1CG4fFo8pJk="
- },
- "voting_power": "1037464",
- "proposer_priority": "-141301463"
- },
- {
- "address": "53EE271745A7379C5F1A354E54C5D41E80DF9BF4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "uYt4XtZC8NJ3a8bjPvO4WCluuHez4YAtPAWKlxLLtn4="
- },
- "voting_power": "1007290",
- "proposer_priority": "86070997"
- },
- {
- "address": "1117B07AF9435F5B8B8C3593B9B51B695AC2DE15",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xB/m+P/1AyztkX0gSx6cObbcfWtSimiqQdhucu23unA="
- },
- "voting_power": "967661",
- "proposer_priority": "-149386269"
- },
- {
- "address": "54FD50A55FEDC0D9338421AB32F08C9A9AD66CBE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Xyh/BhvPUETay1aNSmcEX9VYK86qzYRZN1pyxxcV5lY="
- },
- "voting_power": "902322",
- "proposer_priority": "-133092340"
- },
- {
- "address": "5407CC051ED1F7F5BE8ECC856B061121BB170D79",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wczCYkuNdDxE07chLzR7UgeKR2SNTGwXK4j6f464hhE="
- },
- "voting_power": "749758",
- "proposer_priority": "65819750"
- },
- {
- "address": "DE94F351C3DFC59B173BB72BAC4534D237D2E895",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "+Fd7ar/vc1cnJVgX3px7N5LrDbQsirHND+5wtfRK1DA="
- },
- "voting_power": "686646",
- "proposer_priority": "47753315"
- },
- {
- "address": "BD7E9EDAB2C6B09EC75D04F76EDFFEC068BA59F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "G1NPnHRULa7EnokMr4uFFhulXJh1wXqa0Qr352+tdoY="
- },
- "voting_power": "624248",
- "proposer_priority": "-127862239"
- },
- {
- "address": "4C7157B0234D904CBD16D993E4DD8EA95A07030F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "dfJTI59/NFW36V8r4Sf2h0r83UROTzUklIDa9Aii+Hg="
- },
- "voting_power": "607027",
- "proposer_priority": "-78363786"
- },
- {
- "address": "9E17DBBEF729D51D2FAB77482343783572CA2A7D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "R/KxXMRw4+sPN8oCg83HyzLBbdI1nQ8uczn08GkkwsY="
- },
- "voting_power": "591462",
- "proposer_priority": "74025759"
- },
- {
- "address": "97E108980779B9639E9817297146C7D5F016AF0D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YYCXr43pteNhGfV5nFA4UQQTU/ldof/3N/8TiTCiGUY="
- },
- "voting_power": "569820",
- "proposer_priority": "125498462"
- },
- {
- "address": "8340641F4885F2904F733F080CFFD749B75D9B93",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "5+ni9aeP93pN4TjFnxOZm8Yj7Cke4SurpQzgjdV8678="
- },
- "voting_power": "519518",
- "proposer_priority": "102828764"
- },
- {
- "address": "A6B32F9FE8DA40797294DB725D6A68464F5AAE2E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "/LK4+c0nWOj1dcOF6jXZnNFGE01JYVNVx+GZBi0EJK0="
- },
- "voting_power": "517755",
- "proposer_priority": "-68846934"
- },
- {
- "address": "2AF8942E90738BF6D455BE490E176AD420A9C0D4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "GPhLy9RdAJq/SqyxX0M4Wt5hqQ+Xx5yZqzXu4v2cMp4="
- },
- "voting_power": "506892",
- "proposer_priority": "-62597147"
- },
- {
- "address": "CFB7445F2A7D7B68357BDA2358226ED26285E829",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "gxPYrd5G0ZoaQZGTJatw2ISQ59dEZi0W9cVbeIURPaw="
- },
- "voting_power": "497213",
- "proposer_priority": "99110944"
- },
- {
- "address": "357A1355464CAF43F6FB025762A727E144AAD6F3",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eLP+nlzPsFzgEnbev9YPA1sdU2I+uN5+CTfPgTmbiLY="
- },
- "voting_power": "495769",
- "proposer_priority": "55341119"
- },
- {
- "address": "5AFFF88E3E256A84A0C9EB348B044CADB912197B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yFOHPDSiBjo+MyNIeuZ2sTLZJIwkWRwbEo7Y3fEYwXo="
- },
- "voting_power": "487844",
- "proposer_priority": "-19513748"
- },
- {
- "address": "17E020FC92DEE56F32E652CEACBD8DE820E3D872",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DUjLobSYVLIGTJaUHx7dpExRTnh/E5FhktNDVq18Zv0="
- },
- "voting_power": "480012",
- "proposer_priority": "20109405"
- },
- {
- "address": "E03B1DE70670C6458322EF5961D6635974C0935B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JN3I8u+mdTRe57lw7VDDXV/ROZv8c1U3dk4frW3kxfk="
- },
- "voting_power": "472919",
- "proposer_priority": "81170352"
- },
- {
- "address": "E2DDC50DEB3F56AA58F29EB1EBB4631A684F7684",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "FHQWcMOQZ5swBeL139jDlKexydl9ZT9iZ2PELRFFGn0="
- },
- "voting_power": "454428",
- "proposer_priority": "77078185"
- },
- {
- "address": "5047F9F1E0CFBE4BCB45BBEA0D1AE70B8243412D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "bKM4TE/YxPphrFOLqil/CDkHkeGiiXLHkLtnc6aZ/M4="
- },
- "voting_power": "439962",
- "proposer_priority": "37182601"
- },
- {
- "address": "D93474D6198CDBCD56E0EED4255BD851C2E64023",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Zd6HWnViTNpzq/sKpVPyUJKrS7uMgtmEVEtQfjcdr3c="
- },
- "voting_power": "438872",
- "proposer_priority": "55272247"
- },
- {
- "address": "A2DD5E9391E5BDC7F2DB899A78564FAC0C07A3CA",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "7QjWHj5OsJ2WhD9Kny13I0qubrdpHITzfR/34MhSzGk="
- },
- "voting_power": "438207",
- "proposer_priority": "-97819976"
- },
- {
- "address": "3F89E45659C9643CA8321EC8A5094553C50B6C4C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YrMG8QfYW5/ww/s82Z1wR13x8lewK+9S3tfy/tqU0aA="
- },
- "voting_power": "437952",
- "proposer_priority": "64011433"
- },
- {
- "address": "B03821ACDC0A4E9F36FC425B854497F251116F6A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "J+TjVEWF8QcOdjJAfuaVjK+AlZdUn3wK5qW5DrVIDFo="
- },
- "voting_power": "436059",
- "proposer_priority": "-30780474"
- },
- {
- "address": "B6FAEE91FCC61F9D8E17B6625B6777EC2575F4B4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ttvi0PTnyhzaKjXGo7h+UFhucyS9le3lBLZziiHbTXM="
- },
- "voting_power": "435734",
- "proposer_priority": "-146340583"
- },
- {
- "address": "D2E7F99B568698441103D7C527E9D116F05C9999",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "8Hc6OxUDcBFA3br+FiHGcyJUYHaz7tGU8aRU3BpkU4I="
- },
- "voting_power": "435514",
- "proposer_priority": "-40290602"
- },
- {
- "address": "26F9D0BC3F41596D2A857984B65DC85D030944E2",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "yT3q+LmNieKBkE7iFs5txYaRqHwxuYgCUqPthe4Jm/Y="
- },
- "voting_power": "428068",
- "proposer_priority": "-148560508"
- },
- {
- "address": "EE89930CC91AC8723B809BA330F2730844FC87F4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ZbIukxRVlvD2EugqyWY5oq8VPvxLDBs61qzHVK0bqAo="
- },
- "voting_power": "427511",
- "proposer_priority": "-127318998"
- },
- {
- "address": "7BCF4670CA7CFD437C95957D065A51E44E95E9F5",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "e4g7CnAmtrrq6E3b03itBdoxVblOnwyTAwkshzoV9QU="
- },
- "voting_power": "427364",
- "proposer_priority": "-87168412"
- },
- {
- "address": "6A8DAD92205EBA34B373E8F7D2A2D50060FFDB78",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "jBDHJNSkgFhEfseF60+/4Cn7luH3zFSvn5PAcXpBZrQ="
- },
- "voting_power": "426005",
- "proposer_priority": "14338069"
- },
- {
- "address": "ECE7DF090086B9325CDB1C8E9AEACB4DF5FFFB75",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "rx/gvLop1aFsgQuat/513H30+xoRhDJo1rEySxQ3xdM="
- },
- "voting_power": "425850",
- "proposer_priority": "-81852006"
- },
- {
- "address": "63A624445A71A5E18730854CE5BE1D9C93DCAD6E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "PPWwBozpIT4BLPo5WUZBog9E4HrfL6PYO2+6lwePpFE="
- },
- "voting_power": "422621",
- "proposer_priority": "-13365525"
- },
- {
- "address": "9165F0E3533E066D574A06B32AC54E7FAE771D8C",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Kw9ZMXqaRVALHVjVACA+WNIMFQ1hpxpWERzqs3ruuHs="
- },
- "voting_power": "419872",
- "proposer_priority": "33403070"
- },
- {
- "address": "E65D72B89CBEF9A6F419C9BDE6C975AA0BF21A97",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "vrSsYrWno/rLAE0wFry5RYXA/o/jh7XI8aGsqO/XkrE="
- },
- "voting_power": "419870",
- "proposer_priority": "-34882295"
- },
- {
- "address": "318C18A22654AB51D65F0859853BC485D1E17F21",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "VyW0FrwvwaL6P2wFIJlfMlq80pM/qPd+HcERkAxWcxs="
- },
- "voting_power": "419193",
- "proposer_priority": "8409945"
- },
- {
- "address": "AF157EF644055C9847F90FF896C95A848674EC38",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xwbuyz6bUNd+Ef79w0ysCU4qgDru1OZTn/yHnPaw5JE="
- },
- "voting_power": "417011",
- "proposer_priority": "-17106812"
- },
- {
- "address": "52A92A0D42D9DA35CF976B4411C394072E6A79EF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "eFL4Um4Y8r9FPLdJcHR5l8ebOmMgnK2h3M+HPZHLl3I="
- },
- "voting_power": "416862",
- "proposer_priority": "-26333246"
- },
- {
- "address": "F7C3A82AC89E0114B136B99352E94DA24E972436",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n3OpFWpY1FDepbaqwB0dBVyzhozeN5TL1lL1cN2yEQo="
- },
- "voting_power": "416840",
- "proposer_priority": "-142920993"
- },
- {
- "address": "994532F7ED1EF9726B2F7DB8613B77BC5A4C8CAE",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "JqnevZ6bUB6+Vs83BeHyXQCPmruLGmXviVAjgUaa9kA="
- },
- "voting_power": "415571",
- "proposer_priority": "-104493007"
- },
- {
- "address": "A393085A8B2401CD9DD0185C7A3543D0D9432193",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "IAuGeG6xR60hG+bfwmSL1S4vsFWxI7qUOuCIORiVV5Q="
- },
- "voting_power": "414823",
- "proposer_priority": "-97790237"
- },
- {
- "address": "D672CFEEF6A7AE605D371E7361007D87F31C594D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "tvFMgCZUlAbgNeipsvsP9bQsk5S9HwxKR/AeT/R4fI8="
- },
- "voting_power": "413890",
- "proposer_priority": "-149637245"
- },
- {
- "address": "B7E2311BF9493AB793F1E43669A3D1580342CC69",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "ptuoujxCDDF4+F0M5J7Gv8jwMwijkxFNmphxzxavcvM="
- },
- "voting_power": "412741",
- "proposer_priority": "122730350"
- },
- {
- "address": "A0B4D49D636B36054FC5C947BC9B934663332391",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iZQLsep99TpmB0bb8EQD4MDGWcvTtzO9aCMWhJxBwHc="
- },
- "voting_power": "411076",
- "proposer_priority": "-142983852"
- },
- {
- "address": "38FBC528B8821A2E1D9242A4E2E26F1D4523C76E",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "iM+kGBPIpJ8wxzqSOYrVROydaUQs5AO+Zp4NjanHPg0="
- },
- "voting_power": "411001",
- "proposer_priority": "-144268802"
- },
- {
- "address": "20D1A0F9ABC5EBEE160507E6B979486706471BA1",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "u8d0XUmrwGbENHHCJQqMcs5ooHXa9jUeVr5QhhcDEHY="
- },
- "voting_power": "410431",
- "proposer_priority": "56670346"
- },
- {
- "address": "FA2888809D74B32C9474BFE48A76801D64A69CA6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UgfOzR+CtVCvvxeYtxP2aslAUA8SHYkk//FmgzmB0pg="
- },
- "voting_power": "408609",
- "proposer_priority": "97559189"
- },
- {
- "address": "6B2C63872F6D3402AEB5B616B63AE83982D6B5F6",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "YT4/Xc+fP+1EvVhq9WsivOJgFr/+Vit8On8H3PDY9cY="
- },
- "voting_power": "408591",
- "proposer_priority": "77300745"
- },
- {
- "address": "9B8AC55DD38B1985CC29FA3BB16A49C8AD71F35D",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "xkKGQ6TDgEiMJ9LaIf1EpD7dVllC3Cl1In0gpQUVrVw="
- },
- "voting_power": "408439",
- "proposer_priority": "82008619"
- },
- {
- "address": "72C68DEC6CEBA2A90D4ACFC1097DD39EC7166A72",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "T3MYxMlrc+6Mbfg3m0/XJwYctpRBHSj6RBFqeETehU0="
- },
- "voting_power": "408000",
- "proposer_priority": "56321953"
- },
- {
- "address": "256058B65732EC7C6B8BC44C5FD2502211379ADF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "NvoYjJx1Fgv+xEUihHwXxwaWduQ+JnHa5j/Bi7fWq9A="
- },
- "voting_power": "406908",
- "proposer_priority": "78032011"
- },
- {
- "address": "22887EF5F3FDF4A043AC5B698310C45E8FC7FC62",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "UP2MGLh3O4qD++Hj/79KPUouhtdExHxcVa/zmvGZ/uw="
- },
- "voting_power": "406579",
- "proposer_priority": "41069497"
- },
- {
- "address": "62E4870299A51FD3092BC0ECD5222BC1896EBA8B",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "riL4KuTil0lTokRsr4aPFBCjmFDc170O/ORFCFM4wuE="
- },
- "voting_power": "406376",
- "proposer_priority": "56237314"
- },
- {
- "address": "C74B70E32FC3A7BE0A49394E279A5FA023516AF7",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "DiYTDGlIQlhuxbH6hc/lJ3Bi4BGc2Tpf1dvLVH+r62A="
- },
- "voting_power": "406057",
- "proposer_priority": "45664490"
- },
- {
- "address": "365D1D6E86B0DE66286EA624C17CE09D4D88DA01",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "njOL+kmlgZZHb6mf3/Mrep9jUK6A3lhpQyIkknlME4U="
- },
- "voting_power": "405512",
- "proposer_priority": "34837947"
- },
- {
- "address": "36F375027D41BCD328CAFC89A6B76E394998BE74",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "i2jI3tw8z/3AO+3G17/jQZlNxi4ufSxoAlmvKqU/fng="
- },
- "voting_power": "404540",
- "proposer_priority": "42700453"
- },
- {
- "address": "D3797C82EB63BCA69E1240B1FFC7AC942D6D4327",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Ri715K13nR7tANI+KZOUCJJn3o61aO0bJT2IrrXb7kQ="
- },
- "voting_power": "404173",
- "proposer_priority": "24334358"
- },
- {
- "address": "19C633702B0252082A410C81444333AD6BF814DF",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "wZuyeykwQKPPi+UMxbNILha7/YzsJvZi5dCtlREdfRQ="
- },
- "voting_power": "403530",
- "proposer_priority": "29813032"
- },
- {
- "address": "ADE038D8F67E388710C01F63FDA57432F302E089",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "m7tzBRBy/nTfmNCNelQtq0Bme3QOK3Bv+ACrnUfNFgo="
- },
- "voting_power": "403000",
- "proposer_priority": "22668201"
- },
- {
- "address": "A460F7A9868E3C318FBE8F429665A2E81AE44731",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "meCW/d9wIhUoWKqVyfbzNOTwn/cb/lCP0e3c5HK85KE="
- },
- "voting_power": "402021",
- "proposer_priority": "7678543"
- },
- {
- "address": "FC2B5E46CE1EA98C3D4023D74CDFC204F027B827",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "XKPJp8fSr/wPh3RcIAApC25x2B/jLoRmYXkUzBu5MV4="
- },
- "voting_power": "366288",
- "proposer_priority": "20399398"
- },
- {
- "address": "21EBD45294486B0F0109B77E3C3E28A54C87436F",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "n49VVDSlBIHGWPNZwpDhjx20WSdAD6jtPADodqB2oz8="
- },
- "voting_power": "193747",
- "proposer_priority": "-155830619"
- },
- {
- "address": "7AC747FB53177056D810D66D354AF2A713E965C4",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "Uc4u8Z6qk8ryXr5mg5ea9HuWT8yn7Mkfj6GNjfX4p4o="
- },
- "voting_power": "193284",
- "proposer_priority": "657471"
- },
- {
- "address": "76C5D1EF47259D4C17138044B009C5343C04451A",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "SkbJ3Ef0g7WEce6EHz0h+GzEb5qpIMjJ+isHDMPIYBk="
- },
- "voting_power": "178097",
- "proposer_priority": "44162879"
- }
- ],
- "count": "100",
- "total": "100"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-1/next_validators.json b/programs/tendermint-jolt/src/fixtures/small-1/next_validators.json
deleted file mode 100644
index 6d3bb2e..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-1/next_validators.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "6",
- "validators": [
- {
- "address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "l/qNaf4JDxnhP+6Pf+2OSAJYksSIkjyefYCDvZPoahA="
- },
- "voting_power": "20000000",
- "proposer_priority": "0"
- }
- ],
- "count": "1",
- "total": "1"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-1/signed_header.json b/programs/tendermint-jolt/src/fixtures/small-1/signed_header.json
deleted file mode 100644
index 90112de..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-1/signed_header.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "signed_header": {
- "header": {
- "version": {
- "block": "11",
- "app": "1"
- },
- "chain_id": "mocha-4",
- "height": "5",
- "time": "2023-09-06T04:55:46.17235145Z",
- "last_block_id": {
- "hash": "7AF4A485BC82ECFD17101F0806EFE400E0579485621558561FB7905C80942620",
- "parts": {
- "total": 1,
- "hash": "D05AA31F6F6DBFAE1F3AE94EB6E30A051C4FEE62AAACAF2AA8BBAAEB60AA897B"
- }
- },
- "last_commit_hash": "FBBD710A0CC8C2FD4E6903A7501E07021A81F08493E7F01079B0FE947EFA6152",
- "data_hash": "3D96B7D238E7E0456F6AF8E7CDF0A67BD6CF9C2089ECB559C659DCAA1F880353",
- "validators_hash": "F2503B99B4525B920D13AA20C974C0536A5C30CCDD62F5B7F4F00D0D02921E08",
- "next_validators_hash": "F2503B99B4525B920D13AA20C974C0536A5C30CCDD62F5B7F4F00D0D02921E08",
- "consensus_hash": "C0B6A634B72AE9687EA53B6D277A73ABA1386BA3CFC6D0F26963602F7F6FFCD6",
- "app_hash": "09B67FE1A5BBB0FA0898CABA78546F2A2333B16B53EA07D1A8FAF457F7E53480",
- "last_results_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "proposer_address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16"
- },
- "commit": {
- "height": "5",
- "round": 0,
- "block_id": {
- "hash": "D947781E13F83F0DF257C34F5AC2CFF86C1E62713D079F9786EA37F4FBE119B5",
- "parts": {
- "total": 1,
- "hash": "85E8EC8E136D753C9D980D07C68F56845FCFE8644A931D5499B779C17D8D9953"
- }
- },
- "signatures": [
- {
- "block_id_flag": 2,
- "validator_address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "timestamp": "2023-09-06T04:55:57.209067617Z",
- "signature": "EPuSTGftCv6I+uMe/5zCQWwjXMTMXnR/Nx+XMbTfmsYlqDctoleRSmn4t8TOpG6th13krC2PFpYm0hnM87lfBQ=="
- }
- ]
- }
- },
- "canonical": true
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-1/validators.json b/programs/tendermint-jolt/src/fixtures/small-1/validators.json
deleted file mode 100644
index 1a92034..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-1/validators.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "5",
- "validators": [
- {
- "address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "l/qNaf4JDxnhP+6Pf+2OSAJYksSIkjyefYCDvZPoahA="
- },
- "voting_power": "20000000",
- "proposer_priority": "0"
- }
- ],
- "count": "1",
- "total": "1"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-2/next_validators.json b/programs/tendermint-jolt/src/fixtures/small-2/next_validators.json
deleted file mode 100644
index ad0d37a..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-2/next_validators.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "11",
- "validators": [
- {
- "address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "l/qNaf4JDxnhP+6Pf+2OSAJYksSIkjyefYCDvZPoahA="
- },
- "voting_power": "20000000",
- "proposer_priority": "0"
- }
- ],
- "count": "1",
- "total": "1"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-2/signed_header.json b/programs/tendermint-jolt/src/fixtures/small-2/signed_header.json
deleted file mode 100644
index 265de13..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-2/signed_header.json
+++ /dev/null
@@ -1,53 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "signed_header": {
- "header": {
- "version": {
- "block": "11",
- "app": "1"
- },
- "chain_id": "mocha-4",
- "height": "10",
- "time": "2023-09-06T04:56:41.367027518Z",
- "last_block_id": {
- "hash": "5C5451567973D8658A607D58F035BA9078291E33D880A0E6E67145C717E6B11B",
- "parts": {
- "total": 1,
- "hash": "2F0BDE430A67FE332F4264C2B47955218671DA9CAE5429066EA72762212DC691"
- }
- },
- "last_commit_hash": "F252880F385C34E371813904E164A0FD6929F34159E5322262B07A593B8D8CB4",
- "data_hash": "3D96B7D238E7E0456F6AF8E7CDF0A67BD6CF9C2089ECB559C659DCAA1F880353",
- "validators_hash": "F2503B99B4525B920D13AA20C974C0536A5C30CCDD62F5B7F4F00D0D02921E08",
- "next_validators_hash": "F2503B99B4525B920D13AA20C974C0536A5C30CCDD62F5B7F4F00D0D02921E08",
- "consensus_hash": "C0B6A634B72AE9687EA53B6D277A73ABA1386BA3CFC6D0F26963602F7F6FFCD6",
- "app_hash": "AEFDA90AD09ACCFE5BC708D322C0D53E38DD54388E2AD970D09672DD301F4F66",
- "last_results_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "evidence_hash": "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855",
- "proposer_address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16"
- },
- "commit": {
- "height": "10",
- "round": 0,
- "block_id": {
- "hash": "D31ED2873DF9678AA8E635789BE45098DD8631F04970E29AAF1EA903BBECA710",
- "parts": {
- "total": 1,
- "hash": "8553C43FBFFA473D592D38816410B2A2371D23544D2F43E3611EDB916A504F64"
- }
- },
- "signatures": [
- {
- "block_id_flag": 2,
- "validator_address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "timestamp": "2023-09-06T04:56:52.396961682Z",
- "signature": "4ZI6OBtSWcHcJDOII1xKTgqNKlThikXVNOk4qgaMchj7bRQMyDCcBRdPZFrF/YNNnLxiOiP9jnJh+QpccSX5Ag=="
- }
- ]
- }
- },
- "canonical": true
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/fixtures/small-2/validators.json b/programs/tendermint-jolt/src/fixtures/small-2/validators.json
deleted file mode 100644
index e08ff7e..0000000
--- a/programs/tendermint-jolt/src/fixtures/small-2/validators.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "jsonrpc": "2.0",
- "id": -1,
- "result": {
- "block_height": "10",
- "validators": [
- {
- "address": "7619BFC85B72E319BF414A784D4DE40EE9B92C16",
- "pub_key": {
- "type": "tendermint/PubKeyEd25519",
- "value": "l/qNaf4JDxnhP+6Pf+2OSAJYksSIkjyefYCDvZPoahA="
- },
- "voting_power": "20000000",
- "proposer_priority": "0"
- }
- ],
- "count": "1",
- "total": "1"
- }
-}
\ No newline at end of file
diff --git a/programs/tendermint-jolt/src/lib.rs b/programs/tendermint-jolt/src/lib.rs
deleted file mode 100644
index db0df96..0000000
--- a/programs/tendermint-jolt/src/lib.rs
+++ /dev/null
@@ -1,123 +0,0 @@
-#![no_main]
-
-use core::time::Duration;
-use serde::Deserialize;
-use tendermint::{node::Id, validator::Info};
-use tendermint_light_client_verifier::{
- options::Options,
- types::{LightBlock, SignedHeader, ValidatorSet},
- ProdVerifier, Verdict, Verifier,
-};
-
-#[derive(Debug, Deserialize)]
-pub struct CommitResponse {
- pub result: SignedHeaderWrapper,
-}
-
-#[derive(Debug, Deserialize)]
-pub struct SignedHeaderWrapper {
- pub signed_header: SignedHeader,
-}
-
-#[derive(Debug, Deserialize)]
-pub struct ValidatorSetResponse {
- pub result: BlockValidatorSet,
-}
-
-#[derive(Debug, Deserialize)]
-pub struct BlockValidatorSet {
- pub block_height: String,
- pub validators: Vec,
- pub count: String,
- pub total: String,
-}
-
-#[jolt::provable]
-pub fn tendermint() {
- let peer_id: [u8; 20] = [
- 0x72, 0x6b, 0xc8, 0xd2, 0x60, 0x38, 0x7c, 0xf5, 0x6e, 0xcf, 0xad, 0x3a, 0x6b, 0xf6, 0xfe,
- 0xcd, 0x90, 0x3e, 0x18, 0xa2,
- ];
- // Generate the Light Block's without testgen
- let file_content = include_bytes!("./fixtures/1/signed_header.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
-
- let commit_response: CommitResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let signed_header = commit_response.result.signed_header;
-
- let file_content = include_bytes!("./fixtures/1/validators.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
- let validators_response: ValidatorSetResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let validators = validators_response.result;
- let validators = ValidatorSet::new(validators.validators, None);
-
- let file_content = include_bytes!("./fixtures/1/next_validators.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
- let next_validators_response: ValidatorSetResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let next_validators = next_validators_response.result;
- let next_validators = ValidatorSet::new(next_validators.validators, None);
-
- // Create a default light block with a valid chain-id for height `1` with a timestamp 20
- // secs before now (to be treated as trusted state)
- let light_block_1: LightBlock =
- LightBlock::new(signed_header, validators, next_validators, Id::new(peer_id));
-
- // // Generate the Light Block's without testgen
- let file_content = include_bytes!("./fixtures/2/signed_header.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
-
- let commit_response: CommitResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let signed_header = commit_response.result.signed_header;
-
- let file_content = include_bytes!("./fixtures/2/validators.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
- let validators_response: ValidatorSetResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let validators = validators_response.result;
- let validators = ValidatorSet::new(validators.validators, None);
-
- let file_content = include_bytes!("./fixtures/2/next_validators.json");
- let file_content_str =
- core::str::from_utf8(file_content).expect("Failed to convert file content to string");
- let next_validators_response: ValidatorSetResponse =
- serde_json::from_str(file_content_str).expect("Failed to parse JSON");
- let next_validators = next_validators_response.result;
- let next_validators = ValidatorSet::new(next_validators.validators, None);
-
- // Create a default light block with a valid chain-id for height `1` with a timestamp 20
- // secs before now (to be treated as trusted state)
- let light_block_2: LightBlock =
- LightBlock::new(signed_header, validators, next_validators, Id::new(peer_id));
-
- let vp = ProdVerifier::default();
- let opt = Options {
- trust_threshold: Default::default(),
- trusting_period: Duration::from_secs(500),
- clock_drift: Default::default(),
- };
-
- let verify_time = light_block_2.time() + Duration::from_secs(20);
-
- let verdict = vp.verify_update_header(
- light_block_2.as_untrusted_state(),
- light_block_1.as_trusted_state(),
- &opt,
- verify_time.unwrap(),
- );
-
- match verdict {
- Verdict::Success => {
- println!("success");
- }
- v => panic!("expected success, got: {:?}", v),
- }
-}
diff --git a/sweep.py b/sweep.py
index 5d79662..baf1186 100644
--- a/sweep.py
+++ b/sweep.py
@@ -1,26 +1,36 @@
-import os
+import argparse
import subprocess
from itertools import product
-filename = "benchmark"
-trials = 1
-options_program = ['loop', 'fibonacci', 'tendermint', 'reth1', 'reth2']
-options_prover = ["sp1", "risc0"]
-options_hashfn = ['poseidon']
-options_shard_size = [22]
-options_block_1 = "17106222"
-options_block_2 = "19409768"
+def run_benchmark(filename, trials, programs, provers, hashfns, shard_sizes, block_1, block_2):
+ option_combinations = product(programs, provers, hashfns, shard_sizes)
+ for program, prover, hashfn, shard_size in option_combinations:
+ first_shard_size = shard_sizes[0]
+ if prover != 'sp1' and shard_size != first_shard_size: # Only sp1 supports different shard sizes
+ continue
+ print(f"Running: {program}, {prover}, {hashfn}, {shard_size}")
+ for _ in range(trials):
+ if program == "reth1":
+ subprocess.run(['bash', 'eval.sh', "reth", prover, hashfn, str(shard_size), filename, block_1])
+ elif program == "reth2":
+ subprocess.run(['bash', 'eval.sh', "reth", prover, hashfn, str(shard_size), filename, block_2])
+ else:
+ subprocess.run(['bash', 'eval.sh', program, prover, hashfn, str(shard_size), filename])
-option_combinations = product(options_program, options_prover, options_hashfn, options_shard_size)
-for program, prover, hashfn, shard_size in option_combinations:
- first_shard_size = options_shard_size[0]
- if prover != 'sp1' and shard_size != first_shard_size: # Only sp1 supports different shard sizes
- continue
- print(f"Running: {program}, {prover}, {hashfn}, {shard_size}")
- for _ in range(trials):
- if program == "reth1":
- subprocess.run(['bash', 'eval.sh', "reth", prover, hashfn, str(shard_size), filename, options_block_1])
- elif program == "reth2":
- subprocess.run(['bash', 'eval.sh', "reth", prover, hashfn, str(shard_size), filename, options_block_2])
- else:
- subprocess.run(['bash', 'eval.sh', program, prover, hashfn, str(shard_size), filename])
+def main():
+ parser = argparse.ArgumentParser(description="Run benchmarks with various combinations of options.")
+ parser.add_argument("--filename", default="benchmark", help="Filename for the benchmark")
+ parser.add_argument("--trials", type=int, default=1, help="Number of trials to run")
+ parser.add_argument("--programs", nargs='+', default=['loop', 'fibonacci', 'tendermint', 'reth1', 'reth2'], help="List of programs to benchmark", choices=['loop', 'fibonacci', 'tendermint', 'reth1', 'reth2'])
+ parser.add_argument("--provers", nargs='+', default=["sp1"], help="List of provers to use", choices=["sp1", "risc0"])
+ parser.add_argument("--hashfns", nargs='+', default=['poseidon'], help="List of hash functions to use", choices=["poseidon"])
+ parser.add_argument("--shard-sizes", type=int, nargs='+', default=[22], help="List of shard sizes to use")
+ parser.add_argument("--block-1", default="17106222", help="Block number for reth1")
+ parser.add_argument("--block-2", default="19409768", help="Block number for reth2")
+
+ args = parser.parse_args()
+
+ run_benchmark(args.filename, args.trials, args.programs, args.provers, args.hashfns, args.shard_sizes, args.block_1, args.block_2)
+
+if __name__ == "__main__":
+ main()
\ No newline at end of file