mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
16 lines
449 B
TypeScript
16 lines
449 B
TypeScript
import ContractBase from '../../src/keeper/contracts/ContractBase'
|
|
|
|
export default class ContractBaseMock extends ContractBase {
|
|
public async initMock(config: any) {
|
|
await this.init(config)
|
|
}
|
|
|
|
public async callMock(name: string, args: any[], from?: string) {
|
|
return this.call(name, args, from)
|
|
}
|
|
|
|
public async sendMock(name: string, from: string, args: any[]) {
|
|
return this.send(name, from, args)
|
|
}
|
|
}
|