Skip to content

Commit

Permalink
Deploying to gh-pages from @ 57b0759 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dragosgd committed Dec 18, 2024
1 parent 3442685 commit bb22b1c
Show file tree
Hide file tree
Showing 444 changed files with 865 additions and 865 deletions.
2 changes: 1 addition & 1 deletion en/mainnet/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 75685d28c409d69845ef3980905ec4cb
config: 4c7fa9821f2722233dbd1beae28bc121
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/mainnet/.doctrees/environment.pickle
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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-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-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-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>"}
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>"}
skip_classes = ["headerlink", "sd-stretched-link"]

window.onload = function () {
Expand Down

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.

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

This file was deleted.

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-dApp-connectivity\"]": "<dt id=\"term-dApp-connectivity\">dApp connectivity</dt><dd><p>The abiity of a wallet to interact with decentralized applications, dApps, on the blockchain. This allows users to access various services and platforms built on blockchain technology, such as DeFi, NFTs, and gaming.</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-Seed-phrase\"]": "<dt id=\"term-Seed-phrase\">Seed phrase</dt><dd><p>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. Seed phrase is supported by CryptoX Concordium Wallet.</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!");
};
Loading

0 comments on commit bb22b1c

Please sign in to comment.