Channel supplies the configuration for channel context client
type Channel interface { Client ChannelService() fab.ChannelService ChannelID() string }
ChannelProvider returns channel client context
type ChannelProvider func() (Channel, error)
Client supplies the configuration and signing identity to client objects.
type Client fab.ClientContext
ClientProvider returns client context
type ClientProvider func() (Client, error)
Local supplies the configuration for a local context client
type Local interface { Client LocalDiscoveryService() fab.DiscoveryService }
LocalProvider returns local client context
type LocalProvider func() (Local, error)
Providers represents the SDK configured providers context.
type Providers interface { core.Providers msp.Providers fab.Providers }