opstack-kit-chains
Version:
Support your OP-Stack network with 'opstack-kit'
12 lines • 345 B
TypeScript
export type ZkSyncFee<quantity = bigint> = {
gasLimit: quantity;
gasPerPubdataLimit: quantity;
maxPriorityFeePerGas: quantity;
maxFeePerGas: quantity;
};
export type ZkSyncFeeValues<quantity = bigint> = {
gasPrice: quantity;
maxFeePerGas: quantity;
maxPriorityFeePerGas: quantity;
};
//# sourceMappingURL=fee.d.ts.map