Skip to content

Commit ecd84bb

Browse files
version bump
1 parent adff31c commit ecd84bb

File tree

2 files changed

+82
-82
lines changed

2 files changed

+82
-82
lines changed

docs/api.md

Lines changed: 80 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,86 @@ Class for all Litecoin based methods.
12481248

12491249

12501250

1251+
### src/signature.js
1252+
1253+
1254+
#### new Signature()
1255+
1256+
Contains methods pertaining to the `/signatures` endpoint of Amberdata's API.
1257+
1258+
1259+
1260+
1261+
1262+
1263+
##### Returns
1264+
1265+
1266+
- `Void`
1267+
1268+
1269+
1270+
#### Signature.constructor(web3data)
1271+
1272+
Creates an instance of Signature.
1273+
1274+
1275+
1276+
1277+
##### Parameters
1278+
1279+
| Name | Type | Description | |
1280+
| ---- | ---- | ----------- | -------- |
1281+
| web3data | `object` | - The web3data instance. |   |
1282+
1283+
1284+
1285+
1286+
##### Examples
1287+
1288+
```javascript
1289+
new Signature(new Web3Data('API_KEY'))
1290+
```
1291+
1292+
1293+
##### Returns
1294+
1295+
1296+
- `Void`
1297+
1298+
1299+
1300+
#### Signature.getSignature(hash)
1301+
1302+
Retrieves detailed information about the specified signature hash.
1303+
1304+
1305+
1306+
1307+
##### Parameters
1308+
1309+
| Name | Type | Description | |
1310+
| ---- | ---- | ----------- | -------- |
1311+
| hash | `string` | - The (keccak 256) of the signature. |   |
1312+
1313+
1314+
1315+
1316+
##### Examples
1317+
1318+
```javascript
1319+
const signatureDetails = await web3data.signature.getSignature('0xe2f0a05a')
1320+
```
1321+
1322+
1323+
##### Returns
1324+
1325+
1326+
- `Promise.<Array>` Information pertaining to the specified signature hash.
1327+
1328+
1329+
1330+
12511331
### src/market.js
12521332

12531333

@@ -1942,86 +2022,6 @@ const transfers = await web3data.token.getTransfers('0x06012c8cf97bead5deae23707
19422022

19432023

19442024

1945-
### src/signature.js
1946-
1947-
1948-
#### new Signature()
1949-
1950-
Contains methods pertaining to the `/signatures` endpoint of Amberdata's API.
1951-
1952-
1953-
1954-
1955-
1956-
1957-
##### Returns
1958-
1959-
1960-
- `Void`
1961-
1962-
1963-
1964-
#### Signature.constructor(web3data)
1965-
1966-
Creates an instance of Signature.
1967-
1968-
1969-
1970-
1971-
##### Parameters
1972-
1973-
| Name | Type | Description | |
1974-
| ---- | ---- | ----------- | -------- |
1975-
| web3data | `object` | - The web3data instance. |   |
1976-
1977-
1978-
1979-
1980-
##### Examples
1981-
1982-
```javascript
1983-
new Signature(new Web3Data('API_KEY'))
1984-
```
1985-
1986-
1987-
##### Returns
1988-
1989-
1990-
- `Void`
1991-
1992-
1993-
1994-
#### Signature.getSignature(hash)
1995-
1996-
Retrieves detailed information about the specified signature hash.
1997-
1998-
1999-
2000-
2001-
##### Parameters
2002-
2003-
| Name | Type | Description | |
2004-
| ---- | ---- | ----------- | -------- |
2005-
| hash | `string` | - The (keccak 256) of the signature. |   |
2006-
2007-
2008-
2009-
2010-
##### Examples
2011-
2012-
```javascript
2013-
const signatureDetails = await web3data.signature.getSignature('0xe2f0a05a')
2014-
```
2015-
2016-
2017-
##### Returns
2018-
2019-
2020-
- `Promise.<Array>` Information pertaining to the specified signature hash.
2021-
2022-
2023-
2024-
20252025
### src/transaction.js
20262026

20272027

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3data-js",
3-
"version": "0.7.3",
3+
"version": "0.7.4",
44
"description": "A javascript wrapper for accessing amberdata's public API.",
55
"main": "index.js",
66
"browser": "dist/web3data.min.js",
@@ -130,4 +130,4 @@
130130
"jsdoc/valid-types": 1
131131
}
132132
}
133-
}
133+
}

0 commit comments

Comments
 (0)