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