* Add instantiate page for minter * Add query page to minter contract * Add execute page for minter contract * Add contracts index page * Refaactor sg721 helper files * Add instantiate page * Add query page for sg721 * Add execute page for sg721 contract * Copy page templates for whitelist contracts * Add instantitate for whitelist contract * Add query page to whitelist contract * Add execute page for whitelist contract
38 lines
1.0 KiB
TypeScript
38 lines
1.0 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_MINTER_CODE_ID: string
|
|
readonly NEXT_PUBLIC_WHITELIST_CODE_ID: string
|
|
|
|
readonly NEXT_PUBLIC_API_URL: string
|
|
readonly NEXT_PUBLIC_BLOCK_EXPLORER_URL: string
|
|
readonly NEXT_PUBLIC_NETWORK: 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 */
|