Skip to content

Commit

Permalink
fix: invoke response type
Browse files Browse the repository at this point in the history
  • Loading branch information
badurinantun committed Jul 8, 2022
1 parent 4df4ae7 commit bdeb96b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contract/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { ProviderInterface } from '../provider';
import { BlockIdentifier } from '../provider/utils';
import {
Abi,
AddTransactionResponse,
AsyncContractFunction,
ContractFunction,
Invocation,
InvokeFunctionResponse,
Overrides,
Result,
} from '../types';
Expand Down Expand Up @@ -78,7 +78,7 @@ export abstract class ContractInterface {
method: string,
args?: Array<any>,
options?: Overrides
): Promise<AddTransactionResponse>;
): Promise<InvokeFunctionResponse>;

/**
* Calls a method on a contract
Expand Down

0 comments on commit bdeb96b

Please sign in to comment.