/* Generated by ts-generator ver. 0.0.8 */ /* tslint:disable */ import { Contract, Signer } from "ethers"; import { Provider } from "ethers/providers"; import { IVariableDebtToken } from "./IVariableDebtToken"; export class IVariableDebtTokenFactory { static connect( address: string, signerOrProvider: Signer | Provider ): IVariableDebtToken { return new Contract(address, _abi, signerOrProvider) as IVariableDebtToken; } } const _abi = [ { inputs: [ { internalType: "address", name: "_user", type: "address" }, { internalType: "uint256", name: "_amount", type: "uint256" } ], name: "burn", outputs: [], stateMutability: "nonpayable", type: "function" }, { inputs: [ { internalType: "address", name: "_user", type: "address" } ], name: "getUserIndex", outputs: [ { internalType: "uint256", name: "", type: "uint256" } ], stateMutability: "view", type: "function" }, { inputs: [ { internalType: "address", name: "_user", type: "address" }, { internalType: "uint256", name: "_amount", type: "uint256" } ], name: "mint", outputs: [], stateMutability: "nonpayable", type: "function" } ];