Updated dist files.
This commit is contained in:
parent
b61b84dfc8
commit
d19df0dcae
@ -27,14 +27,14 @@ var keccak256_1 = require("../utils/keccak256");
|
|||||||
var properties_1 = require("../utils/properties");
|
var properties_1 = require("../utils/properties");
|
||||||
var types_1 = require("../utils/types");
|
var types_1 = require("../utils/types");
|
||||||
var errors = __importStar(require("../utils/errors"));
|
var errors = __importStar(require("../utils/errors"));
|
||||||
var _Indexed = /** @class */ (function (_super) {
|
var Indexed = /** @class */ (function (_super) {
|
||||||
__extends(_Indexed, _super);
|
__extends(Indexed, _super);
|
||||||
function _Indexed(hash) {
|
function Indexed(hash) {
|
||||||
var _this = _super.call(this) || this;
|
var _this = _super.call(this) || this;
|
||||||
properties_1.defineReadOnly(_this, 'hash', hash);
|
properties_1.defineReadOnly(_this, 'hash', hash);
|
||||||
return _this;
|
return _this;
|
||||||
}
|
}
|
||||||
return _Indexed;
|
return Indexed;
|
||||||
}(types_1.Indexed));
|
}(types_1.Indexed));
|
||||||
var Description = /** @class */ (function () {
|
var Description = /** @class */ (function () {
|
||||||
function Description(info) {
|
function Description(info) {
|
||||||
@ -50,12 +50,12 @@ var Description = /** @class */ (function () {
|
|||||||
}
|
}
|
||||||
return Description;
|
return Description;
|
||||||
}());
|
}());
|
||||||
var _DeployDescription = /** @class */ (function (_super) {
|
var DeployDescription = /** @class */ (function (_super) {
|
||||||
__extends(_DeployDescription, _super);
|
__extends(DeployDescription, _super);
|
||||||
function _DeployDescription() {
|
function DeployDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_DeployDescription.prototype.encode = function (bytecode, params) {
|
DeployDescription.prototype.encode = function (bytecode, params) {
|
||||||
if (!bytes_1.isHexString(bytecode)) {
|
if (!bytes_1.isHexString(bytecode)) {
|
||||||
errors.throwError('invalid contract bytecode', errors.INVALID_ARGUMENT, {
|
errors.throwError('invalid contract bytecode', errors.INVALID_ARGUMENT, {
|
||||||
arg: 'bytecode',
|
arg: 'bytecode',
|
||||||
@ -75,14 +75,14 @@ var _DeployDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
return _DeployDescription;
|
return DeployDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var _FunctionDescription = /** @class */ (function (_super) {
|
var FunctionDescription = /** @class */ (function (_super) {
|
||||||
__extends(_FunctionDescription, _super);
|
__extends(FunctionDescription, _super);
|
||||||
function _FunctionDescription() {
|
function FunctionDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_FunctionDescription.prototype.encode = function (params) {
|
FunctionDescription.prototype.encode = function (params) {
|
||||||
errors.checkArgumentCount(params.length, this.inputs.length, 'in interface function ' + this.name);
|
errors.checkArgumentCount(params.length, this.inputs.length, 'in interface function ' + this.name);
|
||||||
try {
|
try {
|
||||||
return this.sighash + abi_coder_1.defaultAbiCoder.encode(this.inputs, params).substring(2);
|
return this.sighash + abi_coder_1.defaultAbiCoder.encode(this.inputs, params).substring(2);
|
||||||
@ -96,7 +96,7 @@ var _FunctionDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
_FunctionDescription.prototype.decode = function (data) {
|
FunctionDescription.prototype.decode = function (data) {
|
||||||
try {
|
try {
|
||||||
return abi_coder_1.defaultAbiCoder.decode(this.outputs, bytes_1.arrayify(data));
|
return abi_coder_1.defaultAbiCoder.decode(this.outputs, bytes_1.arrayify(data));
|
||||||
}
|
}
|
||||||
@ -110,7 +110,7 @@ var _FunctionDescription = /** @class */ (function (_super) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return _FunctionDescription;
|
return FunctionDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var Result = /** @class */ (function (_super) {
|
var Result = /** @class */ (function (_super) {
|
||||||
__extends(Result, _super);
|
__extends(Result, _super);
|
||||||
@ -119,12 +119,12 @@ var Result = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return Result;
|
return Result;
|
||||||
}(Description));
|
}(Description));
|
||||||
var _EventDescription = /** @class */ (function (_super) {
|
var EventDescription = /** @class */ (function (_super) {
|
||||||
__extends(_EventDescription, _super);
|
__extends(EventDescription, _super);
|
||||||
function _EventDescription() {
|
function EventDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_EventDescription.prototype.encodeTopics = function (params) {
|
EventDescription.prototype.encodeTopics = function (params) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
if (params.length > this.inputs.length) {
|
if (params.length > this.inputs.length) {
|
||||||
errors.throwError('too many arguments for ' + this.name, errors.UNEXPECTED_ARGUMENT, { maxCount: params.length, expectedCount: this.inputs.length });
|
errors.throwError('too many arguments for ' + this.name, errors.UNEXPECTED_ARGUMENT, { maxCount: params.length, expectedCount: this.inputs.length });
|
||||||
@ -164,7 +164,7 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return topics;
|
return topics;
|
||||||
};
|
};
|
||||||
_EventDescription.prototype.decode = function (data, topics) {
|
EventDescription.prototype.decode = function (data, topics) {
|
||||||
// Strip the signature off of non-anonymous topics
|
// Strip the signature off of non-anonymous topics
|
||||||
if (topics != null && !this.anonymous) {
|
if (topics != null && !this.anonymous) {
|
||||||
topics = topics.slice(1);
|
topics = topics.slice(1);
|
||||||
@ -197,10 +197,10 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
this.inputs.forEach(function (input, index) {
|
this.inputs.forEach(function (input, index) {
|
||||||
if (input.indexed) {
|
if (input.indexed) {
|
||||||
if (topics == null) {
|
if (topics == null) {
|
||||||
result[index] = new _Indexed(null);
|
result[index] = new Indexed(null);
|
||||||
}
|
}
|
||||||
else if (inputDynamic[index]) {
|
else if (inputDynamic[index]) {
|
||||||
result[index] = new _Indexed(resultIndexed[indexedIndex++]);
|
result[index] = new Indexed(resultIndexed[indexedIndex++]);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result[index] = resultIndexed[indexedIndex++];
|
result[index] = resultIndexed[indexedIndex++];
|
||||||
@ -216,7 +216,7 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
result.length = this.inputs.length;
|
result.length = this.inputs.length;
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
return _EventDescription;
|
return EventDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var TransactionDescription = /** @class */ (function (_super) {
|
var TransactionDescription = /** @class */ (function (_super) {
|
||||||
__extends(TransactionDescription, _super);
|
__extends(TransactionDescription, _super);
|
||||||
@ -235,10 +235,9 @@ var LogDescription = /** @class */ (function (_super) {
|
|||||||
function addMethod(method) {
|
function addMethod(method) {
|
||||||
switch (method.type) {
|
switch (method.type) {
|
||||||
case 'constructor': {
|
case 'constructor': {
|
||||||
var description = new _DeployDescription({
|
var description = new DeployDescription({
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
payable: (method.payable == null || !!method.payable),
|
payable: (method.payable == null || !!method.payable)
|
||||||
type: "deploy"
|
|
||||||
});
|
});
|
||||||
if (!this.deployFunction) {
|
if (!this.deployFunction) {
|
||||||
this.deployFunction = description;
|
this.deployFunction = description;
|
||||||
@ -248,7 +247,7 @@ function addMethod(method) {
|
|||||||
case 'function': {
|
case 'function': {
|
||||||
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
||||||
var sighash = hash_1.id(signature).substring(0, 10);
|
var sighash = hash_1.id(signature).substring(0, 10);
|
||||||
var description = new _FunctionDescription({
|
var description = new FunctionDescription({
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
outputs: method.outputs,
|
outputs: method.outputs,
|
||||||
payable: (method.payable == null || !!method.payable),
|
payable: (method.payable == null || !!method.payable),
|
||||||
@ -268,13 +267,12 @@ function addMethod(method) {
|
|||||||
}
|
}
|
||||||
case 'event': {
|
case 'event': {
|
||||||
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
||||||
var description = new _EventDescription({
|
var description = new EventDescription({
|
||||||
name: method.name,
|
name: method.name,
|
||||||
signature: signature,
|
signature: signature,
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
topic: hash_1.id(signature),
|
topic: hash_1.id(signature),
|
||||||
anonymous: (!!method.anonymous),
|
anonymous: (!!method.anonymous)
|
||||||
type: 'event'
|
|
||||||
});
|
});
|
||||||
// Expose the first (and hopefully unique) event name
|
// Expose the first (and hopefully unique) event name
|
||||||
if (method.name && this.events[method.name] == null) {
|
if (method.name && this.events[method.name] == null) {
|
||||||
@ -346,7 +344,6 @@ var Interface = /** @class */ (function () {
|
|||||||
name: name,
|
name: name,
|
||||||
signature: func.signature,
|
signature: func.signature,
|
||||||
sighash: func.sighash,
|
sighash: func.sighash,
|
||||||
type: 'transaction',
|
|
||||||
value: bignumber_1.bigNumberify(tx.value || 0),
|
value: bignumber_1.bigNumberify(tx.value || 0),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -370,7 +367,6 @@ var Interface = /** @class */ (function () {
|
|||||||
name: event.name,
|
name: event.name,
|
||||||
signature: event.signature,
|
signature: event.signature,
|
||||||
topic: event.topic,
|
topic: event.topic,
|
||||||
type: 'log',
|
|
||||||
values: event.decode(log.data, log.topics)
|
values: event.decode(log.data, log.topics)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
BIN
dist/.ethers.d.ts.swp
vendored
Normal file
BIN
dist/.ethers.d.ts.swp
vendored
Normal file
Binary file not shown.
144
dist/ethers.d.ts
vendored
144
dist/ethers.d.ts
vendored
@ -42,7 +42,7 @@ declare module 'ethers/providers' {
|
|||||||
import { JsonRpcProvider, JsonRpcSigner } from 'ethers/providers/json-rpc-provider';
|
import { JsonRpcProvider, JsonRpcSigner } from 'ethers/providers/json-rpc-provider';
|
||||||
import { Web3Provider } from 'ethers/providers/web3-provider';
|
import { Web3Provider } from 'ethers/providers/web3-provider';
|
||||||
import { Network } from 'ethers/utils/types';
|
import { Network } from 'ethers/utils/types';
|
||||||
function getDefaultProvider(network?: Network | string): FallbackProvider;
|
function getDefaultProvider(network?: Network | string): Provider;
|
||||||
export { Provider, getDefaultProvider, FallbackProvider, EtherscanProvider, InfuraProvider, JsonRpcProvider, Web3Provider, IpcProvider, JsonRpcSigner };
|
export { Provider, getDefaultProvider, FallbackProvider, EtherscanProvider, InfuraProvider, JsonRpcProvider, Web3Provider, IpcProvider, JsonRpcSigner };
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,6 +53,7 @@ declare module 'ethers/utils' {
|
|||||||
import { bigNumberify } from 'ethers/utils/bignumber';
|
import { bigNumberify } from 'ethers/utils/bignumber';
|
||||||
import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexZeroPad, joinSignature, padZeros, splitSignature, stripZeros } from 'ethers/utils/bytes';
|
import { arrayify, concat, hexDataSlice, hexDataLength, hexlify, hexStripZeros, hexZeroPad, joinSignature, padZeros, splitSignature, stripZeros } from 'ethers/utils/bytes';
|
||||||
import { hashMessage, id, namehash } from 'ethers/utils/hash';
|
import { hashMessage, id, namehash } from 'ethers/utils/hash';
|
||||||
|
import { getJsonWalletAddress } from 'ethers/utils/json-wallet';
|
||||||
import { keccak256 } from 'ethers/utils/keccak256';
|
import { keccak256 } from 'ethers/utils/keccak256';
|
||||||
import { sha256 } from 'ethers/utils/sha2';
|
import { sha256 } from 'ethers/utils/sha2';
|
||||||
import { keccak256 as solidityKeccak256, pack as solidityPack, sha256 as soliditySha256 } from 'ethers/utils/solidity';
|
import { keccak256 as solidityKeccak256, pack as solidityPack, sha256 as soliditySha256 } from 'ethers/utils/solidity';
|
||||||
@ -60,6 +61,7 @@ declare module 'ethers/utils' {
|
|||||||
import { getNetwork } from 'ethers/utils/networks';
|
import { getNetwork } from 'ethers/utils/networks';
|
||||||
import { defineFrozen, defineReadOnly, resolveProperties, shallowCopy } from 'ethers/utils/properties';
|
import { defineFrozen, defineReadOnly, resolveProperties, shallowCopy } from 'ethers/utils/properties';
|
||||||
import * as RLP from 'ethers/utils/rlp';
|
import * as RLP from 'ethers/utils/rlp';
|
||||||
|
import { verifyMessage } from 'ethers/utils/secp256k1';
|
||||||
import { parse as parseTransaction, serialize as serializeTransaction } from 'ethers/utils/transaction';
|
import { parse as parseTransaction, serialize as serializeTransaction } from 'ethers/utils/transaction';
|
||||||
import { toUtf8Bytes, toUtf8String } from 'ethers/utils/utf8';
|
import { toUtf8Bytes, toUtf8String } from 'ethers/utils/utf8';
|
||||||
import { formatEther, parseEther, formatUnits, parseUnits } from 'ethers/utils/units';
|
import { formatEther, parseEther, formatUnits, parseUnits } from 'ethers/utils/units';
|
||||||
@ -76,7 +78,7 @@ declare module 'ethers/utils' {
|
|||||||
Two: types.BigNumber;
|
Two: types.BigNumber;
|
||||||
WeiPerEther: types.BigNumber;
|
WeiPerEther: types.BigNumber;
|
||||||
};
|
};
|
||||||
export { AbiCoder, defaultAbiCoder, formatSignature, formatParamType, parseSignature, parseParamType, constants, types, RLP, fetchJson, getNetwork, defineReadOnly, defineFrozen, resolveProperties, shallowCopy, etherSymbol, arrayify, concat, padZeros, stripZeros, base64, bigNumberify, hexlify, hexStripZeros, hexZeroPad, hexDataLength, hexDataSlice, toUtf8Bytes, toUtf8String, hashMessage, namehash, id, getAddress, getIcapAddress, getContractAddress, formatEther, parseEther, formatUnits, parseUnits, keccak256, sha256, randomBytes, solidityPack, solidityKeccak256, soliditySha256, splitSignature, joinSignature, parseTransaction, serializeTransaction, errors };
|
export { AbiCoder, defaultAbiCoder, formatSignature, formatParamType, parseSignature, parseParamType, constants, types, RLP, fetchJson, getNetwork, defineReadOnly, defineFrozen, resolveProperties, shallowCopy, etherSymbol, arrayify, concat, padZeros, stripZeros, base64, bigNumberify, hexlify, hexStripZeros, hexZeroPad, hexDataLength, hexDataSlice, toUtf8Bytes, toUtf8String, hashMessage, namehash, id, getAddress, getIcapAddress, getContractAddress, formatEther, parseEther, formatUnits, parseUnits, keccak256, sha256, randomBytes, solidityPack, solidityKeccak256, soliditySha256, splitSignature, joinSignature, parseTransaction, serializeTransaction, getJsonWalletAddress, verifyMessage, errors };
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'ethers/wallet' {
|
declare module 'ethers/wallet' {
|
||||||
@ -259,36 +261,48 @@ declare module 'ethers/utils/types' {
|
|||||||
raw?: string;
|
raw?: string;
|
||||||
wait: (timeout?: number) => Promise<TransactionReceipt>;
|
wait: (timeout?: number) => Promise<TransactionReceipt>;
|
||||||
}
|
}
|
||||||
export class Indexed {
|
export abstract class Indexed {
|
||||||
hash: string;
|
readonly hash: string;
|
||||||
}
|
}
|
||||||
export interface DeployDescription {
|
export interface DeployDescription {
|
||||||
type: "deploy";
|
readonly inputs: Array<ParamType>;
|
||||||
inputs: Array<ParamType>;
|
readonly payable: boolean;
|
||||||
payable: boolean;
|
|
||||||
encode(bytecode: string, params: Array<any>): string;
|
encode(bytecode: string, params: Array<any>): string;
|
||||||
}
|
}
|
||||||
export interface FunctionDescription {
|
export interface FunctionDescription {
|
||||||
type: "call" | "transaction";
|
readonly type: "call" | "transaction";
|
||||||
name: string;
|
readonly name: string;
|
||||||
signature: string;
|
readonly signature: string;
|
||||||
sighash: string;
|
readonly sighash: string;
|
||||||
inputs: Array<ParamType>;
|
readonly inputs: Array<ParamType>;
|
||||||
outputs: Array<ParamType>;
|
readonly outputs: Array<ParamType>;
|
||||||
payable: boolean;
|
readonly payable: boolean;
|
||||||
encode(params: Array<any>): string;
|
encode(params: Array<any>): string;
|
||||||
decode(data: string): any;
|
decode(data: string): any;
|
||||||
}
|
}
|
||||||
export interface EventDescription {
|
export interface EventDescription {
|
||||||
type: "event";
|
readonly name: string;
|
||||||
name: string;
|
readonly signature: string;
|
||||||
signature: string;
|
readonly inputs: Array<ParamType>;
|
||||||
inputs: Array<ParamType>;
|
readonly anonymous: boolean;
|
||||||
anonymous: boolean;
|
readonly topic: string;
|
||||||
topic: string;
|
|
||||||
encodeTopics(params: Array<any>): Array<string>;
|
encodeTopics(params: Array<any>): Array<string>;
|
||||||
decode(data: string, topics?: Array<string>): any;
|
decode(data: string, topics?: Array<string>): any;
|
||||||
}
|
}
|
||||||
|
export interface LogDescription {
|
||||||
|
readonly name: string;
|
||||||
|
readonly signature: string;
|
||||||
|
readonly topic: string;
|
||||||
|
readonly values: Array<any>;
|
||||||
|
}
|
||||||
|
export interface TransactionDescription {
|
||||||
|
readonly name: string;
|
||||||
|
readonly args: Array<any>;
|
||||||
|
readonly signature: string;
|
||||||
|
readonly sighash: string;
|
||||||
|
readonly decode: (data: string) => any;
|
||||||
|
readonly value: BigNumber;
|
||||||
|
}
|
||||||
export type EventFilter = {
|
export type EventFilter = {
|
||||||
address?: string;
|
address?: string;
|
||||||
topics?: Array<string>;
|
topics?: Array<string>;
|
||||||
@ -311,7 +325,7 @@ declare module 'ethers/utils/types' {
|
|||||||
* Note: We use an abstract class so we can use instanceof to determine if an
|
* Note: We use an abstract class so we can use instanceof to determine if an
|
||||||
* object is a Provider.
|
* object is a Provider.
|
||||||
*/
|
*/
|
||||||
export abstract class MinimalProvider {
|
export abstract class MinimalProvider implements OnceBlockable {
|
||||||
abstract getNetwork(): Promise<Network>;
|
abstract getNetwork(): Promise<Network>;
|
||||||
abstract getBlockNumber(): Promise<number>;
|
abstract getBlockNumber(): Promise<number>;
|
||||||
abstract getGasPrice(): Promise<BigNumber>;
|
abstract getGasPrice(): Promise<BigNumber>;
|
||||||
@ -337,7 +351,7 @@ declare module 'ethers/utils/types' {
|
|||||||
abstract waitForTransaction(transactionHash: string, timeout?: number): Promise<TransactionReceipt>;
|
abstract waitForTransaction(transactionHash: string, timeout?: number): Promise<TransactionReceipt>;
|
||||||
}
|
}
|
||||||
export type AsyncProvider = {
|
export type AsyncProvider = {
|
||||||
isMetaMask: boolean;
|
isMetaMask?: boolean;
|
||||||
host?: string;
|
host?: string;
|
||||||
path?: string;
|
path?: string;
|
||||||
sendAsync: (request: any, callback: (error: any, response: any) => void) => void;
|
sendAsync: (request: any, callback: (error: any, response: any) => void) => void;
|
||||||
@ -443,45 +457,26 @@ declare module 'ethers/contracts/contract' {
|
|||||||
}
|
}
|
||||||
|
|
||||||
declare module 'ethers/contracts/interface' {
|
declare module 'ethers/contracts/interface' {
|
||||||
import { BigNumber, BigNumberish, DeployDescription, EventDescription, EventFragment, FunctionDescription, FunctionFragment, ParamType } from 'ethers/utils/types';
|
import { BigNumberish, DeployDescription as _DeployDescription, EventDescription as _EventDescription, FunctionDescription as _FunctionDescription, LogDescription as _LogDescription, TransactionDescription as _TransactionDescription, EventFragment, FunctionFragment, ParamType } from 'ethers/utils/types';
|
||||||
class Description {
|
|
||||||
readonly type: string;
|
|
||||||
constructor(info: any);
|
|
||||||
}
|
|
||||||
class TransactionDescription extends Description {
|
|
||||||
readonly name: string;
|
|
||||||
readonly args: Array<any>;
|
|
||||||
readonly signature: string;
|
|
||||||
readonly sighash: string;
|
|
||||||
readonly decode: (data: string) => any;
|
|
||||||
readonly value: BigNumber;
|
|
||||||
}
|
|
||||||
class LogDescription extends Description {
|
|
||||||
readonly name: string;
|
|
||||||
readonly signature: string;
|
|
||||||
readonly topic: string;
|
|
||||||
readonly values: Array<any>;
|
|
||||||
}
|
|
||||||
export class Interface {
|
export class Interface {
|
||||||
readonly abi: Array<EventFragment | FunctionFragment>;
|
readonly abi: Array<EventFragment | FunctionFragment>;
|
||||||
readonly functions: {
|
readonly functions: {
|
||||||
[name: string]: FunctionDescription;
|
[name: string]: _FunctionDescription;
|
||||||
};
|
};
|
||||||
readonly events: {
|
readonly events: {
|
||||||
[name: string]: EventDescription;
|
[name: string]: _EventDescription;
|
||||||
};
|
};
|
||||||
readonly deployFunction: DeployDescription;
|
readonly deployFunction: _DeployDescription;
|
||||||
constructor(abi: Array<string | ParamType> | string);
|
constructor(abi: Array<string | ParamType> | string);
|
||||||
parseTransaction(tx: {
|
parseTransaction(tx: {
|
||||||
data: string;
|
data: string;
|
||||||
value?: BigNumberish;
|
value?: BigNumberish;
|
||||||
}): TransactionDescription;
|
}): _TransactionDescription;
|
||||||
parseLog(log: {
|
parseLog(log: {
|
||||||
topics: Array<string>;
|
topics: Array<string>;
|
||||||
data: string;
|
data: string;
|
||||||
}): LogDescription;
|
}): _LogDescription;
|
||||||
}
|
}
|
||||||
export {};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'ethers/providers/provider' {
|
declare module 'ethers/providers/provider' {
|
||||||
@ -691,6 +686,12 @@ declare module 'ethers/utils/hash' {
|
|||||||
export function hashMessage(message: Arrayish | string): string;
|
export function hashMessage(message: Arrayish | string): string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module 'ethers/utils/json-wallet' {
|
||||||
|
export function isCrowdsaleWallet(json: string): boolean;
|
||||||
|
export function isSecretStorageWallet(json: string): boolean;
|
||||||
|
export function getJsonWalletAddress(json: string): string;
|
||||||
|
}
|
||||||
|
|
||||||
declare module 'ethers/utils/keccak256' {
|
declare module 'ethers/utils/keccak256' {
|
||||||
import { Arrayish } from 'ethers/utils/types';
|
import { Arrayish } from 'ethers/utils/types';
|
||||||
export function keccak256(data: Arrayish): string;
|
export function keccak256(data: Arrayish): string;
|
||||||
@ -737,6 +738,24 @@ declare module 'ethers/utils/rlp' {
|
|||||||
export function decode(data: Arrayish): any;
|
export function decode(data: Arrayish): any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
declare module 'ethers/utils/secp256k1' {
|
||||||
|
import { Arrayish, Signature } from 'ethers/utils/types';
|
||||||
|
export class KeyPair {
|
||||||
|
readonly privateKey: string;
|
||||||
|
readonly publicKey: string;
|
||||||
|
readonly compressedPublicKey: string;
|
||||||
|
readonly publicKeyBytes: Uint8Array;
|
||||||
|
constructor(privateKey: Arrayish);
|
||||||
|
sign(digest: Arrayish): Signature;
|
||||||
|
}
|
||||||
|
export function recoverPublicKey(digest: Arrayish, signature: Signature): string;
|
||||||
|
export function computePublicKey(key: Arrayish, compressed?: boolean): string;
|
||||||
|
export function recoverAddress(digest: Arrayish, signature: Signature): string;
|
||||||
|
export function computeAddress(key: string): string;
|
||||||
|
export function verifyMessage(message: Arrayish | string, signature: Signature | string): string;
|
||||||
|
export const N: string;
|
||||||
|
}
|
||||||
|
|
||||||
declare module 'ethers/utils/transaction' {
|
declare module 'ethers/utils/transaction' {
|
||||||
import { Arrayish, Signature, Transaction, UnsignedTransaction } from 'ethers/utils/types';
|
import { Arrayish, Signature, Transaction, UnsignedTransaction } from 'ethers/utils/types';
|
||||||
export function serialize(transaction: UnsignedTransaction, signature?: Arrayish | Signature): string;
|
export function serialize(transaction: UnsignedTransaction, signature?: Arrayish | Signature): string;
|
||||||
@ -797,45 +816,18 @@ declare module 'ethers/wallet/wallet' {
|
|||||||
static createRandom(options: any): Wallet;
|
static createRandom(options: any): Wallet;
|
||||||
static fromEncryptedJson(json: string, password: Arrayish, progressCallback: ProgressCallback): Promise<Wallet>;
|
static fromEncryptedJson(json: string, password: Arrayish, progressCallback: ProgressCallback): Promise<Wallet>;
|
||||||
static fromMnemonic(mnemonic: string, path?: string, wordlist?: Wordlist): Wallet;
|
static fromMnemonic(mnemonic: string, path?: string, wordlist?: Wordlist): Wallet;
|
||||||
/**
|
|
||||||
* Determine if this is an encryped JSON wallet.
|
|
||||||
*/
|
|
||||||
static isEncryptedWallet(json: string): boolean;
|
|
||||||
/**
|
|
||||||
* Verify a signed message, returning the address of the signer.
|
|
||||||
*/
|
|
||||||
static verifyMessage(message: Arrayish | string, signature: string): string;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'ethers/wallet/hdnode' {
|
declare module 'ethers/wallet/hdnode' {
|
||||||
import { Arrayish, HDNode as _HDNode, Wordlist } from 'ethers/utils/types';
|
import { Arrayish, HDNode as _HDNode, Wordlist } from 'ethers/utils/types';
|
||||||
export const defaultPath = "m/44'/60'/0'/0/0";
|
export const defaultPath = "m/44'/60'/0'/0/0";
|
||||||
class HDNode extends _HDNode {
|
export function fromMnemonic(mnemonic: string, wordlist?: Wordlist): _HDNode;
|
||||||
readonly privateKey: string;
|
export function fromSeed(seed: Arrayish): _HDNode;
|
||||||
readonly publicKey: string;
|
|
||||||
readonly mnemonic: string;
|
|
||||||
readonly path: string;
|
|
||||||
readonly chainCode: string;
|
|
||||||
readonly index: number;
|
|
||||||
readonly depth: number;
|
|
||||||
/**
|
|
||||||
* This constructor should not be called directly.
|
|
||||||
*
|
|
||||||
* Please use:
|
|
||||||
* - fromMnemonic
|
|
||||||
* - fromSeed
|
|
||||||
*/
|
|
||||||
constructor(privateKey: Arrayish, chainCode: Uint8Array, index: number, depth: number, mnemonic: string, path: string);
|
|
||||||
derivePath(path: string): HDNode;
|
|
||||||
}
|
|
||||||
export function fromMnemonic(mnemonic: string, wordlist?: Wordlist): HDNode;
|
|
||||||
export function fromSeed(seed: Arrayish): HDNode;
|
|
||||||
export function mnemonicToSeed(mnemonic: string, password?: string): string;
|
export function mnemonicToSeed(mnemonic: string, password?: string): string;
|
||||||
export function mnemonicToEntropy(mnemonic: string, wordlist?: Wordlist): string;
|
export function mnemonicToEntropy(mnemonic: string, wordlist?: Wordlist): string;
|
||||||
export function entropyToMnemonic(entropy: Arrayish, wordlist?: Wordlist): string;
|
export function entropyToMnemonic(entropy: Arrayish, wordlist?: Wordlist): string;
|
||||||
export function isValidMnemonic(mnemonic: string, wordlist?: Wordlist): boolean;
|
export function isValidMnemonic(mnemonic: string, wordlist?: Wordlist): boolean;
|
||||||
export {};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'ethers/wallet/signing-key' {
|
declare module 'ethers/wallet/signing-key' {
|
||||||
|
265
dist/ethers.js
vendored
265
dist/ethers.js
vendored
@ -8834,7 +8834,7 @@ if (crypto._weakCrypto === true) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
},{"../src.ts/utils/bytes":61,"../src.ts/utils/properties":67}],45:[function(require,module,exports){
|
},{"../src.ts/utils/bytes":61,"../src.ts/utils/properties":68}],45:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
try {
|
try {
|
||||||
module.exports.XMLHttpRequest = XMLHttpRequest;
|
module.exports.XMLHttpRequest = XMLHttpRequest;
|
||||||
@ -9358,7 +9358,7 @@ var Contract = /** @class */ (function () {
|
|||||||
}());
|
}());
|
||||||
exports.Contract = Contract;
|
exports.Contract = Contract;
|
||||||
|
|
||||||
},{"../utils/abi-coder":58,"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/properties":67,"../utils/types":73,"../utils/web":76,"./interface":49}],48:[function(require,module,exports){
|
},{"../utils/abi-coder":58,"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/properties":68,"../utils/types":74,"../utils/web":77,"./interface":49}],48:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var contract_1 = require("./contract");
|
var contract_1 = require("./contract");
|
||||||
@ -9396,14 +9396,14 @@ var keccak256_1 = require("../utils/keccak256");
|
|||||||
var properties_1 = require("../utils/properties");
|
var properties_1 = require("../utils/properties");
|
||||||
var types_1 = require("../utils/types");
|
var types_1 = require("../utils/types");
|
||||||
var errors = __importStar(require("../utils/errors"));
|
var errors = __importStar(require("../utils/errors"));
|
||||||
var _Indexed = /** @class */ (function (_super) {
|
var Indexed = /** @class */ (function (_super) {
|
||||||
__extends(_Indexed, _super);
|
__extends(Indexed, _super);
|
||||||
function _Indexed(hash) {
|
function Indexed(hash) {
|
||||||
var _this = _super.call(this) || this;
|
var _this = _super.call(this) || this;
|
||||||
properties_1.defineReadOnly(_this, 'hash', hash);
|
properties_1.defineReadOnly(_this, 'hash', hash);
|
||||||
return _this;
|
return _this;
|
||||||
}
|
}
|
||||||
return _Indexed;
|
return Indexed;
|
||||||
}(types_1.Indexed));
|
}(types_1.Indexed));
|
||||||
var Description = /** @class */ (function () {
|
var Description = /** @class */ (function () {
|
||||||
function Description(info) {
|
function Description(info) {
|
||||||
@ -9419,12 +9419,12 @@ var Description = /** @class */ (function () {
|
|||||||
}
|
}
|
||||||
return Description;
|
return Description;
|
||||||
}());
|
}());
|
||||||
var _DeployDescription = /** @class */ (function (_super) {
|
var DeployDescription = /** @class */ (function (_super) {
|
||||||
__extends(_DeployDescription, _super);
|
__extends(DeployDescription, _super);
|
||||||
function _DeployDescription() {
|
function DeployDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_DeployDescription.prototype.encode = function (bytecode, params) {
|
DeployDescription.prototype.encode = function (bytecode, params) {
|
||||||
if (!bytes_1.isHexString(bytecode)) {
|
if (!bytes_1.isHexString(bytecode)) {
|
||||||
errors.throwError('invalid contract bytecode', errors.INVALID_ARGUMENT, {
|
errors.throwError('invalid contract bytecode', errors.INVALID_ARGUMENT, {
|
||||||
arg: 'bytecode',
|
arg: 'bytecode',
|
||||||
@ -9444,14 +9444,14 @@ var _DeployDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
return _DeployDescription;
|
return DeployDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var _FunctionDescription = /** @class */ (function (_super) {
|
var FunctionDescription = /** @class */ (function (_super) {
|
||||||
__extends(_FunctionDescription, _super);
|
__extends(FunctionDescription, _super);
|
||||||
function _FunctionDescription() {
|
function FunctionDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_FunctionDescription.prototype.encode = function (params) {
|
FunctionDescription.prototype.encode = function (params) {
|
||||||
errors.checkArgumentCount(params.length, this.inputs.length, 'in interface function ' + this.name);
|
errors.checkArgumentCount(params.length, this.inputs.length, 'in interface function ' + this.name);
|
||||||
try {
|
try {
|
||||||
return this.sighash + abi_coder_1.defaultAbiCoder.encode(this.inputs, params).substring(2);
|
return this.sighash + abi_coder_1.defaultAbiCoder.encode(this.inputs, params).substring(2);
|
||||||
@ -9465,7 +9465,7 @@ var _FunctionDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
};
|
};
|
||||||
_FunctionDescription.prototype.decode = function (data) {
|
FunctionDescription.prototype.decode = function (data) {
|
||||||
try {
|
try {
|
||||||
return abi_coder_1.defaultAbiCoder.decode(this.outputs, bytes_1.arrayify(data));
|
return abi_coder_1.defaultAbiCoder.decode(this.outputs, bytes_1.arrayify(data));
|
||||||
}
|
}
|
||||||
@ -9479,7 +9479,7 @@ var _FunctionDescription = /** @class */ (function (_super) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return _FunctionDescription;
|
return FunctionDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var Result = /** @class */ (function (_super) {
|
var Result = /** @class */ (function (_super) {
|
||||||
__extends(Result, _super);
|
__extends(Result, _super);
|
||||||
@ -9488,12 +9488,12 @@ var Result = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return Result;
|
return Result;
|
||||||
}(Description));
|
}(Description));
|
||||||
var _EventDescription = /** @class */ (function (_super) {
|
var EventDescription = /** @class */ (function (_super) {
|
||||||
__extends(_EventDescription, _super);
|
__extends(EventDescription, _super);
|
||||||
function _EventDescription() {
|
function EventDescription() {
|
||||||
return _super !== null && _super.apply(this, arguments) || this;
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
}
|
}
|
||||||
_EventDescription.prototype.encodeTopics = function (params) {
|
EventDescription.prototype.encodeTopics = function (params) {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
if (params.length > this.inputs.length) {
|
if (params.length > this.inputs.length) {
|
||||||
errors.throwError('too many arguments for ' + this.name, errors.UNEXPECTED_ARGUMENT, { maxCount: params.length, expectedCount: this.inputs.length });
|
errors.throwError('too many arguments for ' + this.name, errors.UNEXPECTED_ARGUMENT, { maxCount: params.length, expectedCount: this.inputs.length });
|
||||||
@ -9533,7 +9533,7 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return topics;
|
return topics;
|
||||||
};
|
};
|
||||||
_EventDescription.prototype.decode = function (data, topics) {
|
EventDescription.prototype.decode = function (data, topics) {
|
||||||
// Strip the signature off of non-anonymous topics
|
// Strip the signature off of non-anonymous topics
|
||||||
if (topics != null && !this.anonymous) {
|
if (topics != null && !this.anonymous) {
|
||||||
topics = topics.slice(1);
|
topics = topics.slice(1);
|
||||||
@ -9566,10 +9566,10 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
this.inputs.forEach(function (input, index) {
|
this.inputs.forEach(function (input, index) {
|
||||||
if (input.indexed) {
|
if (input.indexed) {
|
||||||
if (topics == null) {
|
if (topics == null) {
|
||||||
result[index] = new _Indexed(null);
|
result[index] = new Indexed(null);
|
||||||
}
|
}
|
||||||
else if (inputDynamic[index]) {
|
else if (inputDynamic[index]) {
|
||||||
result[index] = new _Indexed(resultIndexed[indexedIndex++]);
|
result[index] = new Indexed(resultIndexed[indexedIndex++]);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
result[index] = resultIndexed[indexedIndex++];
|
result[index] = resultIndexed[indexedIndex++];
|
||||||
@ -9585,7 +9585,7 @@ var _EventDescription = /** @class */ (function (_super) {
|
|||||||
result.length = this.inputs.length;
|
result.length = this.inputs.length;
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
return _EventDescription;
|
return EventDescription;
|
||||||
}(Description));
|
}(Description));
|
||||||
var TransactionDescription = /** @class */ (function (_super) {
|
var TransactionDescription = /** @class */ (function (_super) {
|
||||||
__extends(TransactionDescription, _super);
|
__extends(TransactionDescription, _super);
|
||||||
@ -9604,10 +9604,9 @@ var LogDescription = /** @class */ (function (_super) {
|
|||||||
function addMethod(method) {
|
function addMethod(method) {
|
||||||
switch (method.type) {
|
switch (method.type) {
|
||||||
case 'constructor': {
|
case 'constructor': {
|
||||||
var description = new _DeployDescription({
|
var description = new DeployDescription({
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
payable: (method.payable == null || !!method.payable),
|
payable: (method.payable == null || !!method.payable)
|
||||||
type: "deploy"
|
|
||||||
});
|
});
|
||||||
if (!this.deployFunction) {
|
if (!this.deployFunction) {
|
||||||
this.deployFunction = description;
|
this.deployFunction = description;
|
||||||
@ -9617,7 +9616,7 @@ function addMethod(method) {
|
|||||||
case 'function': {
|
case 'function': {
|
||||||
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
||||||
var sighash = hash_1.id(signature).substring(0, 10);
|
var sighash = hash_1.id(signature).substring(0, 10);
|
||||||
var description = new _FunctionDescription({
|
var description = new FunctionDescription({
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
outputs: method.outputs,
|
outputs: method.outputs,
|
||||||
payable: (method.payable == null || !!method.payable),
|
payable: (method.payable == null || !!method.payable),
|
||||||
@ -9637,13 +9636,12 @@ function addMethod(method) {
|
|||||||
}
|
}
|
||||||
case 'event': {
|
case 'event': {
|
||||||
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
var signature = abi_coder_1.formatSignature(method).replace(/tuple/g, '');
|
||||||
var description = new _EventDescription({
|
var description = new EventDescription({
|
||||||
name: method.name,
|
name: method.name,
|
||||||
signature: signature,
|
signature: signature,
|
||||||
inputs: method.inputs,
|
inputs: method.inputs,
|
||||||
topic: hash_1.id(signature),
|
topic: hash_1.id(signature),
|
||||||
anonymous: (!!method.anonymous),
|
anonymous: (!!method.anonymous)
|
||||||
type: 'event'
|
|
||||||
});
|
});
|
||||||
// Expose the first (and hopefully unique) event name
|
// Expose the first (and hopefully unique) event name
|
||||||
if (method.name && this.events[method.name] == null) {
|
if (method.name && this.events[method.name] == null) {
|
||||||
@ -9715,7 +9713,6 @@ var Interface = /** @class */ (function () {
|
|||||||
name: name,
|
name: name,
|
||||||
signature: func.signature,
|
signature: func.signature,
|
||||||
sighash: func.sighash,
|
sighash: func.sighash,
|
||||||
type: 'transaction',
|
|
||||||
value: bignumber_1.bigNumberify(tx.value || 0),
|
value: bignumber_1.bigNumberify(tx.value || 0),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -9739,7 +9736,6 @@ var Interface = /** @class */ (function () {
|
|||||||
name: event.name,
|
name: event.name,
|
||||||
signature: event.signature,
|
signature: event.signature,
|
||||||
topic: event.topic,
|
topic: event.topic,
|
||||||
type: 'log',
|
|
||||||
values: event.decode(log.data, log.topics)
|
values: event.decode(log.data, log.topics)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@ -9749,7 +9745,7 @@ var Interface = /** @class */ (function () {
|
|||||||
}());
|
}());
|
||||||
exports.Interface = Interface;
|
exports.Interface = Interface;
|
||||||
|
|
||||||
},{"../utils/abi-coder":58,"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/keccak256":65,"../utils/properties":67,"../utils/types":73}],50:[function(require,module,exports){
|
},{"../utils/abi-coder":58,"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/keccak256":66,"../utils/properties":68,"../utils/types":74}],50:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -9781,7 +9777,7 @@ exports.version = _version_1.version;
|
|||||||
var constants = utils.constants;
|
var constants = utils.constants;
|
||||||
exports.constants = constants;
|
exports.constants = constants;
|
||||||
|
|
||||||
},{"./_version":46,"./contracts":48,"./providers":53,"./utils":64,"./utils/errors":62,"./utils/types":73,"./wallet":78,"./wordlists":82}],51:[function(require,module,exports){
|
},{"./_version":46,"./contracts":48,"./providers":53,"./utils":64,"./utils/errors":62,"./utils/types":74,"./wallet":79,"./wordlists":83}],51:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -10071,7 +10067,7 @@ var EtherscanProvider = /** @class */ (function (_super) {
|
|||||||
}(provider_1.Provider));
|
}(provider_1.Provider));
|
||||||
exports.EtherscanProvider = EtherscanProvider;
|
exports.EtherscanProvider = EtherscanProvider;
|
||||||
|
|
||||||
},{"../utils/bytes":61,"../utils/errors":62,"../utils/properties":67,"../utils/web":76,"./provider":56}],52:[function(require,module,exports){
|
},{"../utils/bytes":61,"../utils/errors":62,"../utils/properties":68,"../utils/web":77,"./provider":56}],52:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -10274,7 +10270,7 @@ var InfuraProvider = /** @class */ (function (_super) {
|
|||||||
}(json_rpc_provider_1.JsonRpcProvider));
|
}(json_rpc_provider_1.JsonRpcProvider));
|
||||||
exports.InfuraProvider = InfuraProvider;
|
exports.InfuraProvider = InfuraProvider;
|
||||||
|
|
||||||
},{"../utils/errors":62,"../utils/networks":66,"../utils/properties":67,"./json-rpc-provider":55}],55:[function(require,module,exports){
|
},{"../utils/errors":62,"../utils/networks":67,"../utils/properties":68,"./json-rpc-provider":55}],55:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -10586,7 +10582,7 @@ var JsonRpcProvider = /** @class */ (function (_super) {
|
|||||||
}(provider_1.Provider));
|
}(provider_1.Provider));
|
||||||
exports.JsonRpcProvider = JsonRpcProvider;
|
exports.JsonRpcProvider = JsonRpcProvider;
|
||||||
|
|
||||||
},{"../utils/address":59,"../utils/bytes":61,"../utils/errors":62,"../utils/networks":66,"../utils/properties":67,"../utils/types":73,"../utils/utf8":75,"../utils/web":76,"./provider":56}],56:[function(require,module,exports){
|
},{"../utils/address":59,"../utils/bytes":61,"../utils/errors":62,"../utils/networks":67,"../utils/properties":68,"../utils/types":74,"../utils/utf8":76,"../utils/web":77,"./provider":56}],56:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -11666,7 +11662,7 @@ function inheritable(parent) {
|
|||||||
}
|
}
|
||||||
properties_1.defineReadOnly(Provider, 'inherits', inheritable(Provider));
|
properties_1.defineReadOnly(Provider, 'inherits', inheritable(Provider));
|
||||||
|
|
||||||
},{"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/networks":66,"../utils/properties":67,"../utils/rlp":68,"../utils/transaction":72,"../utils/types":73,"../utils/utf8":75,"../utils/web":76}],57:[function(require,module,exports){
|
},{"../utils/address":59,"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/networks":67,"../utils/properties":68,"../utils/rlp":69,"../utils/transaction":73,"../utils/types":74,"../utils/utf8":76,"../utils/web":77}],57:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -11746,7 +11742,7 @@ var Web3Provider = /** @class */ (function (_super) {
|
|||||||
}(json_rpc_provider_1.JsonRpcProvider));
|
}(json_rpc_provider_1.JsonRpcProvider));
|
||||||
exports.Web3Provider = Web3Provider;
|
exports.Web3Provider = Web3Provider;
|
||||||
|
|
||||||
},{"../utils/errors":62,"../utils/properties":67,"./json-rpc-provider":55}],58:[function(require,module,exports){
|
},{"../utils/errors":62,"../utils/properties":68,"./json-rpc-provider":55}],58:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -12665,7 +12661,7 @@ var AbiCoder = /** @class */ (function () {
|
|||||||
exports.AbiCoder = AbiCoder;
|
exports.AbiCoder = AbiCoder;
|
||||||
exports.defaultAbiCoder = new AbiCoder();
|
exports.defaultAbiCoder = new AbiCoder();
|
||||||
|
|
||||||
},{"./address":59,"./bignumber":60,"./bytes":61,"./errors":62,"./properties":67,"./utf8":75}],59:[function(require,module,exports){
|
},{"./address":59,"./bignumber":60,"./bytes":61,"./errors":62,"./properties":68,"./utf8":76}],59:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
@ -12791,7 +12787,7 @@ function getContractAddress(transaction) {
|
|||||||
}
|
}
|
||||||
exports.getContractAddress = getContractAddress;
|
exports.getContractAddress = getContractAddress;
|
||||||
|
|
||||||
},{"./bytes":61,"./errors":62,"./keccak256":65,"./rlp":68,"bn.js":2}],60:[function(require,module,exports){
|
},{"./bytes":61,"./errors":62,"./keccak256":66,"./rlp":69,"bn.js":2}],60:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -12985,7 +12981,7 @@ exports.ConstantOne = bigNumberify(1);
|
|||||||
exports.ConstantTwo = bigNumberify(2);
|
exports.ConstantTwo = bigNumberify(2);
|
||||||
exports.ConstantWeiPerEther = bigNumberify('1000000000000000000');
|
exports.ConstantWeiPerEther = bigNumberify('1000000000000000000');
|
||||||
|
|
||||||
},{"./bytes":61,"./errors":62,"./properties":67,"./types":73,"bn.js":2}],61:[function(require,module,exports){
|
},{"./bytes":61,"./errors":62,"./properties":68,"./types":74,"bn.js":2}],61:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
/**
|
/**
|
||||||
* Conversion Utilities
|
* Conversion Utilities
|
||||||
@ -13392,7 +13388,7 @@ function hashMessage(message) {
|
|||||||
}
|
}
|
||||||
exports.hashMessage = hashMessage;
|
exports.hashMessage = hashMessage;
|
||||||
|
|
||||||
},{"./bytes":61,"./keccak256":65,"./utf8":75}],64:[function(require,module,exports){
|
},{"./bytes":61,"./keccak256":66,"./utf8":76}],64:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -13435,6 +13431,8 @@ var hash_1 = require("./hash");
|
|||||||
exports.hashMessage = hash_1.hashMessage;
|
exports.hashMessage = hash_1.hashMessage;
|
||||||
exports.id = hash_1.id;
|
exports.id = hash_1.id;
|
||||||
exports.namehash = hash_1.namehash;
|
exports.namehash = hash_1.namehash;
|
||||||
|
var json_wallet_1 = require("./json-wallet");
|
||||||
|
exports.getJsonWalletAddress = json_wallet_1.getJsonWalletAddress;
|
||||||
var keccak256_1 = require("./keccak256");
|
var keccak256_1 = require("./keccak256");
|
||||||
exports.keccak256 = keccak256_1.keccak256;
|
exports.keccak256 = keccak256_1.keccak256;
|
||||||
var sha2_1 = require("./sha2");
|
var sha2_1 = require("./sha2");
|
||||||
@ -13454,6 +13452,8 @@ exports.resolveProperties = properties_1.resolveProperties;
|
|||||||
exports.shallowCopy = properties_1.shallowCopy;
|
exports.shallowCopy = properties_1.shallowCopy;
|
||||||
var RLP = __importStar(require("./rlp"));
|
var RLP = __importStar(require("./rlp"));
|
||||||
exports.RLP = RLP;
|
exports.RLP = RLP;
|
||||||
|
var secp256k1_1 = require("./secp256k1");
|
||||||
|
exports.verifyMessage = secp256k1_1.verifyMessage;
|
||||||
var transaction_1 = require("./transaction");
|
var transaction_1 = require("./transaction");
|
||||||
exports.parseTransaction = transaction_1.parse;
|
exports.parseTransaction = transaction_1.parse;
|
||||||
exports.serializeTransaction = transaction_1.serialize;
|
exports.serializeTransaction = transaction_1.serialize;
|
||||||
@ -13487,7 +13487,59 @@ var constants = {
|
|||||||
};
|
};
|
||||||
exports.constants = constants;
|
exports.constants = constants;
|
||||||
|
|
||||||
},{"./abi-coder":58,"./address":59,"./base64":40,"./bignumber":60,"./bytes":61,"./errors":62,"./hash":63,"./keccak256":65,"./networks":66,"./properties":67,"./random-bytes":44,"./rlp":68,"./sha2":70,"./solidity":71,"./transaction":72,"./types":73,"./units":74,"./utf8":75,"./web":76}],65:[function(require,module,exports){
|
},{"./abi-coder":58,"./address":59,"./base64":40,"./bignumber":60,"./bytes":61,"./errors":62,"./hash":63,"./json-wallet":65,"./keccak256":66,"./networks":67,"./properties":68,"./random-bytes":44,"./rlp":69,"./secp256k1":70,"./sha2":71,"./solidity":72,"./transaction":73,"./types":74,"./units":75,"./utf8":76,"./web":77}],65:[function(require,module,exports){
|
||||||
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
var address_1 = require("./address");
|
||||||
|
function isCrowdsaleWallet(json) {
|
||||||
|
try {
|
||||||
|
var data = JSON.parse(json);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return (data.encseed && data.ethaddr);
|
||||||
|
}
|
||||||
|
exports.isCrowdsaleWallet = isCrowdsaleWallet;
|
||||||
|
function isSecretStorageWallet(json) {
|
||||||
|
try {
|
||||||
|
var data = JSON.parse(json);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!data.version || parseInt(data.version) !== data.version || parseInt(data.version) !== 3) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// @TODO: Put more checks to make sure it has kdf, iv and all that good stuff
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
exports.isSecretStorageWallet = isSecretStorageWallet;
|
||||||
|
//export function isJsonWallet(json: string): boolean {
|
||||||
|
// return (isSecretStorageWallet(json) || isCrowdsaleWallet(json));
|
||||||
|
//}
|
||||||
|
function getJsonWalletAddress(json) {
|
||||||
|
if (isCrowdsaleWallet(json)) {
|
||||||
|
try {
|
||||||
|
return address_1.getAddress(JSON.parse(json).ethaddr);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isSecretStorageWallet(json)) {
|
||||||
|
try {
|
||||||
|
return address_1.getAddress(JSON.parse(json).address);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
exports.getJsonWalletAddress = getJsonWalletAddress;
|
||||||
|
|
||||||
|
},{"./address":59}],66:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var sha3 = require("js-sha3");
|
var sha3 = require("js-sha3");
|
||||||
@ -13497,7 +13549,7 @@ function keccak256(data) {
|
|||||||
}
|
}
|
||||||
exports.keccak256 = keccak256;
|
exports.keccak256 = keccak256;
|
||||||
|
|
||||||
},{"./bytes":61,"js-sha3":33}],66:[function(require,module,exports){
|
},{"./bytes":61,"js-sha3":33}],67:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -13599,7 +13651,7 @@ function getNetwork(network) {
|
|||||||
}
|
}
|
||||||
exports.getNetwork = getNetwork;
|
exports.getNetwork = getNetwork;
|
||||||
|
|
||||||
},{"../utils/errors":62}],67:[function(require,module,exports){
|
},{"../utils/errors":62}],68:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
function defineReadOnly(object, name, value) {
|
function defineReadOnly(object, name, value) {
|
||||||
@ -13651,7 +13703,7 @@ function jsonCopy(object) {
|
|||||||
}
|
}
|
||||||
exports.jsonCopy = jsonCopy;
|
exports.jsonCopy = jsonCopy;
|
||||||
|
|
||||||
},{}],68:[function(require,module,exports){
|
},{}],69:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
//See: https://github.com/ethereum/wiki/wiki/RLP
|
//See: https://github.com/ethereum/wiki/wiki/RLP
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
@ -13769,7 +13821,7 @@ function decode(data) {
|
|||||||
}
|
}
|
||||||
exports.decode = decode;
|
exports.decode = decode;
|
||||||
|
|
||||||
},{"./bytes":61}],69:[function(require,module,exports){
|
},{"./bytes":61}],70:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -13779,14 +13831,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var elliptic_1 = require("elliptic");
|
|
||||||
var curve = new elliptic_1.ec('secp256k1');
|
|
||||||
var address_1 = require("./address");
|
var address_1 = require("./address");
|
||||||
var bytes_1 = require("./bytes");
|
var bytes_1 = require("./bytes");
|
||||||
|
var hash_1 = require("./hash");
|
||||||
var keccak256_1 = require("./keccak256");
|
var keccak256_1 = require("./keccak256");
|
||||||
var properties_1 = require("./properties");
|
var properties_1 = require("./properties");
|
||||||
var errors = __importStar(require("./errors"));
|
var errors = __importStar(require("./errors"));
|
||||||
exports.N = '0x' + curve.n.toString(16);
|
|
||||||
var KeyPair = /** @class */ (function () {
|
var KeyPair = /** @class */ (function () {
|
||||||
function KeyPair(privateKey) {
|
function KeyPair(privateKey) {
|
||||||
var keyPair = curve.keyFromPrivate(bytes_1.arrayify(privateKey));
|
var keyPair = curve.keyFromPrivate(bytes_1.arrayify(privateKey));
|
||||||
@ -13851,8 +13901,25 @@ function computeAddress(key) {
|
|||||||
return address_1.getAddress('0x' + keccak256_1.keccak256(publicKey).substring(26));
|
return address_1.getAddress('0x' + keccak256_1.keccak256(publicKey).substring(26));
|
||||||
}
|
}
|
||||||
exports.computeAddress = computeAddress;
|
exports.computeAddress = computeAddress;
|
||||||
|
function verifyMessage(message, signature) {
|
||||||
|
var sig = bytes_1.splitSignature(signature);
|
||||||
|
var digest = hash_1.hashMessage(message);
|
||||||
|
return recoverAddress(digest, {
|
||||||
|
r: sig.r,
|
||||||
|
s: sig.s,
|
||||||
|
recoveryParam: sig.recoveryParam
|
||||||
|
});
|
||||||
|
}
|
||||||
|
exports.verifyMessage = verifyMessage;
|
||||||
|
// !!!!!! IMPORTANT !!!!!!!!
|
||||||
|
//
|
||||||
|
// This import MUST be at the bottom, otehrwise browserify executes several imports
|
||||||
|
// BEFORE they are exported, resulting in undefined
|
||||||
|
var elliptic_1 = require("elliptic");
|
||||||
|
var curve = new elliptic_1.ec('secp256k1');
|
||||||
|
exports.N = '0x' + curve.n.toString(16);
|
||||||
|
|
||||||
},{"./address":59,"./bytes":61,"./errors":62,"./keccak256":65,"./properties":67,"elliptic":5}],70:[function(require,module,exports){
|
},{"./address":59,"./bytes":61,"./errors":62,"./hash":63,"./keccak256":66,"./properties":68,"elliptic":5}],71:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
@ -13869,7 +13936,7 @@ function sha512(data) {
|
|||||||
}
|
}
|
||||||
exports.sha512 = sha512;
|
exports.sha512 = sha512;
|
||||||
|
|
||||||
},{"./bytes":61,"hash.js":20}],71:[function(require,module,exports){
|
},{"./bytes":61,"hash.js":20}],72:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var bignumber_1 = require("./bignumber");
|
var bignumber_1 = require("./bignumber");
|
||||||
@ -13962,7 +14029,7 @@ function sha256(types, values) {
|
|||||||
}
|
}
|
||||||
exports.sha256 = sha256;
|
exports.sha256 = sha256;
|
||||||
|
|
||||||
},{"./bignumber":60,"./bytes":61,"./keccak256":65,"./sha2":70,"./utf8":75}],72:[function(require,module,exports){
|
},{"./bignumber":60,"./bytes":61,"./keccak256":66,"./sha2":71,"./utf8":76}],73:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -14111,7 +14178,7 @@ function parse(rawTransaction) {
|
|||||||
exports.parse = parse;
|
exports.parse = parse;
|
||||||
var secp256k1_1 = require("./secp256k1");
|
var secp256k1_1 = require("./secp256k1");
|
||||||
|
|
||||||
},{"./address":59,"./bignumber":60,"./bytes":61,"./errors":62,"./keccak256":65,"./rlp":68,"./secp256k1":69}],73:[function(require,module,exports){
|
},{"./address":59,"./bignumber":60,"./bytes":61,"./errors":62,"./keccak256":66,"./rlp":69,"./secp256k1":70}],74:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
///////////////////////////////
|
///////////////////////////////
|
||||||
// Bytes
|
// Bytes
|
||||||
@ -14168,7 +14235,7 @@ var HDNode = /** @class */ (function () {
|
|||||||
}());
|
}());
|
||||||
exports.HDNode = HDNode;
|
exports.HDNode = HDNode;
|
||||||
|
|
||||||
},{}],74:[function(require,module,exports){
|
},{}],75:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -14319,7 +14386,7 @@ function parseEther(ether) {
|
|||||||
}
|
}
|
||||||
exports.parseEther = parseEther;
|
exports.parseEther = parseEther;
|
||||||
|
|
||||||
},{"./bignumber":60,"./errors":62}],75:[function(require,module,exports){
|
},{"./bignumber":60,"./errors":62}],76:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var bytes_1 = require("./bytes");
|
var bytes_1 = require("./bytes");
|
||||||
@ -14444,7 +14511,7 @@ function toUtf8String(bytes) {
|
|||||||
}
|
}
|
||||||
exports.toUtf8String = toUtf8String;
|
exports.toUtf8String = toUtf8String;
|
||||||
|
|
||||||
},{"./bytes":61}],76:[function(require,module,exports){
|
},{"./bytes":61}],77:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -14619,7 +14686,7 @@ function poll(func, options) {
|
|||||||
}
|
}
|
||||||
exports.poll = poll;
|
exports.poll = poll;
|
||||||
|
|
||||||
},{"./base64":40,"./errors":62,"./utf8":75,"xmlhttprequest":45}],77:[function(require,module,exports){
|
},{"./base64":40,"./errors":62,"./utf8":76,"xmlhttprequest":45}],78:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -14866,7 +14933,7 @@ function isValidMnemonic(mnemonic, wordlist) {
|
|||||||
}
|
}
|
||||||
exports.isValidMnemonic = isValidMnemonic;
|
exports.isValidMnemonic = isValidMnemonic;
|
||||||
|
|
||||||
},{"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hmac":42,"../utils/pbkdf2":43,"../utils/properties":67,"../utils/secp256k1":69,"../utils/sha2":70,"../utils/types":73,"../utils/utf8":75,"../wordlists/lang-en":83}],78:[function(require,module,exports){
|
},{"../utils/bignumber":60,"../utils/bytes":61,"../utils/errors":62,"../utils/hmac":42,"../utils/pbkdf2":43,"../utils/properties":68,"../utils/secp256k1":70,"../utils/sha2":71,"../utils/types":74,"../utils/utf8":76,"../wordlists/lang-en":84}],79:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importStar = (this && this.__importStar) || function (mod) {
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
if (mod && mod.__esModule) return mod;
|
if (mod && mod.__esModule) return mod;
|
||||||
@ -14883,7 +14950,7 @@ exports.HDNode = HDNode;
|
|||||||
var signing_key_1 = require("./signing-key");
|
var signing_key_1 = require("./signing-key");
|
||||||
exports.SigningKey = signing_key_1.SigningKey;
|
exports.SigningKey = signing_key_1.SigningKey;
|
||||||
|
|
||||||
},{"./hdnode":77,"./signing-key":80,"./wallet":81}],79:[function(require,module,exports){
|
},{"./hdnode":78,"./signing-key":81,"./wallet":82}],80:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
@ -14948,30 +15015,6 @@ function searchPath(object, path) {
|
|||||||
}
|
}
|
||||||
return currentChild;
|
return currentChild;
|
||||||
}
|
}
|
||||||
function isCrowdsaleWallet(json) {
|
|
||||||
try {
|
|
||||||
var data = JSON.parse(json);
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return (data.encseed && data.ethaddr);
|
|
||||||
}
|
|
||||||
exports.isCrowdsaleWallet = isCrowdsaleWallet;
|
|
||||||
function isValidWallet(json) {
|
|
||||||
try {
|
|
||||||
var data = JSON.parse(json);
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!data.version || parseInt(data.version) !== data.version || parseInt(data.version) !== 3) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// @TODO: Put more checks to make sure it has kdf, iv and all that good stuff
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
exports.isValidWallet = isValidWallet;
|
|
||||||
// @TODO: Make a type for string or arrayish
|
// @TODO: Make a type for string or arrayish
|
||||||
// See: https://github.com/ethereum/pyethsaletool
|
// See: https://github.com/ethereum/pyethsaletool
|
||||||
function decryptCrowdsale(json, password) {
|
function decryptCrowdsale(json, password) {
|
||||||
@ -15310,7 +15353,7 @@ function encrypt(privateKey, password, options, progressCallback) {
|
|||||||
}
|
}
|
||||||
exports.encrypt = encrypt;
|
exports.encrypt = encrypt;
|
||||||
|
|
||||||
},{"../utils/address":59,"../utils/bytes":61,"../utils/keccak256":65,"../utils/pbkdf2":43,"../utils/random-bytes":44,"../utils/utf8":75,"./hdnode":77,"./signing-key":80,"aes-js":1,"scrypt-js":36,"uuid":39}],80:[function(require,module,exports){
|
},{"../utils/address":59,"../utils/bytes":61,"../utils/keccak256":66,"../utils/pbkdf2":43,"../utils/random-bytes":44,"../utils/utf8":76,"./hdnode":78,"./signing-key":81,"aes-js":1,"scrypt-js":36,"uuid":39}],81:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
/**
|
/**
|
||||||
@ -15366,7 +15409,7 @@ var SigningKey = /** @class */ (function () {
|
|||||||
}());
|
}());
|
||||||
exports.SigningKey = SigningKey;
|
exports.SigningKey = SigningKey;
|
||||||
|
|
||||||
},{"../utils/bytes":61,"../utils/errors":62,"../utils/properties":67,"../utils/secp256k1":69,"../utils/types":73}],81:[function(require,module,exports){
|
},{"../utils/bytes":61,"../utils/errors":62,"../utils/properties":68,"../utils/secp256k1":70,"../utils/types":74}],82:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -15391,10 +15434,10 @@ var secretStorage = __importStar(require("./secret-storage"));
|
|||||||
var signing_key_1 = require("./signing-key");
|
var signing_key_1 = require("./signing-key");
|
||||||
var bytes_1 = require("../utils/bytes");
|
var bytes_1 = require("../utils/bytes");
|
||||||
var hash_1 = require("../utils/hash");
|
var hash_1 = require("../utils/hash");
|
||||||
|
var json_wallet_1 = require("../utils/json-wallet");
|
||||||
var keccak256_1 = require("../utils/keccak256");
|
var keccak256_1 = require("../utils/keccak256");
|
||||||
var properties_1 = require("../utils/properties");
|
var properties_1 = require("../utils/properties");
|
||||||
var random_bytes_1 = require("../utils/random-bytes");
|
var random_bytes_1 = require("../utils/random-bytes");
|
||||||
var secp256k1_1 = require("../utils/secp256k1");
|
|
||||||
var transaction_1 = require("../utils/transaction");
|
var transaction_1 = require("../utils/transaction");
|
||||||
var types_1 = require("../utils/types");
|
var types_1 = require("../utils/types");
|
||||||
var errors = __importStar(require("../utils/errors"));
|
var errors = __importStar(require("../utils/errors"));
|
||||||
@ -15533,7 +15576,7 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
return Wallet.fromMnemonic(mnemonic, options.path, options.locale);
|
return Wallet.fromMnemonic(mnemonic, options.path, options.locale);
|
||||||
};
|
};
|
||||||
Wallet.fromEncryptedJson = function (json, password, progressCallback) {
|
Wallet.fromEncryptedJson = function (json, password, progressCallback) {
|
||||||
if (secretStorage.isCrowdsaleWallet(json)) {
|
if (json_wallet_1.isCrowdsaleWallet(json)) {
|
||||||
try {
|
try {
|
||||||
if (progressCallback) {
|
if (progressCallback) {
|
||||||
progressCallback(0);
|
progressCallback(0);
|
||||||
@ -15548,7 +15591,7 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
return Promise.reject(error);
|
return Promise.reject(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (secretStorage.isValidWallet(json)) {
|
else if (json_wallet_1.isSecretStorageWallet(json)) {
|
||||||
return secretStorage.decrypt(json, password, progressCallback).then(function (signingKey) {
|
return secretStorage.decrypt(json, password, progressCallback).then(function (signingKey) {
|
||||||
return new Wallet(signingKey);
|
return new Wallet(signingKey);
|
||||||
});
|
});
|
||||||
@ -15561,41 +15604,13 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return new Wallet(hdnode_1.fromMnemonic(mnemonic, wordlist).derivePath(path));
|
return new Wallet(hdnode_1.fromMnemonic(mnemonic, wordlist).derivePath(path));
|
||||||
};
|
};
|
||||||
/**
|
|
||||||
* Determine if this is an encryped JSON wallet.
|
|
||||||
*/
|
|
||||||
Wallet.isEncryptedWallet = function (json) {
|
|
||||||
return (secretStorage.isValidWallet(json) || secretStorage.isCrowdsaleWallet(json));
|
|
||||||
};
|
|
||||||
/**
|
|
||||||
* Verify a signed message, returning the address of the signer.
|
|
||||||
*/
|
|
||||||
Wallet.verifyMessage = function (message, signature) {
|
|
||||||
signature = bytes_1.hexlify(signature);
|
|
||||||
if (signature.length != 132) {
|
|
||||||
throw new Error('invalid signature');
|
|
||||||
}
|
|
||||||
var digest = hash_1.hashMessage(message);
|
|
||||||
var recoveryParam = parseInt(signature.substring(130), 16);
|
|
||||||
if (recoveryParam >= 27) {
|
|
||||||
recoveryParam -= 27;
|
|
||||||
}
|
|
||||||
if (recoveryParam < 0) {
|
|
||||||
throw new Error('invalid signature');
|
|
||||||
}
|
|
||||||
return secp256k1_1.recoverAddress(digest, {
|
|
||||||
r: signature.substring(0, 66),
|
|
||||||
s: '0x' + signature.substring(66, 130),
|
|
||||||
recoveryParam: recoveryParam
|
|
||||||
});
|
|
||||||
};
|
|
||||||
return Wallet;
|
return Wallet;
|
||||||
}(types_1.Signer));
|
}(types_1.Signer));
|
||||||
exports.Wallet = Wallet;
|
exports.Wallet = Wallet;
|
||||||
|
|
||||||
},{"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/keccak256":65,"../utils/properties":67,"../utils/random-bytes":44,"../utils/secp256k1":69,"../utils/transaction":72,"../utils/types":73,"./hdnode":77,"./secret-storage":79,"./signing-key":80}],82:[function(require,module,exports){
|
},{"../utils/bytes":61,"../utils/errors":62,"../utils/hash":63,"../utils/json-wallet":65,"../utils/keccak256":66,"../utils/properties":68,"../utils/random-bytes":44,"../utils/transaction":73,"../utils/types":74,"./hdnode":78,"./secret-storage":80,"./signing-key":81}],83:[function(require,module,exports){
|
||||||
module.exports = { en: require('./lang-en').langEn }
|
module.exports = { en: require('./lang-en').langEn }
|
||||||
},{"./lang-en":83}],83:[function(require,module,exports){
|
},{"./lang-en":84}],84:[function(require,module,exports){
|
||||||
'use strict';
|
'use strict';
|
||||||
var __extends = (this && this.__extends) || (function () {
|
var __extends = (this && this.__extends) || (function () {
|
||||||
var extendStatics = Object.setPrototypeOf ||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
@ -15640,7 +15655,7 @@ var langEn = new LangEn();
|
|||||||
exports.langEn = langEn;
|
exports.langEn = langEn;
|
||||||
wordlist_1.register(langEn);
|
wordlist_1.register(langEn);
|
||||||
|
|
||||||
},{"./wordlist":84}],84:[function(require,module,exports){
|
},{"./wordlist":85}],85:[function(require,module,exports){
|
||||||
(function (global){
|
(function (global){
|
||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
@ -15699,7 +15714,7 @@ exports.register = register;
|
|||||||
|
|
||||||
exportWordlist = true;
|
exportWordlist = true;
|
||||||
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
||||||
},{"../utils/hash":63,"../utils/properties":67}],85:[function(require,module,exports){
|
},{"../utils/hash":63,"../utils/properties":68}],86:[function(require,module,exports){
|
||||||
"use strict";
|
"use strict";
|
||||||
function __export(m) {
|
function __export(m) {
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||||
@ -15716,5 +15731,5 @@ var ethers = __importStar(require("./ethers"));
|
|||||||
exports.ethers = ethers;
|
exports.ethers = ethers;
|
||||||
__export(require("./ethers"));
|
__export(require("./ethers"));
|
||||||
|
|
||||||
},{"./ethers":50}]},{},[85])(85)
|
},{"./ethers":50}]},{},[86])(86)
|
||||||
});
|
});
|
||||||
|
2
dist/ethers.min.js
vendored
2
dist/ethers.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/ethers.min.js.map
vendored
2
dist/ethers.min.js.map
vendored
File diff suppressed because one or more lines are too long
@ -17,7 +17,7 @@ describe('Test JSON Wallets', function() {
|
|||||||
it(('decrypts wallet - ' + test.name), function() {
|
it(('decrypts wallet - ' + test.name), function() {
|
||||||
this.timeout(1200000);
|
this.timeout(1200000);
|
||||||
|
|
||||||
assert.ok(Wallet.isEncryptedWallet(test.json),
|
assert.ok((ethers.utils.getJsonWalletAddress(test.json) !== null),
|
||||||
'detect encrypted JSON wallet');
|
'detect encrypted JSON wallet');
|
||||||
|
|
||||||
return Wallet.fromEncryptedJson(test.json, test.password).then(function(wallet) {
|
return Wallet.fromEncryptedJson(test.json, test.password).then(function(wallet) {
|
||||||
@ -226,7 +226,7 @@ describe('Test Signing Messages', function() {
|
|||||||
tests.forEach(function(test) {
|
tests.forEach(function(test) {
|
||||||
it(('verifies a message "' + test.name + '"'), function() {
|
it(('verifies a message "' + test.name + '"'), function() {
|
||||||
this.timeout(120000);
|
this.timeout(120000);
|
||||||
var address = Wallet.verifyMessage(test.message, test.signature);
|
var address = ethers.utils.verifyMessage(test.message, test.signature);
|
||||||
assert.equal(address, test.address, 'verifies message signature');
|
assert.equal(address, test.address, 'verifies message signature');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -40,6 +40,8 @@ var hash_1 = require("./hash");
|
|||||||
exports.hashMessage = hash_1.hashMessage;
|
exports.hashMessage = hash_1.hashMessage;
|
||||||
exports.id = hash_1.id;
|
exports.id = hash_1.id;
|
||||||
exports.namehash = hash_1.namehash;
|
exports.namehash = hash_1.namehash;
|
||||||
|
var json_wallet_1 = require("./json-wallet");
|
||||||
|
exports.getJsonWalletAddress = json_wallet_1.getJsonWalletAddress;
|
||||||
var keccak256_1 = require("./keccak256");
|
var keccak256_1 = require("./keccak256");
|
||||||
exports.keccak256 = keccak256_1.keccak256;
|
exports.keccak256 = keccak256_1.keccak256;
|
||||||
var sha2_1 = require("./sha2");
|
var sha2_1 = require("./sha2");
|
||||||
@ -59,6 +61,8 @@ exports.resolveProperties = properties_1.resolveProperties;
|
|||||||
exports.shallowCopy = properties_1.shallowCopy;
|
exports.shallowCopy = properties_1.shallowCopy;
|
||||||
var RLP = __importStar(require("./rlp"));
|
var RLP = __importStar(require("./rlp"));
|
||||||
exports.RLP = RLP;
|
exports.RLP = RLP;
|
||||||
|
var secp256k1_1 = require("./secp256k1");
|
||||||
|
exports.verifyMessage = secp256k1_1.verifyMessage;
|
||||||
var transaction_1 = require("./transaction");
|
var transaction_1 = require("./transaction");
|
||||||
exports.parseTransaction = transaction_1.parse;
|
exports.parseTransaction = transaction_1.parse;
|
||||||
exports.serializeTransaction = transaction_1.serialize;
|
exports.serializeTransaction = transaction_1.serialize;
|
||||||
|
50
utils/json-wallet.js
Normal file
50
utils/json-wallet.js
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
var address_1 = require("./address");
|
||||||
|
function isCrowdsaleWallet(json) {
|
||||||
|
try {
|
||||||
|
var data = JSON.parse(json);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return (data.encseed && data.ethaddr);
|
||||||
|
}
|
||||||
|
exports.isCrowdsaleWallet = isCrowdsaleWallet;
|
||||||
|
function isSecretStorageWallet(json) {
|
||||||
|
try {
|
||||||
|
var data = JSON.parse(json);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!data.version || parseInt(data.version) !== data.version || parseInt(data.version) !== 3) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// @TODO: Put more checks to make sure it has kdf, iv and all that good stuff
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
exports.isSecretStorageWallet = isSecretStorageWallet;
|
||||||
|
//export function isJsonWallet(json: string): boolean {
|
||||||
|
// return (isSecretStorageWallet(json) || isCrowdsaleWallet(json));
|
||||||
|
//}
|
||||||
|
function getJsonWalletAddress(json) {
|
||||||
|
if (isCrowdsaleWallet(json)) {
|
||||||
|
try {
|
||||||
|
return address_1.getAddress(JSON.parse(json).ethaddr);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isSecretStorageWallet(json)) {
|
||||||
|
try {
|
||||||
|
return address_1.getAddress(JSON.parse(json).address);
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
exports.getJsonWalletAddress = getJsonWalletAddress;
|
@ -7,14 +7,12 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var elliptic_1 = require("elliptic");
|
|
||||||
var curve = new elliptic_1.ec('secp256k1');
|
|
||||||
var address_1 = require("./address");
|
var address_1 = require("./address");
|
||||||
var bytes_1 = require("./bytes");
|
var bytes_1 = require("./bytes");
|
||||||
|
var hash_1 = require("./hash");
|
||||||
var keccak256_1 = require("./keccak256");
|
var keccak256_1 = require("./keccak256");
|
||||||
var properties_1 = require("./properties");
|
var properties_1 = require("./properties");
|
||||||
var errors = __importStar(require("./errors"));
|
var errors = __importStar(require("./errors"));
|
||||||
exports.N = '0x' + curve.n.toString(16);
|
|
||||||
var KeyPair = /** @class */ (function () {
|
var KeyPair = /** @class */ (function () {
|
||||||
function KeyPair(privateKey) {
|
function KeyPair(privateKey) {
|
||||||
var keyPair = curve.keyFromPrivate(bytes_1.arrayify(privateKey));
|
var keyPair = curve.keyFromPrivate(bytes_1.arrayify(privateKey));
|
||||||
@ -79,3 +77,20 @@ function computeAddress(key) {
|
|||||||
return address_1.getAddress('0x' + keccak256_1.keccak256(publicKey).substring(26));
|
return address_1.getAddress('0x' + keccak256_1.keccak256(publicKey).substring(26));
|
||||||
}
|
}
|
||||||
exports.computeAddress = computeAddress;
|
exports.computeAddress = computeAddress;
|
||||||
|
function verifyMessage(message, signature) {
|
||||||
|
var sig = bytes_1.splitSignature(signature);
|
||||||
|
var digest = hash_1.hashMessage(message);
|
||||||
|
return recoverAddress(digest, {
|
||||||
|
r: sig.r,
|
||||||
|
s: sig.s,
|
||||||
|
recoveryParam: sig.recoveryParam
|
||||||
|
});
|
||||||
|
}
|
||||||
|
exports.verifyMessage = verifyMessage;
|
||||||
|
// !!!!!! IMPORTANT !!!!!!!!
|
||||||
|
//
|
||||||
|
// This import MUST be at the bottom, otehrwise browserify executes several imports
|
||||||
|
// BEFORE they are exported, resulting in undefined
|
||||||
|
var elliptic_1 = require("elliptic");
|
||||||
|
var curve = new elliptic_1.ec('secp256k1');
|
||||||
|
exports.N = '0x' + curve.n.toString(16);
|
||||||
|
@ -62,30 +62,6 @@ function searchPath(object, path) {
|
|||||||
}
|
}
|
||||||
return currentChild;
|
return currentChild;
|
||||||
}
|
}
|
||||||
function isCrowdsaleWallet(json) {
|
|
||||||
try {
|
|
||||||
var data = JSON.parse(json);
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return (data.encseed && data.ethaddr);
|
|
||||||
}
|
|
||||||
exports.isCrowdsaleWallet = isCrowdsaleWallet;
|
|
||||||
function isValidWallet(json) {
|
|
||||||
try {
|
|
||||||
var data = JSON.parse(json);
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!data.version || parseInt(data.version) !== data.version || parseInt(data.version) !== 3) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// @TODO: Put more checks to make sure it has kdf, iv and all that good stuff
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
exports.isValidWallet = isValidWallet;
|
|
||||||
// @TODO: Make a type for string or arrayish
|
// @TODO: Make a type for string or arrayish
|
||||||
// See: https://github.com/ethereum/pyethsaletool
|
// See: https://github.com/ethereum/pyethsaletool
|
||||||
function decryptCrowdsale(json, password) {
|
function decryptCrowdsale(json, password) {
|
||||||
|
@ -22,10 +22,10 @@ var secretStorage = __importStar(require("./secret-storage"));
|
|||||||
var signing_key_1 = require("./signing-key");
|
var signing_key_1 = require("./signing-key");
|
||||||
var bytes_1 = require("../utils/bytes");
|
var bytes_1 = require("../utils/bytes");
|
||||||
var hash_1 = require("../utils/hash");
|
var hash_1 = require("../utils/hash");
|
||||||
|
var json_wallet_1 = require("../utils/json-wallet");
|
||||||
var keccak256_1 = require("../utils/keccak256");
|
var keccak256_1 = require("../utils/keccak256");
|
||||||
var properties_1 = require("../utils/properties");
|
var properties_1 = require("../utils/properties");
|
||||||
var random_bytes_1 = require("../utils/random-bytes");
|
var random_bytes_1 = require("../utils/random-bytes");
|
||||||
var secp256k1_1 = require("../utils/secp256k1");
|
|
||||||
var transaction_1 = require("../utils/transaction");
|
var transaction_1 = require("../utils/transaction");
|
||||||
var types_1 = require("../utils/types");
|
var types_1 = require("../utils/types");
|
||||||
var errors = __importStar(require("../utils/errors"));
|
var errors = __importStar(require("../utils/errors"));
|
||||||
@ -164,7 +164,7 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
return Wallet.fromMnemonic(mnemonic, options.path, options.locale);
|
return Wallet.fromMnemonic(mnemonic, options.path, options.locale);
|
||||||
};
|
};
|
||||||
Wallet.fromEncryptedJson = function (json, password, progressCallback) {
|
Wallet.fromEncryptedJson = function (json, password, progressCallback) {
|
||||||
if (secretStorage.isCrowdsaleWallet(json)) {
|
if (json_wallet_1.isCrowdsaleWallet(json)) {
|
||||||
try {
|
try {
|
||||||
if (progressCallback) {
|
if (progressCallback) {
|
||||||
progressCallback(0);
|
progressCallback(0);
|
||||||
@ -179,7 +179,7 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
return Promise.reject(error);
|
return Promise.reject(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (secretStorage.isValidWallet(json)) {
|
else if (json_wallet_1.isSecretStorageWallet(json)) {
|
||||||
return secretStorage.decrypt(json, password, progressCallback).then(function (signingKey) {
|
return secretStorage.decrypt(json, password, progressCallback).then(function (signingKey) {
|
||||||
return new Wallet(signingKey);
|
return new Wallet(signingKey);
|
||||||
});
|
});
|
||||||
@ -192,34 +192,6 @@ var Wallet = /** @class */ (function (_super) {
|
|||||||
}
|
}
|
||||||
return new Wallet(hdnode_1.fromMnemonic(mnemonic, wordlist).derivePath(path));
|
return new Wallet(hdnode_1.fromMnemonic(mnemonic, wordlist).derivePath(path));
|
||||||
};
|
};
|
||||||
/**
|
|
||||||
* Determine if this is an encryped JSON wallet.
|
|
||||||
*/
|
|
||||||
Wallet.isEncryptedWallet = function (json) {
|
|
||||||
return (secretStorage.isValidWallet(json) || secretStorage.isCrowdsaleWallet(json));
|
|
||||||
};
|
|
||||||
/**
|
|
||||||
* Verify a signed message, returning the address of the signer.
|
|
||||||
*/
|
|
||||||
Wallet.verifyMessage = function (message, signature) {
|
|
||||||
signature = bytes_1.hexlify(signature);
|
|
||||||
if (signature.length != 132) {
|
|
||||||
throw new Error('invalid signature');
|
|
||||||
}
|
|
||||||
var digest = hash_1.hashMessage(message);
|
|
||||||
var recoveryParam = parseInt(signature.substring(130), 16);
|
|
||||||
if (recoveryParam >= 27) {
|
|
||||||
recoveryParam -= 27;
|
|
||||||
}
|
|
||||||
if (recoveryParam < 0) {
|
|
||||||
throw new Error('invalid signature');
|
|
||||||
}
|
|
||||||
return secp256k1_1.recoverAddress(digest, {
|
|
||||||
r: signature.substring(0, 66),
|
|
||||||
s: '0x' + signature.substring(66, 130),
|
|
||||||
recoveryParam: recoveryParam
|
|
||||||
});
|
|
||||||
};
|
|
||||||
return Wallet;
|
return Wallet;
|
||||||
}(types_1.Signer));
|
}(types_1.Signer));
|
||||||
exports.Wallet = Wallet;
|
exports.Wallet = Wallet;
|
||||||
|
Loading…
Reference in New Issue
Block a user