π€ΉLaunchpad
Query
Fetch Launchpad Details
import { IndexerGrpcMitoApi } from '@injectivelabs/sdk-ts'
const MITO_API_ENDPOINT = 'https://k8s.mainnet.mito.grpc-web.injective.network' /** for mainnet */
const mitoApi = new IndexerGrpcMitoApi(MITO_API_ENDPOINT)
const address = 'inj1..'
const LAUNCHPAD_CONTRACT_ADDRESS = 'inj1..'
const { ido: launchpad } = await mitoApi.fetchIDO({
contractAddress: LAUNCHPAD_CONTRACT_ADDRESS,
accountAddress: address
})
console.log(launchpad)Transactions
Subscribe to Launchpad
Claim Launchpad Subscription
Last updated