Skip to content

Commit b7420f1

Browse files
committed
v4.2.0: add explorerUrlFor token
1 parent a3af685 commit b7420f1

File tree

10 files changed

+45
-11
lines changed

10 files changed

+45
-11
lines changed

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,27 @@ Blockchain data is provided in the following structure:
5656
decimals: String, // 18
5757
},
5858
explorer: String (URL), // https://etherscan.io, https://bncscan.com, ...
59-
explorerUrlFor: Function ({ transaction (with id) }) returns String, // https://etherscan.io/tx/..., https://etherscan.io/tx/...
59+
explorerUrlFor: Function ({ transaction || token }) returns String, // https://etherscan.io/tx/..., https://etherscan.io/token/...
6060
rpc: String (URL) // ...
6161
}
6262
```
6363

64+
### explorerUrlFor
65+
66+
#### Transaction
67+
68+
```javascript
69+
blockchain.explorerUrlFor({ transaction: { id: '0x51ae8875028b7ed004253f679076851abbd3a49e26faf8d7dac6bb283ca10536' } })
70+
// https://etherscan.io/tx/0x51ae8875028b7ed004253f679076851abbd3a49e26faf8d7dac6bb283ca10536
71+
```
72+
73+
#### Token
74+
75+
```javascript
76+
blockchain.explorerUrlFor({ token: '0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb' })
77+
// https://etherscan.io/token/0xa0bEd124a09ac2Bd941b10349d8d224fe3c955eb
78+
```
79+
6480
## Functionalities
6581

6682
### all: Retreive all information for all blockchains

dist/esm/index.js

+6-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/index.js

+6-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@depay/web3-blockchains",
33
"moduleName": "Web3Blockchains",
4-
"version": "4.1.0",
4+
"version": "4.2.0",
55
"description": "JavaScript library containing aggregated information and abstractions for web3 blockchains.",
66
"main": "dist/umd/index.js",
77
"module": "dist/esm/index.js",

src/blockchains/bsc.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/blockchains/ethereum.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/blockchains/polygon.js

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/units/blockchains/bsc.spec.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/units/blockchains/ethereum.spec.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/units/blockchains/polygon.js tests/units/blockchains/polygon.spec.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)