diff --git a/.gitignore b/.gitignore index 697f31a..a5adc06 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build node_modules -.ganache-db \ No newline at end of file +.ganache-db +.tm_properties diff --git a/lib/kredits.js b/lib/kredits.js index 541d362..941788c 100644 --- a/lib/kredits.js +++ b/lib/kredits.js @@ -63,6 +63,11 @@ class Kredits { return this.contractFor('contributors'); } + get Contributors() { + console.log('Contributors is deprecated use Contributor instead'); + return this.Contributor; + } + get Operator() { return this.contractFor('operator'); }