039b8b424b
* V2 Sync * v2 sync * Launchpad V2 sync * Update trading start time description * Add explicit_content to CollectionDetails update dependencies * Minor UI changes * Update MintPriceMessage interface * Add symbolState.value to CollectionDetails update dependencies * Add external_link to Collection Details * Remove the tab Instantiate from the minter contract dashboard * Add price check for update_minting_price * Implement dynamic per address limit check * Add checks for trading start time * Update Minter Contract Dashboard Instantiate Tab - 1 * Update Minter Contract Dashboard Instantiate Tab - 2 * Remove Instantiate tab from SG721 Contract Dashboard * Update whitelist contract helpers * Update whitelist instantiate fee wrt member limit Co-authored-by: name-user1 <eray@deuslabs.fi> Co-authored-by: Serkan Reis <serkanreis@gmail.com>
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
/* eslint-disable import/no-default-export */
|
|
|
|
declare module '*.svg' {
|
|
const Component: (props: import('react').SVGProps<SVGSVGElement>) => JSX.Element
|
|
export default Component
|
|
}
|
|
|
|
declare module 'react-datetime-picker/dist/entry.nostyle' {
|
|
export { default } from 'react-datetime-picker'
|
|
export * from 'react-datetime-picker'
|
|
}
|
|
|
|
declare namespace NodeJS {
|
|
declare interface ProcessEnv {
|
|
readonly APP_VERSION: string
|
|
|
|
readonly NEXT_PUBLIC_SG721_CODE_ID: string
|
|
readonly NEXT_PUBLIC_WHITELIST_CODE_ID: string
|
|
readonly NEXT_PUBLIC_VENDING_MINTER_CODE_ID: string
|
|
readonly NEXT_PUBLIC_VENDING_FACTORY_ADDRESS: string
|
|
|
|
readonly NEXT_PUBLIC_PINATA_ENDPOINT_URL: string
|
|
readonly NEXT_PUBLIC_API_URL: string
|
|
readonly NEXT_PUBLIC_BLOCK_EXPLORER_URL: string
|
|
readonly NEXT_PUBLIC_NETWORK: string
|
|
readonly NEXT_PUBLIC_STARGAZE_WEBSITE_URL: string
|
|
readonly NEXT_PUBLIC_WEBSITE_URL: string
|
|
}
|
|
}
|
|
|
|
type KeplrWindow = import('@keplr-wallet/types/src/window').Window
|
|
|
|
declare interface Window extends KeplrWindow {
|
|
confetti?: (obj: any) => void
|
|
}
|
|
|
|
declare const __DEV__: boolean
|
|
declare const __PROD__: boolean
|
|
|
|
/* eslint-enable import/no-default-export */
|