<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.internetcomputer.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jens+Groth</id>
	<title>Internet Computer Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.internetcomputer.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jens+Groth"/>
	<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/wiki/Special:Contributions/Jens_Groth"/>
	<updated>2026-04-11T06:07:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Neuron_attributes_and_commands&amp;diff=1325</id>
		<title>Neuron attributes and commands</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Neuron_attributes_and_commands&amp;diff=1325"/>
		<updated>2022-01-09T21:00:12Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Neuron Attributes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page provides more details about the [https://wiki.internetcomputer.org/index.php?title=Governance_of_the_Internet_Computer&amp;amp;veaction=edit&amp;amp;section=6#Neurons neurons] in the Network Nervous System (NNS), focusing on their attributes and the commands by which they can be changed.&lt;br /&gt;
&lt;br /&gt;
== Neuron Attributes ==&lt;br /&gt;
Each neuron in the NNS has the following attributes.&lt;br /&gt;
&lt;br /&gt;
* id: The identifier of the neuron.&lt;br /&gt;
* account: The principal of the ICP ledger account where the locked ICP balance resides. That is, each neuron&#039;s ICP token balance is stored on an account on the ledger canister. In contrast to non-neuron accounts the controller can however not just transfer the funds out of this account.&lt;br /&gt;
&lt;br /&gt;
* controller: The principal that controls the neuron. The principal must be derived from a public key, which acts as a “master key” (the corresponding secret key should be kept secure). The principal may control many neurons.&lt;br /&gt;
&lt;br /&gt;
* hot_keys: Keys that can be used to authorize actions with limited privileges, for example voting with a neuron. The idea is that while the controller key should be kept very secure, the loss or compromise of keys that are used more often (and thus very secure storage might not be feasible) has less security impact.&lt;br /&gt;
* cached_neuron_stake_e8s: The amount of staked ICP tokens, measured in fractions of 10E-8 of an ICP. This does not include the fees or some of the collected rewards (see below) and might not correspond exactly to the amount of ICP tokens of the neuron&#039;s account at all times. For example, to top up a neuron, one first transfers some ICP tokens to the neuron&#039;s account and then refreshes the neuron, which means that in between these actions the neuron&#039;s account actually holds more tokens than indicated by the corresponding cached stake.&lt;br /&gt;
* neuron_fees_e8s: The amount that this neuron owes, measured in fractions of 10E-8 of an ICP. This amount is increased when a neuron makes a proposal of [[Topic ManageNeuron|topic &#039;&#039;ManageNeuron&#039;&#039;]] or when a neuron makes a proposal of any other topic (in the latter case the fee is reimbursed if the proposal is accepted). When a neuron is disbursed, these tokens are burned.&lt;br /&gt;
* created_timestamp_seconds: The time when the neuron was created.&lt;br /&gt;
* aging_since_timestamp_seconds: The time, in seconds from the Unix epoch as measured by the IC, this neuron has last entered the non-dissolving state.&lt;br /&gt;
* dissolve_state: The state specifying whether a neuron is dissolving, i.e., the timer when the staked tokens can be retrieved is decreasing, or non-dissolving, i.e., the time how much into the future the staked tokens can be retrieved is stopped. &lt;br /&gt;
** When a neuron is dissolving, i.e., the dissolve timer is running, the state is when_dissolved_timestamp_seconds and stores the timestamp, in seconds from the Unix epoch, at which the neuron becomes dissolved. &lt;br /&gt;
** When a neuron is non-dissolving, i.e., the dissolve timer is stopped, the state is dissolve_delay_seconds and stores how much time, in seconds, the dissolve timer will be started with.&lt;br /&gt;
* followees: A neuron&#039;s followees stored as a map of topics (represented by an integer) to set of followee neurons.&lt;br /&gt;
* recent_ballots: Information about how this neuron voted in the recent past. It only contains proposals that the neuron voted yes or no on.         &lt;br /&gt;
* kyc_verified: `true` if this neuron has passed KYC, `false` otherwise&lt;br /&gt;
* transfer: The record of the transfer that was made to create this neuron. This is not used anymore and always set to &amp;quot;None&amp;quot;.&lt;br /&gt;
* maturity_e8s_equivalent: A neuron&#039;s maturity in &amp;quot;e8s equivalent&amp;quot;. The maturity keeps track of the rewards that the neurons has collected. While this quantity is on the same scale as ICP tokens, it is not directly convertible to ICPs and conversion requires a minting event (e.g., spawn or merge the maturity).&lt;br /&gt;
* not_for_profit:  Whether this neuron is &amp;quot;Not for profit&amp;quot;, making it dissolvable by voting (see below)&lt;br /&gt;
* joined_community_fund_timestamp_seconds: The time point when this neuron joined the community fund.&lt;br /&gt;
&lt;br /&gt;
== Manage Neuron Commands ==&lt;br /&gt;
In general, any changes to or in the name of a neuron (e.g., changes to the neuron&#039;s attributes or casting a vote in the name of the neuron) can be made in two ways: &lt;br /&gt;
&lt;br /&gt;
# by using the manage_neuron interface of the governance canister or&lt;br /&gt;
# by making a special proposal of [[topic ManageNeuron]], where the basic idea is that a set of neurons can control a &#039;&#039;managed neuron&#039;&#039; by submitting and voting on special proposals. This only works if the managed neuron follows these controlling neurons for the proposal topic ManageNeuron. If this is given, the set of controlling neurons can send commands to the governance canister as if they were issued by the managed neuron&#039;s controller (that is with the same privileges that the managed neuron&#039;s controller has to manipulate the neuron). Thus, if it is stated that some neuron commands can only be done by a neuron&#039;s controller, this also includes the possibility that these commands are done per manageNeuron proposal.&lt;br /&gt;
&lt;br /&gt;
We next list all commands that can be done by manage_neuron.&lt;br /&gt;
&lt;br /&gt;
=== Claiming a Neuron ===&lt;br /&gt;
This can be used to stake ICP utility tokens into a neuron. To do so, first a transfer must be made to the neuron&#039;s associated ledger account. Each transfer on the ledger account can be provided with a &#039;&#039;memo.&#039;&#039; After this transfer, the neuron can be claimed on the governance canister by providing the memo and the controller of the neuron. This allows the governance canister to find the corresponding account on the ledger canister and learn how many tokens should be staked in the corresponding neuron. A neuron is then created. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command)&#039;&#039;&amp;lt;u&amp;gt;:&amp;lt;/u&amp;gt;&#039;&#039;&#039;&#039;&#039; &#039;&#039;&amp;lt;u&amp;gt;Anyone can call this method.&amp;lt;/u&amp;gt;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
=== Refreshing a Neuron ===&lt;br /&gt;
Similarly to how a neuron is first created, a neuron can be topped up by making a transfer to the neuron&#039;s Ledger canister account and then calling the Governance canister, which will adjust the neuron&#039;s stake to the new balance on the neuron&#039;s account. For this to work, the caller must either provide the governance canister with the memo and controller (as with claiming a neuron) or with the neuron&#039;s ID or account. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;&#039;&#039;&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; Anyone can call this method.&#039;&#039;&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
=== Configuring a Neuron ===&lt;br /&gt;
Once a neuron is claimed, a neuron&#039;s controller might want to configure it. The following are commands that only configure a given neuron, but do not interact with the outside world.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; All neuron configurations can only be invoked by a neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
* IncreaseDissolveDelay: Increases a neuron&#039;s dissolve delay by the given additional dissolve delay but at most to a given maximum dissolve delay (which is currently set to 8 years). If this method is called on a non-dissolving neuron, it remains non-dissolving. If it is called on dissolving neuron, it remains dissolving.   If this configuration is called on a dissolved neuron, it becomes non-dissolving. Moreover, the neuron&#039;s aging_since_timestamp_seconds is reset to start counting from when it last entered the dissolved state in the case where the &#039;&#039;dissolved&#039;&#039; state was reached through explicit dissolution or to `now` when this is not applicable, e.g., when the neuron is newly created with zero dissolve delay.&lt;br /&gt;
&lt;br /&gt;
* SetDissolveTimestamp: This is just another way of increasing the dissolve delay, by stating the target dissolve timestamp rather than the relative increase in the dissolve delay. It is internally translated to do the same as increasing the dissolve delay.&lt;br /&gt;
* StartDissolving: If this neuron is not dissolving, start dissolving it. If the neuron is dissolving or dissolved, an error is returned. Starting to dissolve a neuron intuitively means that the neuron&#039;s countdown to when the staked tokens can be liquidated is started. In terms of neuron attributes, the neuron&#039;s dissolve state is set to when_dissolved_timestamp_seconds which specifies the time now plus the neuron&#039;s dissolve delay (i.e., the defined countdown&#039;s duration). Moreover, the neuron&#039;s aging_since_timestamp_seconds is set to the maximum possible value, which represents that the neuron has no age as this will be in the future.&lt;br /&gt;
&lt;br /&gt;
* StopDissolving: If this neuron is dissolving, set it to not dissolving. If the neuron is not dissolving, an error is returned. Intuitively, this means that the neuron&#039;s countdown towards when the staked tokens can be liquidated is stopped. In terms of neuron attributes, the neuron&#039;s state is set to dissolve_delay_seconds, which now tracks the remaining time on the countdown. Also, the neuron&#039;s aging_since_timestamp_seconds is set to now. &lt;br /&gt;
&lt;br /&gt;
* AddHotKey: A new hot key is added to the neuron if the following preconditions hold: - key to add is not already present in &#039;hot_keys&#039; - the key to add is well-formed - there are not already too many hot keys for this neuron (currently 10 hot keys are allowed).&lt;br /&gt;
* RemoveHotKey: The specified hot key is removed if it is in the list of hot keys.&lt;br /&gt;
* JoinCommunityFund: If the neuron has not yet joined the community fund, this configuration sets the neuron&#039;s joined_community_fund_timestamp_seconds to the current time. If the neuron is already a member of the community fund, an error is returned.&lt;br /&gt;
&lt;br /&gt;
=== Make Proposal ===&lt;br /&gt;
This command can be used to have a neuron controlled by the issuer of the command to submit a proposal. If successful, the command creates an initial electoral roll that includes a ballot for all neurons that are eligible to vote on the proposal at the time when the proposal is created and where the ballots state the neurons&#039; voting power at the time of the proposal creation. The neuron that makes the proposal is charged the rejection fee upfront which will be reimbursed if the proposal is accepted (except for proposals of topic ManageNeuron) and the voting power of the proposer neuron is already counted towards the yes votes of the proposal.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; The neuron&#039;s controller or a registered hot key.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The proposal is valid.&lt;br /&gt;
* The neuron is eligible to vote on the proposal (i.e., still has a minimum dissolve delay currently set to 6 months).&lt;br /&gt;
* The neuron has more stake than the cost of a rejected proposal, which is currently 1 ICP.&lt;br /&gt;
* There are not too many open proposals.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The neuron_fees_e8s are increased by the rejection fee (or, in case of a ManageNeuron proposal the corresponding fee).&lt;br /&gt;
* The recent_ballots are updated with the yes ballot that is cast for the proposer.&lt;br /&gt;
&lt;br /&gt;
=== Register Vote ===&lt;br /&gt;
This is used to directly register a neuron&#039;s vote for a given proposal. Also, it triggers the registration of a vote for all neurons that follow this neuron.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; The neuron&#039;s controller or a registered hot key.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* A proposal is specified that exists.&lt;br /&gt;
* The neuron is eligible to vote on this proposal, i.e., an empty ballot has been entered to the electoral roll (if this is not the case, then the neuron was not eligible at the time when the proposal was created and thus the neuron is not allowed to vote on it).&lt;br /&gt;
* The neuron has not already voted on this proposal.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The recent_ballots are updated.&lt;br /&gt;
&lt;br /&gt;
=== Follow ===&lt;br /&gt;
Add or remove followees for this neuron for a specified topic. If the list of followees is empty, remove the followees for this topic. If the list has at least one element, replace the current list of followees for the given topic with the provided list. Note that the list is replaced, not added to.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The list of followees is not too long (the current maximum is 15 followees per topic).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The followees for the given topic are updated.&lt;br /&gt;
&lt;br /&gt;
=== Spawn ===&lt;br /&gt;
This command allows to convert the neuron&#039;s collected rewards that are stored as the neuron&#039;s maturity to (staked) ICP utility tokens by minting the corresponding tokens (on the Ledger canister) and &amp;quot;spawning&amp;quot; them into a new neuron. The new &#039;&#039;child neuron&#039;&#039;, containing the spawned staked tokens has a small dissolve delay, which means that the tokens can be liquidated after only a short period of time while the original &#039;&#039;parent neuron&#039;s&#039;&#039; tokens may still be locked for much longer.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039; The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The parent neuron exists.&lt;br /&gt;
* The parent neuron is not involved in any neuron commands that have ledger interactions (to avoid inconsistencies).&lt;br /&gt;
* The parent neuron has accumulated maturity that would generate more than the minimum stake needed to create a new neuron.&lt;br /&gt;
* A controller for the new child neuron is provided that is valid.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* The maturity is decreased by the maturity at the time when the command started (a new reward event might have set it to non-zero already again).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The new &amp;quot;child&amp;quot; neuron&#039;s attributes:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* id: random identifier&lt;br /&gt;
* account: random account (that does not yet exist)&lt;br /&gt;
&lt;br /&gt;
* controller: set to the provided controller&lt;br /&gt;
&lt;br /&gt;
* hot_keys: same as parent neuron&lt;br /&gt;
* cached_neuron_stake_e8s: set to the parent&#039;s maturity at the time when the command started.&lt;br /&gt;
* neuron_fees_e8s: 0&lt;br /&gt;
* created_timestamp_seconds: current time&lt;br /&gt;
* aging_since_timestamp_seconds: current time&lt;br /&gt;
* dissolve_state: (non-dissolving) dissolve_delay_seconds set to neuron_spawn_dissolve_delay_seconds as defined in the governance economics (currently set to 7 days)&lt;br /&gt;
* followees: same as parent neuron&lt;br /&gt;
* recent_ballots: empty&lt;br /&gt;
* kyc_verified: same as parent neuron&lt;br /&gt;
* transfer: not set&lt;br /&gt;
* maturity_e8s_equivalent:0&lt;br /&gt;
* not_for_profit: false&lt;br /&gt;
* joined_community_fund_timestamp_seconds: None&lt;br /&gt;
&lt;br /&gt;
=== Merge Maturity ===&lt;br /&gt;
This command allows to convert the neuron&#039;s collected rewards that are stored as the neuron&#039;s maturity to (staked) ICP utility tokens by adding them to the neuron&#039;s stake. The caller can choose a percentage of maturity to merge. The effect is that the corresponding tokens will be minted on the Ledger canister and added to the neuron&#039;s account.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039;  The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The neuron has some maturity to merge.&lt;br /&gt;
* The e8s equivalent of the amount of maturity to merge must be more than the transaction fee on the Ledger canister. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The specified portion of the maturity is subtracted from the neuron&#039;s maturity_e8s_equivalent.&lt;br /&gt;
* The specified portion of the maturity is added to the neuron&#039;s cached_neuron_stake_e8s.&lt;br /&gt;
* The neuron&#039;s age (specified in aging_since_timestamp_seconds) is adjusted to reflect that the newly added tokens have no age.&lt;br /&gt;
&lt;br /&gt;
=== Disburse ===&lt;br /&gt;
Once a dissolving neuron&#039;s countdown has reached zero, the neuron is dissolved and can thus be disbursed, which means that (some or only a specified number of) the staked tokens can be transferred to a given account. If no target account is provided, the transfer is made to the caller&#039;s account (i.e., the neuron&#039;s controller&#039;s account).&lt;br /&gt;
&lt;br /&gt;
In more detail, when a neuron is disbursed multiple steps happen:&lt;br /&gt;
&lt;br /&gt;
# The neuron&#039;s accumulated fees are burned.&lt;br /&gt;
# The neuron&#039;s accumulated maturity is converted to ICP utility tokens by minting the corresponding tokens and also transferring them to the target account.&lt;br /&gt;
# The given staked amount (or the full stake if none is provided) is transferred to the target account.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039;  The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The neuron exists.&lt;br /&gt;
* The neuron&#039;s state is `Dissolved` at the current timestamp, i.e., the dissolve countdown has reached zero.&lt;br /&gt;
* The neuron&#039;s kyc_verified is not false. That is, a neuron that was created with kyc_verified false cannot be disbursed until it went through kyc.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The specified amount is subtracted from the neuron&#039;s cached_neuron_stake_e8s, as are the original neuron fees.&lt;br /&gt;
* The neuron_fees_e8s is set to zero.&lt;br /&gt;
* The maturity_e8s_equivalent is set to zero.&lt;br /&gt;
&lt;br /&gt;
=== Split ===&lt;br /&gt;
This command splits a &#039;&#039;parent neuron&#039;&#039; into two neurons, the original parent neuron and a new child neuron. This command may be useful, if a neuron holder would like for example to set the neuron configurations differently for a portion of the locked tokens. &lt;br /&gt;
&lt;br /&gt;
The parent neuron&#039;s stake is decreased by the amount specified, while the child neuron is created with a stake equal to that amount, minus the Ledger canister transfer fee. The child neuron inherits all the properties of its parent.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039;  The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* The parent neuron exists.&lt;br /&gt;
* The parent neuron is not involved in any neuron commands that have ledger interactions (to avoid inconsistencies).&lt;br /&gt;
* The staked amount minus amount to split is more than the minimum stake (ensuring that the parent neuron has at least the minimum stake).&lt;br /&gt;
* The amount to split minus the transfer fee is more than the minimum stake  (ensuring that the child neuron has at least the minimum stake).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the (parent) neuron&#039;s attributes:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
* cached_neuron_stake_e8s: deduced by specified amount that is split.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The the new &amp;quot;child&amp;quot; neuron&#039;s attributes:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* id: random identifier&lt;br /&gt;
* account: random account (that does not yet exist)&lt;br /&gt;
&lt;br /&gt;
* controller: same as parent neuron&lt;br /&gt;
&lt;br /&gt;
* hot_keys: same as parent neuron&lt;br /&gt;
* cached_neuron_stake_e8s: set to specified amount that is split from parent minus the transaction fee&lt;br /&gt;
* neuron_fees_e8s: 0&lt;br /&gt;
* created_timestamp_seconds: current time&lt;br /&gt;
* aging_since_timestamp_seconds: same as parent neuron&lt;br /&gt;
* dissolve_state: same as parent neuron&lt;br /&gt;
* followees: same as parent neuron&lt;br /&gt;
* recent_ballots: empty&lt;br /&gt;
* kyc_verified: same as parent neuron&lt;br /&gt;
* transfer: not set&lt;br /&gt;
* maturity_e8s_equivalent: 0&lt;br /&gt;
* not_for_profit: same as parent neuron&lt;br /&gt;
* joined_community_fund_timestamp_seconds: same as parent neuron&lt;br /&gt;
=== Disburse to Neuron ===&lt;br /&gt;
(Intro)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access control (who can issue this command):&#039;&#039;&#039;  The neuron&#039;s controller.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Preconditions (other conditions that must hold):&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The effect on the neuron&#039;s attributes:&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1324</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1324"/>
		<updated>2022-01-09T20:48:04Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
*[[Staking and Voting|Staking and voting rewards]]&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
*Please do not use the word &amp;quot;we&amp;quot;, many people may later edit the article leaving &amp;quot;we&amp;quot; ambiguous. &lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Staking,_voting_and_rewards&amp;diff=1323</id>
		<title>Staking, voting and rewards</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Staking,_voting_and_rewards&amp;diff=1323"/>
		<updated>2022-01-09T20:41:39Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Key Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Staking &amp;amp; Voting Rewards ==&lt;br /&gt;
&lt;br /&gt;
Stakeholders can earn significant returns on their staked ICP tokens in&lt;br /&gt;
the form of voting rewards. The Internet Computer is a decentralized&lt;br /&gt;
platform whose evolution is decided by the voting power of its&lt;br /&gt;
stakeholders. This scheme ensures that those making decisions impacting&lt;br /&gt;
the future of the Internet Computer are personally vested in the&lt;br /&gt;
outcome. In return the Internet Computer gives out voting rewards.&lt;br /&gt;
Voters can vote actively, or they can use the liquid democracy on the&lt;br /&gt;
Internet Computer to automatically follow other voters.&lt;br /&gt;
&lt;br /&gt;
== Key Concepts ==&lt;br /&gt;
&lt;br /&gt;
=== Neurons ===&lt;br /&gt;
&lt;br /&gt;
In order to become vested and obtain voting power, ICP tokens must first&lt;br /&gt;
be staked, and then locked up for a length of time greater than 6&lt;br /&gt;
months, to at most 8 years.&lt;br /&gt;
&lt;br /&gt;
Just as tokens are held in a user&#039;s account, stake is held in a special&lt;br /&gt;
account called a &amp;quot;neuron&amp;quot;. Each neuron has its own identifier, and&lt;br /&gt;
several attributes relating to its stake. These include:&lt;br /&gt;
&lt;br /&gt;
* the length of time it is locked for (the &amp;quot;dissolve delay&amp;quot;);&lt;br /&gt;
* whether it is currently dissolving toward liquidity;&lt;br /&gt;
* and how much reward it has accrued as a result of voting on proposals (the &amp;quot;maturity&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Once a neuron is locked for more than six months, it gains the ability&lt;br /&gt;
both to submit proposals and to vote on them. Voting in turn generates&lt;br /&gt;
voting rewards, based on how active a neuron is in voting on proposals.&lt;br /&gt;
If you vote on every open proposal, you gain the maximum reward.&lt;br /&gt;
&lt;br /&gt;
A neuron can also &amp;quot;follow&amp;quot; other neurons, which causes it to&lt;br /&gt;
automatically vote the same as the majority of the neurons that it&lt;br /&gt;
follows. All new neurons by default follow neuron 27 held by the ICA, so&lt;br /&gt;
any newly staked neuron will generate voting rewards as soon as it is&lt;br /&gt;
locked for more than six months. The default following is applied to&lt;br /&gt;
most proposal topics, except for proposals with topic Governance, where&lt;br /&gt;
neuron holders have to explicitly vote to earn rewards.&lt;br /&gt;
&lt;br /&gt;
=== Voting Power ===&lt;br /&gt;
&lt;br /&gt;
The voting power of a locked neuron is determined by several factors:&lt;br /&gt;
&lt;br /&gt;
* Principally, by its stake. 1 ICP = the power of 1 vote.&lt;br /&gt;
* Next, by its lock up duration, or dissolve delay. 6 months grants a 1.06x voting power bonus, and 8 years grants 2x. All other durations scale linearly between.&lt;br /&gt;
* Lastly, by its age, or length of time spent locked up without dissolving. 4 years grants a 1.25x bonus, multiplicative with any other bonuses. All other durations between 0 seconds and 4 years scale linearly between.&lt;br /&gt;
&lt;br /&gt;
This means that the maximum voting power, of 2.5 votes per ICP staked,&lt;br /&gt;
is only achievable by locking up your neuron for 8 years, and leaving it&lt;br /&gt;
in that locked up state for 4 years. At that time you will have the most&lt;br /&gt;
voting power for the stake committed.&lt;br /&gt;
&lt;br /&gt;
=== Maturity ===&lt;br /&gt;
&lt;br /&gt;
Maturity represents the voting rewards accumulated in a neuron. Each day&lt;br /&gt;
the network rewards participants by allocating to every voting neuron a&lt;br /&gt;
portion of the total reward, based both on its voting power at the time&lt;br /&gt;
proposals were made, and the number of proposals it voted on.&lt;br /&gt;
&lt;br /&gt;
Some look at maturity as similar to a &amp;quot;dividend&amp;quot; or &amp;quot;interest&amp;quot;, but&lt;br /&gt;
please note that your tax authority may take a different view on the&lt;br /&gt;
subject. Please consult the appropriate professionals before deciding on&lt;br /&gt;
an interpretation of when maturity becomes income.&lt;br /&gt;
&lt;br /&gt;
For those who wish to compound the gains in their neuron, the most&lt;br /&gt;
natural activity is to &amp;quot;merge maturity&amp;quot; at intervals, which has the&lt;br /&gt;
effect of minting the neuron&#039;s maturity and adding that minted amount&lt;br /&gt;
back into the neuron&#039;s stake. If you wish to harvest income from the&lt;br /&gt;
neuron, you &amp;quot;spawn&amp;quot; maturity into a reward neuron, which mints the&lt;br /&gt;
parent neuron&#039;s, and moves this maturity into the stake of a new neuron.&lt;br /&gt;
It should be noted that if you do neither, and leave those gains in the&lt;br /&gt;
form of maturity, it will not add to the minted total of ICP, nor&lt;br /&gt;
contribute to your voting power.&lt;br /&gt;
&lt;br /&gt;
== Why Staking Matters ==&lt;br /&gt;
&lt;br /&gt;
To some, staking is seen as an income generator, a way to perform &amp;quot;yield&lt;br /&gt;
farming&amp;quot; by locking up ICP and enjoying the benefits of the accrued&lt;br /&gt;
maturity. However, staking is not intended solely as an income vehicle.&lt;br /&gt;
It is a way of allowing those who invest in the Internet Computer to&lt;br /&gt;
decide what happens next with the platform.&lt;br /&gt;
&lt;br /&gt;
When the Internet Computer first launched, all proposals required a&lt;br /&gt;
majority vote to pass. Gradually, however, this is changing. After a&lt;br /&gt;
recent update it is now possible for proposals to pass with only a&lt;br /&gt;
majority among 3% of the total voting power, meaning that proposals&lt;br /&gt;
stand a chance even if large entities abstain and the majority of the&lt;br /&gt;
network does not vote.&lt;br /&gt;
&lt;br /&gt;
== Staking Rewards ==&lt;br /&gt;
&lt;br /&gt;
Even if you stake only for the purpose of voting on proposals, voting&lt;br /&gt;
rewards are an important aspect of neurons. At the very least,&lt;br /&gt;
such returns can be compounded to increase your total voting power. So&lt;br /&gt;
to better understand staking and reward, it may be helpful to look at&lt;br /&gt;
staking from two perspectives:&lt;br /&gt;
&lt;br /&gt;
=== Short-term: NNS rewards each day ===&lt;br /&gt;
&lt;br /&gt;
Every day, rewards are granted by the network to each voting neuron. The&lt;br /&gt;
percentage of those rewards received by each neuron depend on the&lt;br /&gt;
following factors:&lt;br /&gt;
&lt;br /&gt;
* Amount of ICP staked&lt;br /&gt;
* Length of dissolve delay&lt;br /&gt;
* &amp;quot;Age&amp;quot; of the neuron (time spent in a non-dissolving state)&lt;br /&gt;
* Number of eligible proposals the neuron has voted on&lt;br /&gt;
&lt;br /&gt;
For example, if on a single day the NNS has generated 1000 ICP in total&lt;br /&gt;
rewards (see below for more on how this is computed), and there were 10&lt;br /&gt;
proposals submitted which only two neurons voted on, and:&lt;br /&gt;
&lt;br /&gt;
* Neuron A has a voting power of 20, and voted on all 10 proposals&lt;br /&gt;
* Neuron B has a voting power of 80, and voted on all 10 proposals&lt;br /&gt;
&lt;br /&gt;
Then the 1000 ICP would be divided between these two neurons by their&lt;br /&gt;
proportional voting power:&lt;br /&gt;
&lt;br /&gt;
* Neuron A with voting power of 20, gets 20% of the total = 200 ICP&lt;br /&gt;
* Neuron B with voting power of 80, gets 80% of the total = 800 ICP&lt;br /&gt;
&lt;br /&gt;
If either neuron had only voted for X% of those 10 proposals, it&#039;s&lt;br /&gt;
reward would be decreased to X% of its maximum eligibility, with the&lt;br /&gt;
remainder distributed among the other neurons.&lt;br /&gt;
&lt;br /&gt;
=== Long-term: NNS rewards over years ===&lt;br /&gt;
&lt;br /&gt;
As of December 2021, here is the long-term NNS rewards curve: https://dashboard.internetcomputer.org/circulation&lt;br /&gt;
&lt;br /&gt;
In the first year, the NNS allocates 10% of the total supply to generate&lt;br /&gt;
voting rewards. Note the term &amp;quot;allocates&amp;quot; rather than &amp;quot;mints&amp;quot;, because&lt;br /&gt;
rewards are not minted until they are spawn, merged or the neuron is&lt;br /&gt;
disbursed, so total supply is not automatically increased by rewards&lt;br /&gt;
alone. This allocation rate drops linearly until it reaches 5% by year&lt;br /&gt;
8. Like all parameters in the NNS, the minting rate can be changed via&lt;br /&gt;
NNS proposals, but this is the current rate schedule.&lt;br /&gt;
&lt;br /&gt;
Because the total supply of ICP is a dynamic system with deflation and&lt;br /&gt;
inflation, it is impossible to predict what voting rewards will be on any&lt;br /&gt;
given day or year in the future. It is relatively easy to predict what&lt;br /&gt;
the percentage allocation rate will be months from now, but it is much&lt;br /&gt;
harder to predict what the total supply will be both because of&lt;br /&gt;
potential changes to the rate, and how often stakeholders will mint&lt;br /&gt;
their maturity.&lt;br /&gt;
&lt;br /&gt;
=== Inflationary and Deflationary Mechanisms ===&lt;br /&gt;
&lt;br /&gt;
Deflationary mechanisms for ICP:&lt;br /&gt;
&lt;br /&gt;
* Minting cycles to pay for compute and storage burns ICP to create cycles&lt;br /&gt;
* Burning of transaction fees&lt;br /&gt;
* Burning of the 1 ICP deposit for failed proposals; note that this only happens at disbursement or merging of neurons, so accumulated fees can persist for a while before finally contributing to deflation.&lt;br /&gt;
&lt;br /&gt;
Inflationary mechanisms for ICP:&lt;br /&gt;
&lt;br /&gt;
* Node providers are paid by minting ICP&lt;br /&gt;
* Voting rewards are paid by minting ICP, although this minting only happens at the moment rewards are spawned, maturity is merged, or the neuron is disbursed.&lt;br /&gt;
&lt;br /&gt;
=== Network Factors Affecting Annual Percentage Yield ===&lt;br /&gt;
&lt;br /&gt;
When considering potential Annual Percentage Yield (APY) for ICP staked&lt;br /&gt;
in a voting neuron, in addition to the primary factors of the dissolve&lt;br /&gt;
delay, neuron age, and amount of stake, there are also network factors&lt;br /&gt;
that can affect potential yield. Chief among them are:&lt;br /&gt;
&lt;br /&gt;
* The amount of supply allocated each year to pay rewards;&lt;br /&gt;
* The total voting power across all neurons, since rewards are divided equally among neurons according to their voting power;&lt;br /&gt;
* Inflationary and deflationary pressures: primarily, minting to pay node providers and spawn rewards, burning to fuel canister cycles, and the other factors mentioned in the previous section.&lt;br /&gt;
&lt;br /&gt;
These factors can affect future returns significantly. Firstly, the&lt;br /&gt;
amount of supply began at 10% at genesis, but will fall to 5% after the&lt;br /&gt;
first eight years. Secondly, as staking becomes more common and there&lt;br /&gt;
are better user interfaces to do it, there will naturally be more&lt;br /&gt;
competition. If no one else were staking, returns would be astronomical;&lt;br /&gt;
but if nearly everyone is staking, returns will be lower.&lt;br /&gt;
&lt;br /&gt;
Economics are always at play, however. If staking is very popular, it&lt;br /&gt;
means the amount of liquid supply would reduce, which would drive up&lt;br /&gt;
demand and hence prices. So although returns would drop significantly,&lt;br /&gt;
price appreciation should offset the loss in income. Conversely, if most&lt;br /&gt;
people dissolve their neurons to trade on the open market, price would&lt;br /&gt;
likely drop while returns increase. It is reasonable to assume that over&lt;br /&gt;
time an equilibrium will be established, where rates and prices&lt;br /&gt;
fluctuate in sympathy based on the macro factors driving demand for ICP&lt;br /&gt;
tokens.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1322</id>
		<title>Introduction to the Internet Computer for dapp users</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1322"/>
		<updated>2022-01-09T20:15:12Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Fast user experience */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an end user, you interact with decentralized applications (dapps) running on the Internet Computer. Here is an [[index of dapps on the Internet Computer]] that are available to users.   &lt;br /&gt;
&lt;br /&gt;
The Internet Computer was designed to improve the user experience of smart contracts and dapps running on a blockchain. Dapps on the IC are able to serve web content, allowing you to interact with the dapps through your browser. The dapps themselves are run by [[canister smart contracts]] on the IC with the robustness and security guarantees it affords.  &lt;br /&gt;
&lt;br /&gt;
== Compared to other blockchains ==&lt;br /&gt;
Compared to other smart contract blokchains like Ethereum, the Internet Computer offers the following immediate benefits to dapp users:&lt;br /&gt;
&lt;br /&gt;
=== Direct web experience ===&lt;br /&gt;
&lt;br /&gt;
Smart contracts on the Internet Computer securely serve web content directly to users. This is unique among blockchains since their typical dapps have a small part of the logic running in a smart contract, but the actual consumer-facing web or interface is hosted on a centralized cloud provider (e.g. AWS) instead of being served directly from the blockchain.&lt;br /&gt;
&lt;br /&gt;
Example of the user experience, [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/post/5/introducing-dscvr-a-platform-that-belongs-to-its DSCVR] is a decentralized social media platform. &lt;br /&gt;
&lt;br /&gt;
=== Users do not pay for access ===&lt;br /&gt;
&lt;br /&gt;
Dapp users on Ethereum typically have to pay for using smart contracts. Besides the high fees, it also means that the users have to install plugins or other software (and pay via tokens). The IC&#039;s &amp;quot;canister pays model&amp;quot; means that dapp developers can pay for the storage and compute to create a frictionless user experience. &lt;br /&gt;
&lt;br /&gt;
=== Fast user experience ===&lt;br /&gt;
Traditional smart contracts on other blockchains are slow and deliver a poor user experience. That is why many non-IC dapps use non-blockchain technologies for most of their &amp;quot;dapp.&amp;quot; The IC&#039;s design goal is that developers can build consumer-facing experiences that are as fast as they would expect from centralized servers. Dapp developers on the IC do not need to choose between &amp;quot;smart contracts&amp;quot; and &amp;quot;fast.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
[[Internet Computer Performance|Internet Computer performance]] tests shows the IC latency at 200 milliseconds for query calls (reads) and 2 seconds for update calls (writes). As of December 1, 2021, The Internet Computer can handle 250,000 queries per second and 11,000 update calls per second.&lt;br /&gt;
&lt;br /&gt;
=== Internet Identity ===&lt;br /&gt;
Users can log in to most dapps on the IC with the [https://identity.ic0.app Internet Identity dapp]. [[Internet Identity]] is a blockchain authentication system that enables you to sign in securely and pseudonymously to dapps on the Internet Computer. This makes logging into dapps much easier and safer for dapp consumers. Besides providing a safer authentication experience, it is a service native to the IC so dapp developers who need authentication systems do not need to build their own.&lt;br /&gt;
&lt;br /&gt;
== Compared to traditional platforms ==&lt;br /&gt;
&lt;br /&gt;
===Decentralization===&lt;br /&gt;
Unlike applications hosted on centralized providers dapps on the Internet Computer allow end users to trust their data will be processed as intended.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_performance&amp;diff=1321</id>
		<title>Internet Computer performance</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_performance&amp;diff=1321"/>
		<updated>2022-01-09T20:14:31Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Change from &amp;quot;we&amp;quot; to third person&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This post describes the DFINITY Foundation&#039;s performance evaluation of the Internet Computer. The [https://forum.dfinity.org/t/internet-computer-performance-dec-1-2021-load-testing/9240 current measurements] are from November 2021.&lt;br /&gt;
&lt;br /&gt;
Scalability of the Internet Computer comes from sharding the IC into subnet blockchains. Every subnet blockchain can process update calls (writes) from ingress messages independently from other subnets. The IC can scale up by adding more subnets at the cost of having more network traffic (as applications potentially need to communicate across subnets). In its current form, the IC should be able to scale out to hundreds of subnets.&lt;br /&gt;
&lt;br /&gt;
Query calls (reads) can be processed locally by nodes in a subnet. The response to a query call can therefore have low latency since the query it just needs a response by a single node and does not need inter-node communication or agreement. The more nodes a subnet has, the more query calls it can handle; and the more nodes the IC has, the more query calls it can handle.&lt;br /&gt;
&lt;br /&gt;
== Test setup ==&lt;br /&gt;
&lt;br /&gt;
The experiments were run concurrently against all subnets other than the NNS and some of the most utilized application subnets to avoid disturbance of active IC users. &lt;br /&gt;
The IC has a set of boundary nodes that route calls to the core nodes that host the subnets. The experiments sent loads against the subnets directly and are did not route traffic through the boundary nodes. Boundary nodes have additional rate limiting, which is currently set slightly more conservative compared to what the IC can handle and running against the boundary nodes would therefore be  unsuitable for performance evaluation. &lt;br /&gt;
The experiment targeted all nodes in every subnet concurrently, much the same as what boundary nodes would be doing if we would use them.&lt;br /&gt;
&lt;br /&gt;
The experiment consisted of installing one counter canister in every subnet. This counter canister is essentially a no-op canister. It only maintains a counter, which can be queried via query calls and incremented via update calls. The counter value is not using orthogonal persistence, so the overhead for the execution layer of the IC is minimal. Stressing the counter canister can be seen as a way to determine the system overhead or baseline performance.&lt;br /&gt;
== Measurements ==&lt;br /&gt;
=== Update calls ===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently sustain more than &#039;&#039;&#039;11&#039;000 updates/second&#039;&#039;&#039; for a period of four minutes, with peaks over &#039;&#039;&#039;11&#039;500 updates/second.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The update calls we have been measuring here are triggered from ingress messages sent from outside the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:update-call-performance.png|1024px|Update Call Performance]]&lt;br /&gt;
&lt;br /&gt;
=== Query calls ===&lt;br /&gt;
Arguably more important are query calls, since they contribute with more than 90% of the traffic we are observing on the IC.&lt;br /&gt;
&lt;br /&gt;
[[File:query-call-performance.png|1024px|Query Call Performance]]&lt;br /&gt;
&lt;br /&gt;
The Internet Computer can currently process up to &#039;&#039;&#039;250&#039;000 queries per second.&#039;&#039;&#039;&lt;br /&gt;
During the experiment each load is increased incrementally and run for a period of 5 minutes.&lt;br /&gt;
&lt;br /&gt;
== Conclusion and next steps ==&lt;br /&gt;
&lt;br /&gt;
The Internet Computer today already shows impressive performance. On top of that, it should be possible to further scale out the IC using:&lt;br /&gt;
&lt;br /&gt;
* More subnets: This will immediate increase the query and update call throughput. While adding subnets might eventually lead to other scalability problems, the IC in its current shape should be able to support hundreds of subnets.&lt;br /&gt;
* Performance improvements: Performance can also be improved by better single machine, network and consensus performance tuning. Increasing the performance by at least an order of magnitude is plausible.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1320</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1320"/>
		<updated>2022-01-09T19:47:46Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For ICP token-holders, investors and voters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
*[[Staking and Voting|Staking and voting rewards]]&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1319</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1319"/>
		<updated>2022-01-09T19:42:20Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For ICP token-holders, investors and voters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
*[[Staking and Voting|Staking and voting rewards]]&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1318</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1318"/>
		<updated>2022-01-09T19:40:41Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For ICP token-holders, investors and voters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
*[[Staking and Voting]]&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1315</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1315"/>
		<updated>2022-01-09T15:46:54Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For ICP token-holders, investors and voters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
*[[Staking and earning interest in the form of voting rewards]]&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1314</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1314"/>
		<updated>2022-01-09T15:25:06Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalized. DFINITY is always stylized in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1313</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1313"/>
		<updated>2022-01-09T15:23:49Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-Tos ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalised. DFINITY is always stylised in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1312</id>
		<title>Introduction to the Internet Computer for dapp users</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1312"/>
		<updated>2022-01-09T15:14:23Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an end user, you interact with decentralized applications (dapps) running on the Internet Computer. Here is an [[index of dapps on the Internet Computer]] that are available to users.   &lt;br /&gt;
&lt;br /&gt;
The Internet Computer was designed to improve the user experience of smart contracts and dapps running on a blockchain. Dapps on the IC are able to serve web content, allowing you to interact with the dapps through your browser. The dapps themselves are run by [[canister smart contracts]] on the IC with the robustness and security guarantees it affords.  &lt;br /&gt;
&lt;br /&gt;
== Compared to other blockchains ==&lt;br /&gt;
Compared to other smart contract blokchains like Ethereum, the Internet Computer offers the following immediate benefits to dapp users:&lt;br /&gt;
&lt;br /&gt;
=== Direct web experience ===&lt;br /&gt;
&lt;br /&gt;
Smart contracts on the Internet Computer securely serve web content directly to users. This is unique among blockchains since their typical dapps have a small part of the logic running in a smart contract, but the actual consumer-facing web or interface is hosted on a centralized cloud provider (e.g. AWS) instead of being served directly from the blockchain.&lt;br /&gt;
&lt;br /&gt;
Example of the user experience, [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/post/5/introducing-dscvr-a-platform-that-belongs-to-its DSCVR] is a decentralized social media platform. &lt;br /&gt;
&lt;br /&gt;
=== Users do not pay for access ===&lt;br /&gt;
&lt;br /&gt;
Dapp users on Ethereum typically have to pay for using smart contracts. Besides the high fees, it also means that the users have to install plugins or other software (and pay via tokens). The IC&#039;s &amp;quot;canister pays model&amp;quot; means that dapp developers can pay for the storage and compute to create a frictionless user experience. &lt;br /&gt;
&lt;br /&gt;
=== Fast user experience ===&lt;br /&gt;
Traditional smart contracts on other blockchains are slow and deliver a poor user experience. That is why many non-IC dapps use non-blockchain technologies for most of their &amp;quot;dapp.&amp;quot; The IC&#039;s design goal is that developers can build consumer-facing experiences that are as fast as they would expect from centralized servers. Dapp developers on the IC do not need to choose between &amp;quot;smart contracts&amp;quot; and &amp;quot;fast.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
[[Internet Computer Performance|Internet Computer performance]] tests shows the IC latency at 200 milliseconds for query calls (reads) and 2 seconds for update calls (writes). As of December 1, 2021, The Internet Computer can handle 250,000 queries per second and 11,500 update calls per second.&lt;br /&gt;
&lt;br /&gt;
=== Internet Identity ===&lt;br /&gt;
Users can log in to most dapps on the IC with the [https://identity.ic0.app Internet Identity dapp]. [[Internet Identity]] is a blockchain authentication system that enables you to sign in securely and pseudonymously to dapps on the Internet Computer. This makes logging into dapps much easier and safer for dapp consumers. Besides providing a safer authentication experience, it is a service native to the IC so dapp developers who need authentication systems do not need to build their own.&lt;br /&gt;
&lt;br /&gt;
== Compared to traditional platforms ==&lt;br /&gt;
&lt;br /&gt;
===Decentralization===&lt;br /&gt;
Unlike applications hosted on centralized providers dapps on the Internet Computer allow end users to trust their data will be processed as intended.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1311</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1311"/>
		<updated>2022-01-09T15:13:50Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Rearranged headings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== For end users ==&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For ICP token-holders, investors and voters ==&lt;br /&gt;
&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
&lt;br /&gt;
* [https://smartcontracts.org/ Developer documentation]&lt;br /&gt;
&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
== For the curious, researchers and blockchain enthusiasts ==&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-To section ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorial section ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributing to the wiki ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalization. Most words in titles should be capitalised. DFINITY is always stylised in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [[mediawikiwiki:Special:MyLanguage/Localisation#Translation_resources|Localize MediaWiki for your language]]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1310</id>
		<title>Introduction to the Internet Computer for dapp users</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1310"/>
		<updated>2022-01-09T14:51:05Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an end user, you interact with decentralized applications (dapps) running on the Internet Computer. This wiki maintains an [[index of dapps on the Internet Computer]] that are available to users.   &lt;br /&gt;
&lt;br /&gt;
The Internet Computer was designed to improve the user experience of smart contracts and dapps running on a blockchain. Dapps on the IC are able to serve web content, allowing you to interact with the dapps through your browser. The dapps themselves are run by [[canister smart contracts]] on the IC with the robustness and security guarantees it affords.  &lt;br /&gt;
&lt;br /&gt;
== Compared to other blockchains ==&lt;br /&gt;
Compared to other smart contract blokchains like Ethereum, the Internet Computer offers the following immediate benefits to dapp users:&lt;br /&gt;
&lt;br /&gt;
=== Direct web experience ===&lt;br /&gt;
&lt;br /&gt;
Smart contracts on the Internet Computer securely serve web content directly to users. This is unique among blockchains since their typical dapps have a small part of the logic running in a smart contract, but the actual consumer-facing web or interface is hosted on a centralized cloud provider (e.g. AWS) instead of being served directly from the blockchain.&lt;br /&gt;
&lt;br /&gt;
Example of the user experience, [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/post/5/introducing-dscvr-a-platform-that-belongs-to-its DSCVR] is a decentralized social media platform. &lt;br /&gt;
&lt;br /&gt;
=== Users do not pay for access ===&lt;br /&gt;
&lt;br /&gt;
Dapp users on Ethereum typically have to pay for using smart contracts. Besides the high fees, it also means that the users have to install plugins or other software (and pay via tokens). The IC&#039;s &amp;quot;canister pays model&amp;quot; means that dapp developers can pay for the storage and compute to create a frictionless user experience. &lt;br /&gt;
&lt;br /&gt;
=== Fast user experience ===&lt;br /&gt;
Traditional smart contracts on other blockchains are slow and deliver a poor user experience. That is why many non-IC dapps use non-blockchain technologies for most of their &amp;quot;dapp.&amp;quot; The IC&#039;s design goal is that developers can build consumer-facing experiences that are as fast as they would expect from centralized servers. Dapp developers on the IC do not need to choose between &amp;quot;smart contracts&amp;quot; and &amp;quot;fast.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
[[Internet Computer Performance|Internet Computer performance]] tests shows the IC latency at 200 milliseconds for query calls (reads) and 2 seconds for update calls (writes). As of December 1, 2021, The Internet Computer can handle 250,000 queries per second and 11,500 update calls per second.&lt;br /&gt;
&lt;br /&gt;
=== Internet Identity ===&lt;br /&gt;
Users can log in to most dapps on the IC with the [https://identity.ic0.app Internet Identity dapp]. [[Internet Identity]] is a blockchain authentication system that enables you to sign in securely and pseudonymously to dapps on the Internet Computer. This makes logging into dapps much easier and safer for dapp consumers. Besides providing a safer authentication experience, it is a service native to the IC so dapp developers who need authentication systems do not need to build their own.&lt;br /&gt;
&lt;br /&gt;
== Compared to traditional platforms ==&lt;br /&gt;
&lt;br /&gt;
===Decentralization===&lt;br /&gt;
Unlike applications hosted on centralized providers dapps on the Internet Computer allow end users to trust their data will be processed as intended.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1309</id>
		<title>Introduction to the Internet Computer for dapp users</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Introduction_to_the_Internet_Computer_for_dapp_users&amp;diff=1309"/>
		<updated>2022-01-09T10:19:45Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Added some context about what a dapp is. Replaced Motoko for DSCVR to give a simpler user interface example.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an end user, you can use many decentralized applications (dapps) on the Internet Computer, see the [[Index of dapps on the Internet Computer]]. The Internet Computer was designed to improve the user experience of smart contracts and dapps running on a blockchain. Dapps on the IC are able to serve web content, allowing you to interact with the dapps through your browser.  The dapps themselves are run by canister smart contracts on the IC with the robustness and security guarantees it affords.  &lt;br /&gt;
&lt;br /&gt;
== Compared to other blockchains ==&lt;br /&gt;
Compared to other smart contract blokchains like Ethereum, the Internet Computer offers the following immediate benefits to dapp users:&lt;br /&gt;
&lt;br /&gt;
=== Direct web experience ===&lt;br /&gt;
&lt;br /&gt;
Smart contracts on the Internet Computer securely serve web content directly to users. This is unique among blockchains since their typical dapps have a small part of the logic running in a smart contract, but the actual consumer-facing web or interface is hosted on a centralized cloud provider (e.g. AWS) instead of being served directly from the blockchain.&lt;br /&gt;
&lt;br /&gt;
Example of the user experience, [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/post/5/introducing-dscvr-a-platform-that-belongs-to-its DSCVR] is a decentralized social media platform. &lt;br /&gt;
&lt;br /&gt;
=== Users do not pay for access ===&lt;br /&gt;
&lt;br /&gt;
Dapp users on Ethereum typically have to pay for using smart contracts. Besides the high fees, it also means that the users have to install plugins or other software (and pay via tokens). The IC&#039;s &amp;quot;canister pays model&amp;quot; means that dapp developers can pay for the storage and compute to create a frictionless user experience. &lt;br /&gt;
&lt;br /&gt;
=== Fast user experience ===&lt;br /&gt;
Traditional smart contracts are slow and deliver a poor user experience. That is why many dapp developers often use non-blockchain technologies for most of their &amp;quot;dapp.&amp;quot; The IC&#039;s design goal is that developers can build consumer-facing experiences that are as fast as they would expect from centralized servers. Dapp developers do not need to choose between &amp;quot;smart contracts&amp;quot; and &amp;quot;fast.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
From a blockchain POV, [[Internet Computer Performance]] performance tests shows the IC latency at 200 milliseconds for query calls (reads) and 2 seconds for update calls (writes). As of December 1, 2021, The Internet Computer can handle 250,000 queries per second and 11,500 update calls per second.&lt;br /&gt;
&lt;br /&gt;
=== Internet Identity ===&lt;br /&gt;
[[Internet Identity]] is a blockchain authentication system that enables you to sign in securely and anonymously to dapps on the Internet Computer. This makes logging into dapps much easier and safer for dapp consumers. Besides providing a safer authentication experience, it is a service native to the IC so dapp developers who need authentication systems do not need to build their own.&lt;br /&gt;
&lt;br /&gt;
== Compared to traditional platforms ==&lt;br /&gt;
&lt;br /&gt;
===Decentralization===&lt;br /&gt;
Unlike applications hosted on centralized providers dapps on the Internet Computer allow end users to trust their data will be processed as intended.&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1308</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1308"/>
		<updated>2022-01-09T09:19:56Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Fixed capitalization of sections&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
* [[Internet Computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
&lt;br /&gt;
== Ecosystem ==&lt;br /&gt;
&lt;br /&gt;
=== For Dapp Users ===&lt;br /&gt;
* [[Intro for dapp users]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
=== For ICP Token-holders ===&lt;br /&gt;
* [[Managing ICP holdings]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
* [[Network Nervous System]]&lt;br /&gt;
&lt;br /&gt;
=== For Dapp Developers ===&lt;br /&gt;
* [[https://smartcontracts.org/ Developer documentation]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Current limitations of the IC]]&lt;br /&gt;
* [[Neuron Attributes and Commands]]&lt;br /&gt;
&lt;br /&gt;
=== For Computer Scientists and Blockchain enthusiasts ===&lt;br /&gt;
* [https://dfinity.org/howitworks/ How the Internet Computer Works]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
&lt;br /&gt;
== Core Protocol Research &amp;amp; Development ==&lt;br /&gt;
* [[DFINITY Foundation]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-To section ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorial section ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalisation. Most words in titles should be capitalised. DFINITY is always stylised in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Index_of_dapps_on_the_Internet_Computer_ecosystem&amp;diff=1307</id>
		<title>Index of dapps on the Internet Computer ecosystem</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Index_of_dapps_on_the_Internet_Computer_ecosystem&amp;diff=1307"/>
		<updated>2022-01-09T09:18:17Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Correct spelling of NNS frontend dapp&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Index of Dapps on the Internet Computer =&lt;br /&gt;
&lt;br /&gt;
This Wiki Page is a mirror of [https://zire.github.io/awesome-IC/ The Awesome IC Repository]&lt;br /&gt;
&lt;br /&gt;
[[File:Logo.jpg|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Essential (&amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Wallet (&amp;lt;code&amp;gt;5&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Tools (&amp;lt;code&amp;gt;26&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Motoko (&amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt;)&lt;br /&gt;
* DeFi (&amp;lt;code&amp;gt;13&amp;lt;/code&amp;gt;)&lt;br /&gt;
* NFT (&amp;lt;code&amp;gt;42&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Social (&amp;lt;code&amp;gt;11&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Games (&amp;lt;code&amp;gt;10&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Metaverse (&amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Productivity (&amp;lt;code&amp;gt;12&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Communities (&amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt;)&lt;br /&gt;
* Enterprise (&amp;lt;code&amp;gt;9&amp;lt;/code&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
This page tries to capture key info for each project, including its tag line, IC URL, Twitter, Discord, Telegram, Github repo and the team behind. For those projects with Twitter handles, they can also be found at:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;[https://twitter.com/i/lists/1443165233510436868 IC Projects - All@Twitter]&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
This list includes all the projects from [https://dfinity.org/showcase/ DFINITY Showcase] but is a lot more than that. It tries to index all the known IC dApps. Some of those projects have received [https://dfinity.org/grants/ developer grants from the DFINITY Foundation]. Some of them may not have been deployed on IC yet - though the expectation is that they are working toward that. It does not include IC communities, media or development teams per se (though they&#039;ll be included under the &amp;quot;project&amp;quot; section). All info is obtained from public channels.&lt;br /&gt;
&lt;br /&gt;
The projects indexed on this list cover a wide spectrum on quality, maturity and tech deployment. Some of them have already received venture funding from established crypto funds; some of them are taking full advantage of Internet Computer (IC)&#039;s unique technical strengths; some of them are using IC as a backend infrastructure in liew of AWS/GCP, and some of them are porting an existing Polkadot/Filecoin application to IC. The inclusion of a project (or lack of) does not speak to the quality of it. That judgment is left to the community and all IC advocates. This is just a directory that helps everyone do scavenger hunt on IC.&lt;br /&gt;
&lt;br /&gt;
If you find an IC dApp is still missing from this page, please [https://github.com/zire/awesome-IC send a PR to its Github repo] so that I can merge, or [https://twitter.com/herbertyang DM me on Twitter], or [mailto:%20herbert.yang@dfinity.org?subject=More%20dApp%20on%20Awesome%20IC send me an email]. Suggestions on how to make this site more useful to the community are very welcome. Many thanks.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DISCLAIMER&#039;&#039;&#039;: &amp;gt;This &#039;&#039;&#039;&amp;lt;code&amp;gt;Awesome Internet Computer&amp;lt;/code&amp;gt;&#039;&#039;&#039; is a community project by IC volunteer(s). It&#039;s merely an index/directory, and does not represent official endorsement (or lack of) from the DFINITY Foundation in any fashion. Nothing from this site shall be treated as financial advice. Please do your own research if you need to use any services listed below.&lt;br /&gt;
&lt;br /&gt;
== Essential (3) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICA Network Status&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Real-time dashboard of key metrics on the Internet Computer&lt;br /&gt;
* Where: https://dashboard.internetcomputer.org/&lt;br /&gt;
* Who: [https://internetcomputer.org/ Internet Computer Association]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Identity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Internet Identity guarantees that your data isn’t visible, tracked, or mined. The blockchain authentication system enables users to sign in to dapps on the Internet Computer and sites across the web anonymously and securely.&lt;br /&gt;
* Where: https://identity.ic0.app/&lt;br /&gt;
* Who: [https://dfinity.org DFINITY Foundation]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NNS Frontend Dapp&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The NNS frontend dapp allows anyone to interact with the Internet Computer&#039;s Network Nervous System with a user-friendly UI. Served completely end-to-end through blockchain, this dapp allows you to manage ICP, stake neurons, participate in voting, and earn rewards.&lt;br /&gt;
* Where: https://nns.ic0.app/&lt;br /&gt;
* Who: [https://dfinity.org DFINITY Foundation]&lt;br /&gt;
&lt;br /&gt;
== Wallet (5) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICWallet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Your gateway to Dfinity ecosystem&lt;br /&gt;
* Where: https://icwallet.org/&lt;br /&gt;
* Twitter: https://twitter.com/icwallet&lt;br /&gt;
* Who: https://icwallet.gitbook.io/icwallet/team&lt;br /&gt;
* Discord: https://discord.com/invite/DqCeHU8rem&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DFWallet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a decentralized smart wallet on Internet Computer&lt;br /&gt;
* Where: https://dfwallet.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/DFWallet&lt;br /&gt;
* Telegram: https://t.me/df_wallet&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Plug&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A browser extension that allows you to access your ICP, Cycles and other tokens&lt;br /&gt;
* Where: https://plugwallet.ooo/&lt;br /&gt;
* Who: [https://fleek.co/ fleek]&lt;br /&gt;
* Twitter: https://twitter.com/plug_wallet&lt;br /&gt;
* Discord: https://discord.gg/yVEcEzmrgm&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Stoic Wallet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: It allows anyone to create a digital wallet, authenticating users through a variety of methods.&lt;br /&gt;
* Where: https://www.stoicwallet.com/&lt;br /&gt;
* Who: [https://igpeu-waaaa-aaaad-qaava-cai.raw.ic0.app/ Toniq Labs]&lt;br /&gt;
* Github: https://github.com/Toniq-Labs/stoic-wallet&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Earth Wallet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The open-source wallet allows users to participate in DeFi, Governance, and Treasury (DAO) protocols with negligible fees and faster transaction settlement than legacy wallets.&lt;br /&gt;
* Where: https://www.earthwallet.io/&lt;br /&gt;
* Twitter: https://twitter.com/earthwallet&lt;br /&gt;
* Discord: https://discord.gg/B8G75XZ92K&lt;br /&gt;
* Telegram: https://t.me/earthwallet&lt;br /&gt;
* Github: https://github.com/earth-association&lt;br /&gt;
&lt;br /&gt;
== Tools (26) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;AstroX&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: AstroX is a blockchain development group focused on building tools for the Web3.0 ecosystem. AstroX has developed a Dart agent and other tools to help support mobile application development on the Internet Computer blockchain.&lt;br /&gt;
* Where: https://astrox.medium.com/&lt;br /&gt;
* Who: FireStack Labs&lt;br /&gt;
* Twitter: https://twitter.com/Astrox_Network&lt;br /&gt;
* Discord: https://discord.com/invite/Ky78nq4Nag&lt;br /&gt;
* Github: https://github.com/AstroxNetwork&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Axon&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A community-built neuron management solution for the Internet Computer. Multiple users can own an Axon that manages multiple neurons within the Network Nervous System, as well as delegate votes to other neurons to vote on proposals. Axon is a multi-user, multi-neuron management canister smart contract.&lt;br /&gt;
* Where: https://axon.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/axon_ooo&lt;br /&gt;
* Github: https://github.com/FloorLamp/axon&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;B9 Labs&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Better developer onboarding and documentation on IC&lt;br /&gt;
* Where: https://b9lab.com/&lt;br /&gt;
* Twitter: https://twitter.com/b9lab&lt;br /&gt;
* DFINITY Grant: received in August 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Canlista&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Internet Computer community canister registry. Find, publish and extend applications and services built on the Internet Computer. Log in with Internet Identity.&lt;br /&gt;
* Where: https://k7gat-daaaa-aaaae-qaahq-cai.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/canlista_io&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Canistore&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Next-gen #SocialStore powered by @DFINITY, empowered by community&lt;br /&gt;
* Where: https://canistore.io/&lt;br /&gt;
* Twitter: https://twitter.com/canistore&lt;br /&gt;
* Telegram: https://t.me/canistore&lt;br /&gt;
* Medium: [https://medium.com/@canistore](https://medium.com/@canistore)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;CAP&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: an open internet service providing transaction history &amp;amp; asset provenance for NFT’s &amp;amp; Tokens on the Internet Computer&lt;br /&gt;
* Where: https://cap.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/cap_ois&lt;br /&gt;
* Discord: https://discord.gg/psychedelic&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ChainIDE&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a cloud-based multi-chain IDE&lt;br /&gt;
* Where: https://chainide.com/&lt;br /&gt;
* Who: [https://whitematrix.io/ White Matrix] and https://twitter.com/MatrixDapp&lt;br /&gt;
* Twitter: https://twitter.com/ChainIde&lt;br /&gt;
* Medium: https://t.co/ODqRqGNUoG?amp=1&lt;br /&gt;
* Github: https://github.com/WhiteMatrixTech&lt;br /&gt;
* DFINITY Grant: received in May 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cover&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: an open internet service that can be used by developers to verify and prove that a canister&#039;s code matches the open source code. Reducing the risk of malicious apps &amp;amp; increasing transparency and trust.&lt;br /&gt;
* Where: https://covercode.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/cover_ois&lt;br /&gt;
* Discord: https://discord.gg/yVEcEzmrgm&lt;br /&gt;
* Github: https://github.com/psychedelic/cover&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Create IC&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Modern frontend templates for the Internet Computer with everything working out of the box. Powered by ViteJS&lt;br /&gt;
* Where: https://create-ic.app/&lt;br /&gt;
* Who: [https://twitter.com/miamaruq Mio Q]&lt;br /&gt;
* Github: https://github.com/MioQuispe/create-ic-app/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DAB&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: DAB provides seamless access to #InternetComputer data that many apps/UI&#039;s need to surface. Such as lists of NFT&#039;s, tokens, canister/Dapp metadata, and more.&lt;br /&gt;
* Where: https://dab.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/dab_ooo&lt;br /&gt;
* Doc: https://docs.dab.ooo/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DFINITY Explorer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: DFINITY Explorer, a project started in 2018, is an open-source, community-built dashboard and explorer for the Internet Computer, providing live information and statistics about the network, governance, and the ICP utility token, including account and transaction information.&lt;br /&gt;
* Where: https://www.dfinityexplorer.org/#/&lt;br /&gt;
* Who: [https://github.com/dylancm4 Dylan Miller]&lt;br /&gt;
* Twitter: https://twitter.com/dfinityexplorer&lt;br /&gt;
* Github: https://github.com/dfinityexplorer/dfinityexplorer-dashboard&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DFINITY Java Agent&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Dfinity Java Agent is a set of native Java libriaries to connect remotely to the Internet Computer applications&lt;br /&gt;
* Github: https://github.com/rdobrik/dfinity-agent&lt;br /&gt;
* Who: [https://github.com/rdobrik Roman]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DFT - Dfinity Fungible Token Standard&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Token standard will help Dfinity ecological developers adopt the same standard and promote the prosperity of the Dfinity ecosystem&lt;br /&gt;
* Where: https://dft.delandlabs.com/&lt;br /&gt;
* Who: [https://twitter.com/DelandLabs Deland Labs]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dfinity Tutorials&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Chinese tutorials that teach you how to build on IC&lt;br /&gt;
* Where: https://icplabs.gitbook.io/dfinitytutorials/&lt;br /&gt;
* Who: [https://twitter.com/ICP_Labs ICP Labs]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dstar&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a marketplace that facilitates listing, buying and selling of your Internet Identity (&amp;quot;II&amp;quot;) accounts&lt;br /&gt;
* Where:&lt;br /&gt;
** https://ii.dstar.app&lt;br /&gt;
** https://yunqk-aqaaa-aaaai-qawva-cai.ic0.app/&lt;br /&gt;
* Github: https://github.com/ic-dstar/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;EXT Token Tool&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: EXT is a token standard that we built on the IC, modelled after Ethereum&#039;s ERC1155 standard&lt;br /&gt;
* Where: https://k6exx-uqaaa-aaaah-qadba-cai.raw.ic0.app/&lt;br /&gt;
* Who:[https://twitter.com/toniqlabs Toniq Labs]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fleek&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Fleek brings decentralized web-hosting to the Internet Computer. With thousands of webpages deployed, Fleek enables anyone to deploy their content on Web3.0&lt;br /&gt;
* Where: https://fleek.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/fleek_ois&lt;br /&gt;
* Discord: https://discord.gg/yVEcEzmrgm&lt;br /&gt;
* Github: https://github.com/FleekHQ&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICLight.house&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A standard interface for Dfinity tokens. The standard complies with ERC20 interface specification, and has some improvements to match IC network features&lt;br /&gt;
* Where: https://iclight.house/login&lt;br /&gt;
* Twitter: https://twitter.com/ICLighthouse&lt;br /&gt;
* Github: https://github.com/iclighthouse/DRC_standards&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICME&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: ICME is a no-code tool that makes it easy for anyone to build and deploy beautiful websites on the Internet Computer. Launch your blog or business&#039;s website on the Internet Computer today.&lt;br /&gt;
* Where: https://sygsn-caaaa-aaaaf-qaahq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/icme_app&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICP Neuron Calculator&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Network Nervous System Calculator is a calculator that allows anyone to edit variables and estimate voting rewards based on number of proposals voted on, length of stake, accumulated maturity, and more.&lt;br /&gt;
* Where: https://networknervoussystem.com/&lt;br /&gt;
* Twitter: https://twitter.com/NNSystem&lt;br /&gt;
* Newsletter: https://allthingsinternetcomputer.substack.com/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICP Scan&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A scanner and dashboard tool for IC ecosystem to discover ICP projects and track key statistics&lt;br /&gt;
* Where: https://sznps-4aaaa-aaaah-qab2a-cai.ic0.app/project&lt;br /&gt;
* Who: [https://twitter.com/NnsDaos NnsDAO]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Rocks&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: IC.Rocks is a complete &amp;quot;block explorer&amp;quot; for the Internet Computer – built by the community. Tracking everything from transactions, to network upgrades, to cycles, IC.Rocks enables anyone to explore the inner-workings of the Internet Computer.&lt;br /&gt;
* Where: https://ic.rocks/&lt;br /&gt;
* Who: [https://twitter.com/floatfloatboat Norton Wang]&lt;br /&gt;
* Twitter: https://twitter.com/ic_rocks&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pocket 4D&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A framework container runs Mini-Apps or Mini-Programs, using enhanced Canister of cross-platform.&lt;br /&gt;
* Who: [https://twitter.com/ghostcorn Michael So] and the team&lt;br /&gt;
* Github: https://github.com/Pocket4D/Pocket4D-Wiki&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sudograph&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Sudograph is a GraphQL database for the Internet Computer. Its goal is to become the simplest way to develop applications for the IC by providing flexibility and out-of-the-box data management.&lt;br /&gt;
* Where: https://i67uk-hiaaa-aaaae-qaaka-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/lastmjs&lt;br /&gt;
* Github: https://github.com/sudograph/sudograph&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Usergeek&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: the first decentralised product analytics tool built on the DFINITY Internet Computer&lt;br /&gt;
* Where: https://fbbjb-oyaaa-aaaah-qaojq-cai.raw.ic0.app/#/&lt;br /&gt;
* Twitter: https://twitter.com/theUSERGEEK&lt;br /&gt;
* Discord: https://discord.gg/CvTpv2TeKs&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The Wall&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Wall is a dapp built on the Internet Computer blockchain, which blends Ethereum&#039;s MetaMask authentication with the Internet Computer&#039;s native Internet Identity blockchain authentication system. This first example of ETH x ICP allows users to leave any message on the wall for all eternity.&lt;br /&gt;
* Where: https://rivyl-6aaaa-aaaaf-qaapq-cai.raw.ic0.app/&lt;br /&gt;
* Github: https://github.com/kristoferlund/ic-wall&lt;br /&gt;
* Who: [https://twitter.com/kristoferlund Kristofer Lund]&lt;br /&gt;
&lt;br /&gt;
== Motoko (4) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Block.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A virtual editor for Motoko&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Motoko Playground&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Motoko Playground is an IDE for developers to learn Motoko – the native language for the Internet Computer blockchain. Deploy canister smart contracts for free, directly within a browser, without needing to download an SDK or set up a wallet.&lt;br /&gt;
* Where: https://m7sm4-2iaaa-aaaab-qabra-cai.raw.ic0.app/&lt;br /&gt;
* Who: [https://forum.dfinity.org/u/chenyan/ Chen Yan]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Matoko School&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Motoko School is the first public school for the Metaverse, only on the Internet Computer&lt;br /&gt;
* Where: [https://www.youtube.com/channel/UCS2Y9oRMpBfVqAnChFoXepg Mototko School on Youtube]&lt;br /&gt;
* Twitter: https://twitter.com/MotokoSchool&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Motoko Library&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: An awesome list of Motoko code and resources curated by the community.&lt;br /&gt;
* Where: https://github.com/motoko-unofficial/awesome-motoko&lt;br /&gt;
&lt;br /&gt;
== DeFi (13) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bauction&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Bauction will empower the online auction and tender for retail as well as enterprises customer is decentralized and transparent manner. By leveraging technology stack of ICP, we want it to be self governed self driven auction platform.&lt;br /&gt;
* Where: https://bauction.org/&lt;br /&gt;
* Twitter: https://twitter.com/bauctionorg&lt;br /&gt;
* DFINITY Grant: received in July 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;CetoSwap&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: CetoSwap ∞ is a fungible and non-fungible asset management platform base on #Dfinity&lt;br /&gt;
* Where: https://ijnlb-jiaaa-aaaah-qaesa-cai.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/CetoSwap&lt;br /&gt;
* Medium: https://cetoswap.medium.com/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dank&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Dank is the first Decentralized Bank built on the Internet Computer, developed by Fleek. Through a collection of Open Internet Services for users and developers, Dank makes cycles management seamless.&lt;br /&gt;
* Where: https://dank.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/dank_ois&lt;br /&gt;
* Discord: https://discord.gg/yVEcEzmrgm&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;EnsoFinance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Discover and create open DeFi metastrategies&lt;br /&gt;
* Where: https://www.enso.finance/&lt;br /&gt;
* Twitter: https://twitter.com/EnsoFinance&lt;br /&gt;
* Discord: https://discord.gg/y48Yp6Y4QX&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;iBridge&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: #DeFi Protocol for #Crosschain Assets Based on #Dfinity&lt;br /&gt;
* Where: https://www.ibridge.pro/&lt;br /&gt;
* Twitter: https://twitter.com/iBridge_Labs&lt;br /&gt;
* Github: https://github.com/iBridge-up&lt;br /&gt;
* Medium: [https://medium.com/@ibridge_labs](https://medium.com/@ibridge_labs)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPSwap&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: ICPSwap is decentralized exchange (DEX) built completely end-to-end on-chain. By building the ability for anyone to swap tokens through ICPSwap leveraging the Internet Computer blockchain as the high-speed, scalable, low-cost infrastructure makes ICPSwap a first-to-market in the growing Internet Computer DeFi ecosystem.&lt;br /&gt;
* Where:&lt;br /&gt;
** https://3pbcj-viaaa-aaaah-qaajq-cai.raw.ic0.app/&lt;br /&gt;
** https://twitter.com/ICPSwap&lt;br /&gt;
* Twitter: https://twitter.com/ICPSwap&lt;br /&gt;
* Telegram: https://t.me/ICPSwap_Official&lt;br /&gt;
* Medium: https://icpswap.medium.com/&lt;br /&gt;
* DSCVR: https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/p/icpswap&lt;br /&gt;
* Github:https://iloveics.gitbook.io/icpswap/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;InfinitySwap&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A platform to create, stake and swap Dfinity Tokens&lt;br /&gt;
* Where: https://infinityswap.one/&lt;br /&gt;
* Twitter: https://twitter.com/infinity_swap&lt;br /&gt;
* Telegram: https://t.me/infinityswapofficial&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Liquid ICP&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Liquid ICP is world&#039;s first s-Bridge where bridged and staked assets remain liquid. Fractional reserve is governed by Liquid ICP community and ensures immediate withdrawal of ICP coins at any given time.&lt;br /&gt;
* Where: https://www.icp-20.com/&lt;br /&gt;
* Twitter: https://twitter.com/LiquidICP&lt;br /&gt;
* Discord: https://discord.com/invite/3F8CYyPpHq&lt;br /&gt;
* Github: https://docs.icp-20.com/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;RFL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Random Fair Lottery on IC&lt;br /&gt;
* Twitter: https://twitter.com/RFL_app&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sailfish&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The gateway to open financial services on the Internet Computer&lt;br /&gt;
* Where: https://sailfish.app/&lt;br /&gt;
* Twitter: https://twitter.com/Sailfishapp&lt;br /&gt;
* Discord: https://discord.com/invite/7Wbqucc&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sonic&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Swap tokens, earn fees as a liquidity provider, &amp;amp; build on the Internet Computer’s AMM&lt;br /&gt;
* Where: https://sonic.ooo/&lt;br /&gt;
* Twitter: https://twitter.com/sonic_ooo&lt;br /&gt;
* Discord: https://discord.com/invite/EkmnRd99h6&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SupraOracles&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Bridging real-world data to automate, simplify, and secure the #smartcontracts of financial markets&lt;br /&gt;
* Where: https://www.supraoracles.com/&lt;br /&gt;
* Twitter: https://twitter.com/SupraOracles&lt;br /&gt;
* Telegram: https://t.me/supraoracles&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Uniswap Front End on the IC&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Uniswap front end hosted on the Internet Computer through Fleek. Showing how traditional DeFi solutions can now be hosted completely on-chain by using the Internet Computer blockchain. Another use case of completely decentralizing a service which currently has a centralized front end.&lt;br /&gt;
* Where: https://lqku6-wqaaa-aaaad-qalmq-cai.ic.fleek.co/#/swap&lt;br /&gt;
* Who: [https://fleek.co/ fleek]&lt;br /&gt;
&lt;br /&gt;
== NFT (42) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crowd Created Canvas (CCC)&#039;&#039;&#039;*&lt;br /&gt;
&lt;br /&gt;
* What: CCC is the first-ever collectible, collaborative pixel artwork created by the #Dfinity community, sharing bonus pool and getting NFT.&lt;br /&gt;
* Where: https://sdnoa-fiaaa-aaaah-aaubq-cai.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/CCCProtocol&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cronic NFTs&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Cronics play-to-earn ecosystem on the $ICP blockchain. Trade Cronic Critters and accessories on @EntrepotApp&lt;br /&gt;
* Where: https://cronic.toniqlabs.com/&lt;br /&gt;
* Who: [https://igpeu-waaaa-aaaad-qaava-cai.raw.ic0.app/ Toniq Labs]&lt;br /&gt;
* Twitter: https://twitter.com/CronicsP2E&lt;br /&gt;
* Telegram: https://t.me/cronic_talk&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;cubic&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Cubic is a generative art project. Data such as ownership history and transaction history are used in different ways to generate unique canvases in a variety of styles.&lt;br /&gt;
* Where: https://cubic.place/&lt;br /&gt;
* Github: https://github.com/FloorLamp/cubic&lt;br /&gt;
* Telegram: https://t.me/cubicplace&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;CYMAN&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 10,000 Randomly generated cybernetic humanoid&#039;s from 550,000,000 BCE built on the Internet Computer&lt;br /&gt;
* Where: https://www.cyman.live/&lt;br /&gt;
* Twitter: https://twitter.com/cyman_live&lt;br /&gt;
* Discord: https://discord.com/invite/cyman&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Ape Ventures&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 10,000 Unique Apes are getting ready to take their first steps in to the #ICP ecosystem&lt;br /&gt;
* Where: https://icapeventures.com/&lt;br /&gt;
* Twitter: https://twitter.com/ICApeVentures&lt;br /&gt;
* Discord: https://discord.com/invite/icapeventures&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICKitties&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 10,000 8-bit kitties on IC&lt;br /&gt;
* Twitter: https://twitter.com/ICKitties&lt;br /&gt;
* Discord: https://discord.com/invite/r2c4TTr4un&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPets | Infinity Pets&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 11,111 of Infinity Pets 🐧 | Community Gain Focused NFT collection living on #ICP Blockchain&lt;br /&gt;
* Where: https://icpets.io/&lt;br /&gt;
* Twitter: https://twitter.com/icpets_nft&lt;br /&gt;
* Discord: https://discord.com/invite/nD9HqPQ7&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Photographers&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: At IC photographers, the aim is to bring both creator and collector together. We endeavour to show talented artists to the collectors of photography NFT’s.&lt;br /&gt;
* Where: https://www.icphotographers.com/&lt;br /&gt;
* Who: [https://twitter.com/olisav Oli]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPics&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: An NFT collection of 1,000 pieces of trival artwork on IC&lt;br /&gt;
* Twitter: https://twitter.com/ethnICPic&lt;br /&gt;
* Discord: https://discord.com/invite/gauQWrV2b4&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPrime8s&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 5 releases of Prime8 focused, randomly generated NFTs on the Internet Computer&lt;br /&gt;
* Twitter: https://twitter.com/ICPrime8s&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPumpkin NFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: NFT pumpkins for Halloween on IC&lt;br /&gt;
* Twitter: https://twitter.com/ICPumpkin&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dfinity Bulls NFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 8,888 Awesome Badass Bulls will ever be minted! Exclusively on ICP!&lt;br /&gt;
* Twitter: https://twitter.com/DBulls_NFT&lt;br /&gt;
* Discord: https://discord.com/invite/GBSNhYeGxh&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DfinityNFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Cryptogarden of The Internet Computer. NFT cross-chain aggregator of The Internet Computer.&lt;br /&gt;
* Where: http://dfinitynft.com/&lt;br /&gt;
* Twitter: https://twitter.com/DfinityNFT&lt;br /&gt;
* DFINITY Grant: received in July 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Exponent&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Exponent Platform is a complete Layer1 DeFi solution running on DFINITY&#039;s Internet Computer. Our platform is made from a number of our token standard, SDK and protocols.&lt;br /&gt;
* Who: [https://igpeu-waaaa-aaaad-qaava-cai.raw.ic0.app/ Toniq Labs]&lt;br /&gt;
* Discord: https://t.co/9iDZBX35mg?amp=1&lt;br /&gt;
* Github: https://github.com/Toniq-Labs/exponent&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Entrepot NFT Marketplace&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Entrepot is a decentralized NFT marketplace developed by ToniqLabs, the creators behind Rise of the Magni, Stoic Wallet, Cronic NFTs, and Exponent. Entrepot (through Exponent) provides users with tools and on-chain services to design, deploy, and manage NFTs and traditional tokens.&lt;br /&gt;
* Where: https://entrepot.app/&lt;br /&gt;
* Who: [https://igpeu-waaaa-aaaad-qaava-cai.raw.ic0.app/ Toniq Labs]&lt;br /&gt;
* Twitter: https://twitter.com/EntrepotApp&lt;br /&gt;
* Discord: https://discord.gg/toniqlabs&lt;br /&gt;
* Github: https://github.com/Toniq-Labs/exponent&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fantosaurs&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Raptors from Isla NOOblar, currently on Eth, but hosted on IC&lt;br /&gt;
* Where:&lt;br /&gt;
** https://fantosaur.io/&lt;br /&gt;
** https://j5h4x-gyaaa-aaaad-qayjq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/fantosaurs&lt;br /&gt;
* Discord: https://discord.com/invite/e7bec4rm&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fungible Token Standard by Deland&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Fungible token standard by Deland&lt;br /&gt;
* Where: https://github.com/Deland-Labs/dfinity-fungible-token-standard&lt;br /&gt;
* Who: [https://deland.one/ Deland Labs]&lt;br /&gt;
* Medium: [https://medium.com/@DelandLabs](https://medium.com/@DelandLabs)&lt;br /&gt;
* Discord: https://discord.gg/CdzzUaFUXq&lt;br /&gt;
* DFINITY Grant: received in August, 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Haunted Hamsters&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: NFT set of 6,666 haunted hamsters, spooking on DFINITY ICP&lt;br /&gt;
* Where: http://www.hauntedhamsters.io/&lt;br /&gt;
* Twitter: https://twitter.com/HauntedHamsters&lt;br /&gt;
* Discord: https://discord.com/invite/DtSF7SGK&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC3D&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Cool 3D NFTs on the Internet Computer - IC 3D NFT&lt;br /&gt;
* Twitter: https://twitter.com/IC3DNFT&lt;br /&gt;
* Discord: https://discord.com/invite/ic3dnft&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Canvas&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a collaborative NFT&lt;br /&gt;
* Where: https://rdbii-uiaaa-aaaab-qadva-cai.raw.ic0.app/&lt;br /&gt;
* Who: [https://twitter.com/kylpeacock Kyle Peacock]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Cards&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: IC Cards is an NFT-based game on the IC Protocol. Gather, craft, level, and prepare yourself for a world full of monsters and villains.&lt;br /&gt;
* Where:&lt;br /&gt;
** [[ic.cards|ic.cards]]&lt;br /&gt;
** https://tbhsl-lqaaa-aaaaj-qagzq-cai.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/ic_cards&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICelebrity&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 100 Uniquely Minted handmade artistic representation of the people we know and love!&lt;br /&gt;
* Twitter: https://twitter.com/ICelebrityNFT&lt;br /&gt;
* Discord: [[discord.gg/AZFq4QMYBx|discord.gg/AZFq4QMYBx]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Gallery&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Home of the Metaverse. 9999 unique 3D Moonwalker NFTs&lt;br /&gt;
* Where: https://gan2q-ciaaa-aaaai-aanoq-cai.raw.ic0.app/&lt;br /&gt;
* Who: [https://twitter.com/CipherProxyLLC Cipher Proxy]&lt;br /&gt;
* Twitter: https://twitter.com/ic_gallery&lt;br /&gt;
* Discord: https://discord.com/invite/6VWZNzskPA&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICircle NFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 8888 Generative Art NFTs Launch Soon in #InternetComputer | Math + Art = Beautiful&lt;br /&gt;
* Twitter: https://twitter.com/icircle_nft&lt;br /&gt;
* Discord: https://discord.io/ICircle_NFT&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICP Art&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Exclusive Hand-Crafted Art Collections&lt;br /&gt;
* Where: https://linktr.ee/ICPArt&lt;br /&gt;
* Twitter: https://twitter.com/ICP_Art&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICP Squad&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: First Engage To Earn #NFTs Game. Powered by @dfinity&lt;br /&gt;
* Where: https://upf6d-saaaa-aaaah-aauwa-cai.ic0.app/#/&lt;br /&gt;
* Twitter: https://twitter.com/ICPSquadNFT&lt;br /&gt;
* Discord: https://discord.com/invite/icpsquad&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPunks&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 10,000 randomly generated, unique collectible clowns with proof of ownership stored on the Internet Computer blockchain. Created as a reference to a meme comparing the Internet Computer token (ICP) with the Insane Clown Posse - an American hip hop duo founded in 1989.&lt;br /&gt;
* Where: https://icpunks.com/&lt;br /&gt;
* Twitter: https://twitter.com/ICPunks&lt;br /&gt;
* Who: [https://github.com/stopak stopak] and [https://github.com/przchojecki Przemyslaw Chojecki]&lt;br /&gt;
* Github: https://github.com/stopak/ICPunks/tree/dev&lt;br /&gt;
* Discord: https://discord.gg/m8QWD7m62h&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPuppies&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: ICPuppies is an NFT project hosted completely on the Internet Computer. In October, 10,000 randomly generated NFTs will be available for members of the Internet Computer community to claim through the Entrepot.app marketplace. A portion of the proceeds will be donated to organizations that support puppies.&lt;br /&gt;
* Where: https://icpuppies.io/&lt;br /&gt;
* Twitter: https://twitter.com/ICPuppies&lt;br /&gt;
* Discord: http://discord.gg/A3rmDSjBaJ&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICSnakes&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A collection of 10,000 randomly generated NFTs on #ICP blockchain hunting for food.&lt;br /&gt;
* Where: https://xn--4n8h7h.ws/&lt;br /&gt;
* Twitter: https://twitter.com/ICSnakes&lt;br /&gt;
* Discord: https://discord.com/invite/H9YUpwVrkQ&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Turtles&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Customizable and breedable NFTS, powered by GameFi and P2E, dropping with accessories included&lt;br /&gt;
* Twitter:https://twitter.com/ic_turtles&lt;br /&gt;
* Discord:https://discord.com/invite/n77xjyspDR&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Inferval Vampire Colony&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: 666 randomly generated Vampires on the Internet Computer&lt;br /&gt;
* Where: https://www.infernalvampires.com/&lt;br /&gt;
* Twitter: https://twitter.com/IVCNFT&lt;br /&gt;
* Discord: https://discord.com/invite/mA5cXdAtwe&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Infinite Charity Project&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A nonprofit corporation and charitable org providing non-commercial fundraising for 501(c)3 charities&lt;br /&gt;
* Where: https://chimps.icproject.org/&lt;br /&gt;
* Twitter: https://twitter.com/icproject_nft&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Astronauts&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Internet Astronauts are a set of 10,000 limited edition, uniquely minted astronaut-themed NFTs. These end-to-end on-chain NFTs will be up for grabs to the community through the Entrepot.app marketplace. They are only possible through the Internet Computer blockchain.&lt;br /&gt;
* Where: https://interastrosc.com/&lt;br /&gt;
* Twitter: https://twitter.com/interastrosc&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Meme Cake&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Cake Club is a collection of 7777 Dick NFTs unique digital collectible living on the Internet computer, made by Meme Cake, which claims to be the world&#039;s first decentralized comedy platform. Think of it as a 9GAG but decentralized.&lt;br /&gt;
* Where: https://memecake.io/&lt;br /&gt;
* Twitter: https://twitter.com/realmemecake&lt;br /&gt;
* Discord: https://discord.com/invite/vr2ATGMdug&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Newsie&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Comic Book and NFT Collection On The Internet Computer&lt;br /&gt;
* Where: https://gh2ig-jqaaa-aaaai-aaslq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/NewsieCartoon&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NFT Studio&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: NFT Studio allows users to Mint, Buy, Sell and Stake 3DWASM NFTs on the Internet Computer&lt;br /&gt;
* Where: https://7xw5z-uqaaa-aaaad-qaqcq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/NFTStudioPoland&lt;br /&gt;
* Discord: https://discord.com/invite/65P4NzzSQx&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NFT Village&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Look up the attributes, NRI %, rarity, and other information about Internet Computer NFTs. Simply input the URL of your ICPunks and Cronics NFTs or any other NFT minted on the Internet Computer blockchain and learn all of the details that make the NFT unique.&lt;br /&gt;
* Where:&lt;br /&gt;
** http://nftvillage.ai/&lt;br /&gt;
** https://nntkg-vqaaa-aaaad-qamfa-cai.ic.fleek.co/&lt;br /&gt;
* Twitter: https://twitter.com/NFT_Village&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Pokded Studio BOTS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A collection of 10,000 individual ROBOTS&lt;br /&gt;
* Twitter: https://twitter.com/pokedstudiouk&lt;br /&gt;
* Discord: https://discord.com/invite/PokedStudioNFT&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;PORTAL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A Streamers Marketplace Powered by the #InternetComputer&lt;br /&gt;
* Where: https://ja7sy-daaaa-aaaai-qaguq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/PortalDapp&lt;br /&gt;
* Discord: https://discord.com/invite/FSSauMNrbS&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The Sword NFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: #ICP exclusive. Follow for updates and airdrop information. Series 1: Little Ninjas. Only 10K Unique Ninjas will be Minted, ever.&lt;br /&gt;
* Where: https://theswordnft.com/&lt;br /&gt;
* Twitter: https://twitter.com/TheSwordNft&lt;br /&gt;
* Discord: https://discord.com/invite/Xgc5zTrdSb&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Wild and West NFT&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A wild west themed NFT project&lt;br /&gt;
* Where: https://wildandwest.com/&lt;br /&gt;
* Twitter: https://twitter.com/WildandWestNFT&lt;br /&gt;
* Discord: https://discord.com/invite/wildandwest&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Yolo Octopus&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a collection of 8888 intelligently generated NFTs on the Internet Computer blockchain&lt;br /&gt;
* Where: http://www.enteryoloclub.com/&lt;br /&gt;
* Twitter: https://twitter.com/EnterYoloClub&lt;br /&gt;
&lt;br /&gt;
== Social (11) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;crowdEats&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Yelp on IC, owned by users&lt;br /&gt;
* Where: https://www.crowdeats.io/&lt;br /&gt;
* Twitter: https://twitter.com/crowdeats_io&lt;br /&gt;
* Discord: https://discord.gg/Cmm7N9pqsK&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DSCVR&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: DSCVR is a decentralized version of Reddit, where users are the owners. Decentralized end-to-end, built on the Internet Computer, and accessible from any browser.&lt;br /&gt;
* Where: https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/DscvrO&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Distrikt&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Distrikt is a completely decentralized, community-owned professional network. Users of the platform will vote on upgrades, and no user data will ever be mined or sold. Create your account, secured by Internet Identity today.&lt;br /&gt;
* Team:&lt;br /&gt;
** https://distrikt.io&lt;br /&gt;
** https://c7fao-laaaa-aaaae-aaa4q-cai.ic0.app/&lt;br /&gt;
* Dapp:&lt;br /&gt;
** https://distrikt.app&lt;br /&gt;
** https://az5sd-cqaaa-aaaae-aaarq-cai.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/DistriktApp&lt;br /&gt;
* Telegram: https://t.me/DistriktApp&lt;br /&gt;
* Newsletter: https://medium.com/distrikt&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DSocial&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Decentralized Youtube on IC&lt;br /&gt;
* Twitter: https://twitter.com/DSocialApp&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICPMeet&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: a Tinder on ICP&lt;br /&gt;
* Where: https://www.icpmeet.com/&lt;br /&gt;
* Who: [https://github.com/HelloRickey Rickey]&lt;br /&gt;
* Twitter: https://twitter.com/icpmeet&lt;br /&gt;
* DFINITY Grant: received in July 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Go Bazzinga&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: World&#039;s first decentralised &amp;quot;Short-Video X Draft Kings&amp;quot; Social Speculation Platform&lt;br /&gt;
* Where: https://gobazzinga.io/&lt;br /&gt;
* Twitter: https://twitter.com/GoBazzingainc&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Learned&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: LEARND is a community driven educationnal platform running on Internet Computer. We want to provide a new kind of learning and incentives using crypto assets, community vote using SNS, reward learners AND teachers.&lt;br /&gt;
* Where: https://learnd.dedn.eu/&lt;br /&gt;
* Twitter: https://twitter.com/LEARNDTEAM&lt;br /&gt;
* Who: [https://twitter.com/WaffCharlie Charlie Waff]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ModClub&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: MODCLUB is a decentralized content moderation platform, it simplifies the moderation process by connecting our community to dApps that need UGC moderation. It has a reputation token economics model.&lt;br /&gt;
* Where: https://ljyte-qiaaa-aaaah-qaiva-cai.raw.ic0.app/&lt;br /&gt;
* Who: [https://twitter.com/RaheelGovindji Raheel Govindji]&lt;br /&gt;
* Twitter: https://twitter.com/ModclubApp&lt;br /&gt;
* Discord: http://discord.gg/8zUrHd46Tf&lt;br /&gt;
* Medium: [https://medium.com/@modclub](https://medium.com/@modclub)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;OpenChat&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Decentralized messaging has been a pipe-dream for decades. With the advent of the Internet Computer, real-time messaging is now possible on a blockchain.&lt;br /&gt;
* Where: https://oc.app&lt;br /&gt;
* Twitter: https://twitter.com/OpenChat&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Overchute&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A decentralized smart-contract application for crowdfunding the release of intellectual property under open licences&lt;br /&gt;
* Where: https://overchute.com/&lt;br /&gt;
* Twitter: https://twitter.com/OverchuteApp&lt;br /&gt;
* Github: https://github.com/Overchute&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Party Board&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Multi-chain metaverse social network&lt;br /&gt;
* Twitter: https://twitter.com/party_board&lt;br /&gt;
* Telegram: https://t.me/partyboard_en&lt;br /&gt;
* Discord: https://discord.com/invite/kewhcJM4uf&lt;br /&gt;
&lt;br /&gt;
== Games (10) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cube Run&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The classic game, &amp;quot;Cube Run&amp;quot; gets an update by having a new graphic interface and being hosted completely on-chain. The decentralized version of this game lets you keep your high-score running in your browser through persistent memory.&lt;br /&gt;
* Where: https://7qx3n-ziaaa-aaaad-qaqca-cai.raw.ic0.app/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;HEXGL&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: HexGL is a futuristic racing game using HTML5, Javascript, WebGL and hosted on the Internet Computer blockchain in order to run instantly on your browser from anywhere in the world.&lt;br /&gt;
* Where: https://neqb2-dyaaa-aaaad-qameq-cai.raw.ic0.app/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICMoji Origins&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: ICMoji Origins is an NFT-based multiplayer game built end-to-end on-chain on the Internet Computer.&lt;br /&gt;
* Where:&lt;br /&gt;
** https://icmojis.com/&lt;br /&gt;
** https://graci-aaaaa-aaaah-aaqjq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/icmoji&lt;br /&gt;
* Who: [https://twitter.com/Visions_GFX Visions]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Lo-Fi Player&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Lo-Fi Player is a dapp hosted on the Internet Computer that lets users listen to relaxing beats delivered by blockchain. The back-end is using machine learning to build and develop the AI produced tunes, and users can interact within the player to change the sound to their liking.&lt;br /&gt;
* Where: https://hl2zz-gyaaa-aaaad-qas3a-cai.raw.ic0.app/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Mission Is Possible&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A PVP third person shooter hosted on the Internet Computer blockchain. The John Wick inspired game is built using the Unity 3D Game Engine, and hosted on the IC enabling decentralized login with Internet Identity.&lt;br /&gt;
* Where: https://to3ja-iyaaa-aaaai-qapsq-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/MiP_the_Game&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reversi&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Reversi is one of the first canister smart contracts deployed to the Internet Computer and is a completely decentralized multiplayer game. Play against a friend (or foe) in real-time, from any browser, anywhere in the world.&lt;br /&gt;
* Where: https://ivg37-qiaaa-aaaab-aaaga-cai.ic0.app/#!/play&lt;br /&gt;
* Who: [https://forum.dfinity.org/u/paulliu/ Paul Liu]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Rise of the Magni&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Rise of the Magni, winner of the DSCVR hackathon for games on the Internet Computer. Buy, earn, and trade collectibles, compete in tactical battles online to earn in-game tokens, and venture through story mode to experience one of the first games built on the Internet Computer.&lt;br /&gt;
* Where: https://riseofthemagni.com/&lt;br /&gt;
* Who: [https://igpeu-waaaa-aaaad-qaava-cai.raw.ic0.app/ Toniq Labs]&lt;br /&gt;
* Twitter: https://twitter.com/ToniqGames&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Saga&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Have your fortune told on the Internet Computer. Saga Tarot gives you a tarot reading in one click. The user-friendly dapp is built completely on the Internet Computer, accessible from any browser. What will the future hold for you?&lt;br /&gt;
* Twitter: https://twitter.com/SagaCards&lt;br /&gt;
* Where:&lt;br /&gt;
** https://legends.saga.cards/&lt;br /&gt;
** https://5nl7c-zqaaa-aaaah-qaa7a-cai.raw.ic0.app/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Texas Hold&#039;em&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: IC Texas Hold&#039;em is a dapp hosted completely on-chain on the Internet Computer. 2nd place winner of the DSCVR Hackathon Season 2&lt;br /&gt;
* Where: https://lm5fh-ayaaa-aaaah-aafua-cai.ic0.app/&lt;br /&gt;
* Who: [https://twitter.com/NnsDaos NNSDao]&lt;br /&gt;
* Github: https://github.com/NnsDao/ICTexas-UI&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Welcome Into the Metaverse&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Prize winner of the DSCVR hackathon for the Internet Computer – this game brings digital community into a unified virtual space. Find anecdotes from founding ecosystem members, and go through a series of quests.&lt;br /&gt;
* Where: https://lc7ip-3iaaa-aaaah-aafva-cai.ic0.app/&lt;br /&gt;
* Who: https://twitter.com/ThuillierSbast3&lt;br /&gt;
&lt;br /&gt;
== Metaverse (3) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Drip.Land&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Open project, liquid democracy/community. Metaverse building on the #IC&lt;br /&gt;
* Where: https://drip.land/info&lt;br /&gt;
* Twitter: https://twitter.com/ICdripland&lt;br /&gt;
* Telegram: https://t.me/icdrip&lt;br /&gt;
* Discord: https://discord.com/invite/U8YppXuU2x&lt;br /&gt;
* Github: https://github.com/FloorLamp/drip-land&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Metaverse AI&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Digital human and virtual idol on IC&lt;br /&gt;
* Where: https://www.metaverseai.org/&lt;br /&gt;
* Who: [https://www.linkedin.com/in/henryonline/ Henry Yan]&lt;br /&gt;
* Twitter: https://twitter.com/metaverseOrg&lt;br /&gt;
* Github: https://github.com/Vera-AI-Technology&lt;br /&gt;
* DFINITY Grant: received in October 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;XR Foundation&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: an open source zero-profit collective building metaverse technologies.&lt;br /&gt;
* Where: https://www.xrfoundation.io/&lt;br /&gt;
* Github: https://github.com/XRFoundation/XREngine&lt;br /&gt;
&lt;br /&gt;
== Productivity (12) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Aedile&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Aedile brings your team’s work together in one shared space, completely built on-chain. Manage your boards, columns &amp;amp; cards to transform your projects, serving web experiences directly from the Internet Computer blockchain.&lt;br /&gt;
* Where: https://eemeo-taaaa-aaaad-qakjq-cai.ic.fleek.co/&lt;br /&gt;
* Who: [https://www.esensconsulting.com/ Esens Consulting]&lt;br /&gt;
* Twitter: https://twitter.com/aedile_ic&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bunchd&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Create, Collaborate, and Earn on the Subscription Platform controlled by Creators.&lt;br /&gt;
* Twitter: https://twitter.com/GetBunchd&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dbox&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: decentralized inbox built on Internet Computer&lt;br /&gt;
* Where: https://www.dbox.foundation/&lt;br /&gt;
* Twitter: https://twitter.com/DBOXFoundation&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DeckDeckGo&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: An open source web editor for presentations built completely on-chain. This dapp is like a decentralized version of Google Slides built on the Internet Computer.&lt;br /&gt;
* Where: https://deckdeckgo.com&lt;br /&gt;
* Who: https://twitter.com/daviddalbusco, https://twitter.com/nasmattia&lt;br /&gt;
* Twitter: https://twitter.com/deckdeckgo&lt;br /&gt;
* Github: https://github.com/deckgo/deckdeckgo&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Dmail.ai&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Use Web3, not Gmail. Dmail makes it safe and private for you to communicate storage and transfer token &amp;amp; NFTs on DFINITY&lt;br /&gt;
* Where: https://dmail.ai/&lt;br /&gt;
* Twitter: https://twitter.com/dmailofficial&lt;br /&gt;
* Telegram: https://t.me/dmailofficial&lt;br /&gt;
* Medium: [https://medium.com/@dmail_official](https://medium.com/@dmail_official)&lt;br /&gt;
* Github: https://github.com/dmailofficial&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Contacts&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A social media management tool build on ICP, helping users manage relations in Web3 networks&lt;br /&gt;
* Who: [https://twitter.com/relationlabs Relation Labs]&lt;br /&gt;
* Twitter: https://twitter.com/relationlabs&lt;br /&gt;
* Other: [https://twitter.com/herbertyang/status/1454780835379384326 Grand Slam winner of 7th Wanxiang Blockchain Hackathon]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IC Drive&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A decentralized private file storage dapp built on the Internet Computer. Store and securely share any type from anywhere in the world with this decentralized version of Box, or Google Drive.&lt;br /&gt;
* Where: https://icdrive.co&lt;br /&gt;
* Who: https://twitter.com/nanditmehra&lt;br /&gt;
* Twitter: https://twitter.com/icDrive&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICEvent&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: an open event service built on IC&lt;br /&gt;
* Where:&lt;br /&gt;
** https://icevent.vercel.app&lt;br /&gt;
** https://znisf-eqaaa-aaaaj-aabta-cai.raw.ic0.app/&lt;br /&gt;
* Twitter: https://twitter.com/vansdaynet&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Nuance&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Nuance is a Web3.0 blogging platform that is hosted on-chain end-to-end on the Internet Computer. Developed by Aikin Dapps, the alpha of the world’s first blogging platform to be hosted entirely on a blockchain has now launched. Nuance aims to bring NFTs into the world of editorial content ownership.&lt;br /&gt;
* Where: https://fxnaj-yaaaa-aaaaf-qad3q-cai.ic0.app&lt;br /&gt;
* Who: [https://www.aikin.io/ AIKIN]&lt;br /&gt;
* Twitter: https://twitter.com/AikinDApps&lt;br /&gt;
* Discord: https://discord.gg/2dPCPu6zxz&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Photos by Functionland&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Photos is a react-native(expo)+typescript application to replace Google Photos/Apple Photos, and give freedom in hosting your photos on any platform, either centralized servers like Amazon or Microsoft, or decentralized solutions such as Dfinity or IPFS-based &amp;quot;box&amp;quot;&lt;br /&gt;
* Where: https://fx.land/&lt;br /&gt;
* Twitter: https://twitter.com/functionland&lt;br /&gt;
* Telegram: https://t.me/functionlanders&lt;br /&gt;
* Github: https://github.com/functionland/photos&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Quark&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Quark is an open internet service facilitating payments on the Internet Computer like Stripe or Paypal&lt;br /&gt;
* Where: https://ebgyc-nqaaa-aaaaf-qad6q-cai.ic0.app/&lt;br /&gt;
* Github: https://github.com/SuddenlyHazel&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Waterslide.app&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Frontend to interact with the @LiquityProtocol&lt;br /&gt;
* Where: https://waterslide.app/&lt;br /&gt;
* Twitter: https://twitter.com/waterslide_app&lt;br /&gt;
&lt;br /&gt;
== Communities (3) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ICP123&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Find Awesome Dfinity Projects&lt;br /&gt;
* Where: https://icp123.xyz/&lt;br /&gt;
* Twitter: https://twitter.com/icp123xyz&lt;br /&gt;
* Github: https://github.com/icpfans-xyz&lt;br /&gt;
* Who: [https://github.com/includeleec Lee] of [https://twitter.com/nebulasio https://www.nebulas.io/]&lt;br /&gt;
* DFINITY Grant: received in June 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet Computer Education&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: very helpful Github-based education resources with elaborate and step-by-step online classes and cirriculum to teach developers Internet Computer&lt;br /&gt;
* Where: https://github.com/DFINITY-Education&lt;br /&gt;
* Who: [https://github.com/nzoghb nico], [https://github.com/csolimano csolimano] and [https://github.com/crusso Claudio Russo]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;THUBA Education&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: THUBA Education is an education platform supported by Tsinghua University student Blockchain Association. The goal is to be a solid bridge between students and blockchain world. The students can use this platform to learn blockchain courses, join Hackthon and do some research.&lt;br /&gt;
* Where: https://thublockchain.org/&lt;br /&gt;
* Who: Tsinghua University Students Blockchain Association&lt;br /&gt;
&lt;br /&gt;
== Enterprise (9) ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Agryo&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Agryo is the global risk intelligence provider that enables financial institutions to assess and manage financial risks in the crop field level for underwriting agriculture insurance, loans, and trade finance globally; as well as meet sustainability goals.&lt;br /&gt;
* Where: [[www.agryo.com|www.agryo.com]]&lt;br /&gt;
* Twitter: https://twitter.com/agryo_&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ContentFly&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Marketplace app connecting high quality Content Creators to Brands, running on Dfinity Internet Computer&lt;br /&gt;
* Where: https://contentfly.app/&lt;br /&gt;
* Twitter: https://twitter.com/ContentFlyApp&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;dFlow&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: &amp;quot;decentralized Workflow&amp;quot;- an innovative and simple way for defining and executing cross-organisational business flows&lt;br /&gt;
* Where: https://www.dcentra.io/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;dService&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: A next-generation decentralized Service Management Application running on the Internet Computer. The Application is primarily focused on IT Service Management.&lt;br /&gt;
* Where:&lt;br /&gt;
** https://agnoo-nqaaa-aaaah-aaq4q-cai.ic0.app/&lt;br /&gt;
** https://dservice.app&lt;br /&gt;
* Twitter: https://twitter.com/dServiceApp&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Get Impact Now&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The politics platform that enables you to change the world&lt;br /&gt;
* Where: https://getimpactnow.org/&lt;br /&gt;
* Twitter: https://twitter.com/getimpactnow&lt;br /&gt;
* Github: https://github.com/getimpactnow/getimpactnow/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Optex&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Optex is a powerful data visualisation tool designed to provide seamless insights into complex data. Optex is out-of-the-box solution that will allows users to combine data in a single analysis and get a holistic view of the same with interactive customisable visualisations.&lt;br /&gt;
* Where: https://www.clinicaltrialsintelligence.org/&lt;br /&gt;
* Twitter: https://twitter.com/ClinTexCTi&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Origyn&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The Origyn Foundation is blending luxury goods, with NFTs by providing digital verifications for physical objects. Only possible on the Internet Computer.&lt;br /&gt;
* Where: https://www.origyn.ch/&lt;br /&gt;
* Twitter: https://twitter.com/ORIGYNTech&lt;br /&gt;
* Telegram: https://t.me/origynfoundation&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Triip&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: Triip is a blockchain-enabled travel platform allows for direct interactions between service providers and clients. Using a propriety token, Triip Miles or TIIM, Triip is a network that enables greater transparency, security and lower cost transactions between those who travel and those who serve them.&lt;br /&gt;
* Where: https://www.triip.me/&lt;br /&gt;
* Twitter: https://twitter.com/triipme&lt;br /&gt;
* Telegram: https://t.me/TriipMilesICO&lt;br /&gt;
* Github: https://github.com/triipme&lt;br /&gt;
* Who: [https://www.triip.me/pages/about_us Triip Pte Ltd]&lt;br /&gt;
* DFINITY Grant: received in Aug 2021&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;WeAct.chat&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* What: The app made for groups of advocates, activists, and change makers working to better the world&lt;br /&gt;
* Where: https://www.weact.chat/dfinity&lt;br /&gt;
* Twitter: https://twitter.com/WeAct_Chat&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_vision&amp;diff=1174</id>
		<title>Internet Computer vision</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_vision&amp;diff=1174"/>
		<updated>2022-01-07T14:11:04Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Minor fixes, deleted community fund, deleted cycles as stable value&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;The Internet Computer&#039;&#039;&#039; blockchain is a real &amp;quot;world computer&amp;quot; that removes the traditional limitations of smart contracts using advanced new cryptography and distributed protocols. &lt;br /&gt;
&lt;br /&gt;
==Vision and Value Propositions==&lt;br /&gt;
&lt;br /&gt;
===Web speed===&lt;br /&gt;
&lt;br /&gt;
Smart Contracts are fast and performant to allow developers to build anything. The design goal is that developers can build consumer-facing experiences that are as fast as they would expect from centralized servers. Dapp developers do not need to choose between &amp;quot;smart contracts&amp;quot; and &amp;quot;fast.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
From a blockchain POV, [[Internet Computer Performance]] performance tests shows the IC latency at 200 milliseconds for query calls (reads) and 2 seconds for update calls (writes). As of December 1, 2021, The Internet Computer can handle 250,000 queries per second and 11,500 update calls per second. &lt;br /&gt;
&lt;br /&gt;
===Environment and cost===&lt;br /&gt;
&lt;br /&gt;
====Low direct costs====&lt;br /&gt;
Unlike most blockchains, the efficiency and costs of the Internet Computer approaches the traditional IT stack so its is economically feasible to host dapps with lots of data and content.&lt;br /&gt;
&lt;br /&gt;
For comparison:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ Storage costs&lt;br /&gt;
|-&lt;br /&gt;
! Blockchain !! Storage Costs !! &lt;br /&gt;
|-&lt;br /&gt;
| Ethereum || $350,000,000 USD per GB per year ||&lt;br /&gt;
|-&lt;br /&gt;
| Internet Computer || $5 USD per GB per year ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Low indirect costs====&lt;br /&gt;
&lt;br /&gt;
Smart contracts as &amp;quot;secure-by-default&amp;quot; that comes with data replication removes a lot of software complexity that developers do not need to build. The design intent of the IC is to make development and deployment simple to reduce the time necessary to build and maintain software compared to traditional systems.&lt;br /&gt;
&lt;br /&gt;
===Network scales without limit===&lt;br /&gt;
&lt;br /&gt;
Most blockchains have transactions limits baked into the protocol (e.g. adding more servers to Bitcoin does not increase its transaction volume) or have layer 2 solutions to address scaling (e.g. rollups, etc...). The Internet Computer can process unbounded volumes of smart contract data and computation natively because it can grow in capacity by adding more nodes. That is how the network went from 19 blocks per second in July 2021 to 30 blocks per second by December 2021. &lt;br /&gt;
&lt;br /&gt;
See Internet Computer Dashboard: https://dashboard.internetcomputer.org/&lt;br /&gt;
&lt;br /&gt;
===Network scaling is transparent to systems===&lt;br /&gt;
&lt;br /&gt;
Network scaling is transparent to smart contract code which means that dapp developers do not need to worry about details about the network in order for their dapps to operate or scale. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Although subnets are the fundamental building blocks of the overall Internet Computer network, they’re transparent to users and software. Users and canister software only need to know the identity of a canister to call the functions that it shares..&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: https://medium.com/dfinity/a-technical-overview-of-the-internet-computer-f57c62abc20f&lt;br /&gt;
&lt;br /&gt;
===Web serving===&lt;br /&gt;
&lt;br /&gt;
====Dapp code hosted and executed on-chain====&lt;br /&gt;
Smart contracts on the Internet Computer securely serve web-content directly to users. This is unique among other projects where most L1 blockchains have dapps where a small part of the logic runs in a smart contract, but the actual consumer-facing web or interface is hosted on a centralized cloud provider (e.g. AWS) instead of being served directly from the blockchain.&lt;br /&gt;
&lt;br /&gt;
The Internet Computer serving dapps whose code is hosted and executed entirely on-chain unlocks the power of smart contracts. &lt;br /&gt;
&lt;br /&gt;
====Reverse Gas Model (AKA &amp;quot;canister pays&amp;quot;)====&lt;br /&gt;
In dapps built on Ethereum (as an example), users require a wallet or tokens to use it. This slows down adoption of dapps because using a dapp is not as simple as clicking on a website link; it requires users to buy tokens, install browser plugins, etc. Internet Computer dapps have he &amp;quot;ReverseGas model&amp;quot; where users can interact with a dapp without having to pay in tokens since the canister can store a certain amount of [[cycles]] and pay for the user.&lt;br /&gt;
&lt;br /&gt;
As an example, the Motoko Playground dapp is hosted and executed entirely on-chain and it does not require visitors to pay for the computation: https://m7sm4-2iaaa-aaaab-qabra-cai.raw.ic0.app/&lt;br /&gt;
&lt;br /&gt;
====Internet Identity====&lt;br /&gt;
&lt;br /&gt;
[[Internet Identity]] is a blockchain authentication system enables you to sign in securely and anonymously to dapps on the Internet Computer. This makes logging into dapps much easier and safer for dapp consumers.&lt;br /&gt;
&lt;br /&gt;
===Network Nervous System===&lt;br /&gt;
&lt;br /&gt;
The [[Network Nervous System]] (NNS) is the control center where the Internet Computer’s nodes and subnets are organized, tracked, and managed. The NNS is an automated in-protocol governance that makes the network self-directed. Unlike Bitcoin or Ethereum, this means the Internet Computer blockchain can update itself via community-led proposals so the community directs the network.&lt;br /&gt;
&lt;br /&gt;
Advantages of an NNS:&lt;br /&gt;
* Seamless community-driven evolution and governance without disruptive hard forks&lt;br /&gt;
* Gives control of the network to token holders as well as node providers (in Bitcoin or Ethereum, only nodes affect the upgrades of the network)&lt;br /&gt;
* Accelerates the number of improvements or updates to the network. In 2021, the Internet Computer had dozens of updates, giving the IC very fast development iterations while also being decentralized.&lt;br /&gt;
&lt;br /&gt;
===Novel “canister” smart contract framework===&lt;br /&gt;
&lt;br /&gt;
Smart contracts have proven to be powerful new types of software programs because of their tamperproof nature. They can host financial contracts and systems with billions of dollars in value. However, to use Ethereum as an example, they are a limited way of expressing complex applications. More simply, building an &amp;quot;airbnb clone&amp;quot; entirely with Ethereum smart contracts would be impractical, but easy with the Internet Computer&#039;s canister smart contracts. A rough but helpful analogy may be &amp;quot;you can build complex calculations and logic with an excel spreadsheet, but you would not build Twitter by cobbling up many spreadsheets.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Attributes that make Internet Computer smart contracts powerful ways of building dapps:&lt;br /&gt;
* Orthogonal persistence (data lives in persistent memory pages) making managing data much easier&lt;br /&gt;
* [[Actor model]] gives dapps a time-tested model for concurrency that scales (deterministic parallelism, internally and externally)&lt;br /&gt;
* Dapps get access to system APIs uncommon in Ethereum smart contracts (but common tools in centralized solutions) such as public randomness&lt;br /&gt;
* Integration with other blockchains e.g. canister smart contracts will in the future be able to have Bitcoin addresses&lt;br /&gt;
&lt;br /&gt;
===Service Nervous System (SNS) economic framework for dapps===&lt;br /&gt;
&lt;br /&gt;
The Internet Computer’s SNS feature will allow developers to create decentralized, token-based governance systems for their dapps.&lt;br /&gt;
&lt;br /&gt;
This unlocks a few possibilities: &lt;br /&gt;
* An advanced DAO can take control of a dapp&lt;br /&gt;
* Dapps run under the control of a community (full decentralization)&lt;br /&gt;
* Dapps run as extensions of the blockchain (microeconomy with macroeconomy)&lt;br /&gt;
* Dapps can raise funds into the SNS; funds controlled by community&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Governance_of_the_Internet_Computer&amp;diff=1145</id>
		<title>Governance of the Internet Computer</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Governance_of_the_Internet_Computer&amp;diff=1145"/>
		<updated>2021-12-17T12:03:22Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Types and clarifications&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Internet Computer blockchain is governed by the Network Nervous System&amp;lt;ref&amp;gt;https://medium.com/dfinity/the-network-nervous-system-governing-the-internet-computer-1d176605d66a&amp;lt;/ref&amp;gt;. The NNS is an algorithmic governance system that oversees the network and the token economics that make it possible to build DeFi dapps, open internet services and enterprise systems.&lt;br /&gt;
&lt;br /&gt;
Holders of the Internet Computer’s ICP utility tokens can lock their tokens in &#039;&#039;neurons&#039;&#039; to participate in governance and contribute to decision-making, such as voting to determine whether or not a new collection of nodes (also called a subnet) should be added to the network. &lt;br /&gt;
&lt;br /&gt;
=== Why the Internet Computer needs a Network Nervous System&amp;lt;ref&amp;gt;https://medium.com/dfinity/the-network-nervous-system-governing-the-internet-computer-1d176605d66a&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
The Internet Computer is a distributed protocol run by a network of node machines, which are hosted in different data centers. The nodes communicate with one another over the internet to achieve a consensus on what the Internet Computer’s state should be. A collection of nodes engaging in consensus is called a subnet. On top of this underlying communication and consensus protocol, the Internet Computer hosts &#039;&#039;canisters&#039;&#039;, which are stateful programs that can also communicate with each other. The state of all of the canisters has to be replicated across all of the nodes. Therefore, to allow the Internet Computer to scale indefinitely, the network is made up of not just one subnet, but multiple subnets.&lt;br /&gt;
&lt;br /&gt;
Different subnets can communicate with one another, enabling canisters that are hosted on different subnets to also communicate with each other. For the Internet Computer to scale on-demand, the network must be able to add new subnets over time to increase compute capacity. Moreover, the robustness of the subnets can be improved by adding new nodes to them over time. Eventually, the Internet Computer will run millions of nodes at scale. This means that there needs to be a mechanism by which the nodes and subnets are organized, tracked, and managed. For example, decisions must be made about when subnets and nodes should be added or removed. In addition, the Internet Computer was launched with an initial feature set, which evolves over time. Therefore, the Internet Computer needs to be able to make decisions on how to evolve the protocol in a distributed manner.&lt;br /&gt;
&lt;br /&gt;
=Network Nervous System overview=&lt;br /&gt;
&lt;br /&gt;
The NNS is a tokenized open governance system that is responsible for managing the Internet Computer. For example, the NNS stores information about what nodes belong to which subnet and the code each replica runs. The NNS also makes decisions about how to update this information and evolve the IC.&lt;br /&gt;
&lt;br /&gt;
The NNS is realized by a set of &#039;&#039;[[canisters|canister smart contracts]]&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;NNS canister smart contracts&#039;&#039;&#039; ===&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;Ledger canister:&#039;&#039;&#039; The ledger canister stores the ICP utility &#039;&#039;token balance&#039;&#039; of each principal and the history of ICP &#039;&#039;transactions&#039;&#039;.&lt;br /&gt;
# &#039;&#039;&#039;Governance canister:&#039;&#039;&#039; The governance canister receives and stores &#039;&#039;Proposals&#039;&#039;, which are suggestions for how the Internet Computer should be changed. These proposals can then be voted on. The governance canister also tracks &#039;&#039;Neurons&#039;&#039;, which determine who is allowed to participate in governance.&lt;br /&gt;
# &#039;&#039;&#039;Registry canister:&#039;&#039;&#039; The registry canister stores the configuration of the whole Internet Computer, e.g., which nodes belong to a certain subnet and the software each node should run.&lt;br /&gt;
# &#039;&#039;&#039;Cycles minting canister&#039;&#039;&#039;: This canister is responsible for minting &#039;&#039;cycles&#039;&#039;, the fuel for canisters for computation, communication and storage. The cycles minting canister is involved in the initialization of canisters to give them a starting amount of cycles as well as when canisters are topped-up with additional cycles.&lt;br /&gt;
# &#039;&#039;&#039;Root canister&#039;&#039;&#039;: The root canister is the controller of all other NNS canisters and responsible for upgrading them.&lt;br /&gt;
# &#039;&#039;&#039;Lifeline canister&#039;&#039;&#039;: The lifeline canister is the controller of the root canister and responsible for upgrading it. &lt;br /&gt;
# &#039;&#039;&#039;Archive canisters&#039;&#039;&#039;: The canisters that store the history of the ledger transactions once there are too many transactions to keep in a single canister.&lt;br /&gt;
#&#039;&#039;&#039;Genesis token canister:&#039;&#039;&#039; This is the canister that was used to initialize the neurons that already existed during genesis.&lt;br /&gt;
&lt;br /&gt;
The canisters that users of the Internet Computer are interacting with the most are the first two: the ledger canister for making transactions, and the governance canister for staking tokens and submitting and voting on proposals.&lt;br /&gt;
&lt;br /&gt;
= Ledger canister &amp;amp; ICP utility tokens in the NNS =&lt;br /&gt;
[[ICP token|ICP utility tokens]] are managed by the ledger canister, which stores two things: accounts and transactions. An account record keeps track of how many tokens are in the possession of a given [[principal]] (i.e., an identity by which a user is authenticated on the Internet Computer). Tokens can then be sent from one account to another, and this is recorded in the transactions of the ledger canister.&lt;br /&gt;
&lt;br /&gt;
In the NNS, ICP utility tokens are used for three different things:&lt;br /&gt;
&lt;br /&gt;
# ICP tokens facilitate &#039;&#039;&#039;participation in governance&#039;&#039;&#039; (more below on how the neurons are connected with the tokens).&lt;br /&gt;
# Those who participate in governance and those who provide compute capacity by operating note machines are &#039;&#039;&#039;rewarded&#039;&#039;&#039; in ICP tokens.&lt;br /&gt;
# ICP tokens are used for &#039;&#039;&#039;conversion into cycles&#039;&#039;&#039;, which are fuel for canisters for computation, communication and storage.&lt;br /&gt;
&lt;br /&gt;
=Governance Canister=&lt;br /&gt;
&lt;br /&gt;
The governance canister is responsible for holding &#039;&#039;neurons&#039;&#039;, determining who is allowed to participate in governance. Moreover, it stores proposals, which are suggestions for changes to the Internet Computer, and the information associated with proposals that decides if these suggestions should be implemented. If a proposal is adopted, the governance canister automatically executes the decision. Finally, the governance canister distributes rewards to those neurons who participated in voting and contributed to the decision making.&lt;br /&gt;
&lt;br /&gt;
== Neurons ==&lt;br /&gt;
Neurons contain &#039;&#039;locked&#039;&#039; ICP utility tokens. These staked tokens are not liquid and cannot be transferred freely to others.&lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;Neuron Attributes&#039;&#039;&#039; ===&lt;br /&gt;
Each neuron stores a number of neuron attributes. Some of the most important ones are the following:&lt;br /&gt;
&lt;br /&gt;
* How many ICP tokens are &#039;&#039;locked&#039;&#039; in the neuron. This information is accessible both by a neuron referencing an account on the ledger canister that stores the neuron&#039;s balance and by a cached stake on the governance canister.&lt;br /&gt;
* A &#039;&#039;controller&#039;&#039; principal, which identifies who manages the neuron&#039;s actions.&lt;br /&gt;
* A unique &#039;&#039;neuron ID&#039;&#039;&lt;br /&gt;
*The neuron&#039;s &#039;&#039;dissolve delay.&#039;&#039; Intuitively, the dissolve delay defines the earliest time when the locked ICP tokens can be unlocked. This time can be increased to up to 8 years but it can only be decreased by waiting for time to pass. A neuron can either be &#039;&#039;non-dissolving&#039;&#039;, &#039;&#039;dissolving&#039;&#039;, or &#039;&#039;dissolved.&#039;&#039; If a neuron is non-dissolving, its set dissolve delay is kept stable and the timer is not running down. The neuron can then be set to dissolving, which means that the dissolve delay is decreasing with the time. Finally, if a the dissolve delay reaches 0, the neuron is dissolved and the locked tokens can be transferred out of the neuron. &lt;br /&gt;
*The &#039;&#039;age&#039;&#039;, which is between 0 and 4 years. A neuron&#039;s age determines the time since when then neuron has last entered the non-dissolving state.&lt;br /&gt;
A neuron&#039;s dissolve delay determines a neuron&#039;s &#039;&#039;eligibility&#039;&#039; to participate in voting. Namely, only those neurons with tokens locked for at least six months are eligible to participate in governance. This incentivizes neuron holders to vote such that the value of their tokens is maximized for a future date. Assuming the value of the tokens is a rough proxy for the network’s success, this incentivizes neuron holders to vote in the long-term interest of the Internet Computer.&lt;br /&gt;
&lt;br /&gt;
A neuron&#039;s &#039;&#039;voting power&#039;&#039; depends on how many tokens a neuron has locked, as well as the neuron&#039;s dissolve delay and age. Intuitively, those who are more committed to the Internet Computer, as they have locked their tokens for longer or have already staked them for a long time, have more voting power. The voting power increases with the dissolve delay and the age.&lt;br /&gt;
&lt;br /&gt;
Finally, the number of rewards that each neuron receives depends on the number of votes that the neuron participated in as well as the neuron&#039;s voting power.&lt;br /&gt;
&lt;br /&gt;
===How to lock tokens in a neuron&amp;lt;ref&amp;gt;https://medium.com/dfinity/the-network-nervous-system-governing-the-internet-computer-1d176605d66a&amp;lt;/ref&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
As a user, there are different [[ICP staking options]] to stake ICP utility tokens in a neuron. The effect of such an operation is that these ICP tokens are transferred to a ledger account that is associated with a newly created neuron. The tokens are thus locked and cannot be used freely by the neuron holder.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example.&#039;&#039;&#039; &#039;&#039;Let’s assume that User B, who has an account (A1) on the ledger canister, would like to lock a hundred tokens in a neuron. To do so, User B sends a command to the NNS specifying the number of tokens and User B’s corresponding principal ID.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;A transaction is then recorded on the ledger, which specifies that some tokens are sent from the original account (A1) of the user to a new account (A2), which also creates the new account (A2) that holds the locked tokens. A new neuron is created in the governance canister that specifies that User B is the one controlling this neuron and that specifies that the amount of locked tokens is defined by the new ledger account A2.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Externally, it’s not visible that the new account (A2) holds locked tokens or is in any way related to the original account (A1). Nevertheless, this account is in fact controlled by the neuron, which means that the tokens are not liquid and that User B cannot transfer the tokens or convert the tokens into cycles.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The main reason for a user to lock tokens in a neuron is to be able to participate in voting and get voting rewards. Both are described in more detail below.&lt;br /&gt;
== Proposals ==&lt;br /&gt;
A proposal is a suggestion for a change to the Internet Computer. More technically, a proposal describes a &#039;&#039;method&#039;&#039; in a canister that is called if the proposal is accepted. Moreover, it describes the &#039;&#039;parameters&#039;&#039; with which the method will be called.&lt;br /&gt;
&lt;br /&gt;
The Internet Computer supports a variety of different proposal &#039;&#039;topics&#039;&#039;. Here are some examples of topics that are supported in the NNS governance canister:&lt;br /&gt;
* #SubnetManagement Proposals: This considers topology changes. The example proposal above about whether a node should be added to a subnet falls into this category.&lt;br /&gt;
* #NodeAdmin Proposals: This concerns the administration of node machines. An example of a proposal could specify that all of the nodes in a subnet should be updated.&lt;br /&gt;
* #NetworkEconomics Proposals: This concerns the administration of network economics. For example: what rewards should be paid to the node machine providers?&lt;br /&gt;
*#Motion Proposals: These proposals do not have a direct execution of a method as a consequence but are merely there to record the opinion of the community on a specified matter.&lt;br /&gt;
&lt;br /&gt;
== Voting and proposal lifecycle ==&lt;br /&gt;
&lt;br /&gt;
=== Submitting a proposal ===&lt;br /&gt;
Any eligible neuron can [[submit a proposal]]. To avoid being inundated by useless proposals, a user submitting a proposal has to pay a fee of 1 ICP when submitting a proposal, that they will receive back if the proposal is adopted (but that they will not receive back if the proposal is rejected).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example.&#039;&#039;&#039; &#039;&#039;Let’s consider a User C who would like to suggest that a new subnet is created that initially consists of two nodes: Node 1 and Node 2. Once User C controls a neuron, they can submit a proposal by specifying their neuron ID, the type of proposal that they would like to submit, and the proposal’s parameters. In our example, the proposal specifies that a new subnet should be created and the proposal&#039;s parameters consist of the initial nodes Node 1 and Node 2. Upon the receipt of this proposal, the governance canister first checks that this user is indeed the one controlling the neuron with the given ID and that this neuron is eligible to vote. If the requirements are met, the proposal is added to the governance canister.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
After a proposal is submitted by an eligible neuron, the proposal is created and stored in the governance canister. Moreover, the governance canister computes and stores additional information with each proposal. First, the [[voting power]] of each neuron is computed and stored together with the proposal. The sum of all of these voting powers also determines the &#039;&#039;total voting power&#039;&#039; associated with a given proposal.&lt;br /&gt;
&lt;br /&gt;
When a new proposal is created, the number of “yes” votes associated with the proposal is already increased by the proposer’s voting power. This reflects that the proposal already has the support of the user submitting it.&lt;br /&gt;
&lt;br /&gt;
Moreover, each proposal has an associated &#039;&#039;voting period,&#039;&#039; which determines the period of time over which votes for this proposal are accepted.&lt;br /&gt;
&lt;br /&gt;
=== Viewing NNS Proposals ===&lt;br /&gt;
You can see all the NNS proposals on the Internet Computer dashboard: https://dashboard.internetcomputer.org/governance&lt;br /&gt;
&lt;br /&gt;
===Discussing NNS Proposals===&lt;br /&gt;
&lt;br /&gt;
Voters can freely discuss proposal anywhere they like. A lot of NNS proposals are discussed on the developer forum: https://forum.dfinity.org/c/roadmap/29.&lt;br /&gt;
&lt;br /&gt;
===Voting on a proposal===&lt;br /&gt;
After a proposal is submitted and added to the governance canister, other users who control neurons can [[ICP voting options|vote on the proposal]]. Currently, the most user-friendly way to vote on NNS proposals is via the NNS Frontend dapp: https://nns.ic0.app/. For voting, users would first learn which are the open proposals on the governance canister that they can actually vote on. This information is available, for example on Internet Computer dashboard: https://dashboard.internetcomputer.org/governance or in the [[NNS frontend dapp]]. &lt;br /&gt;
&lt;br /&gt;
If a neuron votes in favor of a proposal, the governance canister adds this neuron’s voting power, as stored with the proposal, to the “Yes”-votes associated with the proposal. Likewise, if a neuron votes against a proposal, the governance canister adds the neuron’s voting power to the “No”-votes of the proposal.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example.&#039;&#039;&#039; &#039;&#039;Assume that a given User D would like to reject the proposal that was just added by User C. To do so, User D would send their neuron ID and a “no” vote to the governance canister. The governance canister would check that the vote is coming from the correct user who controls the neuron and confirm that the neuron is eligible to vote. If the conditions are met, the governance canister would then add the voting power of User D to the “no” votes.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
====Neuron following and liquid democracy====&lt;br /&gt;
&lt;br /&gt;
Users may not have the time or knowledge to participate in all voting decisions. Therefore, instead of directly voting on proposals, neuron holders may choose to delegate their vote to other neurons that they trust with certain decisions. This concept of delegating the right to vote to other voters who then effectively vote with more voting power is called &#039;&#039;liquid democracy.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Concretely, for each proposal topic a neuron can [[How to follow neurons|specify a set of other neurons that it would like to &#039;&#039;follow&#039;&#039;]] &#039;&#039;(so-called followees)&#039;&#039;. In addition, a neuron can specify a set of followees for &amp;quot;all other topics&amp;quot; that are not covered by specific rules. The governance canister keeps track of this relation of follower and followee neurons. It then automatically casts a vote for a follower neuron based on the decision of the followees. In particular, if more than 50% of the followees vote &amp;quot;yes&amp;quot;, then a &amp;quot;yes&amp;quot; vote is cast for the follower and if at least 50% of the followees vote &amp;quot;no&amp;quot;, then a &amp;quot;no&amp;quot; vote is cast for the follower. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example&#039;&#039;&#039;. &#039;&#039;Consider neuron N1 that follows the set of neurons {N2, N3, N4, N5} on all proposal topics. Consider now that a proposal is submitted by another neuron N6. Assume in a first scenario that first N2 votes &amp;quot;No&amp;quot; and then N3 votes &amp;quot;No&amp;quot; on the proposal. In that case, the governance canister will also send a &amp;quot;No&amp;quot; vote for N1 two out of four followees voted &amp;quot;No&amp;quot; (which also means that it is not possible anymore to get more than 50% &amp;quot;Yes&amp;quot; votes). Assume a second scenario where N2 votes &amp;quot;Yes&amp;quot; and then N3 votes &amp;quot;Yes&amp;quot; on the proposal. In that case, no vote is sent yet for N1. However, if either N4 and N5 also send a &amp;quot;Yes&amp;quot; vote, a &amp;quot;Yes&amp;quot; vote is also cast for N1.&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
This liquid democracy has great advantages. First, it allows even neurons that do not have enough knowledge of a certain topic to nevertheless participate in governance by choosing the neurons that they trust with certain decisions and by delegating their vote to them. In particular, a neuron can choose a different set of followees for different topics. Moreover, this mechanism allows neuron holders to get voting rewards from voting participation even if they do not have time to actively participate in all voting decision.&lt;br /&gt;
&lt;br /&gt;
=== Proposal decision and wait-for-quiet ===&lt;br /&gt;
A proposal can be &#039;&#039;decided&#039;&#039; in two ways:&lt;br /&gt;
# &#039;&#039;&#039;Absolute Majority before the voting period ends&#039;&#039;&#039;: At any point, even before the voting period ends, if an absolute majority (more than half of the total voting power stored in the proposal) has voted Yes, then the proposal is adopted and if an absolute majority has voted No, then the proposal is rejected.&lt;br /&gt;
# &#039;&#039;&#039;Simple Majority at the voting period’s end&#039;&#039;&#039;: When the voting period ends, if a simple majority (more than half of the cast votes) has voted Yes and the number of these Yes-votes constitute at least 3% of the total voting power, then the proposal is adopted. Otherwise, the proposal is rejected.&lt;br /&gt;
&lt;br /&gt;
What also plays into this is the fact that the governance voting algorithm also applies &#039;&#039;wait-for-quiet&#039;&#039;. The idea of wait-for-quiet is to decide proposals quickly when all voters agree, but increase the time that neurons can vote for proposals that are controversial. That means that the voting period can be dynamically increased, depending on the neurons’ votes. In particular, each time a proposal’s outcome is turned (either a Yes-majority is turned to a No-majority or vice versa), the proposal’s deadline is increased. Currently, a proposal&#039;s initial voting period is 4 days and can be increased by at most another 4 days. That is, the voting period that is taken into account for the above rules can be between 4 and 8 days, depending on the voting activity.&lt;br /&gt;
&lt;br /&gt;
=== Proposal execution ===&lt;br /&gt;
Recall that a proposal defines a method, a canister, and some parameters. As soon as a proposal is adopted, the defined method on the specified canister is called with the given parameters. This is done fully automatically by the governance canister. &lt;br /&gt;
&lt;br /&gt;
== Voting Rewards ==&lt;br /&gt;
Contributing to decision-making is one incentive for voters to lock their neurons, but they are also &#039;&#039;rewarded&#039;&#039; for participating in network governance.&lt;br /&gt;
&lt;br /&gt;
Specifically, each day the governance canister considers which proposal can be settled. It is then considered for each neuron in how many proposals they participated and with which voting power. Depending on this, the neurons get rewarded. Concretely, rewards are added to a neuron&#039;s attributed that is called &#039;&#039;maturity.&#039;&#039; Maturity represents ICP utility token that are not yet minted. &lt;br /&gt;
&lt;br /&gt;
A neuron holder can then profit from the maturity in two ways:&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;Spawn maturity:&#039;&#039;&#039; A neuron holder can choose to [[How to spawn a neuron|spawn a new neuron]] to get liquid ICP utility tokens worth the voting rewards. Spawning a new neuron has the effect that a new neuron with a new associated account on the ledger will be created, which contains the amount of staked ICP utility token equivalent to the maturity of the original neuron. In fact, the new tokens are minted and transferred to the new account, which is also recorded in the ledger canister. The new neuron has a small dissolve delay of 7 days. This means that users only need to wait a short amount of time to be able to unlock the tokens and use them freely, no matter what dissolve delay the original neuron has.&lt;br /&gt;
# &#039;&#039;&#039;Merge maturity&#039;&#039;&#039;: A neuron holder can choose to [[merge maturity]] to reinvest the voting rewards in the existing neuron. This neuron operation adds the ICP utility token equivalent of the maturity to the neuron&#039;s stake and adjusts the neuron&#039;s age accordingly. Effectively this means that the maturity is reinvested in the neuron and contributes to the neuron&#039;s voting power.&lt;br /&gt;
&lt;br /&gt;
= Cycles Minting Canister and Cycles&amp;lt;ref&amp;gt;https://medium.com/dfinity/the-network-nervous-system-governing-the-internet-computer-1d176605d66a&amp;lt;/ref&amp;gt; =&lt;br /&gt;
Besides governance participation and voting rewards, tokens can also be converted into cycles, which fuel computation and storage on the Internet Computer. Each canister on the Internet Computer, except for those on the NNS, uses cycles for computations and has some cycles stored within it. While the token price may vary over time, the goal of the cycles is to keep the price of computation roughly consistent over time.&lt;br /&gt;
&lt;br /&gt;
The canister responsible for converting ICP utility tokens into cycles is the &#039;&#039;Cycles Minting Canister.&#039;&#039; To convert cycles for creating or topping-up a canister, a user needs to send ICP utility tokens to the Cycles Minting Canister. This canister then burns the tokens and mints the cycles. &lt;br /&gt;
&lt;br /&gt;
The Cycles Minting Canister only facilitates the conversion of ICP utility tokens to cycles but not the other way around. Cycles are burned in canisters when they use computation and storage over time. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example.&#039;&#039;&#039; &#039;&#039;Consider User E who runs a canister on the Internet Computer and would like to top up the cycles of this canister so that it can perform even more computations. Also assume that this canister currently has 700 trillion cycles and User E would like to increase this number by 200 trillion. To do so, the user would send a command to the NNS that specifies the action of topping up their canister. Upon receiving this command, a transaction is made from the user’s account to the Cycles Minting Canister. As a result of this transaction, the Cycles Minting Canister would burn the tokens, mint new cycles, and send these freshly minted cycles to the user’s canister, meaning the canister balance is now 900 trillion cycles.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=References=&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Principal&amp;diff=1144</id>
		<title>Principal</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Principal&amp;diff=1144"/>
		<updated>2021-12-17T08:54:11Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Include max length of principals&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;principal&#039;&#039;&#039; is an identifier for an entity on the IC such as a user, a canister smart contract, or a subnet.  &lt;br /&gt;
&lt;br /&gt;
== Types of principals ==&lt;br /&gt;
There are several types of principals.&lt;br /&gt;
&lt;br /&gt;
=== Management principal ===&lt;br /&gt;
The management principal is used to reference the management canister.&lt;br /&gt;
&lt;br /&gt;
=== Opaque principal ===&lt;br /&gt;
An opaque principal is chosen by the system. This kind of principal is used to reference any canister that is not the management canister.&lt;br /&gt;
&lt;br /&gt;
=== Self-Authenticating principal ===&lt;br /&gt;
A self-authenticating principal is a hash of a public signature key. This kind of principal is for instance used to reference a subnet or user.&lt;br /&gt;
&lt;br /&gt;
=== Derived principal ===&lt;br /&gt;
The principal is derived from a registering principal. This type of principal is currently not used.&lt;br /&gt;
&lt;br /&gt;
=== Anonymous principal ===&lt;br /&gt;
The anonymous principal is used to reference an anonymous user.&lt;br /&gt;
&lt;br /&gt;
== Representation ==&lt;br /&gt;
&lt;br /&gt;
=== Binary ===&lt;br /&gt;
A principal consists of a variable-length byte array of up to 29 bytes. The last byte is used to indicate the type. The table below gives the type inferred from the last byte.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Byte&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Type&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|none&lt;br /&gt;
|Management &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x01&amp;lt;/code&amp;gt;&lt;br /&gt;
|Opaque&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x02&amp;lt;/code&amp;gt;&lt;br /&gt;
|Self-Authenticating&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x03&amp;lt;/code&amp;gt;&lt;br /&gt;
|Derived&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x04&amp;lt;/code&amp;gt;&lt;br /&gt;
|Anonymous&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x05&amp;lt;/code&amp;gt;&lt;br /&gt;
|Unassigned&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Textual ===&lt;br /&gt;
A principal is shown in textual format by prepending it with its [[wikipedia:Cyclic_redundancy_check#CRC-32_algorithm|CRC-32]] value in big-endian byte order, applying [[wikipedia:Base32|Base32]] encoding without padding, grouping characters by length five, and separating them by a hyphen. The maximal length of the encoding, including hyphens, is 63 characters. The table below gives some common principals.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Principal&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;aaaaa-aa&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Management Canister|management canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rrkah-fqaaa-aaaaa-aaaaq-cai&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Governance Canister|governance canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ryjl3-tyaaa-aaaaa-aaaba-cai&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Ledger Canister|ledger canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Network Nervous System|network nervous system]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;2vxsx-fae&amp;lt;/code&amp;gt;&lt;br /&gt;
|anonymous user&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Principal&amp;diff=1143</id>
		<title>Principal</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Principal&amp;diff=1143"/>
		<updated>2021-12-17T08:44:19Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Added explanation how different types of principals are created.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A &#039;&#039;&#039;principal&#039;&#039;&#039; is an identifier for an entity on the IC such as a user, a canister smart contract, or a subnet.  &lt;br /&gt;
&lt;br /&gt;
== Types of principals ==&lt;br /&gt;
There are several types of principals.&lt;br /&gt;
&lt;br /&gt;
=== Management principal ===&lt;br /&gt;
The management principal is used to reference the management canister.&lt;br /&gt;
&lt;br /&gt;
=== Opaque principal ===&lt;br /&gt;
An opaque principal is chosen by the system. This kind of principal is used to reference any canister that is not the management canister.&lt;br /&gt;
&lt;br /&gt;
=== Self-Authenticating principal ===&lt;br /&gt;
A self-authenticating principal is a hash of a public signature key. This kind of principal is for instance used to reference a subnet or user.&lt;br /&gt;
&lt;br /&gt;
=== Derived principal ===&lt;br /&gt;
The principal is derived from a registering principal. This type of principal is currently not used.&lt;br /&gt;
&lt;br /&gt;
=== Anonymous principal ===&lt;br /&gt;
The anonymous principal is used to reference an anonymous user.&lt;br /&gt;
&lt;br /&gt;
== Representation ==&lt;br /&gt;
&lt;br /&gt;
=== Binary ===&lt;br /&gt;
A principal consists of a variable-length byte array. The last byte is used to indicate the type. The table below gives the type inferred from the last byte.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Byte&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Type&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|none&lt;br /&gt;
|Management &lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x01&amp;lt;/code&amp;gt;&lt;br /&gt;
|Opaque&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x02&amp;lt;/code&amp;gt;&lt;br /&gt;
|Self-Authenticating&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x03&amp;lt;/code&amp;gt;&lt;br /&gt;
|Derived&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x04&amp;lt;/code&amp;gt;&lt;br /&gt;
|Anonymous&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;0x05&amp;lt;/code&amp;gt;&lt;br /&gt;
|Unassigned&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Textual ===&lt;br /&gt;
A principal is shown in textual format by prepending it with its [[wikipedia:Cyclic_redundancy_check#CRC-32_algorithm|CRC-32]] value in big-endian byte order, applying [[wikipedia:Base32|Base32]] encoding without padding, grouping characters by length five, and separating them by a hyphen. The table below gives some common principals.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Principal&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;aaaaa-aa&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Management Canister|management canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;rrkah-fqaaa-aaaaa-aaaaq-cai&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Governance Canister|governance canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;ryjl3-tyaaa-aaaaa-aaaba-cai&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Ledger Canister|ledger canister]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe&amp;lt;/code&amp;gt;&lt;br /&gt;
|[[Network Nervous System|network nervous system]]&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;code&amp;gt;2vxsx-fae&amp;lt;/code&amp;gt;&lt;br /&gt;
|anonymous user&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1115</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=1115"/>
		<updated>2021-11-23T11:29:38Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* FAQs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Feel free to join in. All are welcome!&lt;br /&gt;
== Topics Central ==&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[Internet Computer vision]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[Internet Identity]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[Internet Computer Performance]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
* [[Custody, Staking, and Voting]]&lt;br /&gt;
*[[Network Nervous System]]&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[Myths and facts]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Canister smart contracts]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
* [[Best practices for a high traffic dapp launch]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [[Known limitations of the IC]]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
== FAQs ==&lt;br /&gt;
&lt;br /&gt;
* [[FAQ]]&lt;br /&gt;
== How-To section ==&lt;br /&gt;
How-Tos are step-by-step instructions for specific, narrow goals.&lt;br /&gt;
* [[How-To: Claim neurons for seed participants]]&lt;br /&gt;
&lt;br /&gt;
== Tutorial section ==&lt;br /&gt;
Tutorials are guided introductions to user stories, intended for first-time users and characterized by a shallow learning curve.&lt;br /&gt;
* [[Tutorial: Neuron control]]&lt;br /&gt;
&lt;br /&gt;
== Contributors ==&lt;br /&gt;
&lt;br /&gt;
=== Housekeeping Rules ===&lt;br /&gt;
&lt;br /&gt;
* Please refrain from redundancy, such as referring to the Internet Computer in article titles. This is, after all, the Internet Computer Wiki.&lt;br /&gt;
* Please carefully consider your use of capitalisation. Most words in titles should be capitalised. DFINITY is always stylised in all-caps.&lt;br /&gt;
&lt;br /&gt;
=== How to Contribute ===&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;br /&gt;
&lt;br /&gt;
Number of articles: {{NUMBEROFARTICLES}}&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=DFINITY_Foundation&amp;diff=243</id>
		<title>DFINITY Foundation</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=DFINITY_Foundation&amp;diff=243"/>
		<updated>2021-11-08T14:18:22Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Added links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;DFINITY&#039;&#039;&#039; is a name for the &#039;&#039;&#039;DFINITY Foundation&#039;&#039;&#039;, or more correctly &#039;&#039;&#039;“DFINITY Stiftung”&#039;&#039;&#039;, a not-for-profit organization headquartered in [[Zürich]], Switzerland, that was originally founded in [[Zug]] in October 2016.&lt;br /&gt;
&lt;br /&gt;
DFINITY contributes technology to the [[Internet Computer]] blockchain, provides support for its ecosystem, and advocates for its application as a technology stack. DFINITY holds an endowment of [[ICP tokens]] that are currently worth billions of dollars, which it sells as needed to fund its operations. While DFINITY has no shareholders or members, DFINITY acts competitively, just like a startup, with the aim of succeeding in its mission.&lt;br /&gt;
&lt;br /&gt;
A stated objective of DFINITY is to create a [[blockchain singularity]], in which over time, the majority of humanity’s systems and services are rebuilt, and reimagined, upon the [[Internet Computer]] blockchain using a new form of [[smart contracts]] called [[canisters]]. DFINITY is held to its mission, which is defined in its [[notarial deed]], by a regulatory framework operated by the [[Central Switzerland BVG and Foundation Supervisory Authority (ZBSA)]]. &lt;br /&gt;
&lt;br /&gt;
The organization can be described as [[Blockchain Maximalist]] and decentralization-forward. DFINITY runs what is arguably blockchain&#039;s largest R&amp;amp;D operation, which employs many famous [[cryptographers]], computer science researchers and senior engineers. It currently employs around 200 full-time personnel, with many working from dedicated research centers in locations including Zürich, Switzerland, and California, and from numerous remote teams. DFINITY is constantly integrating new talent into its team and scaling its R&amp;amp;D effort. By its own estimates, it will grow to employ thousands of R&amp;amp;D and operations staff in the coming years.&lt;br /&gt;
&lt;br /&gt;
The name DFINITY derives from &#039;&#039;&#039;D&#039;&#039;&#039;ecentralized in&#039;&#039;&#039;FINITY&#039;&#039;&#039;, which was first used by its founder [[Dominic Williams]] in 2015 to refer to technical research he had performed with the hope of enabling [[Ethereum]] to become a true [[world computer]] blockchain. Once it became apparent that a large and highly specialized team would need to perform years of blue sky R&amp;amp;D to realize the [[world computer]] vision, DFINITY became a standalone project. Today, the [[Internet Computer]] incorporates a blockchain architecture that has been totally rethought from the ground up in order to provide world computer capabilities. &lt;br /&gt;
&lt;br /&gt;
DFINITY has become a go-to organization for talented individuals interested in working at the leading edge of blockchain, computer science and cryptography.&lt;br /&gt;
&lt;br /&gt;
After several years of R&amp;amp;D, which effort continues today, the Internet Computer blockchain underwent [[Genesis]] on the 10th of May 2021.&lt;br /&gt;
&lt;br /&gt;
DFINITY links&lt;br /&gt;
* [https://dfinity.org homepage]&lt;br /&gt;
* [https://twitter.com/dfinity tweets]&lt;br /&gt;
* [https://medium.com/dfinity articles on Medium]&lt;br /&gt;
* [https://forum.dfinity.org/ developer forum]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ subreddit]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=242</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=242"/>
		<updated>2021-11-08T14:09:31Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Topics Central */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[Myths and facts]]&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=241</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=241"/>
		<updated>2021-11-08T14:06:47Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=240</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=240"/>
		<updated>2021-11-08T14:04:10Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Topics Central */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=239</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=239"/>
		<updated>2021-11-08T14:03:55Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* FAQs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Index_of_dapps_on_the_Internet_Computer_ecosystem&amp;diff=238</id>
		<title>Index of dapps on the Internet Computer ecosystem</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Index_of_dapps_on_the_Internet_Computer_ecosystem&amp;diff=238"/>
		<updated>2021-11-08T13:59:43Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Created page with &amp;quot;* [https://identity.ic0.app Internet Identity] * [https://nns.ic0.app NNS dapp] * [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/ DSCVR] * [https://c7fao-laaaa-aaaae-aaa4q-c...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [https://identity.ic0.app Internet Identity]&lt;br /&gt;
* [https://nns.ic0.app NNS dapp]&lt;br /&gt;
* [https://h5aet-waaaa-aaaab-qaamq-cai.raw.ic0.app/ DSCVR]&lt;br /&gt;
* [https://c7fao-laaaa-aaaae-aaa4q-cai.ic0.app/ Distrikt]&lt;br /&gt;
* [https://7e6iv-biaaa-aaaaf-aaada-cai.ic0.app/ OpenChat]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=237</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=237"/>
		<updated>2021-11-08T13:50:26Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For dapp developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Index of dapps on the Internet Computer]]&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=236</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=236"/>
		<updated>2021-11-08T13:47:04Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* For computer scientists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=235</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=235"/>
		<updated>2021-11-08T13:46:44Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Topics Central */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[ICP token]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]]&lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Test_editing_the_Internet_Computer_Wiki&amp;diff=234</id>
		<title>Test editing the Internet Computer Wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Test_editing_the_Internet_Computer_Wiki&amp;diff=234"/>
		<updated>2021-11-08T10:13:56Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: Created page with &amp;quot;This is a test page. Feel free to add, remove and edit the text below.  This is a test &amp;quot;hello world&amp;quot;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a test page. Feel free to add, remove and edit the text below.&lt;br /&gt;
&lt;br /&gt;
This is a test &amp;quot;hello world&amp;quot;&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
	<entry>
		<id>https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=233</id>
		<title>Internet Computer wiki</title>
		<link rel="alternate" type="text/html" href="https://wiki.internetcomputer.org/w/index.php?title=Internet_Computer_wiki&amp;diff=233"/>
		<updated>2021-11-08T10:12:29Z</updated>

		<summary type="html">&lt;p&gt;Jens Groth: /* Using the wiki */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Welcome to the Internet Computer Wiki!&amp;lt;/strong&amp;gt; Here you will find technical documentation covering all aspects of the Internet Computer Protocol. Feel free to join in. All are welcome!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Topics Central =&lt;br /&gt;
&lt;br /&gt;
* [[Internet computer]]&lt;br /&gt;
* [[DFINITY]]&lt;br /&gt;
&lt;br /&gt;
== For blockchain &amp;amp; crypto enthusiasts ==&lt;br /&gt;
* [[The cryptography behind the Internet Computer]]&lt;br /&gt;
* [https://www.reddit.com/r/dfinity/ r/dfinity]&lt;br /&gt;
* [[How to stake on the Internet computer]]&lt;br /&gt;
* [[Tokenomics of the Internet Computer]]&lt;br /&gt;
* [[Governance of the Internet Computer]]&lt;br /&gt;
&lt;br /&gt;
== For dapp developers ==&lt;br /&gt;
* [[Internet Computer for dapp developers]]&lt;br /&gt;
* [[Best practices for NFT drops]]&lt;br /&gt;
* [https://forum.dfinity.org/ IC community developer forum]&lt;br /&gt;
&lt;br /&gt;
== For computer scientists ==&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
== For node owners ==&lt;br /&gt;
* [[Internet Computer for node owners]] &lt;br /&gt;
&lt;br /&gt;
= FAQs =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Simple English FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[ELI5: What is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How fast is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: How big is the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the function of the ICP utility token?]]&lt;br /&gt;
* [[ELI5: What is the consensus algorithm of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What kind of dapps are possible on the Internet Computer?]]&lt;br /&gt;
* [[ELI5: What is the history of the Internet Computer?]]&lt;br /&gt;
* [[ELI5: Why can the Internet Computer do these things other blockchains cannot?]]&lt;br /&gt;
* [[ELI5: What are some dapps or examples of products that are running on the Internet Computer?]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Crypto community FAQ&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* [[How does the Internet Computer compare with Bitcoin?]]&lt;br /&gt;
* [[How does the Internet Computer compare with Ethereum?]]&lt;br /&gt;
* [[How decentralized is the Internet computer?]]&lt;br /&gt;
* [[How do I build on the Internet Computer?]]&lt;br /&gt;
* [[How much does it cost to run a dapp on the Internet Computer?]]&lt;br /&gt;
* [[How does the Internet Computer governed?]]&lt;br /&gt;
* [[What are the tokenomics of the Internet Computer?]]&lt;br /&gt;
* [[How do I stake on the Internet Computer?]]&lt;br /&gt;
* [[What do smart contracts on the Internet computer look like?]]&lt;br /&gt;
* [[How does the Internet Computer scale?]]&lt;br /&gt;
* [[Where can I see the code of the Internet Computer?]]&lt;br /&gt;
* [https://dashboard.internetcomputer.org/ Internet Computer dashboard] &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Computer Scientists FAQ&#039;&#039;&#039;&lt;br /&gt;
* [[The Internet Computer for Computer Scientists]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using the wiki ==&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
&lt;br /&gt;
Use this page to test editing&lt;br /&gt;
* [[Test editing the Internet Computer Wiki]]&lt;/div&gt;</summary>
		<author><name>Jens Groth</name></author>
	</entry>
</feed>