Skip to content

Commit

Permalink
Deploying to gh-pages from @ b1942c2 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
TinaKT committed Nov 21, 2024
1 parent b466aa8 commit 2ea95d4
Show file tree
Hide file tree
Showing 559 changed files with 842 additions and 826 deletions.
Binary file modified en/mainnet/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/mainnet/.doctrees/net/release-notes/release-notes-lp.doctree
Binary file not shown.
14 changes: 10 additions & 4 deletions en/mainnet/_sources/net/release-notes/release-notes-lp.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -293,14 +293,20 @@ Wallets
|mw-gen2| for Android
---------------------

July 31, 2024
November 20, 2024

Version 1.7.0 adds a deprecation notice.
This wallet is going away soon, move your account to |cryptox| to continue using Concordium.
No need to create a new wallet – just enter your recovery phrase into |cryptox|, and you're good to go!
Version 1.8.0 includes the following update:

Added ability to reveal the wallet private key (seed) if the seed phrase can't be revealed.

.. dropdown:: Previous releases

.. dropdown:: |mw-gen2| 1.7.0 - July 31, 2024

Version 1.7.0 adds a deprecation notice.
This wallet is going away soon, move your account to |cryptox| to continue using Concordium.
No need to create a new wallet – just enter your recovery phrase into |cryptox|, and you're good to go!

.. dropdown:: |mw-gen2| 1.6.0 - June 26, 2024

Version 1.6.0 removes shielding. You can still see your shielded balance and history, but to unshield the funds |cryptox| must be used.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
selector_to_html = {"a[href=\"../resources/glossary.html#term-Private-keys\"]": "<dt id=\"term-Private-keys\">Private keys</dt><dd><p>A random, secret string that is used in cryptography and cryptocurrency to prove ownership of an account and sign transactions to send, spend, delegate, and stake CCDs. A wallet consists of a set of public addresses and private keys. Anyone can deposit cryptocurrency in a public address, but funds cannot be removed from an address without the corresponding private key.</p></dd>", "a[href=\"../resources/glossary.html#term-CCD\"]": "<dt id=\"term-CCD\">CCD</dt><dd><p>CCD is the currency of the Concordium blockchain. CCD can be used for multiple purposes:</p><p>The smallest subdivision of CCD is the \u00b5CCD (micro CCD), with 1 CCD = 1,000,000 \u00b5CCD. This means that CCD amounts are given with up to six decimal places of precision.</p></dd>", "a[href=\"../resources/glossary.html#term-Secret-recovery-phrase\"]": "<dt id=\"term-Secret-recovery-phrase\">Secret recovery phrase</dt><dd><p>Also known as a seed phrase, recovery phrase, mnemonic phrase, mnemonic seed, or backup phrase. A group of random words generated by the wallet that allows you to access the CCDs stored in it across devices or in case of non-functioning devices. Secret recovery phrase is supported by Concordium Wallet for Mobile and CryptoX Concordium Wallet.</p></dd>", "a[href=\"../resources/glossary.html#term-Identity-Provider\"]": "<dt id=\"term-Identity-Provider\">Identity Provider</dt><dd><p>A person or organization that performs off-chain identification of users. Users are required to obtain an identity object from an identity provider in order to open an account on the Concordium Platform.</p></dd>"}
skip_classes = ["headerlink", "sd-stretched-link"]

window.onload = function () {
for (const [select, tip_html] of Object.entries(selector_to_html)) {
const links = document.querySelectorAll(`article.bd-article ${select}`);
for (const link of links) {
if (skip_classes.some(c => link.classList.contains(c))) {
continue;
}

tippy(link, {
content: tip_html,
allowHTML: true,
arrow: true,
placement: 'auto-start', maxWidth: 500, interactive: false,

});
};
};
console.log("tippy tips loaded!");
};

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Loading

0 comments on commit 2ea95d4

Please sign in to comment.