Skip to content

Commit

Permalink
Merge pull request #145 from UniqueNetwork/remove-sapphire
Browse files Browse the repository at this point in the history
remove sapphire from docs
  • Loading branch information
Maksandre authored Mar 1, 2024
2 parents f0fb626 + 7fe3b41 commit 1c8d847
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 52 deletions.
7 changes: 0 additions & 7 deletions docs/.vuepress/components/SubEthCoder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@
<CopyButton :data="converted.toUnique"/>
{{ converted.toUnique }}
</p>
<p>
Sapphire format (prefix 8883):
<CopyButton :data="converted.toSapphire"/>
{{ converted.toSapphire }}
</p>
<p>
Eth mirror:
<CopyButton :data="converted.toEth"/>
Expand Down Expand Up @@ -82,7 +77,6 @@ const converted = reactive({
toSub: '',
toQuartz: '',
toUnique: '',
toSapphire: '',
toKusama: '',
toPolkadot: '',
toEth: '',
Expand Down Expand Up @@ -114,7 +108,6 @@ const convertInputSubToEth = async () => {
converted.toEth,
converted.toQuartz,
converted.toUnique,
converted.toSapphire,
converted.toPolkadot,
converted.toKusama,
converted.toSubNormalized,
Expand Down
20 changes: 0 additions & 20 deletions docs/.vuepress/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ export enum UNIQUE_CHAINS {
unique= 'unique',
quartz= 'quartz',
opal = 'opal',
sapphire = 'sapphire',
}

export interface AddEthereumChainParameter {
Expand Down Expand Up @@ -82,25 +81,6 @@ export const uniqueChainsParameters: Record<UNIQUE_CHAINS, ChainData> = {
ss58Prefix: 42,
color: `#0CB6B8`,
},
[UNIQUE_CHAINS.sapphire]: {
metamask: {
chainId: "0x22b3",
chainName: "Sapphire by Unique",
nativeCurrency: {
name: 'Quartz',
symbol: 'QTZ',
decimals: 18,
},
rpcUrls: [`https://rpc-sapphire.unique.network`],
iconUrls: [`https://ipfs.unique.network/ipfs/Qmd1PGt4cDRjFbh4ihP5QKEd4XQVwN1MkebYKdF56V74pf`],
blockExplorerUrls: ['https://uniquescan.io/sapphire/'],
},

//unique custom fields
websocketUrls: [`wss://ws-sapphire.unique.network`],
ss58Prefix: 8883,
color: `#5D59FF`,
}
}

export const UNIQUE_IPFS_GATEWAY = `https://ipfs.unique.network/ipfs`
Expand Down
2 changes: 0 additions & 2 deletions docs/business/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ Unique Network provides 4 chains, each of them has its own purpose and specifics

**Opal** is a our testnet. It receives updates earlier than Quartz, and since the OPL tokens are free (you can get them via the [Telegram bot](https://t.me/unique2faucet_opal_bot "Telegram bot")), you can test anything on this network for free.

**Sapphire** is a the mainnet for production environment with the quickest time to market (usually, 1 week after Opal testnet). So, it proves the early access to the new features on the production environment.

### Why Unique

Unique Network is the next generation NFT chain for advanced use cases and mass adoption.
Expand Down
1 change: 0 additions & 1 deletion docs/concepts/addresses/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ The prefixes that Unique Network uses:
- For Unique - **7391**, gives "**un**" at the beginning of the encoded address.
- For Quartz - **255**, gives "**yG**" at the beginning of the encoded address.
- For Opal - **42**, gives default "**5**" at the beginning of the encoded address.
- For Sapphire - **8883**, gives default "**px**" at the beginning of the encoded address.

### Ethereum addresses

Expand Down
2 changes: 1 addition & 1 deletion docs/concepts/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

**UNQ** is the Unique token, the cryptocurrency of the Unique network. Used to pay commissions on the Unique network.

**QTZ** is the Quartz token, the cryptocurrency of the Quartz network. Used to pay commissions on the Quartz and Sapphire networks.
**QTZ** is the Quartz token, the cryptocurrency of the Quartz network. Used to pay commissions on the Quartz network.

**NFT** (or Non-Fungible Token) is a unique indivisible token. It reflects some unique indivisible essence of the real or virtual world. For example, a car, an apartment, a diamond, a cryptocurrency, a cryptobank, or any game item. The Ethereum blockchain has an NFT token standard known as ERC-721.

Expand Down
19 changes: 0 additions & 19 deletions docs/networks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,6 @@ have value and are never destroyed by the network updates.
QTZ token can be obtained on [MEXC](https://www.mexc.com/ru-RU/exchange/QTZ_USDT) or
with [Karura SWAP](https://apps.karura.network/swap).


## Sapphire - solochain

::: danger Under construction
Sapphire mainnet is under construction, live soon.
:::

The Sapphire Mainnet is the production environment.
It is the mainnet with the quickest time to market (usually, 1 week after Opal testnet).

<ChainTable :chainName="UNIQUE_CHAINS.sapphire" disableMetamask/>

Sapphire network shares QTZ token with the Quartz mainnet. I.e. transaction fees on Sapphire can be paid only with QTZ,
which can be obtained via transferring tokens from Quartz.

QTZ token can be obtained on [MEXC](https://www.mexc.com/ru-RU/exchange/QTZ_USDT) or
with [Karura SWAP](https://apps.karura.network/swap).


## Opal - testnet

Unique Network provides an Opal Testnet to its users to play with all blockchain features in a safe and free
Expand Down
2 changes: 0 additions & 2 deletions docs/tutorials/wallet-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

[Scan API for Opal testnet](https://api-opal.uniquescan.io/v1/graphql)

[Scan API for Sapphire solochain](https://api-sapphire.uniquescan.io/v1/graphql)

Every endpoint provides a GraphQL playground.

## Examples
Expand Down

0 comments on commit 1c8d847

Please sign in to comment.