risc0 / risc0-ethereum

Integration of the RISC Zero verifiable compute platform with Ethereum and EVM chains.
https://risczero.com
Apache License 2.0
60 stars 15 forks source link

zkVM version mismatch when executing publisher on a local network #164

Closed PinelliaC closed 2 months ago

PinelliaC commented 2 months ago

Following the deploy on a local network, I executed the publisher like this

cargo run --bin publisher -- \
    --chain-id=31337 \
    --rpc-url=http://localhost:8545 \
    --contract=${COUNTER_ADDRESS:?} \
    --account=0x9737100D2F42a196DE56ED0d1f6fF598a250E7E4 \
    --token=${TOYKEN_ADDRESS:?}

Error:

Error: server error `zkVM version mismatch: Bonsai supports only the risc0-zkvm '1.0.1' version`

My risczero version is 1.0.1

cargo risczero --version
cargo-risczero 1.0.1
PinelliaC commented 2 months ago

When I switched back to the v1.0.0 tag, the issue was resolved