pharos-agent-kit
Version:
Connect AI Agents to Pharos protocols
18 lines • 379 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;
}
//# sourceMappingURL=types.d.ts.map