2022-07-13 13:56:36 +00:00
|
|
|
/* 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
|
|
|
|
|
2022-07-14 10:16:50 +00:00
|
|
|
readonly NEXT_PUBLIC_SG721_CODE_ID: string
|
2023-02-26 09:36:34 +00:00
|
|
|
readonly NEXT_PUBLIC_SG721_UPDATABLE_CODE_ID: string
|
2022-07-19 07:53:03 +00:00
|
|
|
readonly NEXT_PUBLIC_WHITELIST_CODE_ID: string
|
2023-04-17 10:35:01 +00:00
|
|
|
readonly NEXT_PUBLIC_WHITELIST_FLEX_CODE_ID: string
|
2022-10-21 01:02:52 +00:00
|
|
|
readonly NEXT_PUBLIC_VENDING_MINTER_CODE_ID: string
|
2023-04-17 10:35:01 +00:00
|
|
|
readonly NEXT_PUBLIC_VENDING_MINTER_FLEX_CODE_ID: string
|
2022-10-21 01:02:52 +00:00
|
|
|
readonly NEXT_PUBLIC_VENDING_FACTORY_ADDRESS: string
|
2023-02-26 09:36:34 +00:00
|
|
|
readonly NEXT_PUBLIC_VENDING_FACTORY_UPDATABLE_ADDRESS: string
|
2023-04-27 17:12:05 +00:00
|
|
|
readonly NEXT_PUBLIC_VENDING_FACTORY_FLEX_ADDRESS: string
|
2022-12-09 08:27:50 +00:00
|
|
|
readonly NEXT_PUBLIC_BASE_FACTORY_ADDRESS: string
|
2023-02-26 09:36:34 +00:00
|
|
|
readonly NEXT_PUBLIC_BASE_FACTORY_UPDATABLE_ADDRESS: string
|
2022-12-19 12:01:00 +00:00
|
|
|
readonly NEXT_PUBLIC_SG721_NAME_ADDRESS: string
|
2022-12-09 08:27:50 +00:00
|
|
|
readonly NEXT_PUBLIC_BASE_MINTER_CODE_ID: string
|
2023-02-01 12:47:33 +00:00
|
|
|
readonly NEXT_PUBLIC_BADGE_HUB_CODE_ID: string
|
|
|
|
readonly NEXT_PUBLIC_BADGE_HUB_ADDRESS: string
|
|
|
|
readonly NEXT_PUBLIC_BADGE_NFT_CODE_ID: string
|
|
|
|
readonly NEXT_PUBLIC_BADGE_NFT_ADDRESS: string
|
2023-03-19 08:58:37 +00:00
|
|
|
readonly NEXT_PUBLIC_SPLITS_CODE_ID: string
|
|
|
|
readonly NEXT_PUBLIC_CW4_GROUP_CODE_ID: string
|
2022-07-13 13:56:36 +00:00
|
|
|
|
2022-07-28 13:38:43 +00:00
|
|
|
readonly NEXT_PUBLIC_PINATA_ENDPOINT_URL: string
|
2022-07-13 13:56:36 +00:00
|
|
|
readonly NEXT_PUBLIC_API_URL: string
|
|
|
|
readonly NEXT_PUBLIC_BLOCK_EXPLORER_URL: string
|
|
|
|
readonly NEXT_PUBLIC_NETWORK: string
|
2022-09-15 07:33:08 +00:00
|
|
|
readonly NEXT_PUBLIC_STARGAZE_WEBSITE_URL: string
|
2022-07-13 13:56:36 +00:00
|
|
|
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 */
|