Skip to content

Commit

Permalink
Deploying to gh-pages from @ 511e556 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
TinaKT committed Dec 19, 2024
1 parent bb22b1c commit a965305
Show file tree
Hide file tree
Showing 441 changed files with 691 additions and 664 deletions.
Binary file modified en/mainnet/.doctrees/docs/release-notes/release-notes-lp.doctree
Binary file not shown.
Binary file modified en/mainnet/.doctrees/environment.pickle
Binary file not shown.
25 changes: 19 additions & 6 deletions en/mainnet/_sources/docs/release-notes/release-notes-lp.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,30 @@ Wallets

|cryptox| for Android
---------------------
November 28, 2024
December 18, 2024

Version 1.4.0 addresses the following issues:

Added:

- New onboarding flow
- Swipelux onramp flow

Version 1.3.2 fixes the following issues:
Changed:

- Crashing on launch when Google Play Services is disabled
- Inconsistent transaction fee for smart contract invocation
- Crashing when first launching the app offline
- Not receiving CIS-2 transaction notifications when they are disabled for CCD transactions
- The "," decimal separator is now used for all amounts in the wallet

.. dropdown:: Previous releases

.. dropdown:: |cryptox| 1.3.2 - November 28, 2024

Version 1.3.2 fixes the following issues:

- Crashing on launch when Google Play Services is disabled
- Inconsistent transaction fee for smart contract invocation
- Crashing when first launching the app offline
- Not receiving CIS-2 transaction notifications when they are disabled for CCD transactions

.. dropdown:: |cryptox| 1.3.1 - November 7, 2024

Version 1.3.1 fixes the following UI issue:
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-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>Previously used term for seed phrase.</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>", "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>"}
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.

This file was deleted.

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
selector_to_html = {"a[href=\"../resources/glossary.html#term-Passive-delegation\"]": "<dt id=\"term-Passive-delegation\">Passive delegation</dt><dd><p>A form of delegation where a delegator\u2019s stake is effectively distributed among all staking pools. It is not associated with a specific validator. Delegators earn lower rewards when delegating to passive delegation than when delegating to a specific staking pool. However, passive delegation is not affected by poor performance of a single validator.</p></dd>", "a[href=\"../resources/glossary.html#term-Staking-pool\"]": "<dt id=\"term-Staking-pool\">Staking pool</dt><dd><p>A validator and delegators that collectively pool their stake to participate in the consensus protocol and earn rewards. The validator runs a validator node on behalf of the staking pool to produce blocks using the collective stake of the pool to determine its lottery power. Rewards are accrued to the pool each time the validator produces a block. Each pay day, the accrued rewards are distributed to the pool\u2019s participants in proportion to their relative stakes in the pool, with the validator (the pool owner) receiving an additional commission from the delegators\u2019 rewards.</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.

Loading

0 comments on commit a965305

Please sign in to comment.