Skip to content

Commit 2c2f95f

Browse files
committed
Remove bitski support
1 parent e97f777 commit 2c2f95f

14 files changed

+146
-1532
lines changed

api/assets/login.svg

Lines changed: 136 additions & 1 deletion
Loading

api/guides/dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You also have an overview of your deployed ledgers and most importantly, your cu
1313

1414
## Login
1515

16-
To use the Dashboard, you need an existing Ethereum address to manage your ledgers. The wallet needs to be handled by either [Metamask](https://metamask.io/) bridge or [Bitski](https://www.bitski.com/) wallet. So if you don't have any, you first have to create one. Once your client of choice is ready, you can login to the dashboard.
16+
To use the Dashboard, you need an existing Ethereum address to manage your ledgers. The wallet needs to be handled by either [Metamask](https://metamask.io/) bridge. So if you don't have any, you first have to create one. Once your client is ready, you can login to the dashboard.
1717

1818
![login](../assets/login.svg)
1919

api/guides/destroy-asset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If asset represents a real world object or something else that can be destroyed
44

55
## Prerequisites
66

7-
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask/Bitski account with some credits.
7+
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask account with some credits.
88

99
::: warning
1010
Asset ledger must have `DESTROY_ASSET` capability.

api/guides/issue-asset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Click [here](https://codesandbox.io/s/github/0xcert/api-example-order?module=%2F
88

99
## Prerequisites
1010

11-
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger. You will also need a MetaMask/Bitski account with some credits.
11+
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger. You will also need a MetaMask account with some credits.
1212

1313
## Usage overview
1414

api/guides/providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
As explained previously, the 0xcert ecosystem tends to be platform-agnostic, thus it is not created for merely one blockchain or one specific platform. It aims to provide a consistently optimal developing experience, regardless of the platform you employ. To achieve this, the 0xcert ecosystem consists of several modules, and each module needs a provider object to tell the module how to operate. Each provider operates on the same principles, but can also have its own distinctive characteristics.
44

5-
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](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html#metamask-provider), while for communication on the back-end you could use [HttpProvider](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html#http-provider). For more information about other providers for Ethereum, such as Bitski, please click [here](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html).
5+
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](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html#metamask-provider), while for communication on the back-end you could use [HttpProvider](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html#http-provider). For more information about other providers for Ethereum, please click [here](https://docs.0xcert.org/framework/v2/api/ethereum-connectors.html).
66

77
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/).
88

api/guides/set-asset-ledger-abilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Click [here](https://codesandbox.io/s/github/0xcert/api-example-order?module=%2F
88

99
## Prerequisites
1010

11-
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger. You will also need a MetaMask/Bitski account with some credits.
11+
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger. You will also need a MetaMask account with some credits.
1212

1313
## Usage overview
1414

api/guides/transfer-asset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you are an asset owner you have the ability to transfer this ownership to som
44

55
## Prerequisites
66

7-
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask/Bitski account with some credits.
7+
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask account with some credits.
88

99
## Usage overview
1010

api/guides/transfer-value.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Click [here](https://codesandbox.io/s/github/0xcert/api-example-order?module=%2F
88

99
## Prerequisites
1010

11-
You will need a MetaMask/Bitski account with some credits.
11+
You will need a MetaMask account with some credits.
1212

1313
## Usage overview
1414

api/guides/update-asset-imprint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ In this guide we will update an existing assets imprint.
55

66
## Prerequisites
77

8-
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask/Bitski account with some credits.
8+
In this guide, we will assume you have gone through the [Asset ledger deployment](asset-ledger-deployment.html#asset-ledger-deployment) guide and have deployed an asset ledger and that you have gone trough [Issue asset](asset-ledger-deployment.html#asset-ledger-deployment) guide and created asset. You will also need a MetaMask account with some credits.
99

1010
::: warning
1111
Asset ledger must have `UPDATE_ASSET` capability.

0 commit comments

Comments
 (0)