2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-03 15:40:19 +00:00
Go to file
2021-03-19 12:51:20 +01:00
.github Added building and publishing of ARMv7 binary 2021-03-19 12:51:20 +01:00
img Added some info to main screen and a screenshot of it to readme. 2021-03-18 12:35:40 +01:00
src Added features to control building with or without GUI, or use Edge engine on Windows. 2021-03-19 11:37:49 +01:00
.gitignore Added a restriction for IANA domain zones. Users cannot mine them from now on. 2021-03-11 01:41:19 +01:00
alfis_ie10.reg Made a full refactoring of synchronization primitives between settings, keystore, blockchain and miner. 2020-04-18 21:31:40 +02:00
alfis.toml Fixed getting zone difficulty. 2021-03-17 20:05:05 +01:00
build.rs Added a restriction for IANA domain zones. Users cannot mine them from now on. 2021-03-11 01:41:19 +01:00
Cargo.toml Added features to control building with or without GUI, or use Edge engine on Windows. 2021-03-19 11:37:49 +01:00
globe_icon.ico Implemented loading Settings from file. Implemented mining of Keystore (key pair). Changed Transaction structure a lot. Added an icon to windows build. Changed some HTML. 2021-01-18 00:18:35 +01:00
LICENSE Added license file. 2021-02-16 18:40:19 +01:00
other-tlds.txt Added more restriction for blocks and zone names. 2021-03-16 12:24:31 +01:00
README.md Added some info to main screen and a screenshot of it to readme. 2021-03-18 12:35:40 +01:00

Alfis

Builds Releases

Alternative Free Identity System

This project represents a minimal blockchain with no coin, capable of sustaining any number of domain name zones and domains.

Screenshot

Screenshot

Building

On every OS

You can build Alfis by issuing cargo build and cargo run commands in a directory of cloned repository. If you want to build release version you need to do cargo build --release as usual.

On Windows

You don't need any additional steps to build Alfis, just stick to the MSVC version of Rust.

On Windows (MINGW64)

If you'd rather use Gnu version of Rust you can build Alfis by these steps:

pacman -S git mingw64/mingw-w64-x86_64-rust mingw64/mingw-w64-x86_64-cargo-c
git clone https://github.com/Revertron/Alfis.git
cd Alfis
cargo build

On Linux

If you are building on Linux you must ensure that you have libwebkitgtk library installed. You can do it by issuing this command: sudo apt install libwebkit2gtk-4.0-dev (on Debian/Ubuntu and derivatives).