531 lines
22 KiB
TypeScript
531 lines
22 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 ERC721ProxyEventArgs =
|
|
| ERC721ProxyAuthorizedAddressAddedEventArgs
|
|
| ERC721ProxyAuthorizedAddressRemovedEventArgs;
|
|
|
|
export enum ERC721ProxyEvents {
|
|
AuthorizedAddressAdded = 'AuthorizedAddressAdded',
|
|
AuthorizedAddressRemoved = 'AuthorizedAddressRemoved',
|
|
}
|
|
|
|
export interface ERC721ProxyAuthorizedAddressAddedEventArgs extends DecodedLogArgs {
|
|
target: string;
|
|
caller: string;
|
|
}
|
|
|
|
export interface ERC721ProxyAuthorizedAddressRemovedEventArgs extends DecodedLogArgs {
|
|
target: string;
|
|
caller: string;
|
|
}
|
|
|
|
|
|
/* istanbul ignore next */
|
|
// tslint:disable:no-parameter-reassignment
|
|
// tslint:disable-next-line:class-name
|
|
export class ERC721ProxyContract extends BaseContract {
|
|
public addAuthorizedAddress = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('addAuthorizedAddress(address)', [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 ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('addAuthorizedAddress(address)', [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 ERC721ProxyContract;
|
|
const abiEncodedTransactionData = self._strictEncodeArguments('addAuthorizedAddress(address)', [target
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('addAuthorizedAddress(address)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('addAuthorizedAddress(address)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<void
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public authorities = {
|
|
async callAsync(
|
|
index_0: BigNumber,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('authorities(uint256)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('authorities(uint256)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<string
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public removeAuthorizedAddress = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddress(address)', [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 ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddress(address)', [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 ERC721ProxyContract;
|
|
const abiEncodedTransactionData = self._strictEncodeArguments('removeAuthorizedAddress(address)', [target
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddress(address)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('removeAuthorizedAddress(address)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<void
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public owner = {
|
|
async callAsync(
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('owner()', []);
|
|
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);
|
|
const abiEncoder = self._lookupAbiEncoder('owner()');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<string
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public removeAuthorizedAddressAtIndex = {
|
|
async sendTransactionAsync(
|
|
target: string,
|
|
index: BigNumber,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddressAtIndex(address,uint256)', [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 ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddressAtIndex(address,uint256)', [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 ERC721ProxyContract;
|
|
const abiEncodedTransactionData = self._strictEncodeArguments('removeAuthorizedAddressAtIndex(address,uint256)', [target,
|
|
index
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
target: string,
|
|
index: BigNumber,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('removeAuthorizedAddressAtIndex(address,uint256)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('removeAuthorizedAddressAtIndex(address,uint256)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<void
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public getProxyId = {
|
|
async callAsync(
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('getProxyId()', []);
|
|
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);
|
|
const abiEncoder = self._lookupAbiEncoder('getProxyId()');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<string
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public authorized = {
|
|
async callAsync(
|
|
index_0: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<boolean
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('authorized(address)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('authorized(address)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<boolean
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public getAuthorizedAddresses = {
|
|
async callAsync(
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<string[]
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('getAuthorizedAddresses()', []);
|
|
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);
|
|
const abiEncoder = self._lookupAbiEncoder('getAuthorizedAddresses()');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<string[]
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public transferOwnership = {
|
|
async sendTransactionAsync(
|
|
newOwner: string,
|
|
txData: Partial<TxData> = {},
|
|
): Promise<string> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('transferOwnership(address)', [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 ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('transferOwnership(address)', [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 ERC721ProxyContract;
|
|
const abiEncodedTransactionData = self._strictEncodeArguments('transferOwnership(address)', [newOwner
|
|
]);
|
|
return abiEncodedTransactionData;
|
|
},
|
|
async callAsync(
|
|
newOwner: string,
|
|
callData: Partial<CallData> = {},
|
|
defaultBlock?: BlockParam,
|
|
): Promise<void
|
|
> {
|
|
const self = this as any as ERC721ProxyContract;
|
|
const encodedData = self._strictEncodeArguments('transferOwnership(address)', [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);
|
|
const abiEncoder = self._lookupAbiEncoder('transferOwnership(address)');
|
|
// tslint:disable boolean-naming
|
|
const result = abiEncoder.strictDecodeReturnValue<void
|
|
>(rawCallResult);
|
|
// tslint:enable boolean-naming
|
|
return result;
|
|
},
|
|
};
|
|
public static async deployFrom0xArtifactAsync(
|
|
artifact: ContractArtifact | SimpleContractArtifact,
|
|
provider: Provider,
|
|
txDefaults: Partial<TxData>,
|
|
): Promise<ERC721ProxyContract> {
|
|
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 ERC721ProxyContract.deployAsync(bytecode, abi, provider, txDefaults, );
|
|
}
|
|
public static async deployAsync(
|
|
bytecode: string,
|
|
abi: ContractAbi,
|
|
provider: Provider,
|
|
txDefaults: Partial<TxData>,
|
|
): Promise<ERC721ProxyContract> {
|
|
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(`ERC721Proxy successfully deployed at ${txReceipt.contractAddress}`);
|
|
const contractInstance = new ERC721ProxyContract(abi, txReceipt.contractAddress as string, provider, txDefaults);
|
|
contractInstance.constructorArgs = [];
|
|
return contractInstance;
|
|
}
|
|
constructor(abi: ContractAbi, address: string, provider: Provider, txDefaults?: Partial<TxData>) {
|
|
super('ERC721Proxy', abi, address, provider, txDefaults);
|
|
classUtils.bindAll(this, ['_abiEncoderByFunctionSignature', 'address', 'abi', '_web3Wrapper']);
|
|
}
|
|
} // tslint:disable:max-file-line-count
|
|
// tslint:enable:no-unbound-method
|