tg-voting-contract 0.17.1

Generic utils for building voting contracts for tgrade
Documentation
1
2
3
4
5
6
7
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Clone, PartialEq, Eq, JsonSchema, Debug)]
pub struct ProposalCreationResponse {
    pub proposal_id: u64,
}