starknet-contract-verifier 0.3.0

Contract class verification tool that allows you to verify your starknet classes on a block explorer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Re-export the API module components
pub use self::{
    client::ApiClient,
    errors::{ApiClientError, VerificationError},
    models::{FileInfo, ProjectMetadataInfo, VerificationJob, VerificationJobDispatch},
    polling::poll_verification_status,
    types::{JobStatus, Status, VerifyJobStatus},
};

// Module declarations
mod client;
mod errors;
mod models;
mod polling;
mod types;