hyperspace-rs 0.2.0

A Rust library to interact with [Hyperspace](https://avax.hyperspace.xyz/) NFT marketplace on Avalanche
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub const DEFAULT_AVALANCHE_C_CHAIN_RPC_URL: &str = "https://api.avax.network/ext/bc/C/rpc";

pub const AVALANCHE_MAINNET_CHAIN_ID: u64 = 43114;

pub const HYPERSPACE_API_URL: &str = "https://avax.api.hyperspace.xyz/rest/";

pub const WAVAX_CONTRACT_ADDRESS: &str = "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7";

// ENDPOINTS

pub const GET_COLLECTION_STATS: &str = "get-project-stats";
pub const GET_COLLECTION_BIDS: &str = "get-collection-bids-for-project";
pub const GET_ACCOUNT_INVENTORY: &str = "get-marketplace-snapshots";