Created
February 2, 2023 02:14
-
-
Save Enigo/614ead5395f5466ac9fa327f63935af6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[derive(Deserialize, Debug)] | |
pub struct Asset { | |
pub result: Vec<TheResult>, | |
pub cursor: String, | |
} | |
#[derive(Deserialize, Debug)] | |
pub struct TheResult { | |
pub token_id: String, | |
pub token_address: String, | |
pub metadata: Metadata, | |
} | |
#[derive(Deserialize, Debug)] | |
pub struct Metadata { | |
pub name: String, | |
pub tier: i32, | |
pub solon: i32, | |
pub carbon: i32, | |
pub crypton: i32, | |
pub silicon: i32, | |
pub hydrogen: i32, | |
pub hyperion: i32, | |
pub landmark: String, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment