Bitcoin Forum
June 19, 2024, 09:40:47 AM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5]  All
  Print  
Author Topic: [ETI] Etica - A cryptocurrency for Open Source medical research  (Read 1888 times)
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
January 19, 2023, 09:13:55 AM
 #81

The first Etica wallet GUI will be released soon:

https://www.reddit.com/r/Etica/comments/10fjjlx/etica_wallet_gui_is_coming/
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
January 20, 2023, 05:10:24 AM
 #82

Hi,

In this video I make an in depth presentation of the Etica Wallet GUI and it's current stage of development. I also explain how it will be possible to deploy Etica smart contracts on a testnet to try Etica and get more familiar with Etica voting system:

https://youtu.be/78eBl4OOxFQ
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
February 07, 2023, 01:24:15 PM
 #83

Hi,

I’m proud to announce we have a way to make the Etica smart contract upgradable through hardforks like EIPs.
A major step for Etica, since the immutalbility of the smart contract was the main challenge for the one smart contract model (Etica aims to have only one main Smart contract).

This is a short explanation without getting too much into technical details of how Etica blockchain will make its core smart contract upgradable.

I. Ethereum blockchain. Are smart contracts truly not upgradable?

Etica being a fork of Ethereum, over the past few days I’ve been diving into Ethereum source code and it appears the immutability of smart contracts is more a social design than a technical design. Meaning there is no technical system to make smart contracts code immutable.
In facy every smart contract has a clear separation between its data and its code. On ethereum, accounts are defined by 4 fields:
Nonce, Balance, Storage and Code.
Smart contract accounts store their code (ByteCode) in the Code field while externally owned accounts (user accounts) have the Code field set to empty.

Let’s focus on Smart contracts accounts:

The Storage is the data of the smart contract. The storage contains all the variables that can change value (Arrays, Maps, Uints…), it’s like a dedicated database of the smart contract.

The Code field contains the ByteCode. The Bytecode is a constant and it also contains all the Constants of the smart contract. The ByteCode is the code that is executed when a user sends a transaction to the smart contract address. When we interact with a smart contract we simply send inputs to the ByteCode of a smart contract that will run its ByteCode and update its storage data based on its previous state.

This clear separtion between Storage and Code is what will make it possible for Etica to implement a system to Upgrade the Etica smart contract.

II. Etica smart contract upgrades process

The updates of Etica smart contract should be extremely rare. Nonetheless it is important we can update the smart contract when necessary at least for security.

Etica smart contract upgrades will work almost exaclty like EIPs. Once community agrees on a change there will be a block height chosen to acitvate the new smart contract changes.

Upgrade Process, example:

Etica mainnet smart contract address is and will remain: 0x34c61EA91bAcdA647269d4e310A86b875c09946f

Let’s call current version of Etica smart contract V1 and let’s see how Etica could upgrade to a V2 while keeping its address (0x34c…946f) and its storage.

a) Deploy new ByteCode
First we deploy the new smart contract Code V2 (ByteCode) on the Etica mainnet. Now there is a new smart contract (at a random address, for instance: 0x39c…729e) that has the new ByteCode on its Code field. But remember the ByteCode is a constant and after compilation, there is clear separation between what is constant (ByteCode) and the Data (Storage). So the new smart contract will have its own Storage clearly separated from its ByteCode.

b) Update Etica ByteCode
Now, it is possible for the Network to agree to take the ByteCode of new smart contract (0x39c…729) and to put it in the Etica Smart contract’s Code field. After this, Etica smart contract will keep same address and same storage but the ByteCode that will run when will call 0x34c…946f address will correspond to the new bytecode.

c) Config file on every node
On the blockchain source code there will be a config file that every node will use to keep track of such Etica Smart contract upgrades.

Example:
EticaV2Block: 3 000 000
EticaV2ReferenceAddress: 0x39c…729

