Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shkangr committed Apr 22, 2024
1 parent 4e2ac4f commit 943149d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bridge/src/wrapped-ncg-minter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import Decimal from "decimal.js";
import { ContractDescription } from "./types/contract-description";
import { IWrappedNCGMinter } from "./interfaces/wrapped-ncg-minter";
import { IGasPricePolicy } from "./policies/gas-price";
import { AbiItem } from "web3-utils";

export class WrappedNCGMinter implements IWrappedNCGMinter {
private readonly _web3: Web3;
Expand All @@ -32,7 +31,7 @@ export class WrappedNCGMinter implements IWrappedNCGMinter {
this._web3 = web3;
this._contractDescription = contractDescription;
this._contract = new this._web3.eth.Contract(
this._contractDescription.abi as AbiItem[],
this._contractDescription.abi as never[],
this._contractDescription.address
);
this._minterAddress = minterAddress;
Expand Down

0 comments on commit 943149d

Please sign in to comment.