Compute Object
Object representing a computation.
// Represent the amount of credits to pay for a transaction
export class CreditsToPay {
constructor(private readonly duration: Duration) {}
amount() {
return this.duration.asHours() * 2;
}
}Last updated