import { Contract } from 'ethers';
import abis from '../../lib/abis/index';
import ContractSettings from '../contractSettings';
const abi = abis.SynthetixEscrow;
/** @constructor
* @param contractSettings {ContractSettings}
*/
function SynthetixEscrow(contractSettings) {
this.contractSettings = contractSettings || new ContractSettings();
this.contract = new Contract(
this.contractSettings.addressList['SynthetixEscrow'],
abi,
this.contractSettings.signer || this.contractSettings.provider
);
/**
* Transaction (consumes gas, requires signer)
* @param _owner {String<EthAddress>}
* @param txParams {TxParams}
**/
this.nominateNewOwner = async (_owner, txParams) => {
txParams = txParams || {};
return await this.contract.nominateNewOwner(_owner, txParams);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param {String<EthAddress>}
* @returns BigNumber
**/
this.totalVestedAccountBalance = async address => {
return await this.contract.totalVestedAccountBalance(address);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param {String<EthAddress>}
* @param {p1}
* @param {p2}
* @returns BigNumber
**/
this.vestingSchedules = async (address, p1, p2) => {
return await this.contract.vestingSchedules(address, p1, p2);
};
/**
* Call (no gas consumed, doesn't require signer)
* @returns String<EthAddress>
**/
this.nominatedOwner = async () => {
return await this.contract.nominatedOwner();
};
/**
* Call (no gas consumed, doesn't require signer)
* @returns String<EthAddress>
**/
this.synthetix = async () => {
return await this.contract.synthetix();
};
/**
* Transaction (consumes gas, requires signer)
* @param txParams {TxParams}
**/
this.acceptOwnership = async txParams => {
txParams = txParams || {};
return await this.contract.acceptOwnership(txParams);
};
/**
* Call (no gas consumed, doesn't require signer)
* @returns String<EthAddress>
**/
this.owner = async () => {
return await this.contract.owner();
};
/**
* Call (no gas consumed, doesn't require signer)
* @returns BigNumber
**/
this.totalVestedBalance = async () => {
return await this.contract.totalVestedBalance();
};
/**
* Transaction (consumes gas, requires signer)
* @param _synthetix {String<EthAddress>}
* @param txParams {TxParams}
**/
this.setSynthetix = async (_synthetix, txParams) => {
txParams = txParams || {};
return await this.contract.setSynthetix(_synthetix, txParams);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns BigNumber
**/
this.balanceOf = async account => {
return await this.contract.balanceOf(account);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns BigNumber
**/
this.numVestingEntries = async account => {
return await this.contract.numVestingEntries(account);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @param index {BigNumber}
* @returns uint256[2]
**/
this.getVestingScheduleEntry = async (account, index) => {
return await this.contract.getVestingScheduleEntry(account, index);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @param index {BigNumber}
* @returns BigNumber
**/
this.getVestingTime = async (account, index) => {
return await this.contract.getVestingTime(account, index);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @param index {BigNumber}
* @returns BigNumber
**/
this.getVestingQuantity = async (account, index) => {
return await this.contract.getVestingQuantity(account, index);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns BigNumber
**/
this.getNextVestingIndex = async account => {
return await this.contract.getNextVestingIndex(account);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns uint256[2]
**/
this.getNextVestingEntry = async account => {
return await this.contract.getNextVestingEntry(account);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns BigNumber
**/
this.getNextVestingTime = async account => {
return await this.contract.getNextVestingTime(account);
};
/**
* Call (no gas consumed, doesn't require signer)
* @param account {String<EthAddress>}
* @returns BigNumber
**/
this.getNextVestingQuantity = async account => {
return await this.contract.getNextVestingQuantity(account);
};
/**
* Transaction (consumes gas, requires signer)
* @param quantity {BigNumber}
* @param txParams {TxParams}
**/
this.withdrawSynthetix = async (quantity, txParams) => {
txParams = txParams || {};
return await this.contract.withdrawSynthetix(quantity, txParams);
};
/**
* Transaction (consumes gas, requires signer)
* @param account {String<EthAddress>}
* @param txParams {TxParams}
**/
this.purgeAccount = async (account, txParams) => {
txParams = txParams || {};
return await this.contract.purgeAccount(account, txParams);
};
/**
* Transaction (consumes gas, requires signer)
* @param account {String<EthAddress>}
* @param time {BigNumber}
* @param quantity {BigNumber}
* @param txParams {TxParams}
**/
this.appendVestingEntry = async (account, time, quantity, txParams) => {
txParams = txParams || {};
return await this.contract.appendVestingEntry(account, time, quantity, txParams);
};
/**
* Transaction (consumes gas, requires signer)
* @param account {String<EthAddress>}
* @param times {uint256[]}
* @param quantities {uint256[]}
* @param txParams {TxParams}
**/
this.addVestingSchedule = async (account, times, quantities, txParams) => {
txParams = txParams || {};
return await this.contract.addVestingSchedule(account, times, quantities, txParams);
};
/**
* Transaction (consumes gas, requires signer)
* @param txParams {TxParams}
**/
this.vest = async txParams => {
txParams = txParams || {};
return await this.contract.vest(txParams);
};
}
export default SynthetixEscrow;