Skip to content

Commit c3bb1c0

Browse files
committed
Deploying to gh-pages from @ b466535 🚀
1 parent cc35d95 commit c3bb1c0

File tree

451 files changed

+749
-712
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

451 files changed

+749
-712
lines changed
Binary file not shown.
0 Bytes
Binary file not shown.

en/mainnet/_sources/docs/release-notes/release-notes-lp.rst.txt

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,39 @@ Wallets
8383

8484
|cryptox| for Android
8585
---------------------
86-
December 18, 2024
86+
January 27, 2025
8787

88-
Version 1.4.0 addresses the following issues:
88+
Version 1.5.0 addresses the following issues:
8989

9090
Added:
9191

92-
- New onboarding flow
93-
- Swipelux onramp flow
92+
- Ability to have both file and seed phrase wallets in the app and switch between them
93+
- Ability to open the Terms and Conditions and the Privacy Policy from the About screen
94+
95+
Fixed:
96+
97+
- Incorrect support email address in some error messages
98+
- Not working links to the documentation on some screens
9499

95-
Changed:
100+
Removed:
96101

97-
- The "," decimal separator is now used for all amounts in the wallet
102+
- Ability to create new accounts and identities in a file wallet. We recommend that you migrate to a seed phrase wallet in order to make use of the full range of CryptoX features.
98103

99104
.. dropdown:: Previous releases
100105

106+
.. dropdown:: |cryptox| 1.4.0 - December 18, 2024
107+
108+
Version 1.4.0 addresses the following issues:
109+
110+
Added:
111+
112+
- New onboarding flow
113+
- Swipelux onramp flow
114+
115+
Changed:
116+
117+
- The "," decimal separator is now used for all amounts in the wallet
118+
101119
.. dropdown:: |cryptox| 1.3.2 - November 28, 2024
102120

103121
Version 1.3.2 fixes the following issues:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
selector_to_html = {"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>", "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>"}
2+
skip_classes = ["headerlink", "sd-stretched-link"]
3+
4+
window.onload = function () {
5+
for (const [select, tip_html] of Object.entries(selector_to_html)) {
6+
const links = document.querySelectorAll(`article.bd-article ${select}`);
7+
for (const link of links) {
8+
if (skip_classes.some(c => link.classList.contains(c))) {
9+
continue;
10+
}
11+
12+
tippy(link, {
13+
content: tip_html,
14+
allowHTML: true,
15+
arrow: true,
16+
placement: 'auto-start', maxWidth: 500, interactive: false,
17+
18+
});
19+
};
20+
};
21+
console.log("tippy tips loaded!");
22+
};

en/mainnet/_static/tippy/docs/browser-wallet/browser-wallet-faq.904c2ec4-3724-4477-ae77-04d9109048cd.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

en/mainnet/_static/tippy/docs/browser-wallet/setup-browser-wallet.621671db-12f4-408b-be72-7de2b6aeacd6.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

en/mainnet/_static/tippy/docs/browser-wallet/setup-browser-wallet.ddd8cbc1-e9bc-4911-b790-f0519d12c2cd.js

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
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>"}
2+
skip_classes = ["headerlink", "sd-stretched-link"]
3+
4+
window.onload = function () {
5+
for (const [select, tip_html] of Object.entries(selector_to_html)) {
6+
const links = document.querySelectorAll(`article.bd-article ${select}`);
7+
for (const link of links) {
8+
if (skip_classes.some(c => link.classList.contains(c))) {
9+
continue;
10+
}
11+
12+
tippy(link, {
13+
content: tip_html,
14+
allowHTML: true,
15+
arrow: true,
16+
placement: 'auto-start', maxWidth: 500, interactive: false,
17+
18+
});
19+
};
20+
};
21+
console.log("tippy tips loaded!");
22+
};

en/mainnet/_static/tippy/docs/guides/add-delegation.c940725b-a65e-4b60-a58d-94b5f1fc06a6.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

en/mainnet/_static/tippy/docs/guides/create-account.9bcb01cf-63da-4e95-88e6-28f3c4aa5726.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)