From 37f37b898e16fd3644bbc6f9f08f2d5a075fa2df Mon Sep 17 00:00:00 2001 From: "Yung Beef 4.2" <89395745+Yung-Beef@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:27:55 -0300 Subject: [PATCH 1/3] Update Energy.md --- docs/basics/lightpaper/architecture/Energy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/basics/lightpaper/architecture/Energy.md b/docs/basics/lightpaper/architecture/Energy.md index 78029854..349609b9 100644 --- a/docs/basics/lightpaper/architecture/Energy.md +++ b/docs/basics/lightpaper/architecture/Energy.md @@ -1,6 +1,6 @@ --- id: energy -title: About Energy +title: Energy displayed_sidebar: homeSidebar --- @@ -8,10 +8,10 @@ Energy allows usage of the Subsocial network without tokens, and has a few key p Energy is not actually a token, and cannot be transferred between accounts, and transaction fees are lower when using energy. To create energy, tokens need to be burned, but the energy can be created in a different account than the one burning the tokens. -The energy coefficient is an on-chain parameter that can be set by the chain's governance. This coefficient determines how much cheaper transactions are when energy is used instead of SUB. At the time of writing, the energy coefficient is 5x, meaning transaction fees are 5x cheaper if energy is used. +The energy coefficient is an on-chain parameter that can be set by the chain's governance. This coefficient determines how much cheaper transactions are when energy is used instead of SUB. At the time of writing, the energy coefficient is 2x, meaning transaction fees are 2x cheaper if energy is used. For example, Alice burns 10 SUB and creates 10 energy in her account. -This allows Alice to perform roughly 2500 actions by using energy, instead of only 500 actions by using SUB tokens. +This allows Alice to perform roughly 1,000 actions by using energy, instead of only 500 actions by using SUB tokens. Thus, Alice is incentivized to convert her tokens into energy, creating deflationary pressure on the token. Alice could instead burn those 10 tokens and create the 10 energy in Bob's account, allowing Bob to use Subsocial without ever getting SUB tokens. From 1c65c9c93c42ed51b33eb097c8f686d8d3f85573 Mon Sep 17 00:00:00 2001 From: "Yung Beef 4.2" <89395745+Yung-Beef@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:28:37 -0300 Subject: [PATCH 2/3] Update Overview.md --- docs/basics/glossary/Overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics/glossary/Overview.md b/docs/basics/glossary/Overview.md index e9f05569..93578d44 100644 --- a/docs/basics/glossary/Overview.md +++ b/docs/basics/glossary/Overview.md @@ -59,7 +59,7 @@ Here is how to [get SUB](https://docs.subsocial.network/docs/tutorials/GetSUB/ge ## Energy Energy is created by burning SUB, and can be used to perform actions on the network with reduced fees. Energy is not transferrable. When burning SUB to create energy, a multiplier (known as the energy coefficient) greater than 1 is used, meaning that users will be able to perform more actions with 1 energy -than if they spent 1 SUB directly. For example, with an energy coefficient of 5x, Alice can perform 5x more actions with 1 energy than she can with 1 SUB. +than if they spent 1 SUB directly. For example, with an energy coefficient of 2x, Alice can perform 2x more actions with 1 energy than she can with 1 SUB. Energy can be created in a different wallet than the one that burnt the SUB tokens, allowing friends or applications to let you have energy without having to worry about SUB tokens. From 26a0144d11c9289c7b3aa6ea73e3558fec9f813a Mon Sep 17 00:00:00 2001 From: "Yung Beef 4.2" <89395745+Yung-Beef@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:30:06 -0300 Subject: [PATCH 3/3] Update energy.md --- docs/develop/concepts/sponsored/energy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/develop/concepts/sponsored/energy.md b/docs/develop/concepts/sponsored/energy.md index 88390814..b76efaa5 100644 --- a/docs/develop/concepts/sponsored/energy.md +++ b/docs/develop/concepts/sponsored/energy.md @@ -9,7 +9,7 @@ Energy allows usage of the Subsocial network without tokens, and has a few key p Currently, there are 2 ways to generate energy which will be explained below. ### Burn SUB tokens -You can burn SUB tokens to generate energy for your account, or for another account. The fee used for each transaction will be significantly lower than if you were to use SUB tokens. How much cheaper the energy is set by energy coefficient. Energy coefficient is an on-chain parameter that can be set by the chain's governance. At the time of writing, the energy coefficient is 5x, meaning transaction fees are 5x cheaper if energy is used. +You can burn SUB tokens to generate energy for your account, or for another account. The fee used for each transaction will be significantly lower than if you were to use SUB tokens. How much cheaper the energy is set by energy coefficient. Energy coefficient is an on-chain parameter that can be set by the chain's governance. At the time of writing, the energy coefficient is 2x, meaning transaction fees are 2x cheaper if energy is used. For more details, you can read it [here](/docs/basics/lightpaper/architecture/energy). By using this method, app developer can onboard their user easily by burning their own tokens for them. This can make the user experience for the app much better by making the user not have to worry about buying tokens to use the app. To see how to do it, you can read it [here](/docs/develop/sdk/energy)