aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web3-wrapper
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-24 23:13:21 +0800
committerFabio Berger <me@fabioberger.com>2018-07-24 23:13:21 +0800
commit56f21f4bab2fd844961eb3f8366a421660d04706 (patch)
tree287b86096263641b9d0c3e7441dfdeb85e1ebb93 /packages/web3-wrapper
parent9a36e73f4ed62871b2c39d129de0ac2c04aeba2b (diff)
parenta05b14e4d9659be1cc495ee33fd8962ce773f87f (diff)
downloaddexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar.gz
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar.bz2
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar.lz
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar.xz
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.tar.zst
dexon-sol-tools-56f21f4bab2fd844961eb3f8366a421660d04706.zip
Merge v2-prototype
Diffstat (limited to 'packages/web3-wrapper')
-rw-r--r--packages/web3-wrapper/CHANGELOG.json18
-rw-r--r--packages/web3-wrapper/CHANGELOG.md21
-rw-r--r--packages/web3-wrapper/src/web3_wrapper.ts14
3 files changed, 51 insertions, 2 deletions
diff --git a/packages/web3-wrapper/CHANGELOG.json b/packages/web3-wrapper/CHANGELOG.json
index 200836a82..975f83037 100644
--- a/packages/web3-wrapper/CHANGELOG.json
+++ b/packages/web3-wrapper/CHANGELOG.json
@@ -1,5 +1,23 @@
[
{
+ "version": "1.1.0",
+ "changes": [
+ {
+ "note": "Add `getTransactionByHashAsync` method",
+ "pr": 847
+ }
+ ]
+ },
+ {
+ "timestamp": 1532357734,
+ "version": "1.0.1",
+ "changes": [
+ {
+ "note": "Dependencies updated"
+ }
+ ]
+ },
+ {
"timestamp": 1532043000,
"version": "1.0.0",
"changes": [
diff --git a/packages/web3-wrapper/CHANGELOG.md b/packages/web3-wrapper/CHANGELOG.md
index 324e60643..b17baaeeb 100644
--- a/packages/web3-wrapper/CHANGELOG.md
+++ b/packages/web3-wrapper/CHANGELOG.md
@@ -1,10 +1,20 @@
<!--
-This file is auto-generated using the monorepo-scripts package. Don't edit directly.
+changelogUtils.file is auto-generated using the monorepo-scripts package. Don't edit directly.
Edit the package's CHANGELOG.json file only.
-->
CHANGELOG
+## v1.0.1 - _July 23, 2018_
+
+ * Dependencies updated
+
+## v1.0.0 - _July 20, 2018_
+
+ * Export `marshaller` utility file. (#829)
+ * Add `getNodeTypeAsync` method (#812)
+ * Stop exporting uniqueVersionIds object (#897)
+
## v0.7.3 - _July 18, 2018_
* Dependencies updated
@@ -19,7 +29,14 @@ CHANGELOG
## v0.7.0 - _June 4, 2018_
- * Add default parameters when sending a raw payload
+ * Add `web3Wrapper.getContractCodeAsync` (#675)
+ * Add `web3Wrapper.getTransactionTraceAsync` (#675)
+ * Add `web3Wrapper.getBlockWithTransactionDataAsync` (#675)
+ * Add exported uniqueVersionIds object (#622)
+ * Update increaseTimeAsync to work with Geth (#622)
+ * Make callAsync throw if raw call result is 0x (null) (#622)
+ * Add new setHeadAsync method (#622)
+ * Improve performance of awaitTransactionMinedAsync by immediately checking if the transaction was already mined instead of waiting for the first interval. (#688)
## v0.6.4 - _May 22, 2018_
diff --git a/packages/web3-wrapper/src/web3_wrapper.ts b/packages/web3-wrapper/src/web3_wrapper.ts
index 883a99bb4..dd35e2094 100644
--- a/packages/web3-wrapper/src/web3_wrapper.ts
+++ b/packages/web3-wrapper/src/web3_wrapper.ts
@@ -14,6 +14,7 @@ import {
Provider,
RawLogEntry,
TraceParams,
+ Transaction,
TransactionReceipt,
TransactionReceiptWithDecodedLogs,
TransactionTrace,
@@ -221,6 +222,19 @@ export class Web3Wrapper {
return transactionReceipt;
}
/**
+ * Retrieves the transaction data for a given transaction
+ * @param txHash Transaction hash
+ * @returns The raw transaction data
+ */
+ public async getTransactionByHashAsync(txHash: string): Promise<Transaction> {
+ assert.isHexString('txHash', txHash);
+ const transaction = await this._sendRawPayloadAsync<Transaction>({
+ method: 'eth_getTransactionByHash',
+ params: [txHash],
+ });
+ return transaction;
+ }
+ /**
* Retrieves an accounts Ether balance in wei
* @param owner Account whose balance you wish to check
* @returns Balance in wei