1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/test/mocks/Brizo.mock.ts

14 lines
330 B
TypeScript
Raw Normal View History

2019-06-20 00:20:09 +02:00
import { Brizo } from '../../src/brizo/Brizo'
2018-11-19 12:16:11 +01:00
export default class BrizoMock extends Brizo {
2019-06-20 00:20:09 +02:00
public async initializeServiceAgreement(
did: string,
serviceAgreementId: string,
2019-08-16 16:12:42 +02:00
index: number,
2019-06-20 00:20:09 +02:00
signature: string,
consumerPublicKey: string
): Promise<any> {
2018-11-19 12:16:11 +01:00
return true
}
}