uraeus 0.1.0

Command line utilities to check StarkNet contracts written in Cairo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug)]
pub struct CompiledFile {
    pub program: Program,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct Program {
    pub data: Vec<String>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct StarkNetGetCodeResponse {
    pub bytecode: Vec<String>,
}