├── .gitbook └── assets │ ├── 0x_interface.png │ ├── airswap_interface.png │ ├── block-generation.png │ ├── blocktimes.PNG │ ├── combinatorial-tcr.png │ ├── dcs-triangle.png │ ├── eth_supply.png │ ├── etherdelta_interface.png │ ├── geth-modes.png │ ├── graded-tcr.png │ ├── idex_interface.png │ ├── kyber_interface.png │ ├── layered-tcr.png │ ├── nested-tcr.png │ ├── ordered-tcr.png │ ├── parity-modes.png │ ├── product_image_augur_bf73d2b2ec4a6d57f7c706f419557e78f8eceeba5e7212a493513da831b24e9a_opti.jpg │ ├── raiden-network-fig1.png │ ├── screen-shot-2018-12-06-at-8.09.12-am.png │ ├── screen-shot-2018-12-10-at-2.01.26-pm.png │ ├── screen-shot-2018-12-10-at-6.18.13-pm.png │ ├── screen-shot-2018-12-10-at-6.55.04-pm.png │ ├── screen-shot-2018-12-11-at-7.51.08-am.png │ ├── shasper_issuance.png │ ├── state-channels.png │ ├── tcr-diagram.png │ ├── unordered-tcr.png │ ├── walletconnect_preview_2.png │ └── wbtc-partners.png ├── .gitignore ├── README.md ├── docs ├── CNAME ├── assets │ ├── files │ │ └── builtoneth_branding │ │ │ ├── AI │ │ │ ├── Builtonethereum-tall.ai │ │ │ ├── Builtonethereum-wide.ai │ │ │ ├── Builtonethereum.ai │ │ │ └── _DS_Store │ │ │ ├── PNG │ │ │ ├── Dark wide bw (2).png │ │ │ ├── Dark wide color (2).png │ │ │ ├── Dark wide flat (2).png │ │ │ ├── Light wide bw (2).png │ │ │ ├── Light wide color (2).png │ │ │ ├── Light wide flat (2).png │ │ │ ├── Tall dark bw.png │ │ │ ├── Tall dark color.png │ │ │ ├── Tall dark flat.png │ │ │ ├── Tall light bw.png │ │ │ ├── Tall light color.png │ │ │ └── Tall light flat.png │ │ │ └── SVG │ │ │ ├── Builtonethereum-tall-dark-3d-color.svg │ │ │ ├── Builtonethereum-tall-dark-3d.svg │ │ │ ├── Builtonethereum-tall-dark-flat.svg │ │ │ ├── Builtonethereum-tall-light-3d-color.svg │ │ │ ├── Builtonethereum-tall-light-3d.svg │ │ │ ├── Builtonethereum-tall-light-flat.svg │ │ │ ├── Builtonethereum-wide-dark-3d-color.svg │ │ │ ├── Builtonethereum-wide-dark-3d.svg │ │ │ ├── Builtonethereum-wide-dark-flat.svg │ │ │ ├── Builtonethereum-wide-light-3d-color.svg │ │ │ ├── Builtonethereum-wide-light-3d.svg │ │ │ └── Builtonethereum-wide-light-flat.svg │ └── images │ │ ├── airswap.png │ │ ├── blocks.png │ │ ├── blocktimes.PNG │ │ ├── built_on_ethereum.png │ │ ├── burner_advanced.png │ │ ├── burner_exchange.png │ │ ├── burner_main.png │ │ ├── chainlink_logo.png │ │ ├── combinatorial_tcr.png │ │ ├── compound_guide │ │ ├── cToken_redeem.png │ │ ├── cToken_uses.png │ │ ├── coin_stack.jpg │ │ ├── comp_borrow.png │ │ ├── comp_supply.png │ │ ├── comp_voting.png │ │ └── liqu_mining.png │ │ ├── daicard_deposit.png │ │ ├── daicard_request.png │ │ ├── daicard_send.png │ │ ├── daicard_settings.png │ │ ├── daicard_splash.png │ │ ├── dcs-triangle.png │ │ ├── dsr.png │ │ ├── dsr_guide.png │ │ ├── ens_manage.png │ │ ├── ens_metamask.png │ │ ├── ens_register.png │ │ ├── ens_submanage.png │ │ ├── ens_submanage2.png │ │ ├── ensnow.png │ │ ├── erc20_guide │ │ ├── allowance.png │ │ ├── approve.png │ │ ├── balance_of.png │ │ ├── event_summary.png │ │ ├── example_token_contract.png │ │ ├── metal_token.png │ │ ├── total_supply.png │ │ ├── transfer.png │ │ └── transfer_from.png │ │ ├── etherdelta.png │ │ ├── ethereum_oracle.png │ │ ├── etherscan_guide │ │ ├── EOA_to_EOA_diagram.png │ │ ├── EOA_to_EOA_tx.png │ │ ├── Eth_EOA_to_contract_diagram.png │ │ ├── Eth_to_EthHub_tx.png │ │ ├── ethhub_creation_tx.png │ │ ├── token_transfer_diagram.png │ │ └── token_transfer_tx.png │ │ ├── ethmojis.png │ │ ├── fairdex.png │ │ ├── favicon.ico │ │ ├── geth.png │ │ ├── graded_tcr.png │ │ ├── how-plasma-works.jpeg │ │ ├── how-plasma-works1.jpeg │ │ ├── idex.png │ │ ├── issuance_graph.png │ │ ├── kyber.png │ │ ├── layered_tcr.png │ │ ├── nested_tcr.png │ │ ├── ordered_tcr.png │ │ ├── parity.png │ │ ├── payment_chans.png │ │ ├── serenity.png │ │ ├── slowtrade.png │ │ ├── stake_interest.png │ │ ├── state_chans.png │ │ ├── tcrs.png │ │ ├── uniswap_guide │ │ ├── fungible_tokens.png │ │ ├── liquidity_token_image.png │ │ ├── market_graph.png │ │ ├── new_pool_creation.png │ │ ├── orderbook_example.png │ │ ├── scale_100_balanced.png │ │ ├── scale_100_unbalanced.png │ │ ├── scale_150_balanced.png │ │ ├── swap_example.png │ │ ├── swapping_erc20s.png │ │ └── uniswap_contract_overview.png │ │ ├── unordered_tcr.png │ │ ├── wallet_connect.png │ │ └── wbtcpartners.png ├── built-on-ethereum │ ├── built-on-ethereum.md │ ├── collectibles │ │ ├── cryptopunks.md │ │ ├── decentraland.md │ │ └── nftkred.md │ ├── decentralized-exchanges │ │ ├── aggregators │ │ │ └── totle.md │ │ ├── auction-based │ │ │ └── dutchx.md │ │ ├── layer-2-based │ │ │ ├── tex.md │ │ │ └── what-is-layer-2-based.md │ │ ├── off-chain-orderbook │ │ │ ├── 0x-instant.md │ │ │ ├── 0x-protocol.md │ │ │ ├── 0x-relayers.md │ │ │ ├── etherdelta.md │ │ │ ├── hydro.md │ │ │ ├── idex.md │ │ │ ├── loopring.md │ │ │ └── what-is-off-chain-orderbook.md │ │ ├── peer-to-peer │ │ │ ├── airswap.md │ │ │ ├── ren.md │ │ │ └── what-is-peer-to-peer.md │ │ ├── pool-based │ │ │ ├── bancor.md │ │ │ ├── kyber.md │ │ │ ├── uniswap.md │ │ │ └── what-is-pool-based.md │ │ └── what-are-decentralized-exchanges.md │ ├── developer-tools │ │ ├── biconomy.md │ │ ├── blocknative.md │ │ ├── ethernal.md │ │ ├── getblock │ │ ├── gitcoin.md │ │ ├── kauri.md │ │ ├── mintable.md │ │ ├── oneclickdapp.md │ │ ├── solui.md │ │ └── walletconnect.md │ ├── enterprise │ │ ├── axa.md │ │ ├── axoni.md │ │ ├── chainstack.md │ │ ├── cloudflare.md │ │ ├── deloitte.md │ │ ├── dtcc.md │ │ ├── eea.md │ │ ├── enterprise.md │ │ ├── ey.md │ │ ├── fnality.md │ │ ├── foxconn.md │ │ ├── google.md │ │ ├── hyperledger.md │ │ ├── jpm.md │ │ ├── kaleido.md │ │ ├── metlife.md │ │ ├── microsoft.md │ │ ├── pegasys.md │ │ ├── projects.md │ │ └── unicef.md │ ├── erc-token-standards │ │ ├── erc1155.md │ │ ├── erc20.md │ │ ├── erc621.md │ │ ├── erc721.md │ │ ├── erc721x.md │ │ ├── erc777.md │ │ ├── erc884.md │ │ ├── erc918.md │ │ └── what-are-erc-tokens.md │ ├── games │ │ ├── axie-infinity.md │ │ ├── caesars-triumph.md │ │ ├── chainmonsters.md │ │ ├── chibi-fighters.md │ │ ├── crypto-space-commander.md │ │ ├── cryptokitties.md │ │ ├── etherbots.md │ │ ├── etheremon.md │ │ ├── etheroll.md │ │ ├── gods-unchained.md │ │ ├── mlb-champions.md │ │ ├── mycryptoheroes.md │ │ ├── mythereum.md │ │ ├── relentless.md │ │ ├── what-is-blockchain-gaming.md │ │ └── world-war-goo.md │ ├── governance │ │ ├── aragon.md │ │ ├── colony.md │ │ ├── democracy-earth.md │ │ └── govblocks.md │ ├── identity │ │ ├── ERC-EIP.md │ │ ├── ERC725.md │ │ ├── bloom.md │ │ ├── civic.md │ │ ├── identity-on-ethereum.md │ │ ├── jolocom.md │ │ ├── selfkey.md │ │ └── uport.md │ ├── infrastructure │ │ ├── 0xcert.md │ │ ├── aztec-protocol.md │ │ ├── bountiesnetwork.md │ │ ├── chainstack.md │ │ ├── dfuse.md │ │ ├── ethereum-alarm-clock.md │ │ ├── ethereum-name-service.md │ │ ├── ethlance.md │ │ ├── ethpm.md │ │ ├── foam-protocol.md │ │ ├── golem.md │ │ ├── poa-network.md │ │ ├── quiknode.md │ │ └── streamr.md │ ├── marketplaces │ │ ├── district0x.md │ │ ├── opensea.md │ │ ├── origin-protocol.md │ │ └── rarebits.md │ ├── open-finance │ │ ├── defi-dashboards │ │ │ ├── zapper.md │ │ │ └── zerion.md │ │ ├── insurance │ │ │ ├── etherisc.md │ │ │ └── nexus-mutual.md │ │ ├── investing │ │ │ ├── bskt.md │ │ │ ├── digix.md │ │ │ ├── set-protocol.md │ │ │ └── wbtc.md │ │ ├── lending │ │ │ ├── bzx.md │ │ │ ├── compound.md │ │ │ ├── dharma.md │ │ │ ├── dydx.md │ │ │ ├── fulcrum.md │ │ │ ├── maker.md │ │ │ └── torque.md │ │ ├── payments │ │ │ ├── burner-wallet.md │ │ │ ├── daicard.md │ │ │ └── stablepay.md │ │ ├── prediction-markets │ │ │ ├── augur.md │ │ │ ├── gnosis.md │ │ │ └── what-are-prediction-markets.md │ │ ├── securities │ │ │ ├── abacus.md │ │ │ ├── harbor.md │ │ │ ├── polymath.md │ │ │ ├── securitize.md │ │ │ ├── templum.md │ │ │ └── what-are-tokenized-securities.md │ │ ├── stablecoins │ │ │ ├── dai.md │ │ │ ├── gusd.md │ │ │ ├── paxos.md │ │ │ ├── tether.md │ │ │ ├── trueusd.md │ │ │ ├── usdc.md │ │ │ └── what-are-stablecoins.md │ │ ├── synthetics │ │ │ └── synthetix.md │ │ └── what-is-open-finance.md │ ├── oracles │ │ ├── chainlink.md │ │ ├── tellor.md │ │ └── what-are-oracles.md │ ├── supply-chain │ │ └── shipchain.md │ └── tcrs │ │ ├── types-of-tcrs.md │ │ └── what-are-tcrs.md ├── ethereum-basics │ ├── development │ │ ├── ethereum-development-basics.md │ │ ├── interacting-with-clients.md │ │ ├── patterns.md │ │ ├── testing.md │ │ └── tooling.md │ ├── ethereum-foundation.md │ ├── governance.md │ ├── history-and-forks.md │ ├── monetary-policy.md │ ├── resources.md │ ├── what-is-ether.md │ └── what-is-ethereum.md ├── ethereum-roadmap │ ├── ethereum-1.x.md │ ├── ethereum-2.0 │ │ ├── account-abstraction.md │ │ ├── deposit-contract.md │ │ ├── eth-1.0-to-2.0-migration.md │ │ ├── eth-2.0-client-architecture.md │ │ ├── eth-2.0-economics.md │ │ ├── eth-2.0-phases-german.md │ │ ├── eth-2.0-phases-portuguese.md │ │ ├── eth-2.0-phases.md │ │ ├── eth2.0-teams │ │ │ ├── harmony.md │ │ │ ├── lighthouse.md │ │ │ ├── lodestar.md │ │ │ ├── nethermind.md │ │ │ ├── nimbus.md │ │ │ ├── prysm.md │ │ │ ├── shasper.md │ │ │ ├── teams-building-eth2.0.md │ │ │ ├── teku.md │ │ │ ├── trinity.md │ │ │ └── yeeth.md │ │ ├── overview-playlist.md │ │ ├── proof-of-stake.md │ │ ├── sharding.md │ │ └── stateless-clients.md │ ├── layer-2-scaling │ │ ├── commit-chains.md │ │ ├── optimistic_rollups.md │ │ ├── payment-channels.md │ │ ├── plasma.md │ │ ├── sidechains.md │ │ ├── state-channels.md │ │ ├── zk-rollups.md │ │ └── zk-starks.md │ └── privacy.md ├── extra.css ├── extra.scss ├── favicon.ico ├── glossary │ ├── crypto-acronyms.md │ ├── ens-domains.md │ └── sideways-dictionary │ │ ├── 2FA.md │ │ ├── blockchain.md │ │ ├── cold-storage.md │ │ ├── cryptojacking.md │ │ ├── ddos.md │ │ ├── difficulty.md │ │ ├── double-spend.md │ │ ├── forks.md │ │ ├── multi-sig.md │ │ ├── smart-contract.md │ │ ├── state-rent.md │ │ ├── stateless-clients.md │ │ ├── uncle-blocks.md │ │ ├── wei.md │ │ └── what-is-the-sideways-dictionary.md ├── guides │ ├── a-straightforward-guide-erc20-tokens.md │ ├── deciphering-a-transaction-on-etherscan.md │ ├── ethereum-high-yield-savings-account.md │ ├── graphical-guide-for-understanding-uniswap.md │ ├── graphical-guide-to-compound.md │ └── guide-to-ens.md ├── index.md ├── languages │ └── translations.md ├── license.md ├── logo-2.png ├── logo-2.svg ├── logo-3.png ├── logo.png ├── material │ ├── 404.html │ ├── __init__.py │ ├── assets │ │ ├── fonts │ │ │ ├── font-awesome.css │ │ │ ├── material-icons.css │ │ │ └── specimen │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome.woff │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ ├── images │ │ │ ├── favicon.png │ │ │ └── icons │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ └── gitlab.6dd19c00.svg │ │ ├── javascripts │ │ │ ├── application.3a8f445d.js │ │ │ ├── lunr │ │ │ │ ├── lunr.da.js │ │ │ │ ├── lunr.de.js │ │ │ │ ├── lunr.du.js │ │ │ │ ├── lunr.es.js │ │ │ │ ├── lunr.fi.js │ │ │ │ ├── lunr.fr.js │ │ │ │ ├── lunr.hu.js │ │ │ │ ├── lunr.it.js │ │ │ │ ├── lunr.jp.js │ │ │ │ ├── lunr.multi.js │ │ │ │ ├── lunr.no.js │ │ │ │ ├── lunr.pt.js │ │ │ │ ├── lunr.ro.js │ │ │ │ ├── lunr.ru.js │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ ├── lunr.sv.js │ │ │ │ ├── lunr.tr.js │ │ │ │ └── tinyseg.js │ │ │ └── modernizr.962652e9.js │ │ └── stylesheets │ │ │ ├── application-palette.4637f1a4.css │ │ │ └── application.63c76b3b.css │ ├── base.html │ ├── main.html │ ├── manifest.json │ ├── mkdocs_theme.yml │ └── partials │ │ ├── footer.html │ │ ├── header.html │ │ ├── hero.html │ │ ├── integrations │ │ ├── analytics.html │ │ └── disqus.html │ │ ├── language.html │ │ ├── language │ │ ├── ar.html │ │ ├── ca.html │ │ ├── cs.html │ │ ├── da.html │ │ ├── de.html │ │ ├── en.html │ │ ├── es.html │ │ ├── fa.html │ │ ├── fi.html │ │ ├── fr.html │ │ ├── gl.html │ │ ├── he.html │ │ ├── hi.html │ │ ├── hr.html │ │ ├── hu.html │ │ ├── id.html │ │ ├── it.html │ │ ├── ja.html │ │ ├── kr.html │ │ ├── nl.html │ │ ├── no.html │ │ ├── pl.html │ │ ├── pt.html │ │ ├── ru.html │ │ ├── sh.html │ │ ├── sk.html │ │ ├── sr.html │ │ ├── sv.html │ │ ├── tr.html │ │ ├── uk.html │ │ ├── vi.html │ │ ├── zh-Hant.html │ │ ├── zh-TW.html │ │ └── zh.html │ │ ├── nav-item.html │ │ ├── nav.html │ │ ├── palette.html │ │ ├── search.html │ │ ├── social.html │ │ ├── source.html │ │ ├── tabs-item.html │ │ ├── tabs.html │ │ ├── toc-item.html │ │ └── toc.html ├── other │ ├── EF-COI-disclosures.md │ ├── ethereum-2.0-ama.md │ ├── ethereum-blog-archive.md │ ├── ethereum-branding-kit.md │ ├── funds │ │ ├── 0xeap.md │ │ ├── aragon-nest.md │ │ ├── consensys-labs.md │ │ ├── ecf.md │ │ ├── eth-prize.md │ │ ├── geco.md │ │ ├── gitcoin.md │ │ ├── stable-fund.md │ │ └── status-incubate.md │ ├── grants-process.md │ └── internationalization.md ├── questions-about-ethereum │ ├── if-ethereum-is-open-source-why-cant-it-be-copied.md │ ├── is-ether-a-security.md │ ├── is-ether-needed-for-transaction-fees.md │ ├── is-ethereum-immutable.md │ ├── is-ethereum-more-expensive-to-use-as-price-rises.md │ ├── is-ethereum-over-1tb-in-size.md │ ├── what-is-the-difficulty-bomb.md │ └── why-do-you-have-to-pay-to-use-ethereum.md ├── template.md └── using-ethereum │ ├── ethereum-clients │ ├── besu.md │ ├── erigon.md │ ├── geth.md │ ├── nethermind.md │ ├── openethereum.md │ └── py-evm.md │ ├── ethereum-new-user-guide.md │ ├── how-to-buy-ether.md │ ├── mining.md │ ├── running-an-ethereum-node.md │ ├── test-networks.md │ ├── transactions.md │ └── wallets │ ├── desktop.md │ ├── hardware.md │ ├── intro-to-ethereum-wallets.md │ ├── mobile.md │ ├── smart-contract-wallets.md │ └── web.md ├── license.md ├── mkdocs.yml ├── site ├── 404.html ├── CNAME ├── assets │ ├── fonts │ │ ├── font-awesome.css │ │ ├── material-icons.css │ │ └── specimen │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome.woff │ │ │ ├── FontAwesome.woff2 │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ └── MaterialIcons-Regular.woff2 │ ├── images │ │ ├── airswap.png │ │ ├── blocks.png │ │ ├── burner_advanced.png │ │ ├── burner_exchange.png │ │ ├── burner_main.png │ │ ├── combinatorial_tcr.png │ │ ├── compound_guide │ │ │ ├── cToken_redeem.png │ │ │ ├── cToken_uses.png │ │ │ ├── coin_stack.jpg │ │ │ ├── comp_borrow.png │ │ │ ├── comp_supply.png │ │ │ ├── comp_voting.png │ │ │ └── liqu_mining.png │ │ ├── dcs-triangle.png │ │ ├── dsr.png │ │ ├── ens_manage.png │ │ ├── ens_metamask.png │ │ ├── ens_register.png │ │ ├── ens_submanage.png │ │ ├── ens_submanage2.png │ │ ├── ensnow.png │ │ ├── etherdelta.png │ │ ├── etherscan_guide │ │ │ ├── EOA_to_EOA_diagram.png │ │ │ ├── EOA_to_EOA_tx.png │ │ │ ├── Eth_EOA_to_contract_diagram.png │ │ │ ├── Eth_to_EthHub_tx.png │ │ │ ├── ethhub_creation_tx.png │ │ │ ├── token_transfer_diagram.png │ │ │ └── token_transfer_tx.png │ │ ├── ethmojis.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── geth.png │ │ ├── graded_tcr.png │ │ ├── how-plasma-works.jpeg │ │ ├── how-plasma-works1.jpeg │ │ ├── icons │ │ │ ├── bitbucket.1b09e088.svg │ │ │ ├── github.f0b8504a.svg │ │ │ └── gitlab.6dd19c00.svg │ │ ├── idex.png │ │ ├── issuance_graph.png │ │ ├── kyber.png │ │ ├── layered_tcr.png │ │ ├── nested_tcr.png │ │ ├── ordered_tcr.png │ │ ├── parity.png │ │ ├── payment_chans.png │ │ ├── serenity.png │ │ ├── stake_interest.png │ │ ├── state_chans.png │ │ ├── tcrs.png │ │ ├── unordered_tcr.png │ │ ├── wallet_connect.png │ │ └── wbtcpartners.png │ ├── javascripts │ │ ├── application.3a8f445d.js │ │ ├── application.583bbe55.js │ │ ├── lunr │ │ │ ├── lunr.da.js │ │ │ ├── lunr.de.js │ │ │ ├── lunr.du.js │ │ │ ├── lunr.es.js │ │ │ ├── lunr.fi.js │ │ │ ├── lunr.fr.js │ │ │ ├── lunr.hu.js │ │ │ ├── lunr.it.js │ │ │ ├── lunr.jp.js │ │ │ ├── lunr.multi.js │ │ │ ├── lunr.no.js │ │ │ ├── lunr.pt.js │ │ │ ├── lunr.ro.js │ │ │ ├── lunr.ru.js │ │ │ ├── lunr.stemmer.support.js │ │ │ ├── lunr.sv.js │ │ │ ├── lunr.tr.js │ │ │ └── tinyseg.js │ │ ├── modernizr.1aa3b519.js │ │ └── modernizr.962652e9.js │ └── stylesheets │ │ ├── application-palette.22915126.css │ │ ├── application-palette.4637f1a4.css │ │ ├── application.451f80e5.css │ │ └── application.63c76b3b.css ├── built-on-ethereum │ ├── built-on-ethereum │ │ └── index.html │ ├── collectables │ │ ├── cryptopunks │ │ │ └── index.html │ │ ├── decentraland │ │ │ └── index.html │ │ ├── mlb-crypto-baseball │ │ │ └── index.html │ │ └── nftkred │ │ │ └── index.html │ ├── decentralized-exchanges │ │ ├── aggregators │ │ │ └── totle │ │ │ │ └── index.html │ │ ├── off-chain-orderbook │ │ │ ├── 0x-instant │ │ │ │ └── index.html │ │ │ ├── 0x-protocol │ │ │ │ └── index.html │ │ │ ├── 0x-relayers │ │ │ │ └── index.html │ │ │ ├── etherdelta │ │ │ │ └── index.html │ │ │ ├── hydro │ │ │ │ └── index.html │ │ │ ├── idex │ │ │ │ └── index.html │ │ │ ├── loopring │ │ │ │ └── index.html │ │ │ └── what-is-off-chain-orderbook │ │ │ │ └── index.html │ │ ├── peer-to-peer │ │ │ ├── airswap │ │ │ │ └── index.html │ │ │ ├── ren │ │ │ │ └── index.html │ │ │ └── what-is-peer-to-peer │ │ │ │ └── index.html │ │ ├── pool-based │ │ │ ├── bancor │ │ │ │ └── index.html │ │ │ ├── kyber │ │ │ │ └── index.html │ │ │ ├── uniswap │ │ │ │ └── index.html │ │ │ └── what-is-pool-based │ │ │ │ └── index.html │ │ └── what-are-decentralized-exchanges │ │ │ └── index.html │ ├── developer-tools │ │ ├── blocknative │ │ │ └── index.html │ │ ├── gitcoin │ │ │ └── index.html │ │ ├── kauri │ │ │ └── index.html │ │ ├── mintable │ │ │ └── index.html │ │ ├── oneclickdapp │ │ │ └── index.html │ │ └── walletconnect │ │ │ └── index.html │ ├── enterprise │ │ ├── axa │ │ │ └── index.html │ │ ├── axoni │ │ │ └── index.html │ │ ├── cloudflare │ │ │ └── index.html │ │ ├── deloitte │ │ │ └── index.html │ │ ├── dtcc │ │ │ └── index.html │ │ ├── eea │ │ │ └── index.html │ │ ├── ey │ │ │ └── index.html │ │ ├── fnality │ │ │ └── index.html │ │ ├── foxconn │ │ │ └── index.html │ │ ├── google │ │ │ └── index.html │ │ ├── hyperledger │ │ │ └── index.html │ │ ├── jpm │ │ │ └── index.html │ │ ├── kaleido │ │ │ └── index.html │ │ ├── metlife │ │ │ └── index.html │ │ ├── microsoft │ │ │ └── index.html │ │ ├── pegasys │ │ │ └── index.html │ │ ├── projects │ │ │ └── index.html │ │ └── unicef │ │ │ └── index.html │ ├── erc-token-standards │ │ ├── erc1155 │ │ │ └── index.html │ │ ├── erc1257 │ │ │ └── index.html │ │ ├── erc20 │ │ │ └── index.html │ │ ├── erc621 │ │ │ └── index.html │ │ ├── erc721 │ │ │ └── index.html │ │ ├── erc721x │ │ │ └── index.html │ │ ├── erc777 │ │ │ └── index.html │ │ ├── erc884 │ │ │ └── index.html │ │ ├── erc918 │ │ │ └── index.html │ │ └── what-are-erc-tokens │ │ │ └── index.html │ ├── games │ │ ├── cryptokitties │ │ │ └── index.html │ │ ├── etheroll │ │ │ └── index.html │ │ ├── gods-unchained │ │ │ └── index.html │ │ ├── what-is-blockchain-gaming │ │ │ └── index.html │ │ └── zombie-battleground │ │ │ └── index.html │ ├── governance │ │ ├── aragon │ │ │ └── index.html │ │ ├── colony │ │ │ └── index.html │ │ ├── democracy-earth │ │ │ └── index.html │ │ └── govblocks │ │ │ └── index.html │ ├── identity │ │ ├── ERC725 │ │ │ └── index.html │ │ ├── bloom │ │ │ └── index.html │ │ ├── civic │ │ │ └── index.html │ │ ├── identity-on-ethereum │ │ │ └── index.html │ │ ├── jolocom │ │ │ └── index.html │ │ ├── selfkey │ │ │ └── index.html │ │ └── uport │ │ │ └── index.html │ ├── infrastructure │ │ ├── 0xcert │ │ │ └── index.html │ │ ├── aztec-protocol │ │ │ └── index.html │ │ ├── bountiesnetwork │ │ │ └── index.html │ │ ├── ethereum-alarm-clock │ │ │ └── index.html │ │ ├── ethereum-name-service │ │ │ └── index.html │ │ ├── ethlance │ │ │ └── index.html │ │ ├── ethpm │ │ │ └── index.html │ │ ├── foam-protocol │ │ │ └── index.html │ │ ├── golem │ │ │ └── index.html │ │ ├── poa-network │ │ │ └── index.html │ │ └── streamr │ │ │ └── index.html │ ├── marketplaces │ │ ├── district0x │ │ │ └── index.html │ │ ├── opensea │ │ │ └── index.html │ │ ├── origin-protocol │ │ │ └── index.html │ │ └── rarebits │ │ │ └── index.html │ ├── open-finance │ │ ├── defi-dashboards │ │ │ └── zerion │ │ │ │ └── index.html │ │ ├── insurance │ │ │ ├── etherisc │ │ │ │ └── index.html │ │ │ └── nexus-mutual │ │ │ │ └── index.html │ │ ├── investing │ │ │ ├── bskt │ │ │ │ └── index.html │ │ │ ├── digix │ │ │ │ └── index.html │ │ │ ├── set-protocol │ │ │ │ └── index.html │ │ │ ├── settle │ │ │ │ └── index.html │ │ │ └── wbtc │ │ │ │ └── index.html │ │ ├── lending │ │ │ ├── bzx │ │ │ │ └── index.html │ │ │ ├── compound │ │ │ │ └── index.html │ │ │ ├── dharma │ │ │ │ └── index.html │ │ │ ├── dydx │ │ │ │ └── index.html │ │ │ ├── expo │ │ │ │ └── index.html │ │ │ ├── fulcrum │ │ │ │ └── index.html │ │ │ ├── maker │ │ │ │ └── index.html │ │ │ └── torque │ │ │ │ └── index.html │ │ ├── payments │ │ │ ├── burner-wallet │ │ │ │ └── index.html │ │ │ ├── daicard │ │ │ │ └── index.html │ │ │ └── stablepay │ │ │ │ └── index.html │ │ ├── prediction-markets │ │ │ ├── augur │ │ │ │ └── index.html │ │ │ ├── gnosis │ │ │ │ └── index.html │ │ │ └── what-are-prediction-markets │ │ │ │ └── index.html │ │ ├── securities │ │ │ ├── abacus │ │ │ │ └── index.html │ │ │ ├── harbor │ │ │ │ └── index.html │ │ │ ├── polymath │ │ │ │ └── index.html │ │ │ ├── securitize │ │ │ │ └── index.html │ │ │ ├── templum │ │ │ │ └── index.html │ │ │ └── what-are-tokenized-securities │ │ │ │ └── index.html │ │ ├── stablecoins │ │ │ ├── dai │ │ │ │ └── index.html │ │ │ ├── gusd │ │ │ │ └── index.html │ │ │ ├── paxos │ │ │ │ └── index.html │ │ │ ├── tether │ │ │ │ └── index.html │ │ │ ├── trueusd │ │ │ │ └── index.html │ │ │ ├── usdc │ │ │ │ └── index.html │ │ │ └── what-are-stablecoins │ │ │ │ └── index.html │ │ ├── synthetics │ │ │ └── synthetix │ │ │ │ └── index.html │ │ └── what-is-open-finance │ │ │ └── index.html │ └── tcrs │ │ ├── types-of-tcrs │ │ └── index.html │ │ └── what-are-tcrs │ │ └── index.html ├── ethereum-basics │ ├── development │ │ ├── ethereum-development-basics │ │ │ └── index.html │ │ ├── patterns │ │ │ └── index.html │ │ ├── testing │ │ │ └── index.html │ │ └── tooling │ │ │ └── index.html │ ├── eth_foundation_blog_scrape.py │ ├── ethereum-foundation │ │ └── index.html │ ├── governance │ │ └── index.html │ ├── history-and-forks │ │ └── index.html │ ├── monetary-policy │ │ └── index.html │ ├── resources │ │ └── index.html │ ├── what-is-ether │ │ └── index.html │ └── what-is-ethereum │ │ └── index.html ├── ethereum-roadmap │ ├── ethereum-1.x │ │ └── index.html │ ├── ethereum-2.0 │ │ ├── account-abstraction │ │ │ └── index.html │ │ ├── eth-1.0-to-2.0-migration │ │ │ └── index.html │ │ ├── eth-2.0-economics │ │ │ └── index.html │ │ ├── eth-2.0-phases-german │ │ │ └── index.html │ │ ├── eth-2.0-phases-portuguese │ │ │ └── index.html │ │ ├── eth-2.0-phases │ │ │ └── index.html │ │ ├── eth2.0-teams │ │ │ ├── artemis │ │ │ │ └── index.html │ │ │ ├── harmony │ │ │ │ └── index.html │ │ │ ├── lighthouse │ │ │ │ └── index.html │ │ │ ├── lodestar │ │ │ │ └── index.html │ │ │ ├── nimbus │ │ │ │ └── index.html │ │ │ ├── prysm │ │ │ │ └── index.html │ │ │ ├── shasper │ │ │ │ └── index.html │ │ │ ├── teams-building-eth2.0 │ │ │ │ └── index.html │ │ │ ├── trinity │ │ │ │ └── index.html │ │ │ └── yeeth │ │ │ │ └── index.html │ │ ├── proof-of-stake │ │ │ └── index.html │ │ └── sharding │ │ │ └── index.html │ ├── layer-2-scaling │ │ ├── payment-channels │ │ │ └── index.html │ │ ├── plasma │ │ │ └── index.html │ │ ├── sidechains │ │ │ └── index.html │ │ ├── state-channels │ │ │ └── index.html │ │ └── zk-starks │ │ │ └── index.html │ ├── planned-upgrades │ │ └── index.html │ └── privacy │ │ └── index.html ├── extra.css ├── extra.scss ├── favicon.ico ├── glossary │ ├── crypto-acronyms │ │ └── index.html │ └── sideways-dictionary │ │ ├── 2FA │ │ └── index.html │ │ ├── blockchain │ │ └── index.html │ │ ├── cold-storage │ │ └── index.html │ │ ├── cryptojacking │ │ └── index.html │ │ ├── ddos │ │ └── index.html │ │ ├── difficulty │ │ └── index.html │ │ ├── forks │ │ └── index.html │ │ ├── multi-sig │ │ └── index.html │ │ ├── smart-contract │ │ └── index.html │ │ ├── uncle-blocks │ │ └── index.html │ │ └── what-is-the-sideways-dictionary │ │ └── index.html ├── guides │ ├── deciphering-a-transaction-on-etherscan │ │ └── index.html │ ├── ethereum-high-yield-savings-account │ │ └── index.html │ ├── graphical-guide-to-compound │ │ └── index.html │ └── guide-to-ens │ │ └── index.html ├── index.html ├── license │ └── index.html ├── logo-2.png ├── logo-2.svg ├── logo-3.png ├── logo.png ├── manifest.json ├── material │ ├── 404.html │ ├── __init__.py │ ├── assets │ │ ├── fonts │ │ │ ├── font-awesome.css │ │ │ ├── material-icons.css │ │ │ └── specimen │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome.woff │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ ├── images │ │ │ ├── favicon.png │ │ │ └── icons │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ └── gitlab.6dd19c00.svg │ │ ├── javascripts │ │ │ ├── application.3a8f445d.js │ │ │ ├── lunr │ │ │ │ ├── lunr.da.js │ │ │ │ ├── lunr.de.js │ │ │ │ ├── lunr.du.js │ │ │ │ ├── lunr.es.js │ │ │ │ ├── lunr.fi.js │ │ │ │ ├── lunr.fr.js │ │ │ │ ├── lunr.hu.js │ │ │ │ ├── lunr.it.js │ │ │ │ ├── lunr.jp.js │ │ │ │ ├── lunr.multi.js │ │ │ │ ├── lunr.no.js │ │ │ │ ├── lunr.pt.js │ │ │ │ ├── lunr.ro.js │ │ │ │ ├── lunr.ru.js │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ ├── lunr.sv.js │ │ │ │ ├── lunr.tr.js │ │ │ │ └── tinyseg.js │ │ │ └── modernizr.962652e9.js │ │ └── stylesheets │ │ │ ├── application-palette.4637f1a4.css │ │ │ └── application.63c76b3b.css │ ├── base.html │ ├── main.html │ ├── manifest.json │ ├── mkdocs_theme.yml │ └── partials │ │ ├── footer.html │ │ ├── header.html │ │ ├── hero.html │ │ ├── integrations │ │ ├── analytics.html │ │ └── disqus.html │ │ ├── language.html │ │ ├── language │ │ ├── ar.html │ │ ├── ca.html │ │ ├── cs.html │ │ ├── da.html │ │ ├── de.html │ │ ├── en.html │ │ ├── es.html │ │ ├── fa.html │ │ ├── fi.html │ │ ├── fr.html │ │ ├── gl.html │ │ ├── he.html │ │ ├── hi.html │ │ ├── hr.html │ │ ├── hu.html │ │ ├── id.html │ │ ├── it.html │ │ ├── ja.html │ │ ├── kr.html │ │ ├── nl.html │ │ ├── no.html │ │ ├── pl.html │ │ ├── pt.html │ │ ├── ru.html │ │ ├── sh.html │ │ ├── sk.html │ │ ├── sr.html │ │ ├── sv.html │ │ ├── tr.html │ │ ├── uk.html │ │ ├── vi.html │ │ ├── zh-Hant.html │ │ ├── zh-TW.html │ │ └── zh.html │ │ ├── nav-item.html │ │ ├── nav.html │ │ ├── palette.html │ │ ├── search.html │ │ ├── social.html │ │ ├── source.html │ │ ├── tabs-item.html │ │ ├── tabs.html │ │ ├── toc-item.html │ │ └── toc.html ├── other │ ├── EF-COI-disclosures │ │ └── index.html │ ├── ethereum-2.0-ama │ │ └── index.html │ ├── ethereum-style-guide │ │ └── index.html │ ├── funds │ │ ├── 0xeap │ │ │ └── index.html │ │ ├── aragon-nest │ │ │ └── index.html │ │ ├── consensys-labs │ │ │ └── index.html │ │ ├── consensys-vc │ │ │ └── index.html │ │ ├── ecf │ │ │ └── index.html │ │ ├── eth-prize │ │ │ └── index.html │ │ ├── geco │ │ │ └── index.html │ │ ├── gitcoin │ │ │ └── index.html │ │ ├── gnosisx │ │ │ └── index.html │ │ ├── stable-fund │ │ │ └── index.html │ │ └── status-incubate │ │ │ └── index.html │ ├── grants-process │ │ └── index.html │ └── internationalization │ │ └── index.html ├── questions-about-ethereum │ ├── if-ethereum-is-open-source-why-cant-it-be-copied │ │ └── index.html │ ├── is-ether-a-security │ │ └── index.html │ ├── is-ether-needed-for-transaction-fees │ │ └── index.html │ ├── is-ethereum-immutable │ │ └── index.html │ ├── is-ethereum-more-expensive-to-use-as-price-rises │ │ └── index.html │ ├── is-ethereum-over-1tb-in-size │ │ └── index.html │ ├── what-is-the-difficulty-bomb │ │ └── index.html │ └── why-do-you-have-to-pay-to-use-ethereum │ │ └── index.html ├── search │ └── search_index.json ├── sitemap.xml ├── sitemap.xml.gz ├── template │ └── index.html └── using-ethereum │ ├── ethereum-clients │ ├── ethereumj │ │ └── index.html │ ├── geth │ │ └── index.html │ ├── pantheon │ │ └── index.html │ ├── parity │ │ └── index.html │ └── py-evm │ │ └── index.html │ ├── mining │ └── index.html │ ├── running-an-ethereum-node │ └── index.html │ ├── test-networks │ └── index.html │ ├── transactions │ └── index.html │ └── wallets │ ├── desktop │ └── index.html │ ├── hardware │ └── index.html │ ├── mobile │ └── index.html │ ├── smart-contract-wallets │ └── index.html │ └── web │ └── index.html └── template.md /.gitbook/assets/0x_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/0x_interface.png -------------------------------------------------------------------------------- /.gitbook/assets/airswap_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/airswap_interface.png -------------------------------------------------------------------------------- /.gitbook/assets/block-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/block-generation.png -------------------------------------------------------------------------------- /.gitbook/assets/blocktimes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/blocktimes.PNG -------------------------------------------------------------------------------- /.gitbook/assets/combinatorial-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/combinatorial-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/dcs-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/dcs-triangle.png -------------------------------------------------------------------------------- /.gitbook/assets/eth_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/eth_supply.png -------------------------------------------------------------------------------- /.gitbook/assets/etherdelta_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/etherdelta_interface.png -------------------------------------------------------------------------------- /.gitbook/assets/geth-modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/geth-modes.png -------------------------------------------------------------------------------- /.gitbook/assets/graded-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/graded-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/idex_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/idex_interface.png -------------------------------------------------------------------------------- /.gitbook/assets/kyber_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/kyber_interface.png -------------------------------------------------------------------------------- /.gitbook/assets/layered-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/layered-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/nested-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/nested-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/ordered-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/ordered-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/parity-modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/parity-modes.png -------------------------------------------------------------------------------- /.gitbook/assets/product_image_augur_bf73d2b2ec4a6d57f7c706f419557e78f8eceeba5e7212a493513da831b24e9a_opti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/product_image_augur_bf73d2b2ec4a6d57f7c706f419557e78f8eceeba5e7212a493513da831b24e9a_opti.jpg -------------------------------------------------------------------------------- /.gitbook/assets/raiden-network-fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/raiden-network-fig1.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-12-06-at-8.09.12-am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/screen-shot-2018-12-06-at-8.09.12-am.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-12-10-at-2.01.26-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/screen-shot-2018-12-10-at-2.01.26-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-12-10-at-6.18.13-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/screen-shot-2018-12-10-at-6.18.13-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-12-10-at-6.55.04-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/screen-shot-2018-12-10-at-6.55.04-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-12-11-at-7.51.08-am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/screen-shot-2018-12-11-at-7.51.08-am.png -------------------------------------------------------------------------------- /.gitbook/assets/shasper_issuance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/shasper_issuance.png -------------------------------------------------------------------------------- /.gitbook/assets/state-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/state-channels.png -------------------------------------------------------------------------------- /.gitbook/assets/tcr-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/tcr-diagram.png -------------------------------------------------------------------------------- /.gitbook/assets/unordered-tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/unordered-tcr.png -------------------------------------------------------------------------------- /.gitbook/assets/walletconnect_preview_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/walletconnect_preview_2.png -------------------------------------------------------------------------------- /.gitbook/assets/wbtc-partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/.gitbook/assets/wbtc-partners.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.ethhub.io -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/AI/Builtonethereum-tall.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/AI/Builtonethereum-tall.ai -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/AI/Builtonethereum-wide.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/AI/Builtonethereum-wide.ai -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/AI/Builtonethereum.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/AI/Builtonethereum.ai -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/AI/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/AI/_DS_Store -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Dark wide bw (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Dark wide bw (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Dark wide color (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Dark wide color (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Dark wide flat (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Dark wide flat (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Light wide bw (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Light wide bw (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Light wide color (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Light wide color (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Light wide flat (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Light wide flat (2).png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall dark bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall dark bw.png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall dark color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall dark color.png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall dark flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall dark flat.png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall light bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall light bw.png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall light color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall light color.png -------------------------------------------------------------------------------- /docs/assets/files/builtoneth_branding/PNG/Tall light flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/files/builtoneth_branding/PNG/Tall light flat.png -------------------------------------------------------------------------------- /docs/assets/images/airswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/airswap.png -------------------------------------------------------------------------------- /docs/assets/images/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/blocks.png -------------------------------------------------------------------------------- /docs/assets/images/blocktimes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/blocktimes.PNG -------------------------------------------------------------------------------- /docs/assets/images/built_on_ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/built_on_ethereum.png -------------------------------------------------------------------------------- /docs/assets/images/burner_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/burner_advanced.png -------------------------------------------------------------------------------- /docs/assets/images/burner_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/burner_exchange.png -------------------------------------------------------------------------------- /docs/assets/images/burner_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/burner_main.png -------------------------------------------------------------------------------- /docs/assets/images/chainlink_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/chainlink_logo.png -------------------------------------------------------------------------------- /docs/assets/images/combinatorial_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/combinatorial_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/cToken_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/cToken_redeem.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/cToken_uses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/cToken_uses.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/coin_stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/coin_stack.jpg -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/comp_borrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/comp_borrow.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/comp_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/comp_supply.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/comp_voting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/comp_voting.png -------------------------------------------------------------------------------- /docs/assets/images/compound_guide/liqu_mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/compound_guide/liqu_mining.png -------------------------------------------------------------------------------- /docs/assets/images/daicard_deposit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/daicard_deposit.png -------------------------------------------------------------------------------- /docs/assets/images/daicard_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/daicard_request.png -------------------------------------------------------------------------------- /docs/assets/images/daicard_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/daicard_send.png -------------------------------------------------------------------------------- /docs/assets/images/daicard_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/daicard_settings.png -------------------------------------------------------------------------------- /docs/assets/images/daicard_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/daicard_splash.png -------------------------------------------------------------------------------- /docs/assets/images/dcs-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/dcs-triangle.png -------------------------------------------------------------------------------- /docs/assets/images/dsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/dsr.png -------------------------------------------------------------------------------- /docs/assets/images/dsr_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/dsr_guide.png -------------------------------------------------------------------------------- /docs/assets/images/ens_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ens_manage.png -------------------------------------------------------------------------------- /docs/assets/images/ens_metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ens_metamask.png -------------------------------------------------------------------------------- /docs/assets/images/ens_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ens_register.png -------------------------------------------------------------------------------- /docs/assets/images/ens_submanage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ens_submanage.png -------------------------------------------------------------------------------- /docs/assets/images/ens_submanage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ens_submanage2.png -------------------------------------------------------------------------------- /docs/assets/images/ensnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ensnow.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/allowance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/allowance.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/approve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/approve.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/balance_of.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/balance_of.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/event_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/event_summary.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/example_token_contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/example_token_contract.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/metal_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/metal_token.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/total_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/total_supply.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/transfer.png -------------------------------------------------------------------------------- /docs/assets/images/erc20_guide/transfer_from.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/erc20_guide/transfer_from.png -------------------------------------------------------------------------------- /docs/assets/images/etherdelta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherdelta.png -------------------------------------------------------------------------------- /docs/assets/images/ethereum_oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ethereum_oracle.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/EOA_to_EOA_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/EOA_to_EOA_diagram.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/EOA_to_EOA_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/EOA_to_EOA_tx.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/Eth_EOA_to_contract_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/Eth_EOA_to_contract_diagram.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/Eth_to_EthHub_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/Eth_to_EthHub_tx.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/ethhub_creation_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/ethhub_creation_tx.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/token_transfer_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/token_transfer_diagram.png -------------------------------------------------------------------------------- /docs/assets/images/etherscan_guide/token_transfer_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/etherscan_guide/token_transfer_tx.png -------------------------------------------------------------------------------- /docs/assets/images/ethmojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ethmojis.png -------------------------------------------------------------------------------- /docs/assets/images/fairdex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/fairdex.png -------------------------------------------------------------------------------- /docs/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/geth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/geth.png -------------------------------------------------------------------------------- /docs/assets/images/graded_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/graded_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/how-plasma-works.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/how-plasma-works.jpeg -------------------------------------------------------------------------------- /docs/assets/images/how-plasma-works1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/how-plasma-works1.jpeg -------------------------------------------------------------------------------- /docs/assets/images/idex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/idex.png -------------------------------------------------------------------------------- /docs/assets/images/issuance_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/issuance_graph.png -------------------------------------------------------------------------------- /docs/assets/images/kyber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/kyber.png -------------------------------------------------------------------------------- /docs/assets/images/layered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/layered_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/nested_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/nested_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/ordered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/ordered_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/parity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/parity.png -------------------------------------------------------------------------------- /docs/assets/images/payment_chans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/payment_chans.png -------------------------------------------------------------------------------- /docs/assets/images/serenity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/serenity.png -------------------------------------------------------------------------------- /docs/assets/images/slowtrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/slowtrade.png -------------------------------------------------------------------------------- /docs/assets/images/stake_interest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/stake_interest.png -------------------------------------------------------------------------------- /docs/assets/images/state_chans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/state_chans.png -------------------------------------------------------------------------------- /docs/assets/images/tcrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/tcrs.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/fungible_tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/fungible_tokens.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/liquidity_token_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/liquidity_token_image.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/market_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/market_graph.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/new_pool_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/new_pool_creation.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/orderbook_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/orderbook_example.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/scale_100_balanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/scale_100_balanced.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/scale_100_unbalanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/scale_100_unbalanced.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/scale_150_balanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/scale_150_balanced.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/swap_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/swap_example.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/swapping_erc20s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/swapping_erc20s.png -------------------------------------------------------------------------------- /docs/assets/images/uniswap_guide/uniswap_contract_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/uniswap_guide/uniswap_contract_overview.png -------------------------------------------------------------------------------- /docs/assets/images/unordered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/unordered_tcr.png -------------------------------------------------------------------------------- /docs/assets/images/wallet_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/wallet_connect.png -------------------------------------------------------------------------------- /docs/assets/images/wbtcpartners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/assets/images/wbtcpartners.png -------------------------------------------------------------------------------- /docs/built-on-ethereum/collectibles/cryptopunks.md: -------------------------------------------------------------------------------- 1 | title: CryptoPunks - EthHub 2 | 3 | description: CryptoPunks are unique pixel art collectibles with individual chracteristics stored on the Ethereum blockchain. 4 | 5 | # CryptoPunks 6 | 7 | CryptoPunks are 10,000 unique collectible characters with proof of ownership stored on the Ethereum blockchain. No two are exactly alike, and each one of them can be officially owned by a single person on the Ethereum blockchain. 8 | 9 | The CryptoPunks are 24x24 pixel art images, generated algorithmically. Most are punky-looking guys and girls, but there are a few rarer types mixed in: Apes, Zombies and even the odd Alien. Every punk has their own profile page that shows their attributes as well as their ownership/for-sale status. 10 | 11 | ## Resources 12 | 13 | * [Website](https://www.larvalabs.com/cryptopunks) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/collectibles/decentraland.md: -------------------------------------------------------------------------------- 1 | title: Decentraland - EthHub 2 | 3 | description: Decentraland is an open virtual world that players can modify and interact with. Purchase, rent and upgrade land in virtual reality and interact with others. 4 | 5 | # Decentraland 6 | 7 | ## Description 8 | 9 | Decentraland is an open virtual world that players can modify and interact with. 10 | 11 | Decentraland is a marketplace for buying and selling digital assets representing pieces of land in the virtual world. Initially, the land is distributed via an auction and the winning bidder receives the ownership of a land. They can then trade it on a secondary market. 12 | 13 | Each land has a 'scene' where an owner can put 3D objects and code their interactions. Therefore, it’s possible to create games and attractions within Decentraland. 14 | 15 | The world will be accessible via a VR browser on multiple platforms. 16 | 17 | ## History 18 | 19 | ### Public Launch 20 | 21 | Decentraland's public launch is expected early Summer 2019. 22 | 23 | ## Resources 24 | 25 | * [Website](https://decentraland.org) 26 | 27 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/collectibles/nftkred.md: -------------------------------------------------------------------------------- 1 | title: NFT.Kred - EthHub 2 | 3 | description: NFT.Kred is a platform for creating custom, actionable Non-Fungible Tokens with social engagement. 4 | 5 | # NFT.Kred 6 | 7 | NFT.Kred is a platform for creating custom, actionable Non-Fungible Tokens with social engagement. Tokens created on NFT.Kred can be created using various templates and types that give the NFT different attributes, including redemptions, royalties, magic pairs and more. 8 | 9 | Tokens on NFT.Kred can be commented and liked, given and traded, or sold via third party marketplaces. 10 | 11 | NFT.Kred is used by: 12 | 13 | 1. **Brands** and communities to create reward and loyalty tokens that are redeemable for offers and discounts 14 | 2. **Events** to create virtual NFT Swag that drives traffic to sponsors' and partners' physical and virtual properties 15 | 3. **Influencers** and individuals to tokenize their digital assets and share them with friends 16 | 17 | ## Resources 18 | 19 | * [Website](https://www.NFT.Kred) -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/aggregators/totle.md: -------------------------------------------------------------------------------- 1 | title: Totle - Ethhub 2 | 3 | description: Totle is creating an intuitive non-custodial platform for managing digital assets. Trade across many decentralized orderbooks to bundle liquidity. 4 | 5 | # Totle 6 | 7 | ## Description 8 | 9 | Totle is creating an intuitive non-custodial platform for managing digital assets. Totle's interface allows users to view asset performance and allocation as well as trade directly from the platform. A unique characteristic of Totle is the aggregation of decentralized exchange orderbooks, allowing for enhanced decentralized trading liquidity. 10 | 11 | ## Important Links 12 | 13 | * Website: [https://www.totle.com](https://www.totle.com) 14 | * Medium: [https://medium.com/totle](https://medium.com/totle) 15 | * Telegram: [https://t.me/totleinc](http://t.me/totleinc) 16 | * Twitter: [https://twitter.com/TotleCrypto](https://twitter.com/TotleCrypto) 17 | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/layer-2-based/what-is-layer-2-based.md: -------------------------------------------------------------------------------- 1 | title: Ethereum Layer 2 Based Decentralized Exchanges - EthHub 2 | 3 | description: A dive into what layer 2 based decentralized exchanges on Ethereum are and the different options. 4 | 5 | # Layer 2 Based 6 | 7 | Layer 2 decentralized exchanges are built on layer 2 scaling methods, bringing much of the benefits regarding saving on on-chain transaction gas fees, settlement speed, and scalability - but also inherit the potential underlying weaknesses. 8 | 9 | ## Exchanges 10 | 11 | * [TEX](tex.md) 12 | 13 | ### Pros 14 | 15 | * Faster order management than on-chain solutions 16 | * Less fees involved than on-chain solutions 17 | * Same scalability as centralized exchanges 18 | 19 | ### Cons 20 | 21 | * Inherit the potential weaknesses of the underlying layer 2 solutions 22 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/off-chain-orderbook/0x-relayers.md: -------------------------------------------------------------------------------- 1 | title: 0x Relayers - Ethhub 2 | 3 | description: 0x Relayers share liquidity across the 0x protocol, improving liquidity and volumes across the ecosystem. 4 | 5 | # 0x Relayers 6 | 7 | | Relayer | Link | 8 | | :--- | :--- | 9 | | Radar Relay | [https://app.radarrelay.com](https://app.radarrelay.com) | 10 | | Ordermatch | [https://ordermatch.io](https://ordermatch.io) | 11 | | StarBitEx | [https://exchange.star-bit.io](https://exchange.star-bit.io) | 12 | | DDEX | [https://ddex.io/trade](https://ddex.io/trade) | 13 | | Paradex | [https://paradex.io/](https://paradex.io/) | 14 | | ERC dEX | [https://app.ercdex.com](https://app.ercdex.com) | 15 | | The Ocean | [https://app.theocean.trade/](https://app.theocean.trade/) | 16 | | Token Jar | [https://tokenjar.io/](https://tokenjar.io/) | 17 | | Bamboo Relay | [https://bamboorelay.com/](https://bamboorelay.com/) | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/off-chain-orderbook/etherdelta.md: -------------------------------------------------------------------------------- 1 | title: EtherDelta - Ethhub 2 | 3 | description: EtherDelta is a decentralized exchange. It processes both orders and trade settlements on chain. 4 | 5 | # EtherDelta 6 | 7 | ## Description 8 | 9 | EtherDelta is a decentralized exchange. It processes both orders and trade settlements on chain. 10 | 11 | ## Interface 12 | 13 | ![](/assets/images/etherdelta.png) 14 | 15 | ## Resources 16 | 17 | * [Website](https://etherdelta.com/) 18 | * [Twitter](https://twitter.com/etherdelta) 19 | * [Github](https://github.com/etherdelta) 20 | 21 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/off-chain-orderbook/hydro.md: -------------------------------------------------------------------------------- 1 | title: Hydro - Ethhub 2 | 3 | description: Hydro is a fork of 0x that removes the requirement to pay fees in a native token and adds liquidity sharing and an improved matching engine. 4 | 5 | # Hydro 6 | 7 | ## Description 8 | 9 | The DDEX team forked 0x and called their new protocol Hydro. They iterating different parts of the 0x protocol, but the most important seem to be a new matching engine and a new liquidity sharing model. Unlike 0x, there is no requirement that one pay trading fees with an appcoin. 10 | 11 | ## Important Links 12 | 13 | * [Website](https://hydroprotocol.io/) 14 | * [Twitter](https://twitter.com/protocol_hydro) 15 | * [Github](https://github.com/HydroProtocol) 16 | 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/off-chain-orderbook/idex.md: -------------------------------------------------------------------------------- 1 | title: IDEX - Ethhub 2 | 3 | description: IDEX is a decentralized exchange. It processes orders in a centralized order book and settles the trades on chain. 4 | 5 | # IDEX 6 | 7 | ## Description 8 | 9 | IDEX is a decentralized exchange. It processes orders in a centralized order book and settles the trades on chain. 10 | 11 | ## Interface 12 | 13 | ![](/assets/images/idex.png) 14 | 15 | ## Important Links 16 | 17 | * [Website](https://idex.market/) 18 | * [Twitter](https://twitter.com/aurora_dao) 19 | * [Gtihub](https://github.com/AuroraDAO) 20 | 21 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/peer-to-peer/what-is-peer-to-peer.md: -------------------------------------------------------------------------------- 1 | title: Ethereum Peer to Peer Decentralized Exchanges - EthHub 2 | 3 | description: A dive into what peer to peer decentralized exchanges on Ethereum are as well as the different options. 4 | 5 | # Peer to Peer 6 | 7 | For "Peer-to-Peer" decentralized exchanges, users are matched with one another off-chain for instant token swaps. Swaps are settled on-chain. 8 | 9 | ## Exchanges 10 | 11 | * [AirSwap](airswap.md) 12 | * [Ren](ren.md) 13 | 14 | ### Pros 15 | 16 | * Convenient swapping of tokens 17 | 18 | ### Cons 19 | 20 | * No order system 21 | 22 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/pool-based/what-is-pool-based.md: -------------------------------------------------------------------------------- 1 | title: Ethereum Pool Based Decentralized Exchanges - EthHub 2 | 3 | description: A dive into what pool based decentralized exchanges on Ethereum are as well as the different options. 4 | 5 | # Pool Based 6 | 7 | For "Pool-based" decentralized exchanges, users are getting liquidity from a single pool. Price discovery is done on-chain by interacting with the protocol's smart contract. 8 | 9 | ## Exchanges 10 | 11 | * [KyberSwap](kyber.md) 12 | * [Bancor](bancor.md) 13 | * [Uniswap](uniswap.md) 14 | 15 | ### Pros 16 | 17 | * Convenient and fast swap of tokens 18 | 19 | ### Cons 20 | 21 | * No order system -------------------------------------------------------------------------------- /docs/built-on-ethereum/decentralized-exchanges/what-are-decentralized-exchanges.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ethereum Decentralized Exchanges - EthHub 3 | 4 | description: The different types of decentralized exchanges built on Ethereum. 5 | --- 6 | 7 | # Decentralized Exchanges 8 | 9 | ## Summary 10 | 11 | Decentralized Exchanges \(sometimes referred to as 'non-custodial exchanges'\) allow for the trading of crypto assets without the need for a trusted central authority. This cuts down on the risk of exchange hacks and many other risks. There are many types of decentralized exchanges and it's important to understand the differences. 12 | 13 | ## Different types of DEXs: 14 | 15 | * Auction Based 16 | * Off-chain order book 17 | * Peer-to-peer 18 | * Pool-based 19 | * Aggregators 20 | 21 | ## Resources: 22 | 23 | * [List of all DEXs](https://github.com/distribuyed/index/blob/master/README.md) 24 | * [Messari DEX Resources](https://messari.io/resource/decentralized-exchanges) 25 | * [Circle DEX Report](https://research.circle.com/crypto-reports/decentralized-exchanges) 26 | 27 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/biconomy.md: -------------------------------------------------------------------------------- 1 | title: Biconomy - Ethhub 2 | 3 | # Biconomy 4 | 5 | ## Description 6 | 7 | Biconomy is a relayer infrastructure network and transaction platform enabling you to build applications easily and reduce the friction between your applications built on the blockchain and your end-users. 8 | 9 | 10 | ### Main products & Documentation: 11 | 12 | * [Mexa-SDK](https://github.com/bcnmy/mexa-sdk) 13 | * [Dashboard](https://dashboard.biconomy.io) 14 | * [Documentation](https://docs.biconomy.io) 15 | * [Product-Demo](https://bookreads.biconomy.io) 16 | 17 | ### Features 18 | 19 | * Easily enable meta-transactions in your dapp without any changes. 20 | * Compatible with native meta transaction standard. 21 | * Scalable relayer infrastructure. 22 | * Manage Dapps contracts via dashboard. 23 | 24 | 25 | ## Resources 26 | 27 | * [Website](https://biconomy.io) 28 | * [Twitter](https://twitter.com/biconomy) 29 | * [GitHub](https://github.com/bcnmy) 30 | * [Medium](https://medium.com/biconomy) 31 | * [Meta Transactions standard bounty finalist](https://github.com/bcnmy/metatx-standard) 32 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/ethernal.md: -------------------------------------------------------------------------------- 1 | title: Ethernal - Ethhub 2 | 3 | # Ethernal 4 | 5 | ## About 6 | 7 | Ethernal is a block explorer for private EVM-based chains. 8 | You can connect it to local and remote chains. 9 | It allows you to browse blocks & transactions, decode function calls and events, interact with smart contracts through an automatically generated UI, and read contract variables. 10 | 11 | 12 | ## Resources: 13 | 14 | * [Website](https://www.tryethernal.com) 15 | * [Documentation](https://doc.tryethernal.com) 16 | * [Twitter](https://twitter.com/tryethernal) 17 | * [Github](https://github.com/tryethernal) 18 | * [Discord](https://discord.gg/THmGWZYP) 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/kauri.md: -------------------------------------------------------------------------------- 1 | title: Kauri - Ethhub 2 | 3 | description: Kauri is a decentralized knowledge base, blogging platform and is building infrastructure for gathering technical information about Ethereum. 4 | 5 | # Kauri 6 | 7 | ## Description 8 | 9 | Kauri is a decentralized knowledge base, blogging platform and is building infrastructure for gathering technical information about Ethereum. 10 | 11 | The aim of the project is to create a network of writers, editors, and curators that collectively contribute to the growing set of articles and tutorials. Thanks to Ethereum and IPFS, authors have full ownership of their work. 12 | 13 | Kauri is starting as a place for the technical documentation for various blockchain protocols and applications, as well as building for Ethereum in general. The team wants to acquire developers of these projects as moderators and active content creators. 14 | 15 | ## Resources 16 | 17 | * [Website](https://kauri.io) 18 | 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/mintable.md: -------------------------------------------------------------------------------- 1 | title: Mintable - Ethhub 2 | 3 | description: Mintable is a free service that lets you manage all of your ERC-721s in one UI via Metamask. 4 | 5 | # Mintable 6 | 7 | ## About 8 | 9 | Mintable is a free service that lets you manage all of your ERC-721s in one UI via Metamask. You can also Mint new smart contracts that are deployed to the main Ethereum network within seconds. This lets you create any type of ERC-721 you want and have real digital ownership of that item. 10 | 11 | ## Future updates 12 | 13 | * Ledger Integration 14 | 15 | ## Resources 16 | 17 | * [App](https://mintable.app/) 18 | * [Help](https://mintable.app/help) 19 | 20 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/oneclickdapp.md: -------------------------------------------------------------------------------- 1 | title: OneClickDapp - Ethhub 2 | 3 | description: With OneClickDapp, anyone with the dApp URL can interact with your shiny new smart contract, and access all functions at the correct address/network. 4 | 5 | # OneClickdApp 6 | 7 | ## About 8 | 9 | OneClickDapp instantly builds you a dApp with a simple URL to bookmark or share with a friend. Anyone with the dApp URL can interact with your shiny new smart contract, and access all functions at the correct address/network. Don't write a single line of front-end code. Forget about verifying your contract on Etherscan or MEW. 10 | 11 | ## Resources 12 | 13 | * [Website](https://oneclickdapp.com/) 14 | * [You Wrote a Smart Contract - Now What? \(blog post\)](https://medium.com/@pi0neerpat/you-wrote-a-smart-contract-now-what-a9153a5ee91d/) 15 | 16 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/solui.md: -------------------------------------------------------------------------------- 1 | title: solUI - Ethhub 2 | 3 | description: With solUI you can quickly generate a Dapp for your smart contracts and deploy it to IPFS with shareable URL anyone can use. 4 | 5 | # solUI 6 | 7 | ## About 8 | 9 | solUI - _"solly"_ - lets you quickly generate a Dapp for your smart contracts and deploy it to IPFS with a shareable URL anyone can use. No frontend coding required - just write a JSON specification and check it into version control alongside your contracts. This way your Dapp is never out-of-sync with your contract code. 10 | 11 | ## Resources 12 | 13 | * [Website](https://solui.dev/) 14 | * [Presentation slides](https://www.slideshare.net/RameshNair6/solui-introduction-2019) 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/developer-tools/walletconnect.md: -------------------------------------------------------------------------------- 1 | title: WalletConnect - Ethhub 2 | 3 | description: WalletConnect is an open protocol to communicate securely between Wallets and Dapps (Web3 Apps). 4 | 5 | # WalletConnect 6 | 7 | WalletConnect is an open protocol to communicate securely between Wallets and Dapps (Web3 Apps). The protocol establishes a remote connection between two apps and/or devices using a Bridge server to relay payloads. These payloads are symmetrically encrypted through a shared key between the two peers. The connection is initiated by one peer displaying a QR Code or deep link with a standard WalletConnect URI and is established when the counter-party approves this connection request. It also includes an optional Push server to allow Native applications to notify the user of incoming payloads for establishes connections. 8 | 9 | ![](/assets/images/wallet_connect.png) 10 | 11 | 12 | ## Resources 13 | 14 | * [Website](https://walletconnect.org) 15 | * [Twitter](https://twitter.com/walletconnect) 16 | * [GitHub](https://github.com/walletconnect) 17 | * [Reddit](https://t.me/walletconnect) 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/enterprise/eea.md: -------------------------------------------------------------------------------- 1 | title: Enterprise Ethereum Alliance (EEA) - EthHub 2 | 3 | description: EEA is a member-driven standards organization whose charter is to develop open blockchain specifications. 4 | 5 | # Enterprise Ethereum Alliance (EEA) 6 | 7 | ## Summary 8 | 9 | The EEA is a member-led industry organization whose objective is to drive the use of Ethereum blockchain technology as an open-standard to empower ALL enterprises. Our members are thought leaders from around the globe with a shared vision to create enterprise-ready solutions. 10 | 11 | The EEA’s mission is to: 12 | 13 | * Deliver an open, standards-based architecture and specification to accelerate the adoption of Enterprise Ethereum. 14 | * Create world-class Enterprise Ethereum Client Specifications and testing and certification programs that ensure interoperability, multiple vendors of choice, and lower costs for its members. 15 | 16 | ## Resources 17 | 18 | * [Website](https://entethalliance.org/) 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/enterprise/foxconn.md: -------------------------------------------------------------------------------- 1 | title: Foxconn - EthHub 2 | 3 | description: Foxconn is building Chained Finance. Chained Finance will soon connect Foxconn and its many small suppliers on an Ethereum-based blockchain. 4 | 5 | # Foxconn 6 | 7 | ## Summary 8 | Foxconn – best known for manufacturing Apple’s iPhone launched a Shanghai startup called **Chained Finance** with a Chinese peer-to-peer lender. Chained will soon connect Foxconn and its many small suppliers (and their suppliers' suppliers) on an Ethereum-based blockchain that will use its own token and smart contracts to make payments and provide financing in near real time, eliminating a daisy chain of paperwork. 9 | 10 | ## Resources 11 | 12 | * [https://www.coindesk.com/foxconn-wants-take-global-supply-chain-blockchain](https://www.coindesk.com/foxconn-wants-take-global-supply-chain-blockchain) 13 | * [http://www.forbesindia.com/article/cross-border/blockchain-goes-to-work/53903/1](http://www.forbesindia.com/article/cross-border/blockchain-goes-to-work/53903/1) 14 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/enterprise/unicef.md: -------------------------------------------------------------------------------- 1 | title: Unicef - EthHub 2 | 3 | description: Unicef Innovation Ventures are exploring the use of the Ethereum public blockchain. 4 | 5 | # Unicef 6 | 7 | ## Summary 8 | UNICEF Innovation Ventures team explores blockchain technologies, with the potential to impact children. The team sees the Ethereum blockchain as having benefits in 3 main ways: 1) new ways of donating money 2) creating better transparency in internal processes, and 3) leveraging tokenisation to reduce friction in transactions, as well as create new opportunities. 9 | 10 | To understand the technical, social, ethical, and legal challenges of utilizing blockchain technologies in our complex and interconnected world — the team is exploring this space with open eyes on practical experimentations of cryptocurrencies, smart contracts, digital scarcity, digital collectibles and various types of tokens. 11 | 12 | ## Resources 13 | 14 | * [https://www.unicef.org/innovation/blockchain](https://www.unicef.org/innovation/blockchain) 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/erc-token-standards/erc621.md: -------------------------------------------------------------------------------- 1 | title: ERC621 - EthHub 2 | 3 | description: ERC621 is an extension to the ERC20 standard. It adds two functions to increase and decrease the total amount of tokens in circulation. 4 | 5 | # ERC621 6 | 7 | ## Summary 8 | 9 | ERC621 is an extension to the ERC20 standard. It adds two functions to increase and decrease the total amount of tokens in circulation. In short, it proposes that `totalSupply` can be changed. ERC20 only allows a single token emission event defined by the contract owner during creation. With ERC621 a new `totalSupply` can be defined through the functions `increaseSupply` and `decreaseSupply`. It is recommended that these functions are only accessed by the contract owners or trusted users. To enhance ERC621's functionality and security, and to avoid potential errors, additional functions for overflow checks, contract property modifications and restricted privileges, should be implemented. 10 | 11 | ## Resources: 12 | 13 | * [Github](https://github.com/ethereum/EIPs/pull/621) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/erc-token-standards/erc721x.md: -------------------------------------------------------------------------------- 1 | title: ERC721x - EthHub 2 | 3 | description: ERC721x is an extension of ERC721 that adds support for multi-fungible tokens and batch transfers, while being fully backward-compatible. 4 | 5 | # ERC721x 6 | 7 | ## Summary 8 | 9 | ERC721x is an extension of [ERC721](https://github.com/econoar/ethhub/tree/5b2440487681e9725c67cfc2350811a3a12e58bc/tokens/what-is-erc/tokens/what-is-erc/erc721.md) that adds support for multi-fungible tokens and batch transfers, while being fully backward-compatible. 10 | 11 | ERC721x is heavily inspired by the [ERC1178](https://github.com/ethereum/EIPs/pull/1178/) token standard. 12 | 13 | ## Resources 14 | 15 | * [Website](https://erc721x.org/) 16 | 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/erc-token-standards/erc777.md: -------------------------------------------------------------------------------- 1 | title: ERC777 - EthHub 2 | 3 | description: ERC777 defines all the functions required to send tokens on behalf of another address, contract or regular account. 4 | 5 | # ERC777 6 | 7 | ## Summary 8 | 9 | ERC777 defines all the functions required to send tokens on behalf of another address, contract or regular account. For this purpose, it uses the ERC1820 standard. The use of ERC1820 enables the registration of metadata in smart contracts in order to allow backwards compatibility with previous versions of token implementations. ERC777 includes functions for authorization, revocation, transfer and checks. 10 | 11 | ## Resources 12 | 13 | * [Specification](https://eips.ethereum.org/EIPS/eip-777) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/erc-token-standards/what-are-erc-tokens.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ERC Token Standards - EthHub 3 | 4 | description: What is an ERC (Ethereum Request for Comments) token? 5 | --- 6 | 7 | # ERC Token Standards 8 | 9 | ERCs \(Ethereum Request for Comments\) are technical documents used by smart contract developers at Ethereum. They define a set of rules required to implement tokens for the Ethereum ecosystem. These documents are usually created by developers, and they include information about protocol specifications and contract descriptions. Before becoming an standard, an ERC must be revised, commented and accepted by the community through an EIP \(Ethereum Improvement Proposal\). 10 | 11 | ## Resources 12 | 13 | * [Website](https://eips.ethereum.org/erc) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/games/etheroll.md: -------------------------------------------------------------------------------- 1 | title: Etheroll - EthHub 2 | 3 | description: Etheroll is an Ethereum smart contract for placing bets on our provably-fair dice game using Ether with no deposits or sign-ups. 4 | 5 | # Etheroll 6 | 7 | ## Summary 8 | 9 | Etheroll is an Ethereum smart contract for placing bets on our provably-fair dice game using Ether with no deposits or sign-ups. Each dice roll is provably random and cryptographically secure thanks to the nature of the Ethereum blockchain. 10 | 11 | ## History 12 | 13 | Etheroll's inital crowdsale was refunded after The DAO was hacked in June 2016. The sale raised 2,326 ETH in the five days it ran before the team decided it was best to trigger the refund. The team reached this decision in an effort to ensure the integity of their smart contracts. The crowdsale would continue as planned in March 2017. 14 | 15 | ## Important Links 16 | 17 | * [Website](https://etheroll.com/) 18 | * [Refund press release](https://etheroll.wordpress.com/2016/06/18/crowdsale-now-closed-eth-has-been-refunded/) 19 | 20 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/governance/colony.md: -------------------------------------------------------------------------------- 1 | title: Colony - EthHub 2 | 3 | description: Colony is infrastructure for the future of work: self-organizing companies that run via software, not paperwork. 4 | 5 | # Colony 6 | 7 | ## What is Colony? 8 | 9 | Colony is infrastructure for the future of work: self-organizing companies that run via software, not paperwork. It could be a community project, a company, or a non-profit — your imagination is the only limit. 10 | 11 | ## How does it work? 12 | 13 | Every colony has its own token. You earn tokens by doing work. The more tokens you hold, the more of the colony you own. Tokens let you stake your ownership on your good judgement when proposing tasks, or claiming someone should be paid. 14 | 15 | ## Resources 16 | * [Website](https://colony.io) 17 | * [Github](https://github.com/JoinColony) 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/governance/democracy-earth.md: -------------------------------------------------------------------------------- 1 | title: Democracy Earth - EthHub 2 | 3 | description: Democracy Earth is building a sovereign, open source and decentralized democratic governance protocol for any kind of organization. 4 | 5 | # Democracy Earth 6 | A borderless peer to peer democracy. For everyone, anywhere. 7 | 8 | ## Summary 9 | 10 | Democracy Earth is building a sovereign, open source and decentralized democratic governance protocol for any kind of organization. 11 | 12 | ## Resources 13 | 14 | * [Website](https://www.democracy.earth/) 15 | * [Github](https://github.com/DemocracyEarth/) 16 | * [App](https://votest.democracy.earth/) 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/governance/govblocks.md: -------------------------------------------------------------------------------- 1 | title: GovBlocks - EthHub 2 | 3 | description: GovBlocks is an open, permissionless decision protocol that empowers dApps to define and operate any governance model at scale. 4 | 5 | # GovBlocks 6 | 7 | ## What is GovBlocks? 8 | 9 | GovBlocks is an open, permissionless decision protocol that empowers dApps to define and operate any governance model at scale. 10 | 11 | ## How does it work? 12 | 13 | GovBlocks make use of smart contracts to deploy modular governance for your DAO, enterprise, communities or any off-chain business. Configure stakeholders, workflows, voting layers, rewards, quorum levels - virtually all components of your governance model to suit the evolving needs. All the web browser. 14 | 15 | ## Resources 16 | 17 | * [Website](https://govblocks.io) 18 | * [Github](https://github.com/somish/govblocks-protocol) 19 | * [App](https://demo.govblocks.io/) 20 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/identity/bloom.md: -------------------------------------------------------------------------------- 1 | title: Bloom - EthHub 2 | description: Bloom is a set of products designed to facilitate lending and borrowing on a global scale. 3 | 4 | # Bloom 5 | 6 | ## Summary 7 | 8 | Bloom is a set of products designed to facilitate lending and borrowing on a global scale. Credit products are unavailable for many people, and those who have access to it have their credit data siloed, which makes it less useful. 9 | 10 | The idea behind Bloom is to make credit data global and interoperable, and loans — available to everyone. Not only users can share their reputation across countries and banks, but they can also share their creditworthiness with peers. 11 | 12 | The protocol consists of three components: ID, IQ, and Score. BloomID is an identity attestation protocol. BloomIQ is a registry of given loans. BloomScore is a credit scoring system. 13 | 14 | ## Resources 15 | 16 | * [Website](https://bloom.co) 17 | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/identity/civic.md: -------------------------------------------------------------------------------- 1 | title: Civic - EthHub 2 | 3 | description: Civic uses blockchain identity verification technology to secure and protect personal information transfer. 4 | 5 | # Civic 6 | 7 | Civic allows people to control the use of their identity information. Civic uses blockchain identity verification technology to secure and protect personal information transfer. 8 | 9 | ## Products 10 | 11 | ### Secure Identity Platform 12 | 13 | Civic’s Secure Identity Platform \(SIP\) uses a verified identity for multi-factor authentication on web and mobile apps without the need for usernames or passwords. 14 | 15 | ### Civic Reusable KYC 16 | 17 | Add blockchain-enabled KYC to businesses and services that require user identification. Decentralized, reusable KYC improves security, on-boarding and every day use. 18 | 19 | ## Resources 20 | 21 | * [Website](https://www.civic.com/) 22 | 23 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/identity/jolocom.md: -------------------------------------------------------------------------------- 1 | title: Jolocom - EthHub 2 | 3 | description: The Jolocom identity solution aims to be a universal, lightweight, open source protocol for decentralized digital identity and access right management. 4 | 5 | # Jolocom 6 | 7 | ## Summary 8 | 9 | The Jolocom identity solution aims to be a universal, lightweight, open source protocol for decentralized digital identity and access right management. The protocol is built on to leading open source standards standards and relies on distributed / decentralized systems such as Ethereum and IPFS for identity registration and resolution. 10 | 11 | ## Resources 12 | 13 | * [Website](https://jolocom.io/) 14 | * [Github](https://github.com/jolocom) 15 | * [Docs](https://jolocom-lib.readthedocs.io/en/latest/index.html) 16 | 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/identity/selfkey.md: -------------------------------------------------------------------------------- 1 | title: Selfkey - EthHub 2 | 3 | description: SelfKey is a blockchain based self-sovereign identity system that allows individuals and companies to truly own, control and manage their digital identity. 4 | 5 | # Selfkey 6 | 7 | ## Summary 8 | 9 | SelfKey is a blockchain based self-sovereign identity system that allows individuals and companies to truly own, control and manage their digital identity, securely manage their cryptocurrency portfolio and instantly onboard onto financial, immigration and cryptocurrency services. 10 | 11 | ## Resources 12 | 13 | * [Website](https://selfkey.org/) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/infrastructure/bountiesnetwork.md: -------------------------------------------------------------------------------- 1 | title: Bounties Network - EthHub 2 | 3 | description: Bounties Network is a general-purpose bounty protocol. Bounty creators can incentivize work by offering tokens in exchange for getting a task completed. 4 | 5 | # Bounties Network 6 | 7 | ## Description 8 | 9 | Bounties Network is a general-purpose bounty protocol. Bounty creators can incentivize work by offering ether or tokens in exchange for getting a task completed. The funds are locked into escrow and released to the worker on successful submission. 10 | 11 | Other projects can use the protocol to build marketplaces for specific kind of tasks. For example, Gitcoin uses Bounties Network to incentivize open source contributions. 12 | 13 | ## Important links 14 | 15 | * Website: [https://bounties.network](https://bounties.network) 16 | * Github: [https://github.com/Bounties-Network](https://github.com/Bounties-Network) 17 | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/infrastructure/chainstack.md: -------------------------------------------------------------------------------- 1 | title: Chainstack - EthHub 2 | 3 | description: Chainstack is a managed blockchain services provider that lets you deploy free shared Ethereum nodes. 4 | 5 | # Chainstack 6 | 7 | ## Description 8 | 9 | Chainstack is a managed blockchain services provider that makes it 10 | simple to launch and scale decentralized networks and applications—complete with an intuitive user interface, 11 | seamless orchestration, and predictable pricing. 12 | 13 | Chainstack offers free shared Ethereum nodes. 14 | 15 | ## Important links 16 | 17 | * Website: [https://chainstack.com/](https://chainstack.com/) 18 | * Documentation: [https://docs.chainstack.com/](https://docs.chainstack.com/) -------------------------------------------------------------------------------- /docs/built-on-ethereum/marketplaces/origin-protocol.md: -------------------------------------------------------------------------------- 1 | title: Origin Protocol - EthHub 2 | 3 | description: Origin Protocol provides infrastructure for a general-purpose marketplace. Listings data is stored on IPFS, while the metadata is stored on Ethereum. 4 | 5 | # Origin Protocol 6 | 7 | ## Summary 8 | 9 | Origin Protocol provides infrastructure for a general-purpose marketplace. 10 | 11 | Users can create offers and put them onto the Ethereum blockchain. Listings data is stored on IPFS, while the metadata is stored on Ethereum. 12 | 13 | Origin Protocol doesn’t impose any listing fees, essentially making it a totally free marketplace. Listing data is available for anyone to access and interact with. Therefore, it is an open protocol that anyone can build on. For example, one can create a specialized marketplace by pulling listings related to a specific topic. 14 | 15 | ## Resources 16 | 17 | * [Website](https://www.originprotocol.com/en) 18 | 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/marketplaces/rarebits.md: -------------------------------------------------------------------------------- 1 | title: RareBits - EthHub 2 | 3 | description: RareBits is a marketplace dedicated to the buying and selling of crypto assets. 4 | 5 | # RareBits 6 | 7 | ## Summary 8 | 9 | RareBits is a marketplace dedicated to the buying and selling of crypto assets. 10 | 11 | Crypto assets are non-fungible tokens that are provably scarce and unique. We believe that this new asset class will pave the way for a new era of digital ownership. 12 | 13 | ## Resources 14 | 15 | * [Website](https://rarebits.io/) 16 | * [Twitter](https://twitter.com/rarebits_io) 17 | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/lending/dydx.md: -------------------------------------------------------------------------------- 1 | title: dYdX - EthHub 2 | 3 | description: dYdX is a non-custodial margin trading platform on Ethereum. ERC20 tokens can be leveraged against collateral. 4 | 5 | # dYdX 6 | 7 | ## Summary 8 | 9 | dYdX provides a way to trade derivatives on Ethereum. 10 | 11 | Users of the protocol can trade with margin, which allows them to short any ERC20 token or buy any token with leverage. Opening a position requires taking a debt. Therefore, a margin trader will need to find a creditor who will lend them the required tokens. Users negotiate via relayers or in private, then settle on-chain once they agree on terms. 12 | 13 | dYdX also plans to support options trading. Options give a right to its owner to buy or sell an asset in the future at the specified price. It can be used as a speculation or a hedge. 14 | 15 | ## Resources 16 | 17 | * [DeFi Pulse](https://defipulse.com/dydx) 18 | * [Website](https://dydx.exchange) 19 | * [Scout Dashboard](https://scout.cool/dydxprotocol/mainnet/) 20 | * [dYdX Positions](https://bloxy.info/list_margin_positions) 21 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/prediction-markets/what-are-prediction-markets.md: -------------------------------------------------------------------------------- 1 | title: What are Prediction Markets on Ethereum? - EthHub 2 | 3 | description: Prediction markets facilitate the trading of event derivatives. 4 | 5 | # Prediction Markets 6 | 7 | ## Summary 8 | 9 | Prediction markets facilitate the trading of event derivatives. They have been around since the 1990s and are sometimes also referred to as information markets, idea futures, and decision markets. Participants use prediction markets to speculate on outcomes of events. Many believe that decentralizing prediction markets will allow us to harness their full potential by lowering the cost of participating, bypassing strict regulation and increasing adoption by making the platforms more accessible across geographies. 10 | 11 | ## Resources 12 | 13 | * [Wikipedia](https://en.wikipedia.org/wiki/Prediction_market) 14 | * [Circle Prediction Markets Report](https://research.circle.com/crypto-reports/prediction-markets) 15 | 16 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/securities/abacus.md: -------------------------------------------------------------------------------- 1 | title: Abacus - EthHub 2 | 3 | description: Abacus makes an ecosystem for financial applications and service providers. Users can use Abacus to interact with smart contracts and service providers. 4 | 5 | # Abacus 6 | 7 | ## Summary 8 | 9 | Abacus makes an ecosystem for financial applications and service providers. 10 | 11 | Users can interact with financial applications using Abacus. Under the hood, these applications communicate with smart contracts and service providers. 12 | 13 | Service providers can be used for identity, compliance, and appraisal. They can run either on-hain or off-chain. In case the service is running off-chain, users should first request a quote for the service. After the user submits the data and pays for the service, a provider will write results in the blockchain, where applications and the protocol can access it. 14 | 15 | ## Resources 16 | 17 | * [Website](https://abacusfi.com/) 18 | 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/securities/securitize.md: -------------------------------------------------------------------------------- 1 | title: Securitize - EthHub 2 | 3 | description: The Securitize platform is a proven, robust, feature-rich platform with multiple successful issuances of digital securities on the blockchain. 4 | 5 | # Securitize 6 | 7 | ## Summary 8 | 9 | The Securitize platform is a proven, robust, feature-rich platform with multiple successful issuances of digital securities on the blockchain. 10 | 11 | Securitize is a full stack technology & services platform with powerful features and specialized tools for both investors and issuers. The Securitize platform allows users to manage their digital securities from one convenient dashboard. 12 | 13 | The Securitize DS Protocol provides the most complete, flexible and adopted compliance solution in the market today. The DS Protocol ensures digital securities issued via the Securitize platform can be traded compliantly across all marketplaces and exchanges. 14 | 15 | ## Resources 16 | 17 | * [Website](https://www.securitize.io/) 18 | 19 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/securities/templum.md: -------------------------------------------------------------------------------- 1 | title: Templum - EthHub 2 | 3 | description: Templum is a technology innovator that provides regulated market infrastructure for the digital asset sector. 4 | 5 | # Templum 6 | 7 | ## Summary 8 | 9 | Templum is a technology innovator that provides regulated market infrastructure for the digital asset sector, including a blockchain-enabled platform for capital raising and secondary trading. 10 | 11 | Templum’s flagship broker-dealer subsidiary, Templum Markets, is a blockchain-enabled, regulated marketplace for the primary sale and secondary trading of digital assets. 12 | 13 | ## Resources 14 | 15 | * [Website](https://templuminc.com/) 16 | 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/stablecoins/paxos.md: -------------------------------------------------------------------------------- 1 | title: Paxos - EthHub 2 | 3 | description: Paxos Standard is the first digital asset issued by a financial institution, and is fully collateralized by USD. 4 | 5 | # Paxos Standard 6 | 7 | ## Summary 8 | 9 | Paxos is a Trust company, regulated by the New York State Department of Financial Services, with deep experience as an intermediary between fiat and digital assets. Paxos Standard is the first digital asset issued by a financial institution, and is fully collateralized by USD. 10 | 11 | PAX will always be redeemable one-to-one with USD \(1 PAX = $1 USD\), providing a stable and common currency for digital transactions. 12 | 13 | ## Resources 14 | 15 | * [Website](https://www.paxos.com/pax/) 16 | 17 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/stablecoins/trueusd.md: -------------------------------------------------------------------------------- 1 | title: True USD - EthHub 2 | 3 | description: TrueUSD is a stablecoin that you can redeem 1-for-1 for US dollars. TUSD is the first asset token created on the TrustToken Platform. 4 | 5 | # True USD 6 | 7 | ## Summary 8 | 9 | TrueUSD \(TUSD\) is a stablecoin that you can redeem 1-for-1 for US dollars. TUSD is the first asset token created on the TrustToken Platform. 10 | 11 | ## Resources 12 | 13 | * [Website](https://www.trusttoken.com/trueusd) 14 | 15 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/open-finance/stablecoins/usdc.md: -------------------------------------------------------------------------------- 1 | title: USD Coin - EthHub 2 | 3 | description: USD Coin is an currency-backed stablecoin created by Centre which was founded by Circle and Coinbase. 4 | 5 | # USD Coin 6 | 7 | ## Summary 8 | 9 | USD Coin \(USDC\) is an currency-backed stablecoin created by Centre which was founded by Circle and Coinbase. The initial implementation is an ERC-20 token that creates possibilities in payments, lending, investing, trading and trade finance. Individuals and institutions can deposit US dollars from bank accounts, convert those dollars into tokens usable everywhere the internet reaches \(subject to the token’s compliance controls\), and redeem USDC tokens and cash out to bank accounts. 10 | 11 | USD Coin is supported by many wallets, exchanges and software applications. 12 | 13 | ## Resources 14 | 15 | * [Website](https://www.centre.io/usdc) 16 | * [Blog](https://medium.com/centre-blog) 17 | 18 | -------------------------------------------------------------------------------- /docs/built-on-ethereum/tcrs/types-of-tcrs.md: -------------------------------------------------------------------------------- 1 | title: Types of TCRs - EthHub 2 | 3 | description: Examples of the different types of Token Curated Registries. 4 | 5 | # Types of TCRs 6 | 7 | ## Unordered TCR 8 | 9 | ![](/assets/images/unordered_tcr.png) 10 | 11 | ## Ordered TCR 12 | 13 | ![](/assets/images/ordered_tcr.png) 14 | 15 | ## Graded TCR 16 | 17 | ![](/assets/images/graded_tcr.png) 18 | 19 | ## Layered TCR 20 | 21 | ![](/assets/images/layered_tcr.png) 22 | 23 | ## Nested TCR 24 | 25 | ![](/assets/images/nested_tcr.png) 26 | 27 | ## Combinatorial TCR 28 | 29 | ![](/assets/images/combinatorial_tcr.png) 30 | 31 | ## Resources 32 | 33 | [TCR Design Patterns](https://hackernoon.com/token-curated-registry-tcr-design-patterns-4de6d18efa15) 34 | 35 | -------------------------------------------------------------------------------- /docs/ethereum-basics/development/interacting-with-clients.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Interacting with Clients - EthHub 3 | 4 | description: This page provides information and resources to help you programmatically interface with an Ethereum client. 5 | --- 6 | 7 | # Interacting with an Ethereum Client: JSON-RPC 8 | 9 | JSON-RPC is the primary protocol used by Ethereum and bitcoin. It is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. While it is transport agnostic, most ethereum clients today implement one or all of the following: HTTP, IPC and websockets. 10 | 11 | ## Ethereum JSON-RPC Specification 12 | 13 | There exists a specification for ethereum JSON-RPC that is expected to be implemented by all client developers. The OpenRPC document can be found [here](https://github.com/etclabscore/ethereum-json-rpc-specification/blob/master/openrpc.json). 14 | 15 | Within the above linked repo you will also find generated code for making RPC calls to any ethereum client. 16 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/harmony.md: -------------------------------------------------------------------------------- 1 | title: Harmony - EthHub 2 | 3 | description: Harmony is ethereum’s original Java client formerly maintained by a group of independent developers. 4 | 5 | # Harmony 6 | 7 | ## Background 8 | 9 | Harmony is ethereum’s original Java client formerly maintained by a group of independent developers. 10 | 11 | ## Implementation Details 12 | 13 | Harmony is building an Ethereum 2.0 client written in the Java programming language and acts as an alternative to the enterprise-focused Pantheon client. 14 | 15 | Harmony operates under a General Public License \(GPL\) designed to ensure any implementations of the code remain "free software and stay free software". 16 | 17 | ## Resources: 18 | 19 | * [Github](https://github.com/harmony-dev/beacon-chain-java) 20 | 21 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/lighthouse.md: -------------------------------------------------------------------------------- 1 | title: Sigma Prime: Lighthouse - EthHub 2 | 3 | description: Sigma Prime is building an Ethereum 2.0 client called Lighthouse written in the programming language Rust. 4 | 5 | # Sigma 6 | 7 | ## Background 8 | 9 | Founded in 2016, Sigma Prime is an information security and blockchain technology consulting company. 10 | 11 | ## Implementation Details 12 | 13 | Sigma Prime is building an Ethereum 2.0 client called Lighthouse written in the programming language Rust. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://sigmaprime.io/) 18 | * [Github](https://github.com/sigp/lighthouse) 19 | * [Twitter](https://twitter.com/sigp_io) 20 | * [Blog](https://blog.sigmaprime.io/) 21 | 22 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/nethermind.md: -------------------------------------------------------------------------------- 1 | title: Cortex - EthHub 2 | 3 | description: Cortex is an Ethereum 2.0 client written in .NET 4 | 5 | # Cortex by Nethermind 6 | 7 | ## Background 8 | 9 | Founded in 2017 by a small team of technologists, Nethermind builds Ethereum solutions for developers and enterprises. Boosted by a grant from the Ethereum Foundation in August 2018, the team has worked to deliver the fastest Ethereum client in the market, optimised to the very last byte. 10 | 11 | In addition to the client, the team has built a peer-to-peer Data Marketplace, run multiple free Advanced EVM workshops to educate developers, and been actively involved with Ethereum Core development. Nethermind is based in London, UK. 12 | 13 | ## Implementation Details 14 | 15 | Cortex is an Ethereum 2.0 client written in the .NET programming language. 16 | 17 | ## Resources: 18 | 19 | * [Website](https://nethermind.io/) 20 | * [Github](https://github.com/NethermindEth/cortex) 21 | * [Twitter](https://twitter.com/nethermindeth) 22 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/nimbus.md: -------------------------------------------------------------------------------- 1 | title: Status: Nimbus - EthHub 2 | 3 | description: Status is building Nimbus - an Ethereum 2.0 client written in the programming language Nim. 4 | 5 | # Status 6 | 7 | ## Background 8 | 9 | Status is a company building various blockchain-based applications. Their most popular product is a messaging app called Status - an open source, Ethereum-based app that gives people the power to chat, transact, and access a revolutionary world of DApps from their mobile device. 10 | 11 | ## Implementation Details 12 | 13 | Status is building Nimbus - an Ethereum 2.0 client written in the programming language Nim. Nimbus is expected to be Ethereum's first mobile-native client. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://nimbus.team/) 18 | * [Github](https://github.com/status-im/nimbus) 19 | * [Twitter](https://twitter.com/ethstatus) 20 | 21 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/prysm.md: -------------------------------------------------------------------------------- 1 | title: Prysmatic Labs: Prysm - EthHub 2 | 3 | description: Prysmatic Labs are developing Prysm - an Ethereum 2.0 client written in the programming language Go. 4 | 5 | # Prysmatic Labs 6 | 7 | ## Background 8 | 9 | Prysmatic Labs was founded in January of 2018 with the goal of helping the Ethereum blockchain reach scalability. 10 | 11 | ## Implementation Details 12 | 13 | Prysmatic Labs are developing Prysm - an Ethereum 2.0 client written in the programming language Go. The Prysm client will act as a counterpart to the already popular Go client, Geth. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://prysmaticlabs.com/) 18 | * [Github](https://github.com/prysmaticlabs/prysm) 19 | * [Twitter](https://twitter.com/prylabs) 20 | * [Blog](https://medium.com/prysmatic-labs) 21 | 22 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/shasper.md: -------------------------------------------------------------------------------- 1 | title: Parity: Substrate Shasper - EthHub 2 | 3 | description: Parity is developing the Serenity client called Substrate Shasper. 4 | 5 | # Substrate Shasper 6 | 7 | ## Background 8 | 9 | Parity Technologies is a blockchain infrastructure company responsible for maintaining the popular Ethereum client, _Parity Ethereum_. 10 | 11 | ## Implementation Details 12 | 13 | Parity is developing _Parity Ethereum_ - a legacy Ethereum 1.0 client written in the Rust programming language and built for mission-critical use. In addition, Parity is developing the Serenity client called _Substrate Shasper_. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://www.parity.io/) 18 | * [Github](https://github.com/paritytech/shasper) 19 | * [Twitter](https://twitter.com/ParityTech) 20 | 21 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/teku.md: -------------------------------------------------------------------------------- 1 | title: Consensys Quorum - EthHub 2 | 3 | description: Consensys Quorum is a 50-person team dedicated to enterprise grade blockchain at ConsenSys. 4 | 5 | # Consensys Quorum 6 | 7 | ## Background 8 | 9 | Consensys Quorum is a 50-person team dedicated to enterprise grade blockchain at ConsenSys. Alongside supporting the public Ethereum Mainnet, the team works on privacy, permissioning, scalability, and other features to make Ethereum production-ready for enterprise adoption. 10 | 11 | ## Implementation Details 12 | 13 | The Consensys Quorum Ethereum 2.0 client is called Teku (formerly known as Artemis). It is being built alongside Besu, an Ethereum 1.0 and enterprise-grade client written in the Java programming language. Both Teku and Besu are Apache 2.0 licensed. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://consensys.net/knowledge-base/ethereum-2/teku/) 18 | * [Github](https://github.com/ConsenSys/teku) 19 | * [Discord](https://discord.com/invite/Ve9sQAX) 20 | * [Twitter](https://twitter.com/ConsenSysQuorum) 21 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/trinity.md: -------------------------------------------------------------------------------- 1 | title: Trinity - EthHub 2 | 3 | description: The team are building Trinity - an Ethereum 1.0 and 2.0 client written in the programming language Python. 4 | 5 | # Trinity 6 | 7 | ## Background 8 | 9 | The Trinity team is comprised of six developers all except one of whom are contracted to work by the Ethereum Foundation. 10 | 11 | ## Implementation Details 12 | 13 | The team are building Trinity - an Ethereum 1.0 and 2.0 client written in the programming language Python. 14 | 15 | ## Resources: 16 | 17 | * [Website](https://trinity.ethereum.org/) 18 | * [Github](https://github.com/ethereum/trinity) 19 | 20 | -------------------------------------------------------------------------------- /docs/ethereum-roadmap/ethereum-2.0/eth2.0-teams/yeeth.md: -------------------------------------------------------------------------------- 1 | title: Yeeth - EthHub 2 | 3 | description: Yeeth Ethereum 2.0 client implementation 4 | 5 | # Yeeth 6 | 7 | *This project is no longer being actively worked on.* 8 | 9 | ## Background 10 | 11 | Dean announced the Swift implementation on Twitter. 12 | 13 | ## Implementation Details 14 | 15 | Dean & Eric Tu were building an Ethereum 2.0 client written in the Swift programming language. 16 | 17 | ## Resources: 18 | 19 | * [Github](https://github.com/yeeth/BeaconChain.swift) 20 | * [Website](https://yeeth.af) 21 | -------------------------------------------------------------------------------- /docs/extra.css: -------------------------------------------------------------------------------- 1 | 2 | [data-md-color-accent=black] .md-typeset a:active, [data-md-color-accent=black] .md-typeset a:hover { 3 | color: blue!important; 4 | } 5 | 6 | .md-typeset a { 7 | color: #3f51b5!important; 8 | } 9 | 10 | .md-typeset h2 { 11 | border-top: 1px grey solid!important; 12 | padding-top: 35px!important; 13 | } 14 | 15 | [data-md-color-accent=red] .md-nav__link:focus, [data-md-color-accent=red] .md-nav__link:hover { 16 | color: #3f51b5!important; 17 | } 18 | 19 | html .md-footer-meta.md-typeset a { 20 | color: white!important 21 | } -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/favicon.ico -------------------------------------------------------------------------------- /docs/glossary/ens-domains.md: -------------------------------------------------------------------------------- 1 | title: ENS Domain Directory - Ethhub 2 | 3 | description: a directory of ENS domains for popular smart contracts 4 | 5 | # ENS Domain directory 6 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/2FA.md: -------------------------------------------------------------------------------- 1 | # 2FA 2 | ## Two-Form Authentication (2FA) is like... 3 | 4 | * a time-based code that only the bank manager knows and is used to open the bank vault. 5 | 6 | * that scene in spy movies where only the real spy would know the secret phrase and response. 7 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/blockchain.md: -------------------------------------------------------------------------------- 1 | # Blockchain 2 | ## Blockchain is like... 3 | 4 | * a poker game where everyone writes down every bet made. By comparing their records at the end of each round, the players can make sure no one is cheating. 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/cold-storage.md: -------------------------------------------------------------------------------- 1 | # Cold storage 2 | ## Cold storage is like... 3 | 4 | * when a bank puts their gold in a vault underground to make it impossible for a petty bankrobber to steal it. 5 | 6 | * when a cashier takes the excess money from their cash register drawer gives it to their manager to deposit into the safe. 7 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/cryptojacking.md: -------------------------------------------------------------------------------- 1 | # Cryptojacking 2 | ## Cryptojacking is like... 3 | 4 | * in the movie Office Space where a group alters the code of a bank's computer to steal pennies from every bank transaction 5 | 6 | * plugging in an extension cord to your neighbor's house to earn/save money by stealing their energy 7 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/ddos.md: -------------------------------------------------------------------------------- 1 | # Distributed Denial of Service (DDoS) Attack 2 | ## A Distributed Denial of Service (DDoS) Attack is like... 3 | 4 | * if a large flash mob tried enter a restaurant at the same time. The restaurant quickly is overwhelmed and no new customers are able to be served until the mob is dealt with or goes away. 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/difficulty.md: -------------------------------------------------------------------------------- 1 | # Difficulty 2 | ## Difficulty is like... 3 | 4 | * the odds you have to winning the the lottery 5 | 6 | * a taskmaster who checks to see if every a block is shipped out on time. 7 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/double-spend.md: -------------------------------------------------------------------------------- 1 | # Double Spend 2 | ## A double spend is like... 3 | 4 | * when someone's check bounces but they've already left the store with the product and so the store is out the money 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/forks.md: -------------------------------------------------------------------------------- 1 | # Forks 2 | ## A fork is like... 3 | 4 | * in a time-travel movie where an action taken by the main character splits the timeline and creates and alternate timeline. 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/multi-sig.md: -------------------------------------------------------------------------------- 1 | # Multi-signature wallets 2 | ## A multi-signature wallet is like... 3 | 4 | * a joint savings account that requires more than one account holder to sign checks. 5 | 6 | * a bank vault that requires each bank manager's password to open. 7 | 8 | * a planning committee where every expense needs to be signed off on by each member of the committee. 9 | 10 | * in a video game lobby where each player needs to approve of each action like readying up to start the game, kicking a teammate, etc. No one player alone can perform these actions. 11 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/smart-contract.md: -------------------------------------------------------------------------------- 1 | # Smart Contract 2 | ## A smart contract is like... 3 | 4 | * a vending machine. You can trust that if you give it your money that it is programmed to accept your money and dispense the drink you selected. 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/state-rent.md: -------------------------------------------------------------------------------- 1 | # State Rent 2 | ## State rent is like... 3 | 4 | * the yearly fee your bank charges you to keep your account open 5 | * the rent that a store pays the owner of its building 6 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/stateless-clients.md: -------------------------------------------------------------------------------- 1 | #Stateless clients 2 | ## A stateless client is like... 3 | 4 | * hiring an accountant who does your all your bookkeeping but charges fees for every piece of info they must look up for every transaction you make 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/uncle-blocks.md: -------------------------------------------------------------------------------- 1 | # Uncle Blocks 2 | ## Uncle Blocks are like... 3 | 4 | * the smaller prizes that you receive if you don't win the big prize in a promotional giveaway. 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/wei.md: -------------------------------------------------------------------------------- 1 | # Wei 2 | ## Wei is like... 3 | 4 | * a penny to the USD, the smallest unit 5 | -------------------------------------------------------------------------------- /docs/glossary/sideways-dictionary/what-is-the-sideways-dictionary.md: -------------------------------------------------------------------------------- 1 | title: Ethereum Sideways Dictionary - EthHub 2 | description: This sideways dictionary provides analogies for key terms and concepts of the Ethereum ecosystem. 3 | 4 | # Sideways Dictionary 5 | 6 | Taking a page from [The Sideways Dictionary](https://sidewaysdictionary.com/#/about), this sideways dictionary provides analogies instead of definitions for key terms and concepts of the Ethereum ecosystem. 7 | 8 | This section of EthHub is intended to be a resource for anyone who is still struggling with grasping a concept. Sometimes a definition doesn't quite click in your head. We hope this collection of analogies and explanations can be used as a shared resource for all members of the Ethereum community, newcomers and oldtimers alike. 9 | 10 | ## Resources 11 | * [Original Sideways Dictionary](https://sidewaysdictionary.com) 12 | -------------------------------------------------------------------------------- /docs/languages/translations.md: -------------------------------------------------------------------------------- 1 | # EthHub Translations 2 | 3 | EthHub Docs are available in the following languages: 4 | 5 | [Chinese](https://zh.docs.ethhub.io) 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- 1 | Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. -------------------------------------------------------------------------------- /docs/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/logo-2.png -------------------------------------------------------------------------------- /docs/logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/logo-3.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/logo.png -------------------------------------------------------------------------------- /docs/material/404.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% block content %} 3 |

404 - Page not found

4 |

We have recently overhauled the repo so some links may be broken. Please use the search to find the page you're looking for. 5 | 6 |

If you are looking for Serenity phases, the section has been renamed to Ethereum 2.0.

7 |

8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /docs/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/__init__.py -------------------------------------------------------------------------------- /docs/material/assets/fonts/material-icons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 3 | * use this file except in compliance with the License. You may obtain a copy 4 | * of the License at: 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, SOFTWARE 9 | * DISTRIBUTED UNDER THE LICENSE IS DISTRIBUTED ON AN "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 | * SEE THE LICENSE FOR THE SPECIFIC LANGUAGE GOVERNING PERMISSIONS AND 12 | * LIMITATIONS UNDER THE LICENSE. 13 | */@font-face{font-family:"Material Icons";font-style:normal;font-weight:400;src:local("Material Icons"),local("MaterialIcons-Regular"),url("specimen/MaterialIcons-Regular.woff2") format("woff2"),url("specimen/MaterialIcons-Regular.woff") format("woff"),url("specimen/MaterialIcons-Regular.ttf") format("truetype")} -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/FontAwesome.ttf -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/FontAwesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/FontAwesome.woff -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/FontAwesome.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/FontAwesome.woff2 -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /docs/material/assets/fonts/specimen/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/fonts/specimen/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /docs/material/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/docs/material/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/material/assets/javascripts/lunr/lunr.multi.js: -------------------------------------------------------------------------------- 1 | !function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(o){o.multiLanguage=function(){for(var e=Array.prototype.slice.call(arguments),i=e.join("-"),t="",r=[],n=[],s=0;s 7 |
8 | {{ page.meta.hero }} 9 |
10 | 11 | -------------------------------------------------------------------------------- /docs/material/partials/integrations/analytics.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /docs/material/partials/integrations/disqus.html: -------------------------------------------------------------------------------- 1 | {% set disqus = config.extra.disqus %} 2 | {% if page and page.meta and page.meta.disqus is string %} 3 | {% set disqus = page.meta.disqus %} 4 | {% endif %} 5 | {% if not page.is_homepage and disqus %} 6 |

{{ lang.t("meta.comments") }}

7 |
8 | 21 | {% endif %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language.html: -------------------------------------------------------------------------------- 1 | {% import "partials/language/" + config.theme.language + ".html" as lang %} 2 | {% import "partials/language/en.html" as fallback %} 3 | {% macro t(key) %}{{ { 4 | "direction": config.theme.direction, 5 | "search.language": ( 6 | config.extra.search | default({}) 7 | ).language, 8 | "search.tokenizer": ( 9 | config.extra.search | default({}) 10 | ).tokenizer | default("", true), 11 | }[key] or lang.t(key) or fallback.t(key) }}{% endmacro %} 12 | -------------------------------------------------------------------------------- /docs/material/partials/language/ar.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ar", 3 | "direction": "rtl", 4 | "clipboard.copy": "نسخ إلى الحافظة", 5 | "clipboard.copied": "تم النسخ الى الحافظة", 6 | "edit.link.title": "عدل الصفحة", 7 | "footer.previous": "السابقة", 8 | "footer.next": "التالية", 9 | "meta.comments": "التعليقات", 10 | "meta.source": "المصدر", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "بحث", 15 | "search.result.placeholder": "اكتب لبدء البحث", 16 | "search.result.none": "لا توجد نتائج", 17 | "search.result.one": "نتائج البحث مستند واحد", 18 | "search.result.other": "نتائج البحث # مستندات", 19 | "skip.link.title": "انتقل إلى المحتوى", 20 | "source.link.title": "اذهب إلى المصدر", 21 | "toc.title": "جدول المحتويات" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /docs/material/partials/language/ca.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ca", 3 | "clipboard.copy": "Còpia al porta-retalls", 4 | "clipboard.copied": "Copiat al porta-retalls", 5 | "edit.link.title": "Edita aquesta pàgina", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Següent", 8 | "meta.comments": "Comentaris", 9 | "meta.source": "Codi font", 10 | "search.language": "", 11 | "search.placeholder": "Cerca", 12 | "search.result.placeholder": "Escriu per a començar a cercar", 13 | "search.result.none": "Cap document coincideix", 14 | "search.result.one": "1 document coincident", 15 | "search.result.other": "# documents coincidents", 16 | "skip.link.title": "Salta el contingut", 17 | "source.link.title": "Ves al repositori", 18 | "toc.title": "Taula de continguts" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/cs.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "cs", 3 | "clipboard.copy": "Kopírovat do schránky", 4 | "clipboard.copied": "Zkopírováno do schránky", 5 | "edit.link.title": "Upravit tuto stránku", 6 | "footer.previous": "Předchozí", 7 | "footer.next": "Další", 8 | "meta.comments": "Komentáře", 9 | "meta.source": "Zdroj", 10 | "search.language": "ro", 11 | "search.placeholder": "Hledat", 12 | "search.result.placeholder": "Pište co se má vyhledat", 13 | "search.result.none": "Nenalezeny žádné dokumenty", 14 | "search.result.one": "Nalezený dokument: 1", 15 | "search.result.other": "Nalezené dokumenty: #", 16 | "skip.link.title": "Přeskočit obsah", 17 | "source.link.title": "Přejít do repozitáře", 18 | "toc.title": "Obsah" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/da.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "da", 3 | "clipboard.copy": "Kopiér til udklipsholderen", 4 | "clipboard.copied": "Kopieret til udklipsholderen", 5 | "edit.link.title": "Redigér denne side", 6 | "footer.previous": "Forrige", 7 | "footer.next": "Næste", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Kilde", 10 | "search.language": "da", 11 | "search.placeholder": "Søg", 12 | "search.result.placeholder": "Indtask søgeord", 13 | "search.result.none": "Ingen resultater fundet", 14 | "search.result.one": "1 resultat", 15 | "search.result.other": "# resultater", 16 | "skip.link.title": "Gå til indholdet", 17 | "source.link.title": "Åbn arkiv", 18 | "toc.title": "Indholdsfortegnelse" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/de.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "de", 3 | "clipboard.copy": "In Zwischenablage kopieren", 4 | "clipboard.copied": "In Zwischenablage kopiert", 5 | "edit.link.title": "Seite editieren", 6 | "footer.previous": "Zurück", 7 | "footer.next": "Weiter", 8 | "meta.comments": "Kommentare", 9 | "meta.source": "Quellcode", 10 | "search.language": "de", 11 | "search.placeholder": "Suche", 12 | "search.result.placeholder": "Suchbegriff eingeben", 13 | "search.result.none": "Keine Suchergebnisse", 14 | "search.result.one": "1 Suchergebnis", 15 | "search.result.other": "# Suchergebnisse", 16 | "skip.link.title": "Zum Inhalt", 17 | "source.link.title": "Quellcode", 18 | "toc.title": "Inhaltsverzeichnis" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/en.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "en", 3 | "direction": "ltr", 4 | "clipboard.copy": "Copy to clipboard", 5 | "clipboard.copied": "Copied to clipboard", 6 | "edit.link.title": "Edit this page", 7 | "footer.previous": "Previous", 8 | "footer.next": "Next", 9 | "meta.comments": "Comments", 10 | "meta.source": "Source", 11 | "search.language": "en", 12 | "search.pipeline.stopwords": true, 13 | "search.pipeline.trimmer": true, 14 | "search.placeholder": "Search", 15 | "search.result.placeholder": "Type to start searching", 16 | "search.result.none": "No matching documents", 17 | "search.result.one": "1 matching document", 18 | "search.result.other": "# matching documents", 19 | "search.tokenizer": "[\s\-]+", 20 | "skip.link.title": "Skip to content", 21 | "source.link.title": "Go to repository", 22 | "toc.title": "Table of contents" 23 | }[key] }}{% endmacro %} 24 | -------------------------------------------------------------------------------- /docs/material/partials/language/es.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "es", 3 | "clipboard.copy": "Copiar al portapapeles", 4 | "clipboard.copied": "Copiado al portapapeles", 5 | "edit.link.title": "Editar esta página", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Siguiente", 8 | "meta.comments": "Comentarios", 9 | "meta.source": "Fuente", 10 | "search.language": "es", 11 | "search.placeholder": "Búsqueda", 12 | "search.result.placeholder": "Teclee para comenzar búsqueda", 13 | "search.result.none": "No se encontraron documentos", 14 | "search.result.one": "1 documento encontrado", 15 | "search.result.other": "# documentos encontrados", 16 | "skip.link.title": "Saltar a contenido", 17 | "source.link.title": "Ir al repositorio", 18 | "toc.title": "Tabla de contenidos" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/fa.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fa", 3 | "direction": "rtl", 4 | "clipboard.copy": "کپی کردن", 5 | "clipboard.copied": "کپی شد", 6 | "edit.link.title": "این صفحه را ویرایش کنید", 7 | "footer.previous": "قبلی", 8 | "footer.next": "بعدی", 9 | "meta.comments": "نظرات", 10 | "meta.source": "منبع", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "جستجو", 15 | "search.result.placeholder": "برای شروع جستجو تایپ کنید", 16 | "search.result.none": "سندی یافت نشد", 17 | "search.result.one": "1 سند یافت شد", 18 | "search.result.other": "# سند یافت شد", 19 | "skip.link.title": "پرش به محتویات", 20 | "source.link.title": "رفتن به مخزن", 21 | "toc.title": "فهرست موضوعات" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /docs/material/partials/language/fi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fi", 3 | "clipboard.copy": "Kopioi leikepöydälle", 4 | "clipboard.copied": "Kopioitu leikepöydälle", 5 | "edit.link.title": "Muokkaa tätä sivua", 6 | "footer.previous": "Edellinen", 7 | "footer.next": "Seuraava", 8 | "meta.comments": "Kommentit", 9 | "meta.source": "Lähdekodi", 10 | "search.language": "fi", 11 | "search.placeholder": "Hae", 12 | "search.result.placeholder": "Kirjoita aloittaaksesi haun", 13 | "search.result.none": "Ei täsmääviä dokumentteja", 14 | "search.result.one": "1 täsmäävä dokumentti", 15 | "search.result.other": "# täsmäävää dokumenttia", 16 | "skip.link.title": "Hyppää sisältöön", 17 | "source.link.title": "Mene repositoryyn", 18 | "toc.title": "Sisällysluettelo" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/fr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fr", 3 | "clipboard.copy": "Copier dans le presse-papier", 4 | "clipboard.copied": "Copié dans le presse-papier", 5 | "edit.link.title": "Editer cette page", 6 | "footer.previous": "Précédent", 7 | "footer.next": "Suivant", 8 | "meta.comments": "Commentaires", 9 | "meta.source": "Source", 10 | "search.language": "fr", 11 | "search.placeholder": "Rechercher", 12 | "search.result.placeholder": "Taper pour démarrer la recherche", 13 | "search.result.none": "Aucun document trouvé", 14 | "search.result.one": "1 document trouvé", 15 | "search.result.other": "# documents trouvés", 16 | "source.link.title": "Aller au dépôt", 17 | "toc.title": "Table des matières" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /docs/material/partials/language/gl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "gl", 3 | "clipboard.copy": "Copiar no cortapapeis", 4 | "clipboard.copied": "Copiado no cortapapeis", 5 | "edit.link.title": "Editar esta páxina", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Seguinte", 8 | "meta.comments": "Comentarios", 9 | "meta.source": "Fonte", 10 | "search.language": "es", 11 | "search.placeholder": "Busca", 12 | "search.result.placeholder": "Insira un termo", 13 | "search.result.none": "Sen resultados", 14 | "search.result.one": "1 resultado atopado", 15 | "search.result.other": "# resultados atopados", 16 | "skip.link.title": "Ir ao contido", 17 | "source.link.title": "Ir ao repositorio", 18 | "toc.title": "Táboa de contidos" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/he.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "he", 3 | "direction": "rtl", 4 | "clipboard.copy": "העתק ללוח", 5 | "clipboard.copied": "הועתק ללוח", 6 | "edit.link.title": "ערוך דף זה", 7 | "footer.previous": "קודם", 8 | "footer.next": "הַבָּא", 9 | "meta.comments": "הערות", 10 | "meta.source": "מָקוֹר", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "לחפש", 15 | "search.result.placeholder": "הקלד כדי להתחיל לחפש", 16 | "search.result.none": "אין מסמכים תואמים", 17 | "search.result.one": "1 מסמך תואם", 18 | "search.result.other": "# מסמך תואם", 19 | "skip.link.title": "דלג לתוכן", 20 | "source.link.title": "עבור אל מאגר", 21 | "toc.title": "תוכן העניינים" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /docs/material/partials/language/hi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hi", 3 | "clipboard.copy": "क्लिपबोर्ड पर कॉपी करें", 4 | "clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया", 5 | "edit.link.title": "इस पृष्ठ को संपादित करें", 6 | "footer.previous": "पिछला", 7 | "footer.next": "आगामी", 8 | "meta.comments": "टिप्पणियाँ", 9 | "meta.source": "स्रोत", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "खोज", 14 | "search.result.placeholder": "खोज शुरू करने के लिए टाइप करें", 15 | "search.result.none": "कोई मिलान डॉक्यूमेंट नहीं", 16 | "search.result.one": "1 मिलान डॉक्यूमेंट", 17 | "search.result.other": "# मिलान डाक्यूमेंट्स", 18 | "skip.link.title": "विषय पर बढ़ें", 19 | "source.link.title": "रिपॉजिटरी पर जाएं", 20 | "toc.title": "विषय - सूची" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language/hr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hr", 3 | "clipboard.copy": "Kopirajte u međuspremnik", 4 | "clipboard.copied": "Kopirano u međuspremnik", 5 | "edit.link.title": "Uredi stranicu", 6 | "footer.previous": "Prethodno", 7 | "footer.next": "Sljedeće", 8 | "meta.comments": "Komentari", 9 | "meta.source": "Izvor", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Pretraživanje", 14 | "search.result.placeholder": "Unesite pojam pretraživanja", 15 | "search.result.none": "Ništa nije pronađeno", 16 | "search.result.one": "1 rezultat pretraživanja", 17 | "search.result.other": "# rezultata pretraživanja", 18 | "skip.link.title": "Preskočite na sadržaj", 19 | "source.link.title": "Idite u repozitorij", 20 | "toc.title": "Sadržaj" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language/hu.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hu", 3 | "clipboard.copy": "Másolás vágólapra", 4 | "clipboard.copied": "Vágólapra másolva", 5 | "edit.link.title": "Oldal szerkesztése", 6 | "footer.previous": "Előző", 7 | "footer.next": "Következő", 8 | "meta.comments": "Hozzászólások", 9 | "meta.source": "Forrás", 10 | "search.language": "hu", 11 | "search.placeholder": "Keresés", 12 | "search.result.placeholder": "Kereséshez írj ide valamit", 13 | "search.result.none": "Nincs találat", 14 | "search.result.one": "1 egyező dokumentum", 15 | "search.result.other": "# egyező dokumentum", 16 | "skip.link.title": "Kihagyás", 17 | "source.link.title": "Főoldalra ugrás", 18 | "toc.title": "Tartalomjegyzék" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/id.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "id", 3 | "clipboard.copy": "Salin ke memori", 4 | "clipboard.copied": "Tersalin ke memori", 5 | "edit.link.title": "Ubah halaman ini", 6 | "footer.previous": "Sebelumnya", 7 | "footer.next": "Selanjutnya", 8 | "meta.comments": "Komentar", 9 | "meta.source": "Sumber", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Cari", 14 | "search.result.placeholder": "Ketik untuk mulai pencarian", 15 | "search.result.none": "Tidak ada dokumen yang sesuai", 16 | "search.result.one": "1 dokumen ditemukan", 17 | "search.result.other": "# dokumen ditemukan", 18 | "skip.link.title": "Lewati ke isi", 19 | "source.link.title": "Menuju repositori", 20 | "toc.title": "Daftar isi" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language/it.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "it", 3 | "clipboard.copy": "Copia", 4 | "clipboard.copied": "Copiato", 5 | "edit.link.title": "Modifica", 6 | "footer.previous": "Precedente", 7 | "footer.next": "Prossimo", 8 | "meta.comments": "Commenti", 9 | "meta.source": "Sorgente", 10 | "search.language": "it", 11 | "search.placeholder": "Cerca", 12 | "search.result.placeholder": "Scrivi per iniziare a cercare", 13 | "search.result.none": "Nessun documento trovato", 14 | "search.result.one": "1 documento trovato", 15 | "search.result.other": "# documenti trovati", 16 | "skip.link.title": "Vai al contenuto", 17 | "source.link.title": "Apri repository", 18 | "toc.title": "Indice" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/ja.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ja", 3 | "clipboard.copy": "クリップボードへコピー", 4 | "clipboard.copied": "コピーしました", 5 | "edit.link.title": "編集", 6 | "footer.previous": "前", 7 | "footer.next": "次", 8 | "meta.comments": "コメント", 9 | "meta.source": "ソース", 10 | "search.language": "jp", 11 | "search.placeholder": "検索", 12 | "search.result.placeholder": "検索キーワードを入力してください", 13 | "search.result.none": "何も見つかりませんでした", 14 | "search.result.one": "1件見つかりました", 15 | "search.result.other": "#件見つかりました", 16 | "search.tokenizer": "[\s\- 、。,.]+", 17 | "source.link.title": "リポジトリへ", 18 | "toc.title": "目次" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/kr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "kr", 3 | "clipboard.copy": "클립보드로 복사", 4 | "clipboard.copied": "클립보드에 복사됨", 5 | "edit.link.title": "이 페이지를 편집", 6 | "footer.previous": "이전", 7 | "footer.next": "다음", 8 | "meta.comments": "댓글", 9 | "meta.source": "출처", 10 | "search.language": "jp", 11 | "search.placeholder": "검색", 12 | "search.result.placeholder": "검색어를 입력하세요", 13 | "search.result.none": "검색어와 일치하는 문서가 없습니다", 14 | "search.result.one": "1개의 일치하는 문서", 15 | "search.result.other": "#개의 일치하는 문서", 16 | "source.link.title": "저장소로 이동", 17 | "toc.title": "목차" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /docs/material/partials/language/nl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "nl", 3 | "clipboard.copy": "Kopiëren naar klembord", 4 | "clipboard.copied": "Gekopieerd naar klembord", 5 | "edit.link.title": "Wijzig deze pagina", 6 | "footer.previous": "Vorige", 7 | "footer.next": "Volgende", 8 | "meta.comments": "Reacties", 9 | "meta.source": "Bron", 10 | "search.language": "du", 11 | "search.placeholder": "Zoeken", 12 | "search.result.placeholder": "Typ om te beginnen met zoeken", 13 | "search.result.none": "Geen overeenkomende documenten", 14 | "search.result.one": "1 overeenkomende document", 15 | "search.result.other": "# overeenkomende documenten", 16 | "skip.link.title": "Ga naar inhoud", 17 | "source.link.title": "Ga naar repository", 18 | "toc.title": "Inhoudsopgave" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/no.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "no", 3 | "clipboard.copy": "Kopier til utklippstavlen", 4 | "clipboard.copied": "Kopiert til utklippstavlen", 5 | "edit.link.title": "Rediger denne siden", 6 | "footer.previous": "Forrige", 7 | "footer.next": "Neste", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Kilde", 10 | "search.language": "no", 11 | "search.placeholder": "Søk", 12 | "search.result.placeholder": "Skriv søkeord", 13 | "search.result.none": "Ingen treff", 14 | "search.result.one": "1 treff", 15 | "search.result.other": "# treff", 16 | "skip.link.title": "Gå til innhold", 17 | "source.link.title": "Gå til kilde", 18 | "toc.title": "Innholdsfortegnelse" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/pl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "pl", 3 | "clipboard.copy": "Kopiuj do schowka", 4 | "clipboard.copied": "Skopiowane", 5 | "edit.link.title": "Edytuj tę stronę", 6 | "footer.previous": "Poprzednia strona", 7 | "footer.next": "Następna strona", 8 | "meta.comments": "Komentarze", 9 | "meta.source": "Kod źródłowy", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Szukaj", 14 | "search.result.placeholder": "Zacznij pisać, aby szukać", 15 | "search.result.none": "Brak wyników wyszukiwania", 16 | "search.result.one": "Wyniki wyszukiwania: 1", 17 | "search.result.other": "Wyniki wyszukiwania: #", 18 | "skip.link.title": "Przejdź do treści", 19 | "source.link.title": "Idź do repozytorium", 20 | "toc.title": "Spis treści" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language/pt.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "pt", 3 | "clipboard.copy": "Copiar para área de transferência", 4 | "clipboard.copied": "Copiado para área de transferência", 5 | "edit.link.title": "Editar esta página", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Próximo", 8 | "meta.comments": "Comentários", 9 | "meta.source": "Fonte", 10 | "search.language": "pt", 11 | "search.placeholder": "Buscar", 12 | "search.result.placeholder": "Digite para iniciar a busca", 13 | "search.result.none": "Nenhum resultado encontrado", 14 | "search.result.one": "1 resultado encontrado", 15 | "search.result.other": "# resultados encontrados", 16 | "skip.link.title": "Ir para o conteúdo", 17 | "source.link.title": "Ir ao repositório", 18 | "toc.title": "Índice" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/ru.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ru", 3 | "clipboard.copy": "Копировать в буфер", 4 | "clipboard.copied": "Скопировано в буфер", 5 | "edit.link.title": "Редактировать страницу", 6 | "footer.previous": "Назад", 7 | "footer.next": "Вперед", 8 | "meta.comments": "Комментарии", 9 | "meta.source": "Исходный код", 10 | "search.language": "ru", 11 | "search.placeholder": "Поиск", 12 | "search.result.placeholder": "Начните печатать для поиска", 13 | "search.result.none": "Совпадений не найдено", 14 | "search.result.one": "Найдено 1 совпадение", 15 | "search.result.other": "Найдено # совпадений", 16 | "skip.link.title": "Перейти к содержанию", 17 | "source.link.title": "Перейти к репозиторию", 18 | "toc.title": "Содержание" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/sh.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sh", 3 | "clipboard.copy": "Kopiraj u klipbord", 4 | "clipboard.copied": "Iskopirano u klipbord", 5 | "edit.link.title": "Uredi stranicu", 6 | "footer.previous": "Prethodno", 7 | "footer.next": "Sledeće", 8 | "meta.comments": "Komentari", 9 | "meta.source": "Izvor", 10 | "search.language": "ro", 11 | "search.placeholder": "Pretraga", 12 | "search.result.placeholder": "Unesite pojam pretrage", 13 | "search.result.none": "Ništa nije pronađeno", 14 | "search.result.one": "1 rezultat pretrage", 15 | "search.result.other": "# rezultata pretrage", 16 | "skip.link.title": "Idi na tekst", 17 | "source.link.title": "Idi u repozitorijum", 18 | "toc.title": "Sadržaj" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/sk.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sk", 3 | "clipboard.copy": "Kopírovať do schránky", 4 | "clipboard.copied": "Skopírované do schránky", 5 | "edit.link.title": "Upraviť túto stránku", 6 | "footer.previous": "Späť", 7 | "footer.next": "Ďalej", 8 | "meta.comments": "Komentáre", 9 | "meta.source": "Zdroj", 10 | "search.language": "sk", 11 | "search.placeholder": "Hľadať", 12 | "search.result.placeholder": "Pre vyhľadávanie začni písať", 13 | "search.result.none": "Žiadne vyhovujúce dokumenty", 14 | "search.result.one": "Vyhovujúci dokument: 1", 15 | "search.result.other": "Vyhovujúce dokumenty: #", 16 | "skip.link.title": "Preskočiť na obsah", 17 | "source.link.title": "Zobraziť repozitár", 18 | "toc.title": "Obsah" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/sr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sr", 3 | "clipboard.copy": "Копирај у клипборд", 4 | "clipboard.copied": "Ископирано у клипборд", 5 | "edit.link.title": "Уреди страницу", 6 | "footer.previous": "Претходно", 7 | "footer.next": "Следеће", 8 | "meta.comments": "Коментари", 9 | "meta.source": "Извор", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Претрага", 14 | "search.result.placeholder": "Унесите појам претраге", 15 | "search.result.none": "Нису пронађени документи", 16 | "search.result.one": "1 резултат претраге", 17 | "search.result.other": "# резултата претраге", 18 | "skip.link.title": "Иди на текст", 19 | "source.link.title": "Иди у репозиторијум", 20 | "toc.title": "Садржај" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /docs/material/partials/language/sv.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sv", 3 | "clipboard.copy": "Kopiera till urklipp", 4 | "clipboard.copied": "Kopierat till urklipp", 5 | "edit.link.title": "Redigera sidan", 6 | "footer.previous": "Föregående", 7 | "footer.next": "Nästa", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Källa", 10 | "search.language": "sv", 11 | "search.placeholder": "Sök", 12 | "search.result.placeholder": "Skriv sökord", 13 | "search.result.none": "Inga sökresultat", 14 | "search.result.one": "1 sökresultat", 15 | "search.result.other": "# sökresultat", 16 | "skip.link.title": "Gå till innehållet", 17 | "source.link.title": "Gå till datakatalog", 18 | "toc.title": "Innehållsförteckning" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/tr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "tr", 3 | "clipboard.copy": "Kopyala", 4 | "clipboard.copied": "Kopyalandı", 5 | "edit.link.title": "Düzenle", 6 | "footer.previous": "Önceki", 7 | "footer.next": "Sonraki", 8 | "meta.comments": "Yorumlar", 9 | "meta.source": "Kaynak", 10 | "search.language": "tr", 11 | "search.placeholder": "Ara", 12 | "search.result.placeholder": "Aramaya başlamak için yazın", 13 | "search.result.none": "Eşleşen doküman bulunamadı", 14 | "search.result.one": "1 doküman bulundu", 15 | "search.result.other": "# doküman bulundu", 16 | "source.link.title": "Depoya git", 17 | "toc.title": "İçindekiler" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /docs/material/partials/language/uk.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "uk", 3 | "clipboard.copy": "Скопіювати в буфер", 4 | "clipboard.copied": "Скопійовано в буфер", 5 | "edit.link.title": "Редагувати сторінку", 6 | "footer.previous": "Назад", 7 | "footer.next": "Вперед", 8 | "meta.comments": "Коментарі", 9 | "meta.source": "Вихідний код", 10 | "search.language": "ru", 11 | "search.placeholder": "Пошук", 12 | "search.result.placeholder": "Розпочніть писати для пошуку", 13 | "search.result.none": "Збігів не знайдено", 14 | "search.result.one": "Знайдено 1 збіг", 15 | "search.result.other": "Знайдено # збігів", 16 | "skip.link.title": "Перейти до змісту", 17 | "source.link.title": "Перейти до репозиторію", 18 | "toc.title": "Зміст" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /docs/material/partials/language/vi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "vi", 3 | "clipboard.copy": "Sao chép vào bộ nhớ", 4 | "clipboard.copied": "Sao chép xong", 5 | "edit.link.title": "Chỉnh sửa", 6 | "footer.previous": "Trước", 7 | "footer.next": "Sau", 8 | "meta.comments": "Bình luận", 9 | "meta.source": "Mã nguồn", 10 | "search.placeholder": "Tìm kiếm", 11 | "search.result.placeholder": "Nhập để bắt đầu tìm kiếm", 12 | "search.result.none": "Không tìm thấy tài liệu liên quan", 13 | "search.result.one": "1 tài liệu liên quan", 14 | "search.result.other": "# tài liệu liên quan", 15 | "skip.link.title": "Vào thẳng nội dung", 16 | "source.link.title": "Đến kho lưu trữ mã nguồn", 17 | "toc.title": "Mục lục" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /docs/material/partials/language/zh-Hant.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh-Hant", 3 | "clipboard.copy": "拷貝", 4 | "clipboard.copied": "已拷貝", 5 | "edit.link.title": "編輯此頁", 6 | "footer.previous": "上一頁", 7 | "footer.next": "下一頁", 8 | "meta.comments": "評論", 9 | "meta.source": "來源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜尋", 12 | "search.result.placeholder": "鍵入以開始檢索", 13 | "search.result.none": "沒有找到符合條件的結果", 14 | "search.result.one": "找到 1 个符合條件的結果", 15 | "search.result.other": "# 個符合條件的結果", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳轉至", 18 | "source.link.title": "前往 Github 倉庫", 19 | "toc.title": "目錄" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /docs/material/partials/language/zh-TW.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh-Hant", 3 | "clipboard.copy": "複製", 4 | "clipboard.copied": "已複製", 5 | "edit.link.title": "編輯此頁", 6 | "footer.previous": "上一頁", 7 | "footer.next": "下一頁", 8 | "meta.comments": "留言", 9 | "meta.source": "來源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜尋", 12 | "search.result.placeholder": "打字進行搜尋", 13 | "search.result.none": "沒有符合的項目", 14 | "search.result.one": "找到 1 個符合的項目", 15 | "search.result.other": "找到 # 個符合的項目", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳轉到", 18 | "source.link.title": "前往倉庫", 19 | "toc.title": "本頁目錄" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /docs/material/partials/language/zh.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh", 3 | "clipboard.copy": "复制", 4 | "clipboard.copied": "已复制", 5 | "edit.link.title": "编辑此页", 6 | "footer.previous": "后退", 7 | "footer.next": "前进", 8 | "meta.comments": "评论", 9 | "meta.source": "来源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜索", 12 | "search.result.placeholder": "键入以开始搜索", 13 | "search.result.none": "没有找到符合条件的结果", 14 | "search.result.one": "找到 1 个符合条件的结果", 15 | "search.result.other": "# 个符合条件的结果", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳转至", 18 | "source.link.title": "前往 Github 仓库", 19 | "toc.title": "目录" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /docs/material/partials/nav.html: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /docs/material/partials/social.html: -------------------------------------------------------------------------------- 1 | {% if config.extra.social %} 2 | 8 | {% endif %} 9 | -------------------------------------------------------------------------------- /docs/material/partials/source.html: -------------------------------------------------------------------------------- 1 | {% import "partials/language.html" as lang with context %} 2 | {% set platform = config.extra.repo_icon or config.repo_url %} 3 | {% if "github" in platform %} 4 | {% set repo_type = "github" %} 5 | {% elif "gitlab" in platform %} 6 | {% set repo_type = "gitlab" %} 7 | {% elif "bitbucket" in platform %} 8 | {% set repo_type = "bitbucket" %} 9 | {% else %} 10 | {% set repo_type = "" %} 11 | {% endif %} 12 | {% block repo %} 13 | 14 | {% if repo_type %} 15 |
16 | 17 | 18 | 19 |
20 | {% endif %} 21 |
22 | {{ config.repo_name }} 23 |
24 |
25 | {% endblock %} 26 | -------------------------------------------------------------------------------- /docs/material/partials/tabs.html: -------------------------------------------------------------------------------- 1 | {% set class = "md-tabs" %} 2 | {% if page.ancestors | length > 0 %} 3 | {% set class = "md-tabs md-tabs--active" %} 4 | {% endif %} 5 | 14 | -------------------------------------------------------------------------------- /docs/material/partials/toc-item.html: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | {{ toc_item.title }} 4 | 5 | {% if toc_item.children %} 6 | 13 | {% endif %} 14 |
  • 15 | -------------------------------------------------------------------------------- /docs/other/ethereum-branding-kit.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ethereum Branding Kit - EthHub 3 | 4 | description: The following branding kits are built by the Ethereum community for Ethereum based companies to use on their website and application where necessary. 5 | --- 6 | 7 | # Ethereum Branding Kit 8 | 9 | The following branding kits are built by the Ethereum community for Ethereum based companies to use on their website and application where necessary. 10 | 11 | ## Built on Ethereum 12 | 13 | [These logos](https://github.com/ethhub-io/ethhub/tree/master/docs/assets/files/builtoneth_branding) should be used on websites of applications or products that are built on Ethereum. 14 | 15 | ![](/assets/images/built_on_ethereum.png) -------------------------------------------------------------------------------- /docs/other/funds/0xeap.md: -------------------------------------------------------------------------------- 1 | title: 0x Ecosystem Acceleration Program - EthHub 2 | 3 | description: The 0x Ecosystem Acceleration Program gives teams access to a variety of services including funding, technical support, and recruiting assistance. 4 | 5 | # 0xeap 6 | 7 | The 0x Ecosystem Acceleration Program gives teams access to a variety of services including funding, dedicated technical support, and recruiting assistance. We created the Ecosystem Acceleration Program to bolster the expansion of both infrastructure projects and relayers building on 0x. 8 | 9 | ## Milestone Grants 10 | 11 | Receive non-dilutive capital ranging from $10,000 to $100,000, with grant sizes awarded based on the quality of your team, vision, execution, and community involvement. 12 | 13 | ## Important Links 14 | 15 | * Website: [https://0x.org/eap](https://0x.org/eap) 16 | * Apply: [https://0x.smapply.io/](https://0x.smapply.io/) 17 | 18 | -------------------------------------------------------------------------------- /docs/other/funds/consensys-labs.md: -------------------------------------------------------------------------------- 1 | title: Consensys Labs - EthHub 2 | 3 | description: ConsenSys Labs incubates the best teams of Web3 across the globe, providing them mentorship, and access to the ConsenSys network of top-tier projects. 4 | 5 | # Consensys Labs 6 | 7 | ConsenSys Labs incubates the best teams of Web3 across the globe, providing them capital, mentorship, and access to ConsenSys’s network of top-tier projects and talent. 8 | 9 | ## Portfolio 10 | 11 | * adchain 12 | * Airswap 13 | * Balance 14 | * Benefactory 15 | * Bounties Network 16 | * BTC Relay 17 | * Civil 18 | * code Fund 19 | * gitcoin 20 | * gnosis 21 | * gridplus 22 | * infura 23 | * metamask 24 | * uport 25 | * Truffle 26 | * SingularDTV 27 | 28 | ## Important Links 29 | 30 | * Website: [https://labs.consensys.net/](https://labs.consensys.net/) 31 | 32 | -------------------------------------------------------------------------------- /docs/other/funds/eth-prize.md: -------------------------------------------------------------------------------- 1 | title: Eth Prize - EthHub 2 | 3 | description: ETH Prize is a community research and bounty project that identifies the most critical issues and organizes bounties to solve them. 4 | 5 | # ETH Prize 6 | 7 | ETH Prize is a community research and bounty project that identifies the most critical issues facing the ethereum ecosystem and organizes bounties to solve them. 8 | 9 | ## Partners 10 | 11 | 1. Status 12 | 2. TrueBit 13 | 3. L4 14 | 4. Web3 Foundation 15 | 16 | ## Funding partners 17 | 18 | 1. 0x 19 | 2. Status 20 | 3. Ethereum Community Fund 21 | 4. Toshi 22 | 23 | ## Bounties 24 | 25 | 1. EthPM 26 | 2. Blockscout 27 | 28 | ## Important Links 29 | 30 | * Website: [http://ethprize.io/](http://ethprize.io/) 31 | -------------------------------------------------------------------------------- /docs/other/funds/gitcoin.md: -------------------------------------------------------------------------------- 1 | title: Gitcoin Grants - EthHub 2 | 3 | description: Fast, easy, and secure way to provide recurring token contributions to the best OSS maintainers in your community. 4 | 5 | # Gitcoin Grants 6 | 7 | Fast, easy, and secure way to provide recurring token contributions to the best OSS maintainers in your community. Your contribution is amplified by the signal it provides to other (potentially, larger) funders on important infrastructure projects. 8 | 9 | Grants utilizes the EIP-1337 standard for subscriptions on Ethereum. The standard makes use of meta-transactions, which allows for a transaction to be made on behalf of a paying subscriber on a recurring basis. This makes it easy to support projects in open source on a recurring basis, only confirming one initial subscription transaction. 10 | 11 | ## Important Links 12 | 13 | * Website: [https://gitcoin.co/grants/](https://gitcoin.co/grants/) 14 | * Announcement: [https://medium.com/gitcoin/gitcoin-grants-b91596191c0b](https://medium.com/gitcoin/gitcoin-grants-b91596191c0b) 15 | -------------------------------------------------------------------------------- /docs/other/funds/status-incubate.md: -------------------------------------------------------------------------------- 1 | title: Status Incubate - EthHub 2 | 3 | description: A web3 incubator run by the Status team. 4 | 5 | # Status Incubate 6 | 7 | Incubating Projects that are Building Web3. 8 | 9 | ## Funding 10 | 11 | Offer standard pre-seed funding in exchange for equity and tokens \(where applicable\). Funding for later-stage projects is also possible on a case-by-case basis. 12 | 13 | ## Important Links 14 | 15 | * Website: [https://dev-incubate.status.im/](https://dev-incubate.status.im/) 16 | 17 | -------------------------------------------------------------------------------- /docs/questions-about-ethereum/if-ethereum-is-open-source-why-cant-it-be-copied.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Can Ethereum be Copied? - EthHub 3 | 4 | description: While Ethereum's code is open-source, the actual value of Ethereum is the network of users, developers, and applications using the Ethereum network that give it value. 5 | --- 6 | 7 | # If Ethereum is open source why can't it be copied? 8 | 9 | While Ethereum's code is open-source, the actual value of Ethereum is the network of users, developers, and applications using the Ethereum network that give it value. So yes, someone could copy its code, but they would also have to compete with one of the most active community in cryptocurrency. 10 | 11 | -------------------------------------------------------------------------------- /docs/template.md: -------------------------------------------------------------------------------- 1 | ## Please use this template as a guide when creating pages for EthHub. All pages use Markdown (cheat sheet [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)) so be sure to use `.md` as the extension when creating the page file. 2 | 3 | ## Click [here](/built-on-ethereum/open-finance/stablecoins/crypto-backed/dai.md) for an example of what a fully-fledged page looks like. 4 | ------------------------ 5 | # [Template Begin] 6 | `title: [Page Title] - Ethhub` 7 | _[Leave a blank line]_ 8 | `description: [Meta description (155 characters recommended)` 9 | _[Leave a blank line]_ 10 | # Page Heading [H1] 11 | 12 | ## Summary [H2] 13 | 14 | *A summary of what the page is about.* 15 | 16 | ## Features [H2] 17 | 18 | *Main features.* 19 | 20 | ### Sub-feature 1 [H3] 21 | 22 | *Content for sub-feature 1.* 23 | 24 | ### Sub-feature 2 [H3] 25 | 26 | *Content for sub-feature 2.* 27 | 28 | ## Resources [H2] 29 | 30 | *Relevant resources like website, github link, blog posts etc go here* 31 | 32 | # [Template End] 33 | -------------------------------------------------------------------------------- /docs/using-ethereum/ethereum-clients/besu.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Besu - EthHub 3 | 4 | description: Besu is an open-source Ethereum client developed under the Apache 2.0 license and written in Java. 5 | --- 6 | 7 | # Besu 8 | 9 | ## Summary 10 | 11 | Hyperledger Besu is an open-source Ethereum client developed under the Apache 2.0 license and written in Java. It runs on the Ethereum public network, private networks, and test networks such as Rinkeby, Ropsten, and Görli. Besu implements Proof of Work (Ethash) and Proof of Authority (IBFT 2.0 and Clique) consensus mechanisms. 12 | 13 | You can use Besu to develop enterprise applications requiring secure, high-performance transaction processing in a private network. 14 | 15 | Besu supports enterprise features including privacy and permissioning. 16 | 17 | ## Resources 18 | 19 | * [Github](https://github.com/hyperledger/besu) 20 | * [Docs](https://besu.hyperledger.org/en/stable/) 21 | 22 | -------------------------------------------------------------------------------- /docs/using-ethereum/ethereum-clients/py-evm.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Py-EVM (Trinity) - EthHub 3 | 4 | description: Trinity is the client software that connects to the Ethereum network and runs on top of Py-EVM, an implementation of the EVM in Python. 5 | --- 6 | 7 | # Py-EVM (Trinity) 8 | 9 | ## Summary 10 | 11 | Py-EVM is a new implementation of the Ethereum Virtual Machine \(EVM\) written in Python. Trinity is the client software that connects to the Ethereum network and runs on top of Py-EVM. It is currently in active development but is quickly progressing through the test suite provided by ethereum/tests. Trinity and Py-EVM aim to replace existing Python Ethereum implementations to eventually become the defacto standard for the Python ecosystem. 12 | 13 | ## Resources 14 | 15 | * [Website](https://trinity.ethereum.org/) 16 | * [Github](https://github.com/ethereum/py-evm) 17 | * [Docs](https://py-evm.readthedocs.io/en/latest/guides/) 18 | 19 | -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- 1 | Creative Commons License
    This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. -------------------------------------------------------------------------------- /site/CNAME: -------------------------------------------------------------------------------- 1 | docs.ethhub.io -------------------------------------------------------------------------------- /site/assets/fonts/material-icons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 3 | * use this file except in compliance with the License. You may obtain a copy 4 | * of the License at: 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, SOFTWARE 9 | * DISTRIBUTED UNDER THE LICENSE IS DISTRIBUTED ON AN "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 | * SEE THE LICENSE FOR THE SPECIFIC LANGUAGE GOVERNING PERMISSIONS AND 12 | * LIMITATIONS UNDER THE LICENSE. 13 | */@font-face{font-family:"Material Icons";font-style:normal;font-weight:400;src:local("Material Icons"),local("MaterialIcons-Regular"),url("specimen/MaterialIcons-Regular.woff2") format("woff2"),url("specimen/MaterialIcons-Regular.woff") format("woff"),url("specimen/MaterialIcons-Regular.ttf") format("truetype")} -------------------------------------------------------------------------------- /site/assets/fonts/specimen/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/FontAwesome.ttf -------------------------------------------------------------------------------- /site/assets/fonts/specimen/FontAwesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/FontAwesome.woff -------------------------------------------------------------------------------- /site/assets/fonts/specimen/FontAwesome.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/FontAwesome.woff2 -------------------------------------------------------------------------------- /site/assets/fonts/specimen/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /site/assets/fonts/specimen/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /site/assets/fonts/specimen/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/fonts/specimen/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /site/assets/images/airswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/airswap.png -------------------------------------------------------------------------------- /site/assets/images/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/blocks.png -------------------------------------------------------------------------------- /site/assets/images/burner_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/burner_advanced.png -------------------------------------------------------------------------------- /site/assets/images/burner_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/burner_exchange.png -------------------------------------------------------------------------------- /site/assets/images/burner_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/burner_main.png -------------------------------------------------------------------------------- /site/assets/images/combinatorial_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/combinatorial_tcr.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/cToken_redeem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/cToken_redeem.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/cToken_uses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/cToken_uses.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/coin_stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/coin_stack.jpg -------------------------------------------------------------------------------- /site/assets/images/compound_guide/comp_borrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/comp_borrow.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/comp_supply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/comp_supply.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/comp_voting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/comp_voting.png -------------------------------------------------------------------------------- /site/assets/images/compound_guide/liqu_mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/compound_guide/liqu_mining.png -------------------------------------------------------------------------------- /site/assets/images/dcs-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/dcs-triangle.png -------------------------------------------------------------------------------- /site/assets/images/dsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/dsr.png -------------------------------------------------------------------------------- /site/assets/images/ens_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ens_manage.png -------------------------------------------------------------------------------- /site/assets/images/ens_metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ens_metamask.png -------------------------------------------------------------------------------- /site/assets/images/ens_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ens_register.png -------------------------------------------------------------------------------- /site/assets/images/ens_submanage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ens_submanage.png -------------------------------------------------------------------------------- /site/assets/images/ens_submanage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ens_submanage2.png -------------------------------------------------------------------------------- /site/assets/images/ensnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ensnow.png -------------------------------------------------------------------------------- /site/assets/images/etherdelta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherdelta.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/EOA_to_EOA_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/EOA_to_EOA_diagram.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/EOA_to_EOA_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/EOA_to_EOA_tx.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/Eth_EOA_to_contract_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/Eth_EOA_to_contract_diagram.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/Eth_to_EthHub_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/Eth_to_EthHub_tx.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/ethhub_creation_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/ethhub_creation_tx.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/token_transfer_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/token_transfer_diagram.png -------------------------------------------------------------------------------- /site/assets/images/etherscan_guide/token_transfer_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/etherscan_guide/token_transfer_tx.png -------------------------------------------------------------------------------- /site/assets/images/ethmojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ethmojis.png -------------------------------------------------------------------------------- /site/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/favicon.ico -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/favicon.png -------------------------------------------------------------------------------- /site/assets/images/geth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/geth.png -------------------------------------------------------------------------------- /site/assets/images/graded_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/graded_tcr.png -------------------------------------------------------------------------------- /site/assets/images/how-plasma-works.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/how-plasma-works.jpeg -------------------------------------------------------------------------------- /site/assets/images/how-plasma-works1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/how-plasma-works1.jpeg -------------------------------------------------------------------------------- /site/assets/images/idex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/idex.png -------------------------------------------------------------------------------- /site/assets/images/issuance_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/issuance_graph.png -------------------------------------------------------------------------------- /site/assets/images/kyber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/kyber.png -------------------------------------------------------------------------------- /site/assets/images/layered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/layered_tcr.png -------------------------------------------------------------------------------- /site/assets/images/nested_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/nested_tcr.png -------------------------------------------------------------------------------- /site/assets/images/ordered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/ordered_tcr.png -------------------------------------------------------------------------------- /site/assets/images/parity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/parity.png -------------------------------------------------------------------------------- /site/assets/images/payment_chans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/payment_chans.png -------------------------------------------------------------------------------- /site/assets/images/serenity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/serenity.png -------------------------------------------------------------------------------- /site/assets/images/stake_interest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/stake_interest.png -------------------------------------------------------------------------------- /site/assets/images/state_chans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/state_chans.png -------------------------------------------------------------------------------- /site/assets/images/tcrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/tcrs.png -------------------------------------------------------------------------------- /site/assets/images/unordered_tcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/unordered_tcr.png -------------------------------------------------------------------------------- /site/assets/images/wallet_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/wallet_connect.png -------------------------------------------------------------------------------- /site/assets/images/wbtcpartners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/assets/images/wbtcpartners.png -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/lunr.multi.js: -------------------------------------------------------------------------------- 1 | !function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(o){o.multiLanguage=function(){for(var e=Array.prototype.slice.call(arguments),i=e.join("-"),t="",r=[],n=[],s=0;s404 - Page not found 4 |

    We have recently overhauled the repo so some links may be broken. Please use the search to find the page you're looking for. 5 | 6 |

    If you are looking for Serenity phases, the section has been renamed to Ethereum 2.0.

    7 |

    8 | {% endblock %} 9 | -------------------------------------------------------------------------------- /site/material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/__init__.py -------------------------------------------------------------------------------- /site/material/assets/fonts/material-icons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not 3 | * use this file except in compliance with the License. You may obtain a copy 4 | * of the License at: 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, SOFTWARE 9 | * DISTRIBUTED UNDER THE LICENSE IS DISTRIBUTED ON AN "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 | * SEE THE LICENSE FOR THE SPECIFIC LANGUAGE GOVERNING PERMISSIONS AND 12 | * LIMITATIONS UNDER THE LICENSE. 13 | */@font-face{font-family:"Material Icons";font-style:normal;font-weight:400;src:local("Material Icons"),local("MaterialIcons-Regular"),url("specimen/MaterialIcons-Regular.woff2") format("woff2"),url("specimen/MaterialIcons-Regular.woff") format("woff"),url("specimen/MaterialIcons-Regular.ttf") format("truetype")} -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/FontAwesome.ttf -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/FontAwesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/FontAwesome.woff -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/FontAwesome.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/FontAwesome.woff2 -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /site/material/assets/fonts/specimen/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/fonts/specimen/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /site/material/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/material/assets/images/favicon.png -------------------------------------------------------------------------------- /site/material/assets/javascripts/lunr/lunr.multi.js: -------------------------------------------------------------------------------- 1 | !function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(o){o.multiLanguage=function(){for(var e=Array.prototype.slice.call(arguments),i=e.join("-"),t="",r=[],n=[],s=0;s 7 |
    8 | {{ page.meta.hero }} 9 |
    10 | 11 | -------------------------------------------------------------------------------- /site/material/partials/integrations/analytics.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /site/material/partials/integrations/disqus.html: -------------------------------------------------------------------------------- 1 | {% set disqus = config.extra.disqus %} 2 | {% if page and page.meta and page.meta.disqus is string %} 3 | {% set disqus = page.meta.disqus %} 4 | {% endif %} 5 | {% if not page.is_homepage and disqus %} 6 |

    {{ lang.t("meta.comments") }}

    7 |
    8 | 21 | {% endif %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language.html: -------------------------------------------------------------------------------- 1 | {% import "partials/language/" + config.theme.language + ".html" as lang %} 2 | {% import "partials/language/en.html" as fallback %} 3 | {% macro t(key) %}{{ { 4 | "direction": config.theme.direction, 5 | "search.language": ( 6 | config.extra.search | default({}) 7 | ).language, 8 | "search.tokenizer": ( 9 | config.extra.search | default({}) 10 | ).tokenizer | default("", true), 11 | }[key] or lang.t(key) or fallback.t(key) }}{% endmacro %} 12 | -------------------------------------------------------------------------------- /site/material/partials/language/ar.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ar", 3 | "direction": "rtl", 4 | "clipboard.copy": "نسخ إلى الحافظة", 5 | "clipboard.copied": "تم النسخ الى الحافظة", 6 | "edit.link.title": "عدل الصفحة", 7 | "footer.previous": "السابقة", 8 | "footer.next": "التالية", 9 | "meta.comments": "التعليقات", 10 | "meta.source": "المصدر", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "بحث", 15 | "search.result.placeholder": "اكتب لبدء البحث", 16 | "search.result.none": "لا توجد نتائج", 17 | "search.result.one": "نتائج البحث مستند واحد", 18 | "search.result.other": "نتائج البحث # مستندات", 19 | "skip.link.title": "انتقل إلى المحتوى", 20 | "source.link.title": "اذهب إلى المصدر", 21 | "toc.title": "جدول المحتويات" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /site/material/partials/language/ca.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ca", 3 | "clipboard.copy": "Còpia al porta-retalls", 4 | "clipboard.copied": "Copiat al porta-retalls", 5 | "edit.link.title": "Edita aquesta pàgina", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Següent", 8 | "meta.comments": "Comentaris", 9 | "meta.source": "Codi font", 10 | "search.language": "", 11 | "search.placeholder": "Cerca", 12 | "search.result.placeholder": "Escriu per a començar a cercar", 13 | "search.result.none": "Cap document coincideix", 14 | "search.result.one": "1 document coincident", 15 | "search.result.other": "# documents coincidents", 16 | "skip.link.title": "Salta el contingut", 17 | "source.link.title": "Ves al repositori", 18 | "toc.title": "Taula de continguts" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/cs.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "cs", 3 | "clipboard.copy": "Kopírovat do schránky", 4 | "clipboard.copied": "Zkopírováno do schránky", 5 | "edit.link.title": "Upravit tuto stránku", 6 | "footer.previous": "Předchozí", 7 | "footer.next": "Další", 8 | "meta.comments": "Komentáře", 9 | "meta.source": "Zdroj", 10 | "search.language": "ro", 11 | "search.placeholder": "Hledat", 12 | "search.result.placeholder": "Pište co se má vyhledat", 13 | "search.result.none": "Nenalezeny žádné dokumenty", 14 | "search.result.one": "Nalezený dokument: 1", 15 | "search.result.other": "Nalezené dokumenty: #", 16 | "skip.link.title": "Přeskočit obsah", 17 | "source.link.title": "Přejít do repozitáře", 18 | "toc.title": "Obsah" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/da.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "da", 3 | "clipboard.copy": "Kopiér til udklipsholderen", 4 | "clipboard.copied": "Kopieret til udklipsholderen", 5 | "edit.link.title": "Redigér denne side", 6 | "footer.previous": "Forrige", 7 | "footer.next": "Næste", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Kilde", 10 | "search.language": "da", 11 | "search.placeholder": "Søg", 12 | "search.result.placeholder": "Indtask søgeord", 13 | "search.result.none": "Ingen resultater fundet", 14 | "search.result.one": "1 resultat", 15 | "search.result.other": "# resultater", 16 | "skip.link.title": "Gå til indholdet", 17 | "source.link.title": "Åbn arkiv", 18 | "toc.title": "Indholdsfortegnelse" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/de.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "de", 3 | "clipboard.copy": "In Zwischenablage kopieren", 4 | "clipboard.copied": "In Zwischenablage kopiert", 5 | "edit.link.title": "Seite editieren", 6 | "footer.previous": "Zurück", 7 | "footer.next": "Weiter", 8 | "meta.comments": "Kommentare", 9 | "meta.source": "Quellcode", 10 | "search.language": "de", 11 | "search.placeholder": "Suche", 12 | "search.result.placeholder": "Suchbegriff eingeben", 13 | "search.result.none": "Keine Suchergebnisse", 14 | "search.result.one": "1 Suchergebnis", 15 | "search.result.other": "# Suchergebnisse", 16 | "skip.link.title": "Zum Inhalt", 17 | "source.link.title": "Quellcode", 18 | "toc.title": "Inhaltsverzeichnis" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/en.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "en", 3 | "direction": "ltr", 4 | "clipboard.copy": "Copy to clipboard", 5 | "clipboard.copied": "Copied to clipboard", 6 | "edit.link.title": "Edit this page", 7 | "footer.previous": "Previous", 8 | "footer.next": "Next", 9 | "meta.comments": "Comments", 10 | "meta.source": "Source", 11 | "search.language": "en", 12 | "search.pipeline.stopwords": true, 13 | "search.pipeline.trimmer": true, 14 | "search.placeholder": "Search", 15 | "search.result.placeholder": "Type to start searching", 16 | "search.result.none": "No matching documents", 17 | "search.result.one": "1 matching document", 18 | "search.result.other": "# matching documents", 19 | "search.tokenizer": "[\s\-]+", 20 | "skip.link.title": "Skip to content", 21 | "source.link.title": "Go to repository", 22 | "toc.title": "Table of contents" 23 | }[key] }}{% endmacro %} 24 | -------------------------------------------------------------------------------- /site/material/partials/language/es.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "es", 3 | "clipboard.copy": "Copiar al portapapeles", 4 | "clipboard.copied": "Copiado al portapapeles", 5 | "edit.link.title": "Editar esta página", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Siguiente", 8 | "meta.comments": "Comentarios", 9 | "meta.source": "Fuente", 10 | "search.language": "es", 11 | "search.placeholder": "Búsqueda", 12 | "search.result.placeholder": "Teclee para comenzar búsqueda", 13 | "search.result.none": "No se encontraron documentos", 14 | "search.result.one": "1 documento encontrado", 15 | "search.result.other": "# documentos encontrados", 16 | "skip.link.title": "Saltar a contenido", 17 | "source.link.title": "Ir al repositorio", 18 | "toc.title": "Tabla de contenidos" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/fa.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fa", 3 | "direction": "rtl", 4 | "clipboard.copy": "کپی کردن", 5 | "clipboard.copied": "کپی شد", 6 | "edit.link.title": "این صفحه را ویرایش کنید", 7 | "footer.previous": "قبلی", 8 | "footer.next": "بعدی", 9 | "meta.comments": "نظرات", 10 | "meta.source": "منبع", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "جستجو", 15 | "search.result.placeholder": "برای شروع جستجو تایپ کنید", 16 | "search.result.none": "سندی یافت نشد", 17 | "search.result.one": "1 سند یافت شد", 18 | "search.result.other": "# سند یافت شد", 19 | "skip.link.title": "پرش به محتویات", 20 | "source.link.title": "رفتن به مخزن", 21 | "toc.title": "فهرست موضوعات" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /site/material/partials/language/fi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fi", 3 | "clipboard.copy": "Kopioi leikepöydälle", 4 | "clipboard.copied": "Kopioitu leikepöydälle", 5 | "edit.link.title": "Muokkaa tätä sivua", 6 | "footer.previous": "Edellinen", 7 | "footer.next": "Seuraava", 8 | "meta.comments": "Kommentit", 9 | "meta.source": "Lähdekodi", 10 | "search.language": "fi", 11 | "search.placeholder": "Hae", 12 | "search.result.placeholder": "Kirjoita aloittaaksesi haun", 13 | "search.result.none": "Ei täsmääviä dokumentteja", 14 | "search.result.one": "1 täsmäävä dokumentti", 15 | "search.result.other": "# täsmäävää dokumenttia", 16 | "skip.link.title": "Hyppää sisältöön", 17 | "source.link.title": "Mene repositoryyn", 18 | "toc.title": "Sisällysluettelo" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/fr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "fr", 3 | "clipboard.copy": "Copier dans le presse-papier", 4 | "clipboard.copied": "Copié dans le presse-papier", 5 | "edit.link.title": "Editer cette page", 6 | "footer.previous": "Précédent", 7 | "footer.next": "Suivant", 8 | "meta.comments": "Commentaires", 9 | "meta.source": "Source", 10 | "search.language": "fr", 11 | "search.placeholder": "Rechercher", 12 | "search.result.placeholder": "Taper pour démarrer la recherche", 13 | "search.result.none": "Aucun document trouvé", 14 | "search.result.one": "1 document trouvé", 15 | "search.result.other": "# documents trouvés", 16 | "source.link.title": "Aller au dépôt", 17 | "toc.title": "Table des matières" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /site/material/partials/language/gl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "gl", 3 | "clipboard.copy": "Copiar no cortapapeis", 4 | "clipboard.copied": "Copiado no cortapapeis", 5 | "edit.link.title": "Editar esta páxina", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Seguinte", 8 | "meta.comments": "Comentarios", 9 | "meta.source": "Fonte", 10 | "search.language": "es", 11 | "search.placeholder": "Busca", 12 | "search.result.placeholder": "Insira un termo", 13 | "search.result.none": "Sen resultados", 14 | "search.result.one": "1 resultado atopado", 15 | "search.result.other": "# resultados atopados", 16 | "skip.link.title": "Ir ao contido", 17 | "source.link.title": "Ir ao repositorio", 18 | "toc.title": "Táboa de contidos" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/he.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "he", 3 | "direction": "rtl", 4 | "clipboard.copy": "העתק ללוח", 5 | "clipboard.copied": "הועתק ללוח", 6 | "edit.link.title": "ערוך דף זה", 7 | "footer.previous": "קודם", 8 | "footer.next": "הַבָּא", 9 | "meta.comments": "הערות", 10 | "meta.source": "מָקוֹר", 11 | "search.language": "", 12 | "search.pipeline.stopwords": false, 13 | "search.pipeline.trimmer": false, 14 | "search.placeholder": "לחפש", 15 | "search.result.placeholder": "הקלד כדי להתחיל לחפש", 16 | "search.result.none": "אין מסמכים תואמים", 17 | "search.result.one": "1 מסמך תואם", 18 | "search.result.other": "# מסמך תואם", 19 | "skip.link.title": "דלג לתוכן", 20 | "source.link.title": "עבור אל מאגר", 21 | "toc.title": "תוכן העניינים" 22 | }[key] }}{% endmacro %} 23 | -------------------------------------------------------------------------------- /site/material/partials/language/hi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hi", 3 | "clipboard.copy": "क्लिपबोर्ड पर कॉपी करें", 4 | "clipboard.copied": "क्लिपबोर्ड पर कॉपी कर दिया गया", 5 | "edit.link.title": "इस पृष्ठ को संपादित करें", 6 | "footer.previous": "पिछला", 7 | "footer.next": "आगामी", 8 | "meta.comments": "टिप्पणियाँ", 9 | "meta.source": "स्रोत", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "खोज", 14 | "search.result.placeholder": "खोज शुरू करने के लिए टाइप करें", 15 | "search.result.none": "कोई मिलान डॉक्यूमेंट नहीं", 16 | "search.result.one": "1 मिलान डॉक्यूमेंट", 17 | "search.result.other": "# मिलान डाक्यूमेंट्स", 18 | "skip.link.title": "विषय पर बढ़ें", 19 | "source.link.title": "रिपॉजिटरी पर जाएं", 20 | "toc.title": "विषय - सूची" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language/hr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hr", 3 | "clipboard.copy": "Kopirajte u međuspremnik", 4 | "clipboard.copied": "Kopirano u međuspremnik", 5 | "edit.link.title": "Uredi stranicu", 6 | "footer.previous": "Prethodno", 7 | "footer.next": "Sljedeće", 8 | "meta.comments": "Komentari", 9 | "meta.source": "Izvor", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Pretraživanje", 14 | "search.result.placeholder": "Unesite pojam pretraživanja", 15 | "search.result.none": "Ništa nije pronađeno", 16 | "search.result.one": "1 rezultat pretraživanja", 17 | "search.result.other": "# rezultata pretraživanja", 18 | "skip.link.title": "Preskočite na sadržaj", 19 | "source.link.title": "Idite u repozitorij", 20 | "toc.title": "Sadržaj" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language/hu.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "hu", 3 | "clipboard.copy": "Másolás vágólapra", 4 | "clipboard.copied": "Vágólapra másolva", 5 | "edit.link.title": "Oldal szerkesztése", 6 | "footer.previous": "Előző", 7 | "footer.next": "Következő", 8 | "meta.comments": "Hozzászólások", 9 | "meta.source": "Forrás", 10 | "search.language": "hu", 11 | "search.placeholder": "Keresés", 12 | "search.result.placeholder": "Kereséshez írj ide valamit", 13 | "search.result.none": "Nincs találat", 14 | "search.result.one": "1 egyező dokumentum", 15 | "search.result.other": "# egyező dokumentum", 16 | "skip.link.title": "Kihagyás", 17 | "source.link.title": "Főoldalra ugrás", 18 | "toc.title": "Tartalomjegyzék" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/id.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "id", 3 | "clipboard.copy": "Salin ke memori", 4 | "clipboard.copied": "Tersalin ke memori", 5 | "edit.link.title": "Ubah halaman ini", 6 | "footer.previous": "Sebelumnya", 7 | "footer.next": "Selanjutnya", 8 | "meta.comments": "Komentar", 9 | "meta.source": "Sumber", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Cari", 14 | "search.result.placeholder": "Ketik untuk mulai pencarian", 15 | "search.result.none": "Tidak ada dokumen yang sesuai", 16 | "search.result.one": "1 dokumen ditemukan", 17 | "search.result.other": "# dokumen ditemukan", 18 | "skip.link.title": "Lewati ke isi", 19 | "source.link.title": "Menuju repositori", 20 | "toc.title": "Daftar isi" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language/it.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "it", 3 | "clipboard.copy": "Copia", 4 | "clipboard.copied": "Copiato", 5 | "edit.link.title": "Modifica", 6 | "footer.previous": "Precedente", 7 | "footer.next": "Prossimo", 8 | "meta.comments": "Commenti", 9 | "meta.source": "Sorgente", 10 | "search.language": "it", 11 | "search.placeholder": "Cerca", 12 | "search.result.placeholder": "Scrivi per iniziare a cercare", 13 | "search.result.none": "Nessun documento trovato", 14 | "search.result.one": "1 documento trovato", 15 | "search.result.other": "# documenti trovati", 16 | "skip.link.title": "Vai al contenuto", 17 | "source.link.title": "Apri repository", 18 | "toc.title": "Indice" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/ja.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ja", 3 | "clipboard.copy": "クリップボードへコピー", 4 | "clipboard.copied": "コピーしました", 5 | "edit.link.title": "編集", 6 | "footer.previous": "前", 7 | "footer.next": "次", 8 | "meta.comments": "コメント", 9 | "meta.source": "ソース", 10 | "search.language": "jp", 11 | "search.placeholder": "検索", 12 | "search.result.placeholder": "検索キーワードを入力してください", 13 | "search.result.none": "何も見つかりませんでした", 14 | "search.result.one": "1件見つかりました", 15 | "search.result.other": "#件見つかりました", 16 | "search.tokenizer": "[\s\- 、。,.]+", 17 | "source.link.title": "リポジトリへ", 18 | "toc.title": "目次" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/kr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "kr", 3 | "clipboard.copy": "클립보드로 복사", 4 | "clipboard.copied": "클립보드에 복사됨", 5 | "edit.link.title": "이 페이지를 편집", 6 | "footer.previous": "이전", 7 | "footer.next": "다음", 8 | "meta.comments": "댓글", 9 | "meta.source": "출처", 10 | "search.language": "jp", 11 | "search.placeholder": "검색", 12 | "search.result.placeholder": "검색어를 입력하세요", 13 | "search.result.none": "검색어와 일치하는 문서가 없습니다", 14 | "search.result.one": "1개의 일치하는 문서", 15 | "search.result.other": "#개의 일치하는 문서", 16 | "source.link.title": "저장소로 이동", 17 | "toc.title": "목차" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /site/material/partials/language/nl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "nl", 3 | "clipboard.copy": "Kopiëren naar klembord", 4 | "clipboard.copied": "Gekopieerd naar klembord", 5 | "edit.link.title": "Wijzig deze pagina", 6 | "footer.previous": "Vorige", 7 | "footer.next": "Volgende", 8 | "meta.comments": "Reacties", 9 | "meta.source": "Bron", 10 | "search.language": "du", 11 | "search.placeholder": "Zoeken", 12 | "search.result.placeholder": "Typ om te beginnen met zoeken", 13 | "search.result.none": "Geen overeenkomende documenten", 14 | "search.result.one": "1 overeenkomende document", 15 | "search.result.other": "# overeenkomende documenten", 16 | "skip.link.title": "Ga naar inhoud", 17 | "source.link.title": "Ga naar repository", 18 | "toc.title": "Inhoudsopgave" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/no.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "no", 3 | "clipboard.copy": "Kopier til utklippstavlen", 4 | "clipboard.copied": "Kopiert til utklippstavlen", 5 | "edit.link.title": "Rediger denne siden", 6 | "footer.previous": "Forrige", 7 | "footer.next": "Neste", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Kilde", 10 | "search.language": "no", 11 | "search.placeholder": "Søk", 12 | "search.result.placeholder": "Skriv søkeord", 13 | "search.result.none": "Ingen treff", 14 | "search.result.one": "1 treff", 15 | "search.result.other": "# treff", 16 | "skip.link.title": "Gå til innhold", 17 | "source.link.title": "Gå til kilde", 18 | "toc.title": "Innholdsfortegnelse" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/pl.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "pl", 3 | "clipboard.copy": "Kopiuj do schowka", 4 | "clipboard.copied": "Skopiowane", 5 | "edit.link.title": "Edytuj tę stronę", 6 | "footer.previous": "Poprzednia strona", 7 | "footer.next": "Następna strona", 8 | "meta.comments": "Komentarze", 9 | "meta.source": "Kod źródłowy", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Szukaj", 14 | "search.result.placeholder": "Zacznij pisać, aby szukać", 15 | "search.result.none": "Brak wyników wyszukiwania", 16 | "search.result.one": "Wyniki wyszukiwania: 1", 17 | "search.result.other": "Wyniki wyszukiwania: #", 18 | "skip.link.title": "Przejdź do treści", 19 | "source.link.title": "Idź do repozytorium", 20 | "toc.title": "Spis treści" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language/pt.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "pt", 3 | "clipboard.copy": "Copiar para área de transferência", 4 | "clipboard.copied": "Copiado para área de transferência", 5 | "edit.link.title": "Editar esta página", 6 | "footer.previous": "Anterior", 7 | "footer.next": "Próximo", 8 | "meta.comments": "Comentários", 9 | "meta.source": "Fonte", 10 | "search.language": "pt", 11 | "search.placeholder": "Buscar", 12 | "search.result.placeholder": "Digite para iniciar a busca", 13 | "search.result.none": "Nenhum resultado encontrado", 14 | "search.result.one": "1 resultado encontrado", 15 | "search.result.other": "# resultados encontrados", 16 | "skip.link.title": "Ir para o conteúdo", 17 | "source.link.title": "Ir ao repositório", 18 | "toc.title": "Índice" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/ru.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "ru", 3 | "clipboard.copy": "Копировать в буфер", 4 | "clipboard.copied": "Скопировано в буфер", 5 | "edit.link.title": "Редактировать страницу", 6 | "footer.previous": "Назад", 7 | "footer.next": "Вперед", 8 | "meta.comments": "Комментарии", 9 | "meta.source": "Исходный код", 10 | "search.language": "ru", 11 | "search.placeholder": "Поиск", 12 | "search.result.placeholder": "Начните печатать для поиска", 13 | "search.result.none": "Совпадений не найдено", 14 | "search.result.one": "Найдено 1 совпадение", 15 | "search.result.other": "Найдено # совпадений", 16 | "skip.link.title": "Перейти к содержанию", 17 | "source.link.title": "Перейти к репозиторию", 18 | "toc.title": "Содержание" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/sh.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sh", 3 | "clipboard.copy": "Kopiraj u klipbord", 4 | "clipboard.copied": "Iskopirano u klipbord", 5 | "edit.link.title": "Uredi stranicu", 6 | "footer.previous": "Prethodno", 7 | "footer.next": "Sledeće", 8 | "meta.comments": "Komentari", 9 | "meta.source": "Izvor", 10 | "search.language": "ro", 11 | "search.placeholder": "Pretraga", 12 | "search.result.placeholder": "Unesite pojam pretrage", 13 | "search.result.none": "Ništa nije pronađeno", 14 | "search.result.one": "1 rezultat pretrage", 15 | "search.result.other": "# rezultata pretrage", 16 | "skip.link.title": "Idi na tekst", 17 | "source.link.title": "Idi u repozitorijum", 18 | "toc.title": "Sadržaj" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/sk.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sk", 3 | "clipboard.copy": "Kopírovať do schránky", 4 | "clipboard.copied": "Skopírované do schránky", 5 | "edit.link.title": "Upraviť túto stránku", 6 | "footer.previous": "Späť", 7 | "footer.next": "Ďalej", 8 | "meta.comments": "Komentáre", 9 | "meta.source": "Zdroj", 10 | "search.language": "sk", 11 | "search.placeholder": "Hľadať", 12 | "search.result.placeholder": "Pre vyhľadávanie začni písať", 13 | "search.result.none": "Žiadne vyhovujúce dokumenty", 14 | "search.result.one": "Vyhovujúci dokument: 1", 15 | "search.result.other": "Vyhovujúce dokumenty: #", 16 | "skip.link.title": "Preskočiť na obsah", 17 | "source.link.title": "Zobraziť repozitár", 18 | "toc.title": "Obsah" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/sr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sr", 3 | "clipboard.copy": "Копирај у клипборд", 4 | "clipboard.copied": "Ископирано у клипборд", 5 | "edit.link.title": "Уреди страницу", 6 | "footer.previous": "Претходно", 7 | "footer.next": "Следеће", 8 | "meta.comments": "Коментари", 9 | "meta.source": "Извор", 10 | "search.language": "", 11 | "search.pipeline.stopwords": false, 12 | "search.pipeline.trimmer": false, 13 | "search.placeholder": "Претрага", 14 | "search.result.placeholder": "Унесите појам претраге", 15 | "search.result.none": "Нису пронађени документи", 16 | "search.result.one": "1 резултат претраге", 17 | "search.result.other": "# резултата претраге", 18 | "skip.link.title": "Иди на текст", 19 | "source.link.title": "Иди у репозиторијум", 20 | "toc.title": "Садржај" 21 | }[key] }}{% endmacro %} 22 | -------------------------------------------------------------------------------- /site/material/partials/language/sv.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "sv", 3 | "clipboard.copy": "Kopiera till urklipp", 4 | "clipboard.copied": "Kopierat till urklipp", 5 | "edit.link.title": "Redigera sidan", 6 | "footer.previous": "Föregående", 7 | "footer.next": "Nästa", 8 | "meta.comments": "Kommentarer", 9 | "meta.source": "Källa", 10 | "search.language": "sv", 11 | "search.placeholder": "Sök", 12 | "search.result.placeholder": "Skriv sökord", 13 | "search.result.none": "Inga sökresultat", 14 | "search.result.one": "1 sökresultat", 15 | "search.result.other": "# sökresultat", 16 | "skip.link.title": "Gå till innehållet", 17 | "source.link.title": "Gå till datakatalog", 18 | "toc.title": "Innehållsförteckning" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/tr.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "tr", 3 | "clipboard.copy": "Kopyala", 4 | "clipboard.copied": "Kopyalandı", 5 | "edit.link.title": "Düzenle", 6 | "footer.previous": "Önceki", 7 | "footer.next": "Sonraki", 8 | "meta.comments": "Yorumlar", 9 | "meta.source": "Kaynak", 10 | "search.language": "tr", 11 | "search.placeholder": "Ara", 12 | "search.result.placeholder": "Aramaya başlamak için yazın", 13 | "search.result.none": "Eşleşen doküman bulunamadı", 14 | "search.result.one": "1 doküman bulundu", 15 | "search.result.other": "# doküman bulundu", 16 | "source.link.title": "Depoya git", 17 | "toc.title": "İçindekiler" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /site/material/partials/language/uk.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "uk", 3 | "clipboard.copy": "Скопіювати в буфер", 4 | "clipboard.copied": "Скопійовано в буфер", 5 | "edit.link.title": "Редагувати сторінку", 6 | "footer.previous": "Назад", 7 | "footer.next": "Вперед", 8 | "meta.comments": "Коментарі", 9 | "meta.source": "Вихідний код", 10 | "search.language": "ru", 11 | "search.placeholder": "Пошук", 12 | "search.result.placeholder": "Розпочніть писати для пошуку", 13 | "search.result.none": "Збігів не знайдено", 14 | "search.result.one": "Знайдено 1 збіг", 15 | "search.result.other": "Знайдено # збігів", 16 | "skip.link.title": "Перейти до змісту", 17 | "source.link.title": "Перейти до репозиторію", 18 | "toc.title": "Зміст" 19 | }[key] }}{% endmacro %} 20 | -------------------------------------------------------------------------------- /site/material/partials/language/vi.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "vi", 3 | "clipboard.copy": "Sao chép vào bộ nhớ", 4 | "clipboard.copied": "Sao chép xong", 5 | "edit.link.title": "Chỉnh sửa", 6 | "footer.previous": "Trước", 7 | "footer.next": "Sau", 8 | "meta.comments": "Bình luận", 9 | "meta.source": "Mã nguồn", 10 | "search.placeholder": "Tìm kiếm", 11 | "search.result.placeholder": "Nhập để bắt đầu tìm kiếm", 12 | "search.result.none": "Không tìm thấy tài liệu liên quan", 13 | "search.result.one": "1 tài liệu liên quan", 14 | "search.result.other": "# tài liệu liên quan", 15 | "skip.link.title": "Vào thẳng nội dung", 16 | "source.link.title": "Đến kho lưu trữ mã nguồn", 17 | "toc.title": "Mục lục" 18 | }[key] }}{% endmacro %} 19 | -------------------------------------------------------------------------------- /site/material/partials/language/zh-Hant.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh-Hant", 3 | "clipboard.copy": "拷貝", 4 | "clipboard.copied": "已拷貝", 5 | "edit.link.title": "編輯此頁", 6 | "footer.previous": "上一頁", 7 | "footer.next": "下一頁", 8 | "meta.comments": "評論", 9 | "meta.source": "來源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜尋", 12 | "search.result.placeholder": "鍵入以開始檢索", 13 | "search.result.none": "沒有找到符合條件的結果", 14 | "search.result.one": "找到 1 个符合條件的結果", 15 | "search.result.other": "# 個符合條件的結果", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳轉至", 18 | "source.link.title": "前往 Github 倉庫", 19 | "toc.title": "目錄" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /site/material/partials/language/zh-TW.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh-Hant", 3 | "clipboard.copy": "複製", 4 | "clipboard.copied": "已複製", 5 | "edit.link.title": "編輯此頁", 6 | "footer.previous": "上一頁", 7 | "footer.next": "下一頁", 8 | "meta.comments": "留言", 9 | "meta.source": "來源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜尋", 12 | "search.result.placeholder": "打字進行搜尋", 13 | "search.result.none": "沒有符合的項目", 14 | "search.result.one": "找到 1 個符合的項目", 15 | "search.result.other": "找到 # 個符合的項目", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳轉到", 18 | "source.link.title": "前往倉庫", 19 | "toc.title": "本頁目錄" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /site/material/partials/language/zh.html: -------------------------------------------------------------------------------- 1 | {% macro t(key) %}{{ { 2 | "language": "zh", 3 | "clipboard.copy": "复制", 4 | "clipboard.copied": "已复制", 5 | "edit.link.title": "编辑此页", 6 | "footer.previous": "后退", 7 | "footer.next": "前进", 8 | "meta.comments": "评论", 9 | "meta.source": "来源", 10 | "search.language": "jp", 11 | "search.placeholder": "搜索", 12 | "search.result.placeholder": "键入以开始搜索", 13 | "search.result.none": "没有找到符合条件的结果", 14 | "search.result.one": "找到 1 个符合条件的结果", 15 | "search.result.other": "# 个符合条件的结果", 16 | "search.tokenizer": "[\,\。]+", 17 | "skip.link.title": "跳转至", 18 | "source.link.title": "前往 Github 仓库", 19 | "toc.title": "目录" 20 | }[key] }}{% endmacro %} 21 | -------------------------------------------------------------------------------- /site/material/partials/nav.html: -------------------------------------------------------------------------------- 1 | 25 | -------------------------------------------------------------------------------- /site/material/partials/social.html: -------------------------------------------------------------------------------- 1 | {% if config.extra.social %} 2 | 8 | {% endif %} 9 | -------------------------------------------------------------------------------- /site/material/partials/source.html: -------------------------------------------------------------------------------- 1 | {% import "partials/language.html" as lang with context %} 2 | {% set platform = config.extra.repo_icon or config.repo_url %} 3 | {% if "github" in platform %} 4 | {% set repo_type = "github" %} 5 | {% elif "gitlab" in platform %} 6 | {% set repo_type = "gitlab" %} 7 | {% elif "bitbucket" in platform %} 8 | {% set repo_type = "bitbucket" %} 9 | {% else %} 10 | {% set repo_type = "" %} 11 | {% endif %} 12 | {% block repo %} 13 | 14 | {% if repo_type %} 15 |
    16 | 17 | 18 | 19 |
    20 | {% endif %} 21 |
    22 | {{ config.repo_name }} 23 |
    24 |
    25 | {% endblock %} 26 | -------------------------------------------------------------------------------- /site/material/partials/tabs.html: -------------------------------------------------------------------------------- 1 | {% set class = "md-tabs" %} 2 | {% if page.ancestors | length > 0 %} 3 | {% set class = "md-tabs md-tabs--active" %} 4 | {% endif %} 5 | 14 | -------------------------------------------------------------------------------- /site/material/partials/toc-item.html: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | {{ toc_item.title }} 4 | 5 | {% if toc_item.children %} 6 | 13 | {% endif %} 14 |
  • 15 | -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethhub-io/ethhub/7eeb93a2e6c2264f356dc1595fe41fa040a2c60d/site/sitemap.xml.gz -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- 1 | ## Please use this template as a guide when creating pages for EthHub. All pages use Markdown (cheat sheet [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)) so be sure to use `.md` as the extension when creating the page file. 2 | 3 | ## Click [here](/built-on-ethereum/open-finance/stablecoins/crypto-backed/dai.md) for an example of what a fully-fledged page looks like. 4 | ------------------------ 5 | # [Template Begin] 6 | `title: [Page Title] - EthHub` 7 | _[Leave a blank line]_ 8 | `description: [Meta description (155 characters recommended)` 9 | _[Leave a blank line]_ 10 | # Page Heading [H1] 11 | 12 | ## Summary [H2] 13 | 14 | *A summary of what the page is about.* 15 | 16 | ## Features [H2] 17 | 18 | *Main features.* 19 | 20 | ### Sub-feature 1 [H3] 21 | 22 | *Content for sub-feature 1.* 23 | 24 | ### Sub-feature 2 [H3] 25 | 26 | *Content for sub-feature 2.* 27 | 28 | ## Resources [H2] 29 | 30 | *Relevant resources like website, github link, blog posts etc go here* 31 | 32 | # [Template End] 33 | --------------------------------------------------------------------------------