import type { Coin } from '@cosmjs/proto-signing' import type { logs } from '@cosmjs/stargate' import { useCallback, useEffect, useState } from 'react' import { useWallet } from 'utils/wallet' import type { BadgeHubContract, BadgeHubInstance, BadgeHubMessages, MigrateResponse } from './contract' import { badgeHub as initContract } from './contract' /*export interface InstantiateResponse { /** The address of the newly instantiated contract *-/ readonly contractAddress: string readonly logs: readonly logs.Log[] /** Block height in which the transaction is included *-/ readonly height: number /** Transaction hash (might be used as transaction ID). Guaranteed to be non-empty upper-case hex *-/ readonly transactionHash: string readonly gasWanted: number readonly gasUsed: number }*/ interface InstantiateResponse { readonly contractAddress: string readonly transactionHash: string readonly logs: readonly logs.Log[] } export interface UseBadgeHubContractProps { instantiate: ( codeId: number, initMsg: Record, label: string, admin?: string, funds?: Coin[], ) => Promise migrate: (contractAddress: string, codeId: number, migrateMsg: Record) => Promise use: (customAddress: string) => BadgeHubInstance | undefined updateContractAddress: (contractAddress: string) => void getContractAddress: () => string | undefined messages: (contractAddress: string) => BadgeHubMessages | undefined } export function useBadgeHubContract(): UseBadgeHubContractProps { const wallet = useWallet() const [address, setAddress] = useState('') const [badgeHub, setBadgeHub] = useState() useEffect(() => { setAddress(localStorage.getItem('contract_address') || '') }, []) useEffect(() => { if (!wallet.isWalletConnected) { return } const load = async () => { const client = await wallet.getSigningCosmWasmClient() const BadgeHubBaseContract = initContract(client, wallet.address || '') setBadgeHub(BadgeHubBaseContract) } load().catch(console.error) // eslint-disable-next-line react-hooks/exhaustive-deps }, [wallet.isWalletConnected, wallet.address]) const updateContractAddress = (contractAddress: string) => { setAddress(contractAddress) } const instantiate = useCallback( (codeId: number, initMsg: Record, label: string, admin?: string): Promise => { return new Promise((resolve, reject) => { if (!badgeHub) { reject(new Error('Contract is not initialized.')) return } badgeHub .instantiate(wallet.address || '', codeId, initMsg, label, admin) .then(resolve) .catch(reject) }) }, [badgeHub, wallet], ) const migrate = useCallback( (contractAddress: string, codeId: number, migrateMsg: Record): Promise => { return new Promise((resolve, reject) => { if (!badgeHub) { reject(new Error('Contract is not initialized.')) return } console.log(wallet.address, contractAddress, codeId) badgeHub .migrate(wallet.address || '', contractAddress, codeId, migrateMsg) .then(resolve) .catch(reject) }) }, [badgeHub, wallet], ) const use = useCallback( (customAddress = ''): BadgeHubInstance | undefined => { return badgeHub?.use(address || customAddress) }, [badgeHub, address], ) const getContractAddress = (): string | undefined => { return address } const messages = useCallback( (customAddress = ''): BadgeHubMessages | undefined => { return badgeHub?.messages(address || customAddress) }, [badgeHub, address], ) return { instantiate, use, updateContractAddress, getContractAddress, messages, migrate, } }