2018-06-13 22:39:39 +03:00
|
|
|
'use strict';
|
|
|
|
|
2018-07-16 07:09:13 +03:00
|
|
|
import { Interface } from './interface';
|
2018-06-14 03:02:28 +03:00
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
import { defaultAbiCoder, formatSignature, parseSignature } from '../utils/abi-coder';
|
2018-07-15 00:19:08 +03:00
|
|
|
import { getAddress, getContractAddress } from '../utils/address';
|
2018-07-16 10:27:49 +03:00
|
|
|
import { ConstantZero } from '../utils/bignumber';
|
2018-07-12 09:52:43 +03:00
|
|
|
import { hexDataLength, hexDataSlice, isHexString } from '../utils/bytes';
|
|
|
|
import { defineReadOnly, jsonCopy, shallowCopy } from '../utils/properties';
|
2018-07-01 06:05:22 +03:00
|
|
|
import { poll } from '../utils/web';
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
import { BigNumber, EventDescription, EventFilter, Listener, Log, MinimalProvider, ParamType, Signer, TransactionRequest, TransactionResponse } from '../utils/types';
|
2018-07-15 00:19:08 +03:00
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
import * as errors from '../utils/errors';
|
|
|
|
|
2018-06-23 03:30:50 +03:00
|
|
|
var allowedTransactionKeys: { [ key: string ]: boolean } = {
|
2018-06-13 22:39:39 +03:00
|
|
|
data: true, from: true, gasLimit: true, gasPrice:true, nonce: true, to: true, value: true
|
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
// Recursively replaces ENS names with promises to resolve the name and
|
|
|
|
// stalls until all promises have returned
|
2018-06-14 03:02:28 +03:00
|
|
|
// @TODO: Expand this to resolve any promises too
|
2018-07-15 00:19:08 +03:00
|
|
|
function resolveAddresses(provider: MinimalProvider, value: any, paramType: ParamType | Array<ParamType>): Promise<any> {
|
2018-06-14 03:02:28 +03:00
|
|
|
if (Array.isArray(paramType)) {
|
2018-06-23 03:30:50 +03:00
|
|
|
var promises: Array<Promise<string>> = [];
|
2018-06-14 03:02:28 +03:00
|
|
|
paramType.forEach((paramType, index) => {
|
|
|
|
var v = null;
|
|
|
|
if (Array.isArray(value)) {
|
|
|
|
v = value[index];
|
|
|
|
} else {
|
|
|
|
v = value[paramType.name];
|
|
|
|
}
|
|
|
|
promises.push(resolveAddresses(provider, v, paramType));
|
|
|
|
});
|
|
|
|
return Promise.all(promises);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (paramType.type === 'address') {
|
|
|
|
return provider.resolveName(value);
|
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
if (paramType.components) {
|
|
|
|
return resolveAddresses(provider, value, paramType.components);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
type RunFunction = (...params: Array<any>) => Promise<any>;
|
|
|
|
|
|
|
|
function runMethod(contract: Contract, functionName: string, estimateOnly: boolean): RunFunction {
|
2018-06-13 22:39:39 +03:00
|
|
|
let method = contract.interface.functions[functionName];
|
|
|
|
return function(...params): Promise<any> {
|
2018-06-18 12:42:41 +03:00
|
|
|
var tx: any = {}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
// If 1 extra parameter was passed in, it contains overrides
|
|
|
|
if (params.length === method.inputs.length + 1 && typeof(params[params.length - 1]) === 'object') {
|
2018-06-18 12:42:41 +03:00
|
|
|
tx = shallowCopy(params.pop());
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
// Check for unexpected keys (e.g. using "gas" instead of "gasLimit")
|
2018-06-18 12:42:41 +03:00
|
|
|
for (var key in tx) {
|
2018-06-13 22:39:39 +03:00
|
|
|
if (!allowedTransactionKeys[key]) {
|
|
|
|
throw new Error('unknown transaction override ' + key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params.length != method.inputs.length) {
|
|
|
|
throw new Error('incorrect number of arguments');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check overrides make sense
|
|
|
|
['data', 'to'].forEach(function(key) {
|
2018-06-18 12:42:41 +03:00
|
|
|
if (tx[key] != null) {
|
|
|
|
errors.throwError('cannot override ' + key, errors.UNSUPPORTED_OPERATION, { operation: key })
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Send to the contract address
|
2018-06-18 12:42:41 +03:00
|
|
|
tx.to = contract.addressPromise;
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
return resolveAddresses(contract.provider, params, method.inputs).then((params) => {
|
2018-06-18 12:42:41 +03:00
|
|
|
tx.data = method.encode(params);
|
2018-06-14 03:02:28 +03:00
|
|
|
if (method.type === 'call') {
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
// Call (constant functions) always cost 0 ether
|
|
|
|
if (estimateOnly) {
|
|
|
|
return Promise.resolve(ConstantZero);
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
if (!contract.provider) {
|
|
|
|
errors.throwError('call (constant functions) require a provider or a signer with a provider', errors.UNSUPPORTED_OPERATION, { operation: 'call' })
|
|
|
|
}
|
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
// Check overrides make sense
|
|
|
|
['gasLimit', 'gasPrice', 'value'].forEach(function(key) {
|
2018-06-18 12:42:41 +03:00
|
|
|
if (tx[key] != null) {
|
2018-06-14 03:02:28 +03:00
|
|
|
throw new Error('call cannot override ' + key) ;
|
|
|
|
}
|
|
|
|
});
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
if (tx.from == null && contract.signer) {
|
|
|
|
tx.from = contract.signer.getAddress()
|
2018-06-14 03:02:28 +03:00
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
return contract.provider.call(tx).then((value) => {
|
2018-06-23 08:33:51 +03:00
|
|
|
|
|
|
|
if ((hexDataLength(value) % 32) === 4 && hexDataSlice(value, 0, 4) === '0x08c379a0') {
|
|
|
|
let reason = defaultAbiCoder.decode([ 'string' ], hexDataSlice(value, 4));
|
|
|
|
errors.throwError('call revert exception', errors.CALL_EXCEPTION, {
|
|
|
|
address: contract.address,
|
|
|
|
args: params,
|
2018-06-25 01:41:28 +03:00
|
|
|
method: method.signature,
|
2018-06-23 08:33:51 +03:00
|
|
|
errorSignature: 'Error(string)',
|
|
|
|
errorArgs: [ reason ],
|
2018-06-25 01:41:28 +03:00
|
|
|
reason: reason,
|
|
|
|
transaction: tx
|
2018-06-23 08:33:51 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
try {
|
|
|
|
let result = method.decode(value);
|
|
|
|
if (method.outputs.length === 1) {
|
|
|
|
result = result[0];
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
return result;
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
if (value === '0x' && method.outputs.length > 0) {
|
|
|
|
errors.throwError('call exception', errors.CALL_EXCEPTION, {
|
|
|
|
address: contract.address,
|
|
|
|
method: method.signature,
|
2018-06-23 08:33:51 +03:00
|
|
|
args: params
|
2018-06-18 12:42:41 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
} else if (method.type === 'transaction') {
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
// Only computing the transaction estimate
|
|
|
|
if (estimateOnly) {
|
2018-06-18 12:42:41 +03:00
|
|
|
if (!contract.provider) {
|
|
|
|
errors.throwError('estimate gas require a provider or a signer with a provider', errors.UNSUPPORTED_OPERATION, { operation: 'estimateGas' })
|
2018-06-14 03:02:28 +03:00
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
if (tx.from == null && contract.signer) {
|
|
|
|
tx.from = contract.signer.getAddress()
|
2018-06-14 03:02:28 +03:00
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
return contract.provider.estimateGas(tx);
|
2018-06-14 03:02:28 +03:00
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
if (!contract.signer) {
|
|
|
|
errors.throwError('sending a transaction require a signer', errors.UNSUPPORTED_OPERATION, { operation: 'sendTransaction' })
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
// Make sure they aren't overriding something they shouldn't
|
|
|
|
if (tx.from != null) {
|
|
|
|
errors.throwError('cannot override from in a transaction', errors.UNSUPPORTED_OPERATION, { operation: 'sendTransaction' })
|
2018-06-14 03:02:28 +03:00
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
return contract.signer.sendTransaction(tx);
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
throw new Error('invalid type - ' + method.type);
|
|
|
|
return null;
|
|
|
|
});
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:52:43 +03:00
|
|
|
function getEventTag(filter: EventFilter): string {
|
|
|
|
return (filter.address || '') + (filter.topics ? filter.topics.join(':'): '');
|
|
|
|
}
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
interface Bucket<T> {
|
|
|
|
[name: string]: T;
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:52:43 +03:00
|
|
|
type _EventFilter = {
|
|
|
|
decode: (log: Log) => Array<any>;
|
|
|
|
event?: EventDescription;
|
|
|
|
eventTag: string;
|
|
|
|
filter: EventFilter;
|
|
|
|
};
|
|
|
|
|
|
|
|
type _Event = {
|
|
|
|
eventFilter: _EventFilter;
|
|
|
|
listener: Listener;
|
|
|
|
once: boolean;
|
|
|
|
wrappedListener: Listener;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
export class Contract {
|
|
|
|
readonly address: string;
|
|
|
|
readonly interface: Interface;
|
2018-06-18 12:42:41 +03:00
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
readonly signer: Signer;
|
2018-07-15 00:19:08 +03:00
|
|
|
readonly provider: MinimalProvider;
|
2018-06-13 22:39:39 +03:00
|
|
|
|
2018-07-15 00:19:08 +03:00
|
|
|
readonly estimate: Bucket<(...params: Array<any>) => Promise<BigNumber>>;
|
|
|
|
readonly functions: Bucket<(...params: Array<any>) => Promise<any>>;
|
2018-07-12 09:52:43 +03:00
|
|
|
|
2018-07-15 00:19:08 +03:00
|
|
|
readonly filters: Bucket<(...params: Array<any>) => EventFilter>;
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
readonly addressPromise: Promise<string>;
|
|
|
|
|
2018-06-14 04:10:41 +03:00
|
|
|
// This is only set if the contract was created with a call to deploy
|
|
|
|
readonly deployTransaction: TransactionResponse;
|
|
|
|
|
2018-06-14 03:02:28 +03:00
|
|
|
// https://github.com/Microsoft/TypeScript/issues/5453
|
2018-06-18 12:42:41 +03:00
|
|
|
// Once this issue is resolved (there are open PR) we can do this nicer
|
|
|
|
// by making addressOrName default to null for 2 operand calls. :)
|
2018-06-14 03:02:28 +03:00
|
|
|
|
2018-07-15 00:19:08 +03:00
|
|
|
constructor(addressOrName: string, contractInterface: Array<string | ParamType> | string | Interface, signerOrProvider: Signer | MinimalProvider) {
|
2018-06-14 04:10:41 +03:00
|
|
|
errors.checkNew(this, Contract);
|
2018-06-13 22:39:39 +03:00
|
|
|
|
|
|
|
// @TODO: Maybe still check the addressOrName looks like a valid address or name?
|
|
|
|
//address = getAddress(address);
|
|
|
|
if (contractInterface instanceof Interface) {
|
|
|
|
defineReadOnly(this, 'interface', contractInterface);
|
|
|
|
} else {
|
|
|
|
defineReadOnly(this, 'interface', new Interface(contractInterface));
|
|
|
|
}
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
if (signerOrProvider instanceof Signer) {
|
2018-06-14 04:10:41 +03:00
|
|
|
defineReadOnly(this, 'provider', signerOrProvider.provider);
|
|
|
|
defineReadOnly(this, 'signer', signerOrProvider);
|
2018-07-15 00:19:08 +03:00
|
|
|
} else if (signerOrProvider instanceof MinimalProvider) {
|
2018-06-14 04:10:41 +03:00
|
|
|
defineReadOnly(this, 'provider', signerOrProvider);
|
|
|
|
defineReadOnly(this, 'signer', null);
|
2018-06-18 12:42:41 +03:00
|
|
|
} else {
|
|
|
|
errors.throwError('invalid signer or provider', errors.INVALID_ARGUMENT, { arg: 'signerOrProvider', value: signerOrProvider });
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
defineReadOnly(this, 'estimate', { });
|
|
|
|
defineReadOnly(this, 'functions', { });
|
|
|
|
|
2018-07-12 09:52:43 +03:00
|
|
|
defineReadOnly(this, 'filters', { });
|
|
|
|
|
|
|
|
Object.keys(this.interface.events).forEach((eventName) => {
|
|
|
|
let event = this.interface.events[eventName];
|
|
|
|
defineReadOnly(this.filters, eventName, (...args: Array<any>) => {
|
|
|
|
return {
|
|
|
|
address: this.address,
|
|
|
|
topics: event.encodeTopics(args)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-14 04:10:41 +03:00
|
|
|
// Not connected to an on-chain instance, so do not connect functions and events
|
|
|
|
if (!addressOrName) {
|
|
|
|
defineReadOnly(this, 'address', null);
|
|
|
|
defineReadOnly(this, 'addressPromise', Promise.resolve(null));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:52:43 +03:00
|
|
|
this._events = [];
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
defineReadOnly(this, 'address', addressOrName);
|
2018-07-15 00:19:08 +03:00
|
|
|
if (this.provider) {
|
|
|
|
defineReadOnly(this, 'addressPromise', this.provider.resolveName(addressOrName).then((address) => {
|
|
|
|
if (address == null) { throw new Error('name not found'); }
|
|
|
|
return address;
|
|
|
|
}).catch((error: Error) => {
|
|
|
|
console.log('ERROR: Cannot find Contract - ' + addressOrName);
|
|
|
|
throw error;
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
defineReadOnly(this, 'addressPromise', Promise.resolve(getAddress(addressOrName)));
|
|
|
|
} catch (error) {
|
|
|
|
errors.throwError('provider is required to use non-address contract address', errors.INVALID_ARGUMENT, { argument: 'addressOrName', value: addressOrName });
|
|
|
|
}
|
|
|
|
}
|
2018-06-14 04:10:41 +03:00
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
Object.keys(this.interface.functions).forEach((name) => {
|
|
|
|
var run = runMethod(this, name, false);
|
|
|
|
|
2018-06-23 03:30:50 +03:00
|
|
|
if ((<any>this)[name] == null) {
|
2018-06-13 22:39:39 +03:00
|
|
|
defineReadOnly(this, name, run);
|
|
|
|
} else {
|
|
|
|
console.log('WARNING: Multiple definitions for ' + name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.functions[name] == null) {
|
|
|
|
defineReadOnly(this.functions, name, run);
|
|
|
|
defineReadOnly(this.estimate, name, runMethod(this, name, true));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-01 06:05:22 +03:00
|
|
|
// @TODO: Allow timeout?
|
2018-07-03 22:48:37 +03:00
|
|
|
deployed(): Promise<Contract> {
|
2018-07-15 00:19:08 +03:00
|
|
|
|
2018-07-01 06:05:22 +03:00
|
|
|
// If we were just deployed, we know the transaction we should occur in
|
|
|
|
if (this.deployTransaction) {
|
|
|
|
return this.deployTransaction.wait().then(() => {
|
|
|
|
return this;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, poll for our code to be deployed
|
|
|
|
return poll(() => {
|
|
|
|
return this.provider.getCode(this.address).then((code) => {
|
|
|
|
if (code === '0x') { return undefined; }
|
|
|
|
return this;
|
|
|
|
});
|
2018-07-03 22:48:37 +03:00
|
|
|
}, { onceBlock: this.provider });
|
2018-07-01 06:05:22 +03:00
|
|
|
}
|
|
|
|
|
2018-06-25 01:41:28 +03:00
|
|
|
// @TODO:
|
|
|
|
// estimateFallback(overrides?: TransactionRequest): Promise<BigNumber>
|
|
|
|
|
|
|
|
// @TODO:
|
|
|
|
// estimateDeploy(bytecode: string, ...args): Promise<BigNumber>
|
|
|
|
|
2018-06-22 09:10:46 +03:00
|
|
|
fallback(overrides?: TransactionRequest): Promise<TransactionResponse> {
|
|
|
|
if (!this.signer) {
|
|
|
|
errors.throwError('sending a transaction require a signer', errors.UNSUPPORTED_OPERATION, { operation: 'sendTransaction(fallback)' })
|
|
|
|
}
|
|
|
|
|
|
|
|
var tx: TransactionRequest = shallowCopy(overrides || {});
|
|
|
|
|
|
|
|
['from', 'to'].forEach(function(key) {
|
2018-06-25 01:41:28 +03:00
|
|
|
if ((<any>tx)[key] == null) { return; }
|
2018-06-22 09:10:46 +03:00
|
|
|
errors.throwError('cannot override ' + key, errors.UNSUPPORTED_OPERATION, { operation: key })
|
|
|
|
});
|
|
|
|
|
|
|
|
tx.to = this.addressPromise;
|
|
|
|
return this.signer.sendTransaction(tx);
|
|
|
|
}
|
|
|
|
|
2018-06-14 04:10:41 +03:00
|
|
|
// Reconnect to a different signer or provider
|
2018-07-15 00:19:08 +03:00
|
|
|
connect(signerOrProvider: Signer | MinimalProvider): Contract {
|
2018-06-13 22:39:39 +03:00
|
|
|
return new Contract(this.address, this.interface, signerOrProvider);
|
|
|
|
}
|
|
|
|
|
2018-06-25 01:41:28 +03:00
|
|
|
// Re-attach to a different on=chain instance of this contract
|
|
|
|
attach(addressOrName: string): Contract {
|
|
|
|
return new Contract(addressOrName, this.interface, this.signer || this.provider);
|
|
|
|
}
|
|
|
|
|
2018-06-14 04:10:41 +03:00
|
|
|
// Deploy the contract with the bytecode, resolving to the deployed address.
|
|
|
|
// Use contract.deployTransaction.wait() to wait until the contract has
|
|
|
|
// been mined.
|
|
|
|
deploy(bytecode: string, ...args: Array<any>): Promise<Contract> {
|
2018-06-13 22:39:39 +03:00
|
|
|
if (this.signer == null) {
|
|
|
|
throw new Error('missing signer'); // @TODO: errors.throwError
|
|
|
|
}
|
|
|
|
|
2018-06-22 09:10:46 +03:00
|
|
|
// A lot of common tools do not prefix bytecode with a 0x
|
|
|
|
if (typeof(bytecode) === 'string' && bytecode.match(/^[0-9a-f]*$/i) && (bytecode.length % 2) == 0) {
|
|
|
|
bytecode = '0x' + bytecode;
|
|
|
|
}
|
|
|
|
|
2018-06-17 23:32:57 +03:00
|
|
|
if (!isHexString(bytecode)) {
|
|
|
|
errors.throwError('bytecode must be a valid hex string', errors.INVALID_ARGUMENT, { arg: 'bytecode', value: bytecode });
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((bytecode.length % 2) !== 0) {
|
|
|
|
errors.throwError('bytecode must be valid data (even length)', errors.INVALID_ARGUMENT, { arg: 'bytecode', value: bytecode });
|
|
|
|
}
|
|
|
|
|
2018-06-25 01:41:28 +03:00
|
|
|
let tx: TransactionRequest = { };
|
|
|
|
if (args.length === this.interface.deployFunction.inputs.length + 1) {
|
|
|
|
tx = shallowCopy(args.pop());
|
|
|
|
for (var key in tx) {
|
|
|
|
if (!allowedTransactionKeys[key]) {
|
|
|
|
throw new Error('unknown transaction override ' + key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
['data', 'from', 'to'].forEach(function(key) {
|
|
|
|
if ((<any>tx)[key] == null) { return; }
|
|
|
|
errors.throwError('cannot override ' + key, errors.UNSUPPORTED_OPERATION, { operation: key })
|
|
|
|
});
|
|
|
|
|
|
|
|
tx.data = this.interface.deployFunction.encode(bytecode, args);
|
|
|
|
|
|
|
|
errors.checkArgumentCount(args.length, this.interface.deployFunction.inputs.length, 'in Contract constructor');
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
// @TODO: overrides of args.length = this.interface.deployFunction.inputs.length + 1
|
2018-06-25 01:41:28 +03:00
|
|
|
return this.signer.sendTransaction(tx).then((tx) => {
|
2018-06-18 12:42:41 +03:00
|
|
|
let contract = new Contract(getContractAddress(tx), this.interface, this.signer || this.provider);
|
2018-06-14 04:10:41 +03:00
|
|
|
defineReadOnly(contract, 'deployTransaction', tx);
|
|
|
|
return contract;
|
2018-06-13 22:39:39 +03:00
|
|
|
});
|
|
|
|
}
|
2018-07-12 09:52:43 +03:00
|
|
|
|
|
|
|
private _events: Array<_Event>;
|
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
private _getEventFilter(eventName: EventFilter | string): _EventFilter {
|
2018-07-12 09:52:43 +03:00
|
|
|
if (typeof(eventName) === 'string') {
|
|
|
|
|
|
|
|
// Listen for any event
|
|
|
|
if (eventName === '*') {
|
|
|
|
return {
|
|
|
|
decode: (log: Log) => {
|
|
|
|
return [ this.interface.parseLog(log) ];
|
|
|
|
},
|
|
|
|
eventTag: '*',
|
|
|
|
filter: { address: this.address },
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normalize the eventName
|
|
|
|
if (eventName.indexOf('(') !== -1) {
|
|
|
|
eventName = formatSignature(parseSignature('event ' + eventName));
|
|
|
|
}
|
|
|
|
|
|
|
|
let event = this.interface.events[eventName];
|
|
|
|
if (!event) {
|
|
|
|
errors.throwError('unknown event - ' + eventName, errors.INVALID_ARGUMENT, { argumnet: 'eventName', value: eventName });
|
|
|
|
}
|
|
|
|
|
|
|
|
let filter = {
|
|
|
|
address: this.address,
|
|
|
|
topics: [ event.topic ]
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
decode: (log: Log) => {
|
|
|
|
return event.decode(log.data, log.topics)
|
|
|
|
},
|
|
|
|
event: event,
|
|
|
|
eventTag: getEventTag(filter),
|
|
|
|
filter: filter
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
let filter: EventFilter = {
|
|
|
|
address: this.address
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the matching event in the ABI; if none, we still allow filtering
|
|
|
|
// since it may be a filter for an otherwise unknown event
|
|
|
|
let event: EventDescription = null;
|
|
|
|
if (eventName.topics && eventName.topics[0]) {
|
|
|
|
filter.topics = eventName.topics;
|
|
|
|
for (var name in this.interface.events) {
|
|
|
|
if (name.indexOf('(') === -1) { continue; }
|
|
|
|
let e = this.interface.events[name];
|
|
|
|
if (e.topic === eventName.topics[0].toLowerCase()) {
|
|
|
|
event = e;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
decode: (log: Log) => {
|
|
|
|
if (event) { return event.decode(log.data, log.topics) }
|
|
|
|
return [ log ]
|
|
|
|
},
|
|
|
|
event: event,
|
|
|
|
eventTag: getEventTag(filter),
|
|
|
|
filter: filter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
private _addEventListener(eventFilter: _EventFilter, listener: Listener, once: boolean): void {
|
2018-07-12 09:52:43 +03:00
|
|
|
if (!this.provider) {
|
|
|
|
errors.throwError('events require a provider or a signer with a provider', errors.UNSUPPORTED_OPERATION, { operation: 'once' })
|
|
|
|
}
|
|
|
|
|
|
|
|
let wrappedListener = (log: Log) => {
|
|
|
|
let decoded = Array.prototype.slice.call(eventFilter.decode(log));
|
|
|
|
|
|
|
|
let event = jsonCopy(log);
|
|
|
|
event.args = decoded;
|
|
|
|
event.decode = eventFilter.event.decode;
|
|
|
|
event.event = eventFilter.event.name;
|
|
|
|
event.eventSignature = eventFilter.event.signature;
|
|
|
|
|
|
|
|
event.removeListener = () => { this.removeListener(eventFilter.filter, listener); };
|
|
|
|
|
|
|
|
event.getBlock = () => { return this.provider.getBlock(log.blockHash); }
|
|
|
|
event.getTransaction = () => { return this.provider.getTransactionReceipt(log.transactionHash); }
|
|
|
|
event.getTransactionReceipt = () => { return this.provider.getTransactionReceipt(log.transactionHash); }
|
|
|
|
|
|
|
|
decoded.push(event);
|
|
|
|
this.emit(eventFilter.filter, ...decoded);
|
|
|
|
};
|
|
|
|
|
|
|
|
this.provider.on(eventFilter.filter, wrappedListener);
|
|
|
|
this._events.push({ eventFilter: eventFilter, listener: listener, wrappedListener: wrappedListener, once: once });
|
|
|
|
}
|
|
|
|
|
|
|
|
on(event: EventFilter | string, listener: Listener): Contract {
|
|
|
|
this._addEventListener(this._getEventFilter(event), listener, false);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
once(event: EventFilter | string, listener: Listener): Contract {
|
|
|
|
this._addEventListener(this._getEventFilter(event), listener, true);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
addEventLisener(eventName: EventFilter | string, listener: Listener): Contract {
|
|
|
|
return this.on(eventName, listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
emit(eventName: EventFilter | string, ...args: Array<any>): boolean {
|
|
|
|
if (!this.provider) { return false; }
|
|
|
|
|
|
|
|
let result = false;
|
|
|
|
|
|
|
|
let eventFilter = this._getEventFilter(eventName);
|
|
|
|
this._events = this._events.filter((event) => {
|
|
|
|
if (event.eventFilter.eventTag !== eventFilter.eventTag) { return true; }
|
|
|
|
setTimeout(() => {
|
|
|
|
event.listener.apply(this, args);
|
|
|
|
}, 0);
|
|
|
|
result = true;
|
|
|
|
return !(event.once);
|
|
|
|
});
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
listenerCount(eventName?: EventFilter | string): number {
|
|
|
|
if (!this.provider) { return 0; }
|
|
|
|
|
|
|
|
let eventFilter = this._getEventFilter(eventName);
|
|
|
|
return this._events.filter((event) => {
|
|
|
|
return event.eventFilter.eventTag === eventFilter.eventTag
|
|
|
|
}).length;
|
|
|
|
}
|
|
|
|
|
|
|
|
listeners(eventName: EventFilter | string): Array<Listener> {
|
|
|
|
if (!this.provider) { return []; }
|
|
|
|
|
|
|
|
let eventFilter = this._getEventFilter(eventName);
|
|
|
|
return this._events.filter((event) => {
|
|
|
|
return event.eventFilter.eventTag === eventFilter.eventTag
|
|
|
|
}).map((event) => { return event.listener; });
|
|
|
|
}
|
|
|
|
|
|
|
|
removeAllListeners(eventName: EventFilter | string): Contract {
|
|
|
|
if (!this.provider) { return this; }
|
|
|
|
|
|
|
|
let eventFilter = this._getEventFilter(eventName);
|
|
|
|
this._events = this._events.filter((event) => {
|
|
|
|
return event.eventFilter.eventTag !== eventFilter.eventTag
|
|
|
|
});
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
removeListener(eventName: any, listener: Listener): Contract {
|
|
|
|
if (!this.provider) { return this; }
|
|
|
|
|
|
|
|
let found = false;
|
|
|
|
|
|
|
|
let eventFilter = this._getEventFilter(eventName);
|
|
|
|
this._events = this._events.filter((event) => {
|
|
|
|
|
|
|
|
// Make sure this event and listener match
|
|
|
|
if (event.eventFilter.eventTag !== eventFilter.eventTag) { return true; }
|
|
|
|
if (event.listener !== listener) { return true; }
|
|
|
|
this.provider.removeListener(event.eventFilter.filter, event.wrappedListener);
|
|
|
|
|
|
|
|
// Already found a matching event in a previous loop
|
|
|
|
if (found) { return true; }
|
|
|
|
|
|
|
|
// REmove this event (returning false filters us out)
|
|
|
|
found = true;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|