You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: framework/v2/guides/providers.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ As explained previously, the 0xcert Framework tends to be platform-agnostic, thu
4
4
5
5
Each provider operates on the same principles, but can also have its own distinctive characteristics. The current version of the Framework supports the Ethereum and the Wanchain blockchains. Soon, more platforms will be added.
6
6
7
-
Even within the same blockchain, you can use multiple providers depending on your needs. If you would like to communicate with the blockchain on the front-end, you could use [MetamaskProvider](/api/ethereum.html#metamask-provider), while for communication on the back-end you could use [HttpProvider](/api/ethereum.html#http-provider). For more information about other providers for Ethereum, such as Bitski, please click [here](/api/ethereum.html#api-ethereum), and to learn more about providers for Wanchain, please click [here](/api/wanchain.html#api-wanchain).
7
+
Even within the same blockchain, you can use multiple providers depending on your needs. If you would like to communicate with the blockchain on the front-end, you could use [MetamaskProvider](/framework/v2/api/ethereum-connectors.html#metamask-provider), while for communication on the back-end you could use [HttpProvider](/framework/v2/api/ethereum-connectors.html#http-provider). For more information about other providers for Ethereum, such as Bitski, please click [here](/framework/v2/api/ethereum-connectors.html#api-ethereum), and to learn more about providers for Wanchain, please click [here](/framework/v2/api/wanchain-connectors.html#api-wanchain).
8
8
9
9
In this guide, we will be using the MetaMask provider for the Ethereum blockchain. [MetaMask](https://metamask.io/) is a popular plug-in that allows you to create and store the private keys for your Ethereum account inside your browser or mobile device. It works as a bridge between your browser and the Ethereum blockchain through its own infrastructure. MetaMask can also be paired with hardware wallets such as [Ledger](https://www.ledger.com/) or [Trezor](https://trezor.io/).
10
10
@@ -20,11 +20,11 @@ We recommend you employ the provider module as an NPM package in your applicatio
20
20
$ npm i --save @0xcert/ethereum-metamask-provider
21
21
```
22
22
23
-
On our official [GitHub repository](https://github.com/0xcert/framework), we also host a compiled and minimized JavaScript file that can be directly implemented into your website. Please refer to the [API](/api/ethereum.html) section to learn more about other providers.
23
+
On our official [GitHub repository](https://github.com/0xcert/framework), we also host a compiled and minimized JavaScript file that can be directly implemented into your website. Please refer to the [API](/framework/v2/api/ethereum-connectors.html) section to learn more about other providers.
24
24
25
25
## Usage overview
26
26
27
-
To start developing the application, we have to first instantiate the [MetamaskProvider](/api/ethereum.html#metamask-provider) provider class. This is usually only needed once within the application.
27
+
To start developing the application, we have to first instantiate the [MetamaskProvider](/framework/v2/api/ethereum-connectors.html#metamask-provider) provider class. This is usually only needed once within the application.
0 commit comments