9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
|
|
export const EVAL_FEE_SATS = 10;
|
||
|
|
|
||
|
|
export function computeWorkFeeSats(request: string): number {
|
||
|
|
const len = request.trim().length;
|
||
|
|
if (len <= 100) return 50;
|
||
|
|
if (len <= 300) return 100;
|
||
|
|
return 250;
|
||
|
|
}
|