KIIEX – powered by KiiChain
  • Learn
    • What is KIIEX?
    • What is KiiChain?
    • KiiChain
      • Vision of KiiChain
      • Use Cases
      • Roadmap
      • Whitepaper
    • Tokenomics
      • Intro Coin Details
      • Coin Unlocking Schedule
      • Utility
      • Evergreen Model
    • Getting Started
      • Get a Wallet
      • Set Up a Web Wallet
      • Connect Wallet to Explorer App
  • Kii Ambassadors
  • CONNECT TO KIIEX
    • Set up your KIIEX Account
      • Upgrade your Account to Enterprise Level
    • Stablecoin FX Quick Start
      • Swap USDT to COPM with UI
    • KIIEX API's
      • System
      • User
      • Authentication
      • Models
  • BUILD ON KIICHAIN
    • Developer Hub
    • Testnet Oro
    • Endpoints - Cosmos
      • EVM
        • VM
        • ERC20
        • FeeMarket
      • IBC
      • Kiichain
        • TokenFactory
      • Cosmwasm
      • Cosmos
        • Auth
        • Authz
        • Bank
        • Tendermint
        • Consensus
        • Distribution
        • Evidence
        • Feegrant
        • Gov
        • Slashing
        • Staking
        • Tx
        • Upgrade
    • Developer Tools
      • RWA Protocol
      • Rust SDK
      • JS/TS SDK
        • Kiijs-evm
        • Kiijs-proto
        • Kiijs-utils
      • Deploy a smart contract
      • Deploy a dApp
      • Testnet faucet
    • Smart Contracts
    • Modules
      • TokenFactory
      • EVM
  • Precompiled contracts
  • Validate the Network
    • Getting Started
      • What is a delegator?
      • What is a validator?
    • Run a Validator / Full Node
      • Getting started
      • Step-by-Step Guide
        • Becoming a Validator
        • Recovering Legacy Addresses
      • Maintaining a validator
      • Incentive
      • Technical requirements
      • Validator Security
    • Economics
      • Staking Requirements
      • Delegation / Staking
      • Rewards
      • Block Rewards Formula
      • APR
    • Delegator Information
      • Choosing a validator
      • Directives of delegators
      • Incentive to stake
      • Security considerations
      • Risks to consider
Powered by GitBook
LogoLogo
On this page

Was this helpful?

Export as PDF
  1. BUILD ON KIICHAIN
  2. Endpoints - Cosmos
  3. Kiichain

TokenFactory

PreviousKiichainNextCosmwasm

Last updated 1 month ago

Was this helpful?

Params defines a gRPC query method that returns the tokenfactory module's parameters.

get
Responses
200
A successful response.
application/json
default
An unexpected error response.
application/json
get
GET /kiichain/tokenfactory/v1beta1/params HTTP/1.1
Host: lcd.uno.sentry.testnet.v3.kiivalidator.com
Accept: */*
{
  "params": {
    "denom_creation_fee": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "denom_creation_gas_consume": "text"
  }
}

DenomAuthorityMetadata defines a gRPC query method for fetching DenomAuthorityMetadata for a particular denom.

get
Path parameters
denomanyRequired
Responses
200
A successful response.
application/json
default
An unexpected error response.
application/json
get
GET /kiichain/tokenfactory/v1beta1/denoms/{denom}/authority_metadata HTTP/1.1
Host: lcd.uno.sentry.testnet.v3.kiivalidator.com
Accept: */*
{
  "authority_metadata": {
    "admin": "text"
  }
}

DenomsFromAdmin defines a gRPC query method for fetching all denominations owned by a specific admin.

get
Path parameters
adminanyRequired
Responses
200
A successful response.
application/json
default
An unexpected error response.
application/json
get
GET /kiichain/tokenfactory/v1beta1/denoms_from_admin/{admin} HTTP/1.1
Host: lcd.uno.sentry.testnet.v3.kiivalidator.com
Accept: */*
{
  "denoms": [
    "text"
  ]
}

DenomsFromCreator defines a gRPC query method for fetching all denominations created by a specific admin/creator.

get
Path parameters
creatoranyRequired
Responses
200
A successful response.
application/json
default
An unexpected error response.
application/json
get
GET /kiichain/tokenfactory/v1beta1/denoms_from_creator/{creator} HTTP/1.1
Host: lcd.uno.sentry.testnet.v3.kiivalidator.com
Accept: */*
{
  "denoms": [
    "text"
  ]
}
  • GETParams defines a gRPC query method that returns the tokenfactory module's parameters.
  • GETDenomAuthorityMetadata defines a gRPC query method for fetching DenomAuthorityMetadata for a particular denom.
  • GETDenomsFromAdmin defines a gRPC query method for fetching all denominations owned by a specific admin.
  • GETDenomsFromCreator defines a gRPC query method for fetching all denominations created by a specific admin/creator.