Skip to content

Commit

Permalink
Allow JsonRpcSigner to override from if it matches Signer (#862).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 3, 2020
1 parent 2bc7bb6 commit 1a89c59
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions packages/providers/src.ts/json-rpc-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function timer(timeout: number): Promise<any> {
function getResult(payload: { error?: { code?: number, data?: any, message?: string }, result?: any }): any {
if (payload.error) {
// @TODO: not any
let error: any = new Error(payload.error.message);
const error: any = new Error(payload.error.message);
error.code = payload.error.code;
error.data = payload.error.data;
throw error;
Expand Down Expand Up @@ -102,7 +102,7 @@ export class JsonRpcSigner extends Signer {
sendUncheckedTransaction(transaction: Deferrable<TransactionRequest>): Promise<string> {
transaction = shallowCopy(transaction);

let fromAddress = this.getAddress().then((address) => {
const fromAddress = this.getAddress().then((address) => {
if (address) { address = address.toLowerCase(); }
return address;
});
Expand All @@ -111,18 +111,25 @@ export class JsonRpcSigner extends Signer {
// wishes to use this, it is easy to specify explicitly, otherwise
// we look it up for them.
if (transaction.gasLimit == null) {
let estimate = shallowCopy(transaction);
const estimate = shallowCopy(transaction);
estimate.from = fromAddress;
transaction.gasLimit = this.provider.estimateGas(estimate);
}

return Promise.all([
resolveProperties(transaction),
fromAddress
]).then((results) => {
let tx = results[0];
let hexTx = (<any>this.provider.constructor).hexlifyTransaction(tx);
hexTx.from = results[1];
return resolveProperties({
tx: resolveProperties(transaction),
sender: fromAddress
}).then(({ tx, sender }) => {
if (tx.from != null) {
if (tx.from.toLowerCase() !== sender) {
logger.throwArgumentError("from address mismatch", "transaction", transaction);
}
} else {
tx.from = sender;
}

const hexTx = (<any>this.provider.constructor).hexlifyTransaction(tx, { from: true });

return this.provider.send("eth_sendTransaction", [ hexTx ]).then((hash) => {
return hash;
}, (error) => {
Expand Down Expand Up @@ -170,7 +177,7 @@ export class JsonRpcSigner extends Signer {
}

signMessage(message: Bytes | string): Promise<string> {
let data = ((typeof(message) === "string") ? toUtf8Bytes(message): message);
const data = ((typeof(message) === "string") ? toUtf8Bytes(message): message);
return this.getAddress().then((address) => {

// https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign
Expand All @@ -179,7 +186,7 @@ export class JsonRpcSigner extends Signer {
}

unlock(password: string): Promise<boolean> {
let provider = this.provider;
const provider = this.provider;

return this.getAddress().then(function(address) {
return provider.send("personal_unlockAccount", [ address.toLowerCase(), password, null ]);
Expand Down Expand Up @@ -296,7 +303,7 @@ export class JsonRpcProvider extends BaseProvider {
}

send(method: string, params: Array<any>): Promise<any> {
let request = {
const request = {
method: method,
params: params,
id: (this._nextId++),
Expand Down Expand Up @@ -429,9 +436,9 @@ export class JsonRpcProvider extends BaseProvider {

_startPending(): void {
if (this._pendingFilter != null) { return; }
let self = this;
const self = this;

let pendingFilter: Promise<number> = this.send("eth_newPendingTransactionFilter", []);
const pendingFilter: Promise<number> = this.send("eth_newPendingTransactionFilter", []);
this._pendingFilter = pendingFilter;

pendingFilter.then(function(filterId) {
Expand Down Expand Up @@ -491,7 +498,7 @@ export class JsonRpcProvider extends BaseProvider {
// Check only allowed properties are given
const allowed = shallowCopy(allowedTransactionKeys);
if (allowExtra) {
for (let key in allowExtra) {
for (const key in allowExtra) {
if (allowExtra[key]) { allowed[key] = true; }
}
}
Expand Down

0 comments on commit 1a89c59

Please sign in to comment.