mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
import Brizo from "../../src/brizo/Brizo"
|
|
|
|
export default class BrizoMock extends Brizo {
|
|
|
|
public async initializeServiceAgreement(did: string, serviceAgreementId: string, serviceDefinitionId: string,
|
|
signature: string, consumerPublicKey: string): Promise<any> {
|
|
|
|
return true
|
|
}
|
|
}
|