getModule
import { getModule } from '@inverter-network/sdk'({
// the name of the module
name: ModuleName
} | {
// manually passed module data
moduleData: ModuleData
}) & {
// the address of the deployed module
address: `0x${string}`
// the public client or provider to make RPC calls
publicClient: PublicClient
// the wallet client to sign and submit transactions
walletClient?: WalletClient
// The parser config, in charge of decimals, ...
tagConfig?: TagConfig
// The Inverter instance in charge of cache
self?: Inverter
}Last updated