Skip to content

Commit

Permalink
changed tokenFactoryMethod to method
Browse files Browse the repository at this point in the history
  • Loading branch information
Theezr committed May 11, 2024
1 parent b3348b8 commit 4086f01
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class TokenFactoryModule extends BaseModule {
private _feeMethod!: FeeMethod;

public endpoint = new TokenFactoryEndpoint(this.stores, this.offchainStores);
public tokenFactoryMethod = new TokenFactoryMethod(this.stores, this.events);
public method = new TokenFactoryMethod(this.stores, this.events);
public commands = [
this._createTokenCommand,
this._mintCommand,
Expand All @@ -75,11 +75,11 @@ export class TokenFactoryModule extends BaseModule {
feeMethod: this._feeMethod,
});
this._mintCommand.addDependencies({
tokenFactoryMethod: this.tokenFactoryMethod,
tokenFactoryMethod: this.method,
tokenMethod: this._tokenMethod,
});
this._burnCommand.addDependencies({
tokenFactoryMethod: this.tokenFactoryMethod,
tokenFactoryMethod: this.method,
tokenMethod: this._tokenMethod,
});
this._batchTransferCommand.addDependencies({
Expand Down

0 comments on commit 4086f01

Please sign in to comment.