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

11 lines
344 B
TypeScript
Raw Normal View History

import { Brizo } from "../../src/brizo/Brizo"
2018-11-19 12:16:11 +01:00
export default class BrizoMock extends Brizo {
public async initializeServiceAgreement(did: string, serviceAgreementId: string, serviceDefinitionId: string,
signature: string, consumerPublicKey: string): Promise<any> {
return true
}
}