NethermindEth / starknet-contract-verifier

CLI to verify your starknet contracts classes on block explorers!
Apache License 2.0
19 stars 10 forks source link

Unable to verify 2.5.4 class #29

Open Bart-Do opened 4 months ago

Bart-Do commented 4 months ago

The following class returns an error during verification process.

cwkang1998 commented 3 months ago

Seems this is more of a backend issue than a frontend one. Currently unable to reliably reproduce this.

Recent attempts seems to result in success.

Bart-Do commented 3 months ago

Here's my Scarb.toml file: It seems to happen when I have a dependency in this file.

[package]
name = "mycontract"
version = "0.1.0"
edition = "2023_11"

# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html

[dependencies]
starknet = "2.5.4"

[dev-dependencies]
snforge_std = { git = "https://github.com/foundry-rs/starknet-foundry", tag = "v0.22.0" }

[[target.starknet-contract]]
casm = true

[tool.voyager]
my_contract = { path = "lib.cairo" }
cwkang1998 commented 3 months ago

You're right, looking at the backend logs it seems to be the case. Will investigate the backend implementation.

image