621 lines
29 KiB
TypeScript
621 lines
29 KiB
TypeScript
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
|
|
// tslint:disable:no-unused-variable
|
|
// tslint:disable:no-unbound-method
|
|
import { BaseContract } from '@0x/base-contract';
|
|
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
|
|
import { BigNumber, classUtils, logUtils } from '@0x/utils';
|
|
import { SimpleContractArtifact } from '@0x/types';
|
|
import { Web3Wrapper } from '@0x/web3-wrapper';
|
|
import * as ethers from 'ethers';
|
|
import * as _ from 'lodash';
|
|
// tslint:enable:no-unused-variable
|
|
|
|
export type MixinAuthorizableEventArgs =
|
|
| MixinAuthorizableAuthorizedAddressAddedEventArgs
|
|
| MixinAuthorizableAuthorizedAddressRemovedEventArgs;
|
|
|
|
export enum MixinAuthorizableEvents {
|
|
AuthorizedAddressAdded = 'AuthorizedAddressAdded',
|
|
AuthorizedAddressRemoved = 'AuthorizedAddressRemoved',
|
|
}
|
|
|
|
export interface MixinAuthorizableAuthorizedAddressAddedEventArgs extends DecodedLogArgs {
|
|
target: string;
|
|
caller: string;
|
|
}
|
|
|
|
export interface MixinAuthorizableAuthorizedAddressRemovedEventArgs extends DecodedLogArgs {
|
|
target: string;
|
|
caller: string;
|
|
}
|
|
|
|
|
|
/* istanbul ignore next */
|
|
// tslint:disable:no-parameter-reassignment
|
|
// tslint:disable-next-line:class-name
|
|
export class MixinAuthorizableContract extends BaseContract {
|
|
public addAuthorizedAddress = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('addAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target
|
|
]);
|
|
const encodedData = self._lookupEthersInterface('addAuthorizedAddress(address)').functions.addAuthorizedAddress.encode([target
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
self.addAuthorizedAddress.estimateGasAsync.bind(
|
|
self,
|
|
target
|
|
),
|
|
);
|
|
const txHash = await self._web3Wrapper.sendTransactionAsync(txDataWithDefaults);
|
|
return txHash;
|
|
},
|
|
async estimateGasAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<number> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('addAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString);
|
|
const encodedData = self._lookupEthersInterface('addAuthorizedAddress(address)').functions.addAuthorizedAddress.encode([target
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const gas = await self._web3Wrapper.estimateGasAsync(txDataWithDefaults);
|
|
return gas;
|
|
},
|
|
getABIEncodedTransactionData(
|
|
target: string,
|
|
): string {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('addAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString);
|
|
const abiEncodedTransactionData = self._lookupEthersInterface('addAuthorizedAddress(address)').functions.addAuthorizedAddress.encode([target
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'addAuthorizedAddress(address)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.addAuthorizedAddress;
|
|
const encodedData = ethersFunction.encode([target
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'addAuthorizedAddress'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray;
|
|
},
|
|
};
|
|
public authorities = {
|
|
async callAsync(
|
|
index_0: BigNumber,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'authorities(uint256)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[index_0
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [index_0
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [index_0
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.authorities;
|
|
const encodedData = ethersFunction.encode([index_0
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'authorities'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray[0];
|
|
},
|
|
};
|
|
public removeAuthorizedAddress = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target
|
|
]);
|
|
const encodedData = self._lookupEthersInterface('removeAuthorizedAddress(address)').functions.removeAuthorizedAddress.encode([target
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
self.removeAuthorizedAddress.estimateGasAsync.bind(
|
|
self,
|
|
target
|
|
),
|
|
);
|
|
const txHash = await self._web3Wrapper.sendTransactionAsync(txDataWithDefaults);
|
|
return txHash;
|
|
},
|
|
async estimateGasAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<number> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString);
|
|
const encodedData = self._lookupEthersInterface('removeAuthorizedAddress(address)').functions.removeAuthorizedAddress.encode([target
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const gas = await self._web3Wrapper.estimateGasAsync(txDataWithDefaults);
|
|
return gas;
|
|
},
|
|
getABIEncodedTransactionData(
|
|
target: string,
|
|
): string {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddress(address)').inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString);
|
|
const abiEncodedTransactionData = self._lookupEthersInterface('removeAuthorizedAddress(address)').functions.removeAuthorizedAddress.encode([target
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'removeAuthorizedAddress(address)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[target
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.removeAuthorizedAddress;
|
|
const encodedData = ethersFunction.encode([target
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'removeAuthorizedAddress'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray;
|
|
},
|
|
};
|
|
public owner = {
|
|
async callAsync(
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'owner()';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[] = BaseContract._formatABIDataItemList(inputAbi, [], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, []);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.owner;
|
|
const encodedData = ethersFunction.encode([]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'owner'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray[0];
|
|
},
|
|
};
|
|
public removeAuthorizedAddressAtIndex = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
index: BigNumber,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddressAtIndex(address,uint256)').inputs;
|
|
[target,
|
|
index
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target,
|
|
index
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target,
|
|
index
|
|
]);
|
|
const encodedData = self._lookupEthersInterface('removeAuthorizedAddressAtIndex(address,uint256)').functions.removeAuthorizedAddressAtIndex.encode([target,
|
|
index
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
self.removeAuthorizedAddressAtIndex.estimateGasAsync.bind(
|
|
self,
|
|
target,
|
|
index
|
|
),
|
|
);
|
|
const txHash = await self._web3Wrapper.sendTransactionAsync(txDataWithDefaults);
|
|
return txHash;
|
|
},
|
|
async estimateGasAsync(
|
|
target: string,
|
|
index: BigNumber,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<number> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddressAtIndex(address,uint256)').inputs;
|
|
[target,
|
|
index
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target,
|
|
index
|
|
], BaseContract._bigNumberToString);
|
|
const encodedData = self._lookupEthersInterface('removeAuthorizedAddressAtIndex(address,uint256)').functions.removeAuthorizedAddressAtIndex.encode([target,
|
|
index
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const gas = await self._web3Wrapper.estimateGasAsync(txDataWithDefaults);
|
|
return gas;
|
|
},
|
|
getABIEncodedTransactionData(
|
|
target: string,
|
|
index: BigNumber,
|
|
): string {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('removeAuthorizedAddressAtIndex(address,uint256)').inputs;
|
|
[target,
|
|
index
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target,
|
|
index
|
|
], BaseContract._bigNumberToString);
|
|
const abiEncodedTransactionData = self._lookupEthersInterface('removeAuthorizedAddressAtIndex(address,uint256)').functions.removeAuthorizedAddressAtIndex.encode([target,
|
|
index
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
index: BigNumber,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'removeAuthorizedAddressAtIndex(address,uint256)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[target,
|
|
index
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [target,
|
|
index
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [target,
|
|
index
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.removeAuthorizedAddressAtIndex;
|
|
const encodedData = ethersFunction.encode([target,
|
|
index
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'removeAuthorizedAddressAtIndex'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray;
|
|
},
|
|
};
|
|
public authorized = {
|
|
async callAsync(
|
|
index_0: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<boolean
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'authorized(address)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[index_0
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [index_0
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [index_0
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.authorized;
|
|
const encodedData = ethersFunction.encode([index_0
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'authorized'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray[0];
|
|
},
|
|
};
|
|
public getAuthorizedAddresses = {
|
|
async callAsync(
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string[]
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'getAuthorizedAddresses()';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[] = BaseContract._formatABIDataItemList(inputAbi, [], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, []);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.getAuthorizedAddresses;
|
|
const encodedData = ethersFunction.encode([]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'getAuthorizedAddresses'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray[0];
|
|
},
|
|
};
|
|
public transferOwnership = {
|
|
async sendTransactionAsync(
|
|
newOwner: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('transferOwnership(address)').inputs;
|
|
[newOwner
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [newOwner
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [newOwner
|
|
]);
|
|
const encodedData = self._lookupEthersInterface('transferOwnership(address)').functions.transferOwnership.encode([newOwner
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
self.transferOwnership.estimateGasAsync.bind(
|
|
self,
|
|
newOwner
|
|
),
|
|
);
|
|
const txHash = await self._web3Wrapper.sendTransactionAsync(txDataWithDefaults);
|
|
return txHash;
|
|
},
|
|
async estimateGasAsync(
|
|
newOwner: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<number> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('transferOwnership(address)').inputs;
|
|
[newOwner
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [newOwner
|
|
], BaseContract._bigNumberToString);
|
|
const encodedData = self._lookupEthersInterface('transferOwnership(address)').functions.transferOwnership.encode([newOwner
|
|
]);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...txData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const gas = await self._web3Wrapper.estimateGasAsync(txDataWithDefaults);
|
|
return gas;
|
|
},
|
|
getABIEncodedTransactionData(
|
|
newOwner: string,
|
|
): string {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const inputAbi = self._lookupAbi('transferOwnership(address)').inputs;
|
|
[newOwner
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [newOwner
|
|
], BaseContract._bigNumberToString);
|
|
const abiEncodedTransactionData = self._lookupEthersInterface('transferOwnership(address)').functions.transferOwnership.encode([newOwner
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
newOwner: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as MixinAuthorizableContract;
|
|
const functionSignature = 'transferOwnership(address)';
|
|
const inputAbi = self._lookupAbi(functionSignature).inputs;
|
|
[newOwner
|
|
] = BaseContract._formatABIDataItemList(inputAbi, [newOwner
|
|
], BaseContract._bigNumberToString.bind(self));
|
|
BaseContract.strictArgumentEncodingCheck(inputAbi, [newOwner
|
|
]);
|
|
const ethersFunction = self._lookupEthersInterface(functionSignature).functions.transferOwnership;
|
|
const encodedData = ethersFunction.encode([newOwner
|
|
]);
|
|
const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{
|
|
to: self.address,
|
|
...callData,
|
|
data: encodedData,
|
|
},
|
|
self._web3Wrapper.getContractDefaults(),
|
|
);
|
|
const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
|
|
BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
|
|
let resultArray = ethersFunction.decode(rawCallResult);
|
|
const outputAbi = (_.find(self.abi, {name: 'transferOwnership'}) as MethodAbi).outputs;
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
|
|
resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
|
|
return resultArray;
|
|
},
|
|
};
|
|
public static async deployFrom0xArtifactAsync(
|
|
artifact: ContractArtifact | SimpleContractArtifact,
|
|
provider: Provider,
|
|
txDefaults: Partial<TxData>,
|
|
): Promise<MixinAuthorizableContract> {
|
|
if (_.isUndefined(artifact.compilerOutput)) {
|
|
throw new Error('Compiler output not found in the artifact file');
|
|
}
|
|
const bytecode = artifact.compilerOutput.evm.bytecode.object;
|
|
const abi = artifact.compilerOutput.abi;
|
|
return MixinAuthorizableContract.deployAsync(bytecode, abi, provider, txDefaults, );
|
|
}
|
|
public static async deployAsync(
|
|
bytecode: string,
|
|
abi: ContractAbi,
|
|
provider: Provider,
|
|
txDefaults: Partial<TxData>,
|
|
): Promise<MixinAuthorizableContract> {
|
|
const constructorAbi = BaseContract._lookupConstructorAbi(abi);
|
|
[] = BaseContract._formatABIDataItemList(
|
|
constructorAbi.inputs,
|
|
[],
|
|
BaseContract._bigNumberToString,
|
|
);
|
|
const iface = new ethers.utils.Interface(abi);
|
|
const deployInfo = iface.deployFunction;
|
|
const txData = deployInfo.encode(bytecode, []);
|
|
const web3Wrapper = new Web3Wrapper(provider);
|
|
const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
|
|
{data: txData},
|
|
txDefaults,
|
|
web3Wrapper.estimateGasAsync.bind(web3Wrapper),
|
|
);
|
|
const txHash = await web3Wrapper.sendTransactionAsync(txDataWithDefaults);
|
|
logUtils.log(`transactionHash: ${txHash}`);
|
|
const txReceipt = await web3Wrapper.awaitTransactionSuccessAsync(txHash);
|
|
logUtils.log(`MixinAuthorizable successfully deployed at ${txReceipt.contractAddress}`);
|
|
const contractInstance = new MixinAuthorizableContract(abi, txReceipt.contractAddress as string, provider, txDefaults);
|
|
contractInstance.constructorArgs = [];
|
|
return contractInstance;
|
|
}
|
|
constructor(abi: ContractAbi, address: string, provider: Provider, txDefaults?: Partial<TxData>) {
|
|
super('MixinAuthorizable', abi, address, provider, txDefaults);
|
|
classUtils.bindAll(this, ['_ethersInterfacesByFunctionSignature', 'address', 'abi', '_web3Wrapper']);
|
|
}
|
|
} // tslint:disable:max-file-line-count
|
|
// tslint:enable:no-unbound-method
|