ethers.js/packages/abi/lib.esm/interface.js

600 lines
24 KiB
JavaScript
Raw Normal View History

2019-05-15 01:48:48 +03:00
"use strict";
import { getAddress } from "@ethersproject/address";
import { BigNumber } from "@ethersproject/bignumber";
import { arrayify, concat, hexDataSlice, hexlify, hexZeroPad, isHexString } from "@ethersproject/bytes";
import { id } from "@ethersproject/hash";
import { keccak256 } from "@ethersproject/keccak256";
import { defineReadOnly, Description, getStatic } from "@ethersproject/properties";
import { defaultAbiCoder } from "./abi-coder";
2020-04-25 10:54:54 +03:00
import { checkResultErrors } from "./coders/abstract-coder";
2020-01-08 03:58:04 +03:00
import { ConstructorFragment, EventFragment, FormatTypes, Fragment, FunctionFragment, ParamType } from "./fragments";
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
2020-04-25 10:54:54 +03:00
export { checkResultErrors };
export class LogDescription extends Description {
}
export class TransactionDescription extends Description {
}
2021-06-24 09:13:06 +03:00
export class ErrorDescription extends Description {
}
export class Indexed extends Description {
static isIndexed(value) {
2019-06-12 00:57:04 +03:00
return !!(value && value._isIndexed);
2019-05-15 01:48:48 +03:00
}
}
2021-05-17 23:19:36 +03:00
const BuiltinErrors = {
"0x08c379a0": { signature: "Error(string)", name: "Error", inputs: ["string"], reason: true },
"0x4e487b71": { signature: "Panic(uint256)", name: "Panic", inputs: ["uint256"] }
};
2020-04-25 10:54:54 +03:00
function wrapAccessError(property, error) {
const wrap = new Error(`deferred error during ABI decoding triggered accessing ${property}`);
wrap.error = error;
return wrap;
}
2020-05-13 06:31:51 +03:00
/*
function checkNames(fragment: Fragment, type: "input" | "output", params: Array<ParamType>): void {
2020-04-25 10:54:54 +03:00
params.reduce((accum, param) => {
if (param.name) {
if (accum[param.name]) {
2020-05-13 06:31:51 +03:00
logger.throwArgumentError(`duplicate ${ type } parameter ${ JSON.stringify(param.name) } in ${ fragment.format("full") }`, "fragment", fragment);
2020-04-25 10:54:54 +03:00
}
accum[param.name] = true;
}
return accum;
2020-05-13 06:31:51 +03:00
}, <{ [ name: string ]: boolean }>{ });
2020-04-25 10:54:54 +03:00
}
2020-05-13 06:31:51 +03:00
*/
export class Interface {
constructor(fragments) {
logger.checkNew(new.target, Interface);
let abi = [];
2019-05-15 01:48:48 +03:00
if (typeof (fragments) === "string") {
abi = JSON.parse(fragments);
}
else {
abi = fragments;
}
defineReadOnly(this, "fragments", abi.map((fragment) => {
return Fragment.from(fragment);
}).filter((fragment) => (fragment != null)));
2021-10-16 09:29:27 +03:00
defineReadOnly(this, "_abiCoder", getStatic(new.target, "getAbiCoder")());
defineReadOnly(this, "functions", {});
defineReadOnly(this, "errors", {});
defineReadOnly(this, "events", {});
defineReadOnly(this, "structs", {});
2019-05-15 01:48:48 +03:00
// Add all fragments by their signature
this.fragments.forEach((fragment) => {
let bucket = null;
2019-05-15 01:48:48 +03:00
switch (fragment.type) {
case "constructor":
if (this.deploy) {
2019-08-02 09:10:58 +03:00
logger.warn("duplicate definition - constructor");
2019-05-15 01:48:48 +03:00
return;
}
2020-05-13 06:31:51 +03:00
//checkNames(fragment, "input", fragment.inputs);
defineReadOnly(this, "deploy", fragment);
2019-05-15 01:48:48 +03:00
return;
case "function":
2020-05-13 06:31:51 +03:00
//checkNames(fragment, "input", fragment.inputs);
//checkNames(fragment, "output", (<FunctionFragment>fragment).outputs);
bucket = this.functions;
2019-05-15 01:48:48 +03:00
break;
case "event":
2020-05-13 06:31:51 +03:00
//checkNames(fragment, "input", fragment.inputs);
bucket = this.events;
2019-05-15 01:48:48 +03:00
break;
2021-05-17 23:19:36 +03:00
case "error":
bucket = this.errors;
break;
2019-05-15 01:48:48 +03:00
default:
return;
}
let signature = fragment.format();
2019-05-15 01:48:48 +03:00
if (bucket[signature]) {
2019-08-02 09:10:58 +03:00
logger.warn("duplicate definition - " + signature);
2019-05-15 01:48:48 +03:00
return;
}
bucket[signature] = fragment;
});
2020-04-25 10:54:54 +03:00
// If we do not have a constructor add a default
2019-05-15 01:48:48 +03:00
if (!this.deploy) {
2020-04-25 10:54:54 +03:00
defineReadOnly(this, "deploy", ConstructorFragment.from({
payable: false,
type: "constructor"
}));
2019-05-15 01:48:48 +03:00
}
defineReadOnly(this, "_isInterface", true);
2019-05-15 01:48:48 +03:00
}
2020-01-08 03:58:04 +03:00
format(format) {
if (!format) {
format = FormatTypes.full;
}
if (format === FormatTypes.sighash) {
2020-04-24 06:35:39 +03:00
logger.throwArgumentError("interface does not support formatting sighash", "format", format);
2020-01-08 03:58:04 +03:00
}
const abi = this.fragments.map((fragment) => fragment.format(format));
// We need to re-bundle the JSON fragments a bit
if (format === FormatTypes.json) {
return JSON.stringify(abi.map((j) => JSON.parse(j)));
}
return abi;
}
// Sub-classes can override these to handle other blockchains
static getAbiCoder() {
return defaultAbiCoder;
}
static getAddress(address) {
return getAddress(address);
}
2021-05-17 23:19:36 +03:00
static getSighash(fragment) {
return hexDataSlice(id(fragment.format()), 0, 4);
}
2020-02-26 13:06:48 +03:00
static getEventTopic(eventFragment) {
return id(eventFragment.format());
}
2020-01-08 03:58:04 +03:00
// Find a function definition by any means necessary (unless it is ambiguous)
getFunction(nameOrSignatureOrSighash) {
if (isHexString(nameOrSignatureOrSighash)) {
2019-11-20 12:57:38 +03:00
for (const name in this.functions) {
if (nameOrSignatureOrSighash === this.getSighash(name)) {
return this.functions[name];
}
}
logger.throwArgumentError("no matching function", "sighash", nameOrSignatureOrSighash);
2019-05-15 01:48:48 +03:00
}
// It is a bare name, look up the function (will return null if ambiguous)
if (nameOrSignatureOrSighash.indexOf("(") === -1) {
2019-11-20 12:57:38 +03:00
const name = nameOrSignatureOrSighash.trim();
const matching = Object.keys(this.functions).filter((f) => (f.split("(" /* fix:) */)[0] === name));
if (matching.length === 0) {
logger.throwArgumentError("no matching function", "name", name);
}
else if (matching.length > 1) {
logger.throwArgumentError("multiple matching functions", "name", name);
}
return this.functions[matching[0]];
2019-05-15 01:48:48 +03:00
}
2021-10-16 09:29:27 +03:00
// Normalize the signature and lookup the function
2019-11-20 12:57:38 +03:00
const result = this.functions[FunctionFragment.fromString(nameOrSignatureOrSighash).format()];
if (!result) {
logger.throwArgumentError("no matching function", "signature", nameOrSignatureOrSighash);
}
return result;
}
2020-01-08 03:58:04 +03:00
// Find an event definition by any means necessary (unless it is ambiguous)
getEvent(nameOrSignatureOrTopic) {
if (isHexString(nameOrSignatureOrTopic)) {
2019-11-20 12:57:38 +03:00
const topichash = nameOrSignatureOrTopic.toLowerCase();
for (const name in this.events) {
if (topichash === this.getEventTopic(name)) {
return this.events[name];
}
}
logger.throwArgumentError("no matching event", "topichash", topichash);
2019-05-15 01:48:48 +03:00
}
// It is a bare name, look up the function (will return null if ambiguous)
if (nameOrSignatureOrTopic.indexOf("(") === -1) {
2019-11-20 12:57:38 +03:00
const name = nameOrSignatureOrTopic.trim();
const matching = Object.keys(this.events).filter((f) => (f.split("(" /* fix:) */)[0] === name));
if (matching.length === 0) {
logger.throwArgumentError("no matching event", "name", name);
}
else if (matching.length > 1) {
logger.throwArgumentError("multiple matching events", "name", name);
}
return this.events[matching[0]];
2019-05-15 01:48:48 +03:00
}
2021-10-16 09:29:27 +03:00
// Normalize the signature and lookup the function
2019-11-20 12:57:38 +03:00
const result = this.events[EventFragment.fromString(nameOrSignatureOrTopic).format()];
if (!result) {
logger.throwArgumentError("no matching event", "signature", nameOrSignatureOrTopic);
}
return result;
}
2021-05-17 23:19:36 +03:00
// Find a function definition by any means necessary (unless it is ambiguous)
getError(nameOrSignatureOrSighash) {
if (isHexString(nameOrSignatureOrSighash)) {
const getSighash = getStatic(this.constructor, "getSighash");
for (const name in this.errors) {
const error = this.errors[name];
if (nameOrSignatureOrSighash === getSighash(error)) {
return this.errors[name];
}
}
logger.throwArgumentError("no matching error", "sighash", nameOrSignatureOrSighash);
}
// It is a bare name, look up the function (will return null if ambiguous)
if (nameOrSignatureOrSighash.indexOf("(") === -1) {
const name = nameOrSignatureOrSighash.trim();
const matching = Object.keys(this.errors).filter((f) => (f.split("(" /* fix:) */)[0] === name));
if (matching.length === 0) {
logger.throwArgumentError("no matching error", "name", name);
}
else if (matching.length > 1) {
logger.throwArgumentError("multiple matching errors", "name", name);
}
return this.errors[matching[0]];
}
2021-10-16 09:29:27 +03:00
// Normalize the signature and lookup the function
2021-05-17 23:19:36 +03:00
const result = this.errors[FunctionFragment.fromString(nameOrSignatureOrSighash).format()];
if (!result) {
logger.throwArgumentError("no matching error", "signature", nameOrSignatureOrSighash);
}
return result;
}
2020-01-08 03:58:04 +03:00
// Get the sighash (the bytes4 selector) used by Solidity to identify a function
2021-06-24 09:13:06 +03:00
getSighash(fragment) {
if (typeof (fragment) === "string") {
try {
fragment = this.getFunction(fragment);
}
catch (error) {
try {
fragment = this.getError(fragment);
}
catch (_) {
throw error;
}
}
2019-05-15 01:48:48 +03:00
}
2021-06-24 09:13:06 +03:00
return getStatic(this.constructor, "getSighash")(fragment);
}
2020-01-08 03:58:04 +03:00
// Get the topic (the bytes32 hash) used by Solidity to identify an event
getEventTopic(eventFragment) {
2019-05-15 01:48:48 +03:00
if (typeof (eventFragment) === "string") {
eventFragment = this.getEvent(eventFragment);
}
2020-02-26 13:06:48 +03:00
return getStatic(this.constructor, "getEventTopic")(eventFragment);
}
2019-09-28 09:36:19 +03:00
_decodeParams(params, data) {
return this._abiCoder.decode(params, data);
}
_encodeParams(params, values) {
2019-05-15 01:48:48 +03:00
return this._abiCoder.encode(params, values);
}
encodeDeploy(values) {
2019-05-15 01:48:48 +03:00
return this._encodeParams(this.deploy.inputs, values || []);
}
2021-06-26 08:55:19 +03:00
decodeErrorResult(fragment, data) {
2021-06-24 09:13:06 +03:00
if (typeof (fragment) === "string") {
fragment = this.getError(fragment);
}
const bytes = arrayify(data);
if (hexlify(bytes.slice(0, 4)) !== this.getSighash(fragment)) {
logger.throwArgumentError(`data signature does not match error ${fragment.name}.`, "data", hexlify(bytes));
}
return this._decodeParams(fragment.inputs, bytes.slice(4));
}
2021-06-26 08:55:19 +03:00
encodeErrorResult(fragment, values) {
2021-06-24 09:13:06 +03:00
if (typeof (fragment) === "string") {
fragment = this.getError(fragment);
}
return hexlify(concat([
this.getSighash(fragment),
this._encodeParams(fragment.inputs, values || [])
]));
}
2020-01-08 03:58:04 +03:00
// Decode the data for a function call (e.g. tx.data)
2019-09-28 09:36:19 +03:00
decodeFunctionData(functionFragment, data) {
if (typeof (functionFragment) === "string") {
functionFragment = this.getFunction(functionFragment);
}
const bytes = arrayify(data);
if (hexlify(bytes.slice(0, 4)) !== this.getSighash(functionFragment)) {
logger.throwArgumentError(`data signature does not match function ${functionFragment.name}.`, "data", hexlify(bytes));
}
return this._decodeParams(functionFragment.inputs, bytes.slice(4));
}
2020-01-08 03:58:04 +03:00
// Encode the data for a function call (e.g. tx.data)
encodeFunctionData(functionFragment, values) {
2019-05-15 01:48:48 +03:00
if (typeof (functionFragment) === "string") {
functionFragment = this.getFunction(functionFragment);
}
return hexlify(concat([
2019-05-15 01:48:48 +03:00
this.getSighash(functionFragment),
this._encodeParams(functionFragment.inputs, values || [])
]));
}
2020-01-08 03:58:04 +03:00
// Decode the result from a function call (e.g. from eth_call)
decodeFunctionResult(functionFragment, data) {
2019-05-15 01:48:48 +03:00
if (typeof (functionFragment) === "string") {
functionFragment = this.getFunction(functionFragment);
}
let bytes = arrayify(data);
let reason = null;
2021-05-17 23:19:36 +03:00
let errorArgs = null;
let errorName = null;
let errorSignature = null;
2019-05-15 01:48:48 +03:00
switch (bytes.length % this._abiCoder._getWordSize()) {
case 0:
try {
return this._abiCoder.decode(functionFragment.outputs, bytes);
}
catch (error) { }
break;
2021-05-17 23:19:36 +03:00
case 4: {
const selector = hexlify(bytes.slice(0, 4));
const builtin = BuiltinErrors[selector];
if (builtin) {
errorArgs = this._abiCoder.decode(builtin.inputs, bytes.slice(4));
errorName = builtin.name;
errorSignature = builtin.signature;
if (builtin.reason) {
reason = errorArgs[0];
}
}
else {
try {
const error = this.getError(selector);
errorArgs = this._abiCoder.decode(error.inputs, bytes.slice(4));
errorName = error.name;
errorSignature = error.format();
}
catch (error) {
console.log(error);
}
2019-05-15 01:48:48 +03:00
}
break;
2021-05-17 23:19:36 +03:00
}
2019-05-15 01:48:48 +03:00
}
return logger.throwError("call revert exception", Logger.errors.CALL_EXCEPTION, {
2019-05-15 01:48:48 +03:00
method: functionFragment.format(),
2021-05-17 23:19:36 +03:00
errorArgs, errorName, errorSignature, reason
2019-05-15 01:48:48 +03:00
});
}
2020-01-08 03:58:04 +03:00
// Encode the result for a function call (e.g. for eth_call)
2019-09-28 09:36:19 +03:00
encodeFunctionResult(functionFragment, values) {
if (typeof (functionFragment) === "string") {
functionFragment = this.getFunction(functionFragment);
}
return hexlify(this._abiCoder.encode(functionFragment.outputs, values || []));
}
2020-01-08 03:58:04 +03:00
// Create the filter for the event with search criteria (e.g. for eth_filterLog)
encodeFilterTopics(eventFragment, values) {
2019-05-15 01:48:48 +03:00
if (typeof (eventFragment) === "string") {
eventFragment = this.getEvent(eventFragment);
}
if (values.length > eventFragment.inputs.length) {
logger.throwError("too many arguments for " + eventFragment.format(), Logger.errors.UNEXPECTED_ARGUMENT, {
2019-05-15 01:48:48 +03:00
argument: "values",
value: values
});
}
let topics = [];
2019-05-15 01:48:48 +03:00
if (!eventFragment.anonymous) {
topics.push(this.getEventTopic(eventFragment));
}
2020-05-02 00:00:44 +03:00
const encodeTopic = (param, value) => {
if (param.type === "string") {
return id(value);
}
else if (param.type === "bytes") {
return keccak256(hexlify(value));
}
// Check addresses are valid
if (param.type === "address") {
this._abiCoder.encode(["address"], [value]);
}
return hexZeroPad(hexlify(value), 32);
};
values.forEach((value, index) => {
let param = eventFragment.inputs[index];
2019-05-15 01:48:48 +03:00
if (!param.indexed) {
if (value != null) {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("cannot filter non-indexed parameters; must be null", ("contract." + param.name), value);
2019-05-15 01:48:48 +03:00
}
return;
}
if (value == null) {
topics.push(null);
}
2020-05-02 00:00:44 +03:00
else if (param.baseType === "array" || param.baseType === "tuple") {
2019-08-02 09:10:58 +03:00
logger.throwArgumentError("filtering with tuples or arrays not supported", ("contract." + param.name), value);
2019-05-15 01:48:48 +03:00
}
2020-05-02 00:00:44 +03:00
else if (Array.isArray(value)) {
topics.push(value.map((value) => encodeTopic(param, value)));
}
2019-05-15 01:48:48 +03:00
else {
2020-05-02 00:00:44 +03:00
topics.push(encodeTopic(param, value));
2019-05-15 01:48:48 +03:00
}
});
// Trim off trailing nulls
while (topics.length && topics[topics.length - 1] === null) {
topics.pop();
}
return topics;
}
2020-04-25 10:54:54 +03:00
encodeEventLog(eventFragment, values) {
if (typeof (eventFragment) === "string") {
eventFragment = this.getEvent(eventFragment);
}
const topics = [];
const dataTypes = [];
const dataValues = [];
if (!eventFragment.anonymous) {
topics.push(this.getEventTopic(eventFragment));
}
if (values.length !== eventFragment.inputs.length) {
logger.throwArgumentError("event arguments/values mismatch", "values", values);
}
eventFragment.inputs.forEach((param, index) => {
const value = values[index];
if (param.indexed) {
if (param.type === "string") {
topics.push(id(value));
}
else if (param.type === "bytes") {
topics.push(keccak256(value));
}
else if (param.baseType === "tuple" || param.baseType === "array") {
2021-10-16 09:29:27 +03:00
// @TODO
2020-04-25 10:54:54 +03:00
throw new Error("not implemented");
}
else {
topics.push(this._abiCoder.encode([param.type], [value]));
}
}
else {
dataTypes.push(param);
dataValues.push(value);
}
});
return {
data: this._abiCoder.encode(dataTypes, dataValues),
topics: topics
};
}
2020-01-08 03:58:04 +03:00
// Decode a filter for the event and the search criteria
decodeEventLog(eventFragment, data, topics) {
2019-05-15 01:48:48 +03:00
if (typeof (eventFragment) === "string") {
eventFragment = this.getEvent(eventFragment);
}
if (topics != null && !eventFragment.anonymous) {
let topicHash = this.getEventTopic(eventFragment);
if (!isHexString(topics[0], 32) || topics[0].toLowerCase() !== topicHash) {
logger.throwError("fragment/topic mismatch", Logger.errors.INVALID_ARGUMENT, { argument: "topics[0]", expected: topicHash, value: topics[0] });
2019-05-24 02:13:44 +03:00
}
2019-05-15 01:48:48 +03:00
topics = topics.slice(1);
}
let indexed = [];
let nonIndexed = [];
let dynamic = [];
eventFragment.inputs.forEach((param, index) => {
2019-05-15 01:48:48 +03:00
if (param.indexed) {
if (param.type === "string" || param.type === "bytes" || param.baseType === "tuple" || param.baseType === "array") {
indexed.push(ParamType.fromObject({ type: "bytes32", name: param.name }));
2019-05-15 01:48:48 +03:00
dynamic.push(true);
}
else {
indexed.push(param);
dynamic.push(false);
}
}
else {
nonIndexed.push(param);
dynamic.push(false);
}
});
let resultIndexed = (topics != null) ? this._abiCoder.decode(indexed, concat(topics)) : null;
2020-09-08 02:55:52 +03:00
let resultNonIndexed = this._abiCoder.decode(nonIndexed, data, true);
let result = [];
let nonIndexedIndex = 0, indexedIndex = 0;
eventFragment.inputs.forEach((param, index) => {
2019-05-15 01:48:48 +03:00
if (param.indexed) {
if (resultIndexed == null) {
2019-06-12 00:57:04 +03:00
result[index] = new Indexed({ _isIndexed: true, hash: null });
2019-05-15 01:48:48 +03:00
}
else if (dynamic[index]) {
2019-06-12 00:57:04 +03:00
result[index] = new Indexed({ _isIndexed: true, hash: resultIndexed[indexedIndex++] });
2019-05-15 01:48:48 +03:00
}
else {
2020-04-25 10:54:54 +03:00
try {
result[index] = resultIndexed[indexedIndex++];
}
catch (error) {
result[index] = error;
}
2019-05-15 01:48:48 +03:00
}
}
else {
2020-04-25 10:54:54 +03:00
try {
result[index] = resultNonIndexed[nonIndexedIndex++];
}
catch (error) {
result[index] = error;
}
2019-05-15 01:48:48 +03:00
}
2020-04-25 10:54:54 +03:00
// Add the keyword argument if named and safe
2020-01-08 03:58:04 +03:00
if (param.name && result[param.name] == null) {
2020-04-25 10:54:54 +03:00
const value = result[index];
// Make error named values throw on access
if (value instanceof Error) {
Object.defineProperty(result, param.name, {
2021-08-24 22:15:51 +03:00
enumerable: true,
2020-04-25 10:54:54 +03:00
get: () => { throw wrapAccessError(`property ${JSON.stringify(param.name)}`, value); }
});
}
else {
result[param.name] = value;
}
2020-01-08 03:58:04 +03:00
}
2019-05-15 01:48:48 +03:00
});
2020-04-25 10:54:54 +03:00
// Make all error indexed values throw on access
for (let i = 0; i < result.length; i++) {
const value = result[i];
if (value instanceof Error) {
Object.defineProperty(result, i, {
2021-08-24 22:15:51 +03:00
enumerable: true,
2020-04-25 10:54:54 +03:00
get: () => { throw wrapAccessError(`index ${i}`, value); }
});
}
}
2020-03-31 00:24:33 +03:00
return Object.freeze(result);
}
2020-01-08 03:58:04 +03:00
// Given a transaction, find the matching function fragment (if any) and
// determine all its properties and call parameters
parseTransaction(tx) {
let fragment = this.getFunction(tx.data.substring(0, 10).toLowerCase());
2019-05-15 01:48:48 +03:00
if (!fragment) {
return null;
}
return new TransactionDescription({
args: this._abiCoder.decode(fragment.inputs, "0x" + tx.data.substring(10)),
functionFragment: fragment,
name: fragment.name,
signature: fragment.format(),
sighash: this.getSighash(fragment),
value: BigNumber.from(tx.value || "0"),
2019-05-15 01:48:48 +03:00
});
}
2021-05-17 23:19:36 +03:00
// @TODO
//parseCallResult(data: BytesLike): ??
2020-01-08 03:58:04 +03:00
// Given an event log, find the matching event fragment (if any) and
// determine all its properties and values
parseLog(log) {
let fragment = this.getEvent(log.topics[0]);
2019-05-15 01:48:48 +03:00
if (!fragment || fragment.anonymous) {
return null;
}
// @TODO: If anonymous, and the only method, and the input count matches, should we parse?
2020-01-08 03:58:04 +03:00
// Probably not, because just because it is the only event in the ABI does
2021-10-16 09:29:27 +03:00
// not mean we have the full ABI; maybe just a fragment?
2019-05-15 01:48:48 +03:00
return new LogDescription({
eventFragment: fragment,
name: fragment.name,
signature: fragment.format(),
topic: this.getEventTopic(fragment),
2020-01-08 03:58:04 +03:00
args: this.decodeEventLog(fragment, log.data, log.topics)
2019-05-15 01:48:48 +03:00
});
}
2021-06-24 09:13:06 +03:00
parseError(data) {
const hexData = hexlify(data);
let fragment = this.getError(hexData.substring(0, 10).toLowerCase());
if (!fragment) {
return null;
}
return new ErrorDescription({
args: this._abiCoder.decode(fragment.inputs, "0x" + hexData.substring(10)),
errorFragment: fragment,
name: fragment.name,
signature: fragment.format(),
sighash: this.getSighash(fragment),
});
}
2019-06-12 00:57:04 +03:00
/*
static from(value: Array<Fragment | string | JsonAbi> | string | Interface) {
if (Interface.isInterface(value)) {
return value;
}
if (typeof(value) === "string") {
return new Interface(JSON.parse(value));
}
return new Interface(value);
}
*/
static isInterface(value) {
2019-06-12 00:57:04 +03:00
return !!(value && value._isInterface);
}
}
2020-07-13 15:03:56 +03:00
//# sourceMappingURL=interface.js.map