This is the first version of FELT. It's using our own code for smart contracts and data providers to run federated learning. This repository doesn't correspond to the latest version of app.feltlabs.ai
Federated learning on blockchain.
It is a set of contracts that support federated learning projects. Allowing anonymous participation of data providers and preventing malicious activities. Data providers get rewards for sharing their data and resulting models can be further sold.
This repository contains 3 main components:
-
Smart contracts
Smart contracts are the main building part of this project. We are using Brownie library for building, testing and deploying.
-
Felt package
Felt is build as a python package which provides tools for nodes and builder. For nodes it provides code which runs server, watches for new training plans and execute them.
For builders it provide tools for creating new plan.
-
Web application
Web application located at folder
webapp
is intended as main page landing page of the token.
-
Install python, recommended is 3.9 or higher
-
You need to install all dependencies. I recommend using
Makefile
when possible by running:make install-node # once finished, activate the python environment source venv/bin/activate
Or else you need to install it like this:
pip install -r requirements.txt -r requirements-lib.txt python -m pip install -e .
-
Create
.env
file using.env_example
it should look something like this:export PRIVATE_KEY='0xc...' export NODE1_PRIVATE_KEY='0xc...' export NODE2_PRIVATE_KEY='0xc...' ### API key for web3 storage export WEB3_STORAGE_TOKEN='ab...'
Private keys are just standard private keys which you generated.
WEB3_STORAGE_TOKEN
needs to be obtained from web3.storage. -
Install ganache-cli which is needed for local development.
npm install -g ganache-cli
or
yarn add global ganache-cli
-
Deploy contracts using brownie
brownie run deploy -I
This will start a fresh Ganache instance in the background and open interactive console.
Once the console is running you can create new plan by typing into console:run("create_plan")
You can also make changes to
scripts/create_plan.py
in order to create some different plan.Keep the console running while testing the contracts.
Using web application: once you run
brownie run deploy -I
you can start the web application use it to create projects and plans. -
Finally you need to run the nodes with the data. The current deployment (for local testing) registers 2 nodes based on the private keys you have in
.env
. The instructions for running a node were printed during previous stepbrownie run deploy -I
. The command for running node should look something like this:felt-node-worker --chain 1337 --contract 0x48066c61E640bF4FaA8a7F81ab55FCA59bE4C752 --account node1 --data test
For running a new node open a new terminal (run the
source venv/bin/activate
if neede) and execute command above:felt-node-worker --chain 1337 --contract 0x48066c61E640bF4FaA8a7F81ab55FCA59bE4C752 --account node1 --data test # or felt-node-worker --chain 1337 --contract 0x48066c61E640bF4FaA8a7F81ab55FCA59bE4C752 --account node2 --data test
You need to open 2 terminals and run both nodes in order to coplete the training plan. In other case one node would wait for other forever.
This executes the
felt/node/background_worker.py
. Right now the nodes are using sample data which are fix typed in the code and you can change it based on your needs. This will be changed in a near future. -
If you want to be able to deploy to testnets, do the following.
Set your WEB3_INFURA_PROJECT_ID, and PRIVATE_KEY environment variables.
You can get a WEB3_INFURA_PROJECT_ID by getting a free trial of Infura. At the moment, it does need to be infura with brownie. If you get lost, follow the instructions at https://ethereumico.io/knowledge-base/infura-api-key-guide/. You can find your PRIVATE_KEY from your ethereum wallet like metamask.
You'll also need testnet ETH. You can get ETH into your wallet by using the faucet for the appropriate testnet. For Kovan, a faucet is available at https://linkfaucet.protofire.io/kovan.
You can add your environment variables to a .env file. You can use the .env_example in this repo as a template, just fill in the values and rename it to '.env'.
Here is what your .env should look like:
export WEB3_INFURA_PROJECT_ID=<PROJECT_ID> export PRIVATE_KEY=<PRIVATE_KEY>
-
Install the React client dependencies.
cd ./webapp yarn install
or
cd ./webapp npm install
-
In case you want to test the dApp with local blockchain (ganache-cli), you can run local instance as:
brownie run deploy -I # If needed install the requirements first: pip install -r requirements.txt -r requirements-lib.txt python -m pip install -e .
-
The application requires access to contract ABI and deployment address. Make sure that
webapp/src/artifacts
directory has same content asbuild
directory. This should be handled bydeploy.py
script, but in some cases these directories can differ and you should copy content frombuild
towebapp/src/artifacts
.
When running local blockchain (ganache-cli) MetaMask sometimes gives transaction error:
the tx doesn't have the correct nonce. account has nonce of: X tx has nonce of: Y
This can be solved by opening MetaMask > Settings > Advanced > Reset Account
. Or sometimes just switching to different blockchain and then back to localhost also helps.
When you close the Brownie console, the Ganache instance also terminates and the deployment artifacts are deleted.
To retain your deployment artifacts (and their functionality) you can launch Ganache yourself prior to launching Brownie. Brownie automatically attaches to the ganache instance where you can deploy the contracts. After closing Brownie, the chain and deployment artifacts will persist.
To run the test suite:
brownie test
To deploy your contracts to the mainnet or one of the test nets, first modify scripts/deploy.py
to use a funded account.
Then for testnet:
brownie run deploy --network polygon-test
You may also wish to adjust Brownie's network settings.
For contracts deployed on a live network, the deployment information is stored permanently unless you:
- Delete or rename the contract file or
- Manually remove the
build/
directory