11 lines
152 B
JavaScript
11 lines
152 B
JavaScript
export default class Base {
|
|
constructor(contract) {
|
|
this.contract = contract;
|
|
}
|
|
|
|
get functions() {
|
|
return this.contract.functions;
|
|
}
|
|
|
|
}
|