1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
2019-11-22 12:07:14 +01:00

36 lines
1.0 KiB
TypeScript

import { Condition } from './Condition.abstract'
import { zeroX } from '../../../utils'
import { InstantiableConfig } from '../../../Instantiable.abstract'
export class EscrowReward extends Condition {
public static async getInstance(config: InstantiableConfig): Promise<EscrowReward> {
return Condition.getInstance(config, 'EscrowReward', EscrowReward)
}
public hashValues(
amount: number,
receiver: string,
sender: string,
lockCondition: string,
releaseCondition: string
) {
return super.hashValues(amount, ...[receiver, sender, lockCondition, releaseCondition].map(zeroX))
}
public fulfill(
agreementId: string,
amount: number,
receiver: string,
sender: string,
lockCondition: string,
releaseCondition: string,
from?: string
) {
return super.fulfill(
agreementId,
[amount, ...[receiver, sender, lockCondition, releaseCondition].map(zeroX)],
from
)
}
}