@vaimee/my3sec-contracts
Version:
A set of contracts that implements the My3Sec protocol
38 lines (37 loc) • 1.02 kB
JavaScript
;
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.ITimeWallet__factory = void 0;
const ethers_1 = require("ethers");
const _abi = [
{
inputs: [
{
internalType: "uint256",
name: "profileId",
type: "uint256",
},
{
internalType: "uint256",
name: "time",
type: "uint256",
},
],
name: "spendTimeFor",
outputs: [],
stateMutability: "nonpayable",
type: "function",
},
];
class ITimeWallet__factory {
static createInterface() {
return new ethers_1.utils.Interface(_abi);
}
static connect(address, signerOrProvider) {
return new ethers_1.Contract(address, _abi, signerOrProvider);
}
}
exports.ITimeWallet__factory = ITimeWallet__factory;
ITimeWallet__factory.abi = _abi;