@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
18 lines (17 loc) • 344 B
TypeScript
/**
* Network is the network that the wallet provider is connected to.
*/
export interface Network {
/**
* The protocol family of the network.
*/
protocolFamily: string;
/**
* The network ID of the network.
*/
networkId?: string;
/**
* The chain ID of the network.
*/
chainId?: string;
}