Fetch a channel by address
import { downlinkClient } from './config' const data = await downlinkClient.getChannel({ channelAddress: '0x1234567890123456789012345678901234567890' })
IChannel | undefined
type IChannel = { id: Address uri: string name: string admin: Address managers: Address[] transportLayer: ITransportLayer creatorLogic: ILogicConfig | null minterLogic: ILogicConfig | null fees: IFeeConfig | null tokens: IToken[] blockNumber?: bigint blockTimestamp?: bigint }
string
const data = await downlinkClient.getChannel({ channelAddress: '0x1234567890123456789012345678901234567890', ... })
boolean
false
const data = await downlinkClient.getChannel({ channelAddress: '0x1234567890123456789012345678901234567890', includeTokens: true, ... })