@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
15 lines • 341 B
TypeScript
import type { BlockParam } from './BlockParam.js';
/**
* Represents a configuration for a forked or proxied network
*/
export type NetworkConfig = {
/**
* The URL to the RPC endpoint
*/
url: string;
/**
* the block tag to fork from
*/
blockTag: BlockParam;
};
//# sourceMappingURL=NetworkConfig.d.ts.map