github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/erc20/types/querier.go (about)

     1  package types
     2  
     3  type ContractByDenomRequest struct {
     4  	Denom string `json:"denom,omitempty"`
     5  }
     6  
     7  type DenomByContractRequest struct {
     8  	Contract string `json:"contract,omitempty"`
     9  }
    10  
    11  type ContractTemplate struct {
    12  	Proxy     string `json:"proxy"`
    13  	Implement string `json:"implement"`
    14  }
    15  
    16  type QueryTokenMappingResponse struct {
    17  	Denom     string `json:"denom"`
    18  	Contract  string `json:"contract"`
    19  	Path      string `json:"path,omitempty"`
    20  	BaseDenom string `json:"base_denom,omitempty"`
    21  }