For instance in this example every node will know that at block 3 000 000 they have to update Etica smart contract with Bytecode stored at address 0x39c…729.

d) That’s it. Now Etica smart contract code would be upgraded while preserving its address and storage.

Potential Limits?
Let me know if you see potential limits with this system, so far it appears to be a great system to upgrade the smart contract and everything works as expected after tests

The good news is now it will be possible to update the Etica Smart Contract providing the community votes for an upadte or if a security issue is found.

Article on how it works:
https://medium.com/@kevinwad.oss/etica-how-etica-smart-contract-upgrades-will-work-9b1e61035966
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
March 15, 2023, 05:16:16 AM
 #84


I'm glad to announce that Etica GUI v1 is now ready for pre release.

We are actively testing and optimising last details with members of the community.

The wallet is currently being tested on windows and linux computers but we are waiting for a first person to test the wallet on a mac. If you have a mac at disposal for testing the Etica GUI feel free to reach out to me on reddit, discord or telegram.

Here is the wallet: https://github.com/etica/etica-gui

To run the wallet open a command line and run:

    git clone https://github.com/etica/etica-gui.git

    cd etica-gui

    npm install

    npm start

Feel free to test the wallet and share your feedbacks.

I'll shot a demo video of the wallet as soon as I can.


For linux users, if you encounter this error : "Error initialising Geth"

you need to run this command and then make a new wallet with a new directory:

chmod +x yourpathtoeticaguihere/etica-gui/bin/linux/geth

and then once you have tested the wallet cancel the permission:

chmod -x yourpathtoeticaguihere/etica-gui/bin/linux/geth

It's due to the fact the executable needs permission to create a directory for the wallet, but it will be ok if the user creates the directory instead of the executable. I'll update the wallet so that it doesn't need this permission anymore

Once all tests are done we will confirm the first release of the wallet.

In one month Etica blockchain will be one year old, let's keep going
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
April 05, 2023, 06:13:15 AM
 #85

Hi,

I'm glad to announce the release of Etica GUI Wallet v1.0.0, the first version of our graphical user interface (GUI) wallet. It's a huge step for Etica as from now we won't depend on Metamask to secure both ETI and EGAZ:

GitHub Release: https://github.com/etica/etica-gui/releases/tag/v1.0.0

Supported OS: Linux & Windows (no tests on Mac yet)

Stay tuned for upcoming tutorials and videos about how to use all wallet features.

Installation should be pretty fast and easy (details in the link above), here are the commands:

git clone https://github.com/etica/etica-gui.git
cd etica-gui/
npm install
npm start

Please feel free to reach out to me on Discord, Reddit, or Telegram if you have any questions or feedback

reddit: https://www.reddit.com/r/Etica
discord: https://discord.gg/CrTKpETKXc
telegram: https://t.me/eticaprotocol
kevinwad
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
September 05, 2023, 11:49:30 AM
 #86

A new ETI mining pool is now available!

http://eti.etica-stats.org/

@ def [Mine2.Live] from discord has launched a new ETI mining pool. The pool is running with Eticapool open source software and works exactly like eticapool.com.

Make sure to try this new pool in order to increase ETI mining pools decentralisation.

For reminder def [Mine2.Live] is also running other Etica ecosystem platforms:

Etica blockchain explorer:

http://explorer.etica-stats.org/

EGAZ faucet:

http://faucet.etica-stats.org/

EGAZ mining pool:

http://egaz.etica-stats.org

Network stats (doesn't include all nodes, only those that entered specific code to be detected by this site):

http://stats.etica-stats.org/


https://www.reddit.com/r/Etica/comments/16aj8g4/a_new_eti_mining_pool_is_now_available_def/
ztaz
Member
**
Offline Offline

Activity: 602
Merit: 11


View Profile
December 01, 2023, 04:26:50 PM
 #87

is there a pool of at least one worker on the coin or are they all lying/buggy Huh
Pages: « 1 2 3 4 [5]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!