From e6dc691f15cda80b5b5e73eaf4adf53910a4be3d Mon Sep 17 00:00:00 2001
From: librelois <elois@ifee.fr>
Date: Mon, 5 Aug 2019 22:17:43 +0200
Subject: [PATCH] [build+docs] rename project durs -> dunitrust

---
 .gitlab-ci.yml                                |  8 ++--
 Cargo.lock                                    | 30 ++++++-------
 Cargo.toml                                    |  2 +-
 README.md                                     |  4 +-
 .../Cargo.toml                                | 12 +++---
 .../README.md                                 |  4 +-
 .../src/cli.rs                                | 12 +++---
 .../src/init.rs                               |  0
 .../src/main.rs                               |  8 ++--
 doc/en/dev/developing-a-durs-module.md        | 20 ++++-----
 doc/en/dev/setup-your-dev-environment.md      |  2 +-
 doc/en/user/install-durs.md                   | 24 +++++------
 doc/en/user/synchronise-durs-node.md          |  6 +--
 .../developpeurs/developper-un-module-durs.md | 14 +++----
 .../installer-son-environnement-de-dev.md     | 18 ++++----
 doc/fr/developpeurs/tests-auto.md             |  2 +-
 doc/fr/utilisateurs/installer-durs.md         | 42 +++++++++----------
 .../utilisateurs/synchroniser-noeud-durs.md   |  2 +-
 lib/core/conf/src/constants.rs                |  4 +-
 lib/core/conf/src/keys.rs                     |  4 +-
 lib/core/conf/src/lib.rs                      | 16 +++----
 lib/core/core/Cargo.toml                      |  2 +-
 lib/core/core/src/change_conf.rs              |  2 +-
 lib/core/core/src/commands/dbex.rs            |  2 +-
 lib/core/core/src/commands/keys.rs            |  2 +-
 lib/core/core/src/commands/mod.rs             | 18 ++++----
 lib/core/core/src/commands/modules.rs         |  2 +-
 lib/core/core/src/commands/reset.rs           |  2 +-
 lib/core/core/src/commands/start.rs           |  2 +-
 lib/core/core/src/constants.rs                |  4 +-
 lib/core/core/src/errors.rs                   |  6 +--
 lib/core/core/src/lib.rs                      | 10 ++---
 lib/core/core/src/logger.rs                   |  4 +-
 lib/core/core/src/router.rs                   |  2 +-
 lib/core/message/Cargo.toml                   |  2 +-
 lib/core/message/src/events.rs                |  2 +-
 lib/core/message/src/lib.rs                   | 10 ++---
 lib/core/message/src/requests.rs              |  2 +-
 lib/core/message/src/responses.rs             |  4 +-
 lib/core/module/src/lib.rs                    |  8 ++--
 lib/core/network/Cargo.toml                   |  2 +-
 lib/core/network/cli/mod.rs                   |  4 +-
 lib/core/network/cli/sync.rs                  |  4 +-
 lib/core/network/events.rs                    |  2 +-
 lib/core/network/lib.rs                       |  2 +-
 lib/core/network/requests.rs                  |  2 +-
 .../blockchain/blockchain-dal/Cargo.toml      |  2 +-
 .../blockchain-dal/src/constants.rs           |  2 +-
 .../blockchain-dal/src/entities/block.rs      |  2 +-
 .../blockchain-dal/src/entities/fork_tree.rs  |  2 +-
 .../blockchain-dal/src/entities/identity.rs   |  2 +-
 .../blockchain-dal/src/entities/mod.rs        |  2 +-
 .../blockchain-dal/src/entities/sources.rs    |  2 +-
 .../blockchain-dal/src/filters/identities.rs  |  2 +-
 .../blockchain-dal/src/filters/mod.rs         |  2 +-
 .../blockchain/blockchain-dal/src/lib.rs      |  2 +-
 .../blockchain-dal/src/readers/balance.rs     |  2 +-
 .../blockchain-dal/src/readers/block.rs       |  2 +-
 .../blockchain-dal/src/readers/certs.rs       |  2 +-
 .../src/readers/currency_params.rs            |  2 +-
 .../blockchain-dal/src/readers/fork_tree.rs   |  2 +-
 .../blockchain-dal/src/readers/identity.rs    |  2 +-
 .../blockchain-dal/src/readers/mod.rs         |  2 +-
 .../blockchain/blockchain-dal/src/tools.rs    |  2 +-
 .../blockchain-dal/src/writers/block.rs       |  2 +-
 .../src/writers/certification.rs              |  2 +-
 .../blockchain-dal/src/writers/dividend.rs    |  2 +-
 .../blockchain-dal/src/writers/fork_tree.rs   |  2 +-
 .../blockchain-dal/src/writers/identity.rs    |  2 +-
 .../blockchain-dal/src/writers/mod.rs         |  2 +-
 .../blockchain-dal/src/writers/requests.rs    |  2 +-
 .../blockchain-dal/src/writers/transaction.rs |  2 +-
 lib/modules/blockchain/blockchain/Cargo.toml  |  2 +-
 .../blockchain/blockchain/src/constants.rs    |  2 +-
 lib/modules/blockchain/blockchain/src/dbex.rs |  2 +-
 .../blockchain/src/dubp/apply/mod.rs          |  2 +-
 .../blockchain/src/dubp/check/hashs.rs        |  2 +-
 .../blockchain/src/dubp/check/mod.rs          |  2 +-
 .../blockchain/blockchain/src/dubp/mod.rs     |  2 +-
 .../blockchain/blockchain/src/dunp/mod.rs     |  2 +-
 .../blockchain/blockchain/src/dunp/queries.rs |  2 +-
 .../blockchain/src/dunp/receiver.rs           |  2 +-
 .../blockchain/blockchain/src/events/mod.rs   |  2 +-
 .../blockchain/src/events/received.rs         |  2 +-
 .../blockchain/blockchain/src/events/sent.rs  |  2 +-
 .../blockchain/src/fork/fork_algo.rs          |  2 +-
 .../blockchain/blockchain/src/fork/mod.rs     |  2 +-
 .../blockchain/src/fork/revert_block.rs       |  2 +-
 .../blockchain/src/fork/rollback.rs           |  2 +-
 .../blockchain/src/fork/stackable_blocks.rs   |  2 +-
 lib/modules/blockchain/blockchain/src/lib.rs  |  2 +-
 .../blockchain/blockchain/src/requests/mod.rs |  2 +-
 .../blockchain/src/requests/received.rs       |  2 +-
 .../blockchain/src/requests/sent.rs           |  2 +-
 .../blockchain/src/responses/mod.rs           |  2 +-
 .../blockchain/src/responses/received.rs      |  2 +-
 .../blockchain/src/responses/sent.rs          |  2 +-
 .../src/sync/apply/blocks_worker.rs           |  2 +-
 .../blockchain/src/sync/apply/mod.rs          |  2 +-
 .../blockchain/src/sync/apply/txs_worker.rs   |  2 +-
 .../blockchain/src/sync/apply/wot_worker.rs   |  2 +-
 .../src/sync/download/json_reader_worker.rs   |  2 +-
 .../blockchain/src/sync/download/mod.rs       |  2 +-
 .../blockchain/blockchain/src/sync/mod.rs     |  2 +-
 lib/modules/skeleton/Cargo.toml               |  2 +-
 lib/modules/skeleton/lib.rs                   |  4 +-
 lib/modules/tui/lib.rs                        |  2 +-
 lib/modules/ws2p-v1-legacy/Cargo.toml         |  2 +-
 lib/modules/ws2p-v1-legacy/src/constants.rs   |  2 +-
 lib/modules/ws2p-v1-legacy/src/events/mod.rs  |  2 +-
 .../ws2p-v1-legacy/src/events/received.rs     |  2 +-
 lib/modules/ws2p-v1-legacy/src/events/sent.rs |  2 +-
 lib/modules/ws2p-v1-legacy/src/heads.rs       |  2 +-
 lib/modules/ws2p-v1-legacy/src/lib.rs         |  4 +-
 .../ws2p-v1-legacy/src/requests/mod.rs        |  2 +-
 .../ws2p-v1-legacy/src/requests/received.rs   |  2 +-
 .../ws2p-v1-legacy/src/requests/sent.rs       |  2 +-
 .../ws2p-v1-legacy/src/responses/mod.rs       |  2 +-
 .../ws2p-v1-legacy/src/responses/received.rs  |  2 +-
 .../ws2p-v1-legacy/src/responses/sent.rs      |  2 +-
 .../ws2p-v1-legacy/src/serializers/block.rs   |  2 +-
 .../src/serializers/certification.rs          |  2 +-
 .../ws2p-v1-legacy/src/serializers/head.rs    |  2 +-
 .../src/serializers/identity.rs               |  2 +-
 .../src/serializers/membership.rs             |  2 +-
 .../ws2p-v1-legacy/src/serializers/mod.rs     |  2 +-
 .../ws2p-v1-legacy/src/serializers/revoked.rs |  2 +-
 .../src/serializers/transaction.rs            |  2 +-
 .../ws2p-v1-legacy/src/subcommands/mod.rs     |  2 +-
 .../src/subcommands/prefered.rs               |  2 +-
 lib/modules/ws2p-v1-legacy/src/ws2p_db.rs     |  2 +-
 .../src/ws_connections/handler.rs             |  2 +-
 .../src/ws_connections/messages.rs            |  2 +-
 .../src/ws_connections/meta_datas.rs          |  2 +-
 .../ws2p-v1-legacy/src/ws_connections/mod.rs  |  2 +-
 .../src/ws_connections/requests/mod.rs        |  2 +-
 .../src/ws_connections/requests/received.rs   |  2 +-
 .../src/ws_connections/requests/sent.rs       |  2 +-
 .../src/ws_connections/responses/mod.rs       |  2 +-
 .../src/ws_connections/responses/received.rs  |  2 +-
 .../src/ws_connections/responses/sent.rs      |  2 +-
 .../src/ws_connections/states.rs              |  2 +-
 lib/modules/ws2p/ws2p-messages/lib.rs         |  2 +-
 .../ws2p/ws2p-messages/v2/api_features.rs     |  2 +-
 lib/modules/ws2p/ws2p-messages/v2/connect.rs  |  2 +-
 lib/modules/ws2p/ws2p-messages/v2/mod.rs      |  2 +-
 lib/modules/ws2p/ws2p-messages/v2/ok.rs       |  2 +-
 .../ws2p-messages/v2/payload_container.rs     |  2 +-
 .../ws2p/ws2p-messages/v2/req_responses.rs    |  2 +-
 lib/modules/ws2p/ws2p-messages/v2/requests.rs |  2 +-
 .../ws2p/ws2p-messages/v2/secret_flags.rs     |  2 +-
 .../ws2p-protocol/src/connection_state.rs     |  2 +-
 .../ws2p/ws2p-protocol/src/constants.rs       |  2 +-
 .../ws2p/ws2p-protocol/src/controller.rs      |  2 +-
 .../src/controller/meta_datas.rs              |  2 +-
 .../src/controller/on_message.rs              |  2 +-
 .../src/controller/on_message/ack_msg.rs      |  2 +-
 .../src/controller/on_message/connect_msg.rs  |  2 +-
 .../src/controller/on_message/ok_msg.rs       |  2 +-
 .../src/controller/on_message/secret_flags.rs |  2 +-
 .../ws2p-protocol/src/controller/on_open.rs   |  2 +-
 lib/modules/ws2p/ws2p-protocol/src/lib.rs     |  2 +-
 .../ws2p/ws2p-protocol/src/orchestrator.rs    |  2 +-
 .../ws2p/ws2p-protocol/src/websocket.rs       |  2 +-
 lib/modules/ws2p/ws2p/src/constants.rs        |  2 +-
 .../ws2p/ws2p/src/controllers/handler.rs      |  2 +-
 .../src/controllers/incoming_connections.rs   |  2 +-
 lib/modules/ws2p/ws2p/src/controllers/mod.rs  |  2 +-
 .../src/controllers/outgoing_connections.rs   |  2 +-
 lib/modules/ws2p/ws2p/src/errors.rs           |  2 +-
 lib/modules/ws2p/ws2p/src/generate_peer.rs    |  2 +-
 lib/modules/ws2p/ws2p/src/lib.rs              |  4 +-
 lib/modules/ws2p/ws2p/src/services/mod.rs     |  2 +-
 .../ws2p/ws2p/src/services/outgoing.rs        |  2 +-
 .../ws2p/ws2p/tests/connection_negociation.rs |  2 +-
 lib/tests-tools/common-tests-tools/Cargo.toml |  2 +-
 .../common-tests-tools/src/collections/mod.rs |  2 +-
 lib/tests-tools/common-tests-tools/src/lib.rs |  2 +-
 .../common-tests-tools/src/logger.rs          |  2 +-
 lib/tools/crypto/src/bases/b16.rs             |  2 +-
 lib/tools/crypto/src/bases/b58.rs             |  2 +-
 lib/tools/crypto/src/bases/b64.rs             |  2 +-
 lib/tools/crypto/src/bases/mod.rs             |  2 +-
 lib/tools/crypto/src/hashs/mod.rs             |  2 +-
 lib/tools/crypto/src/keys/bin_signable.rs     |  2 +-
 lib/tools/crypto/src/keys/ed25519.rs          |  2 +-
 lib/tools/crypto/src/keys/mod.rs              |  2 +-
 lib/tools/crypto/src/keys/text_signable.rs    |  2 +-
 lib/tools/crypto/src/lib.rs                   |  2 +-
 lib/tools/currency-params/src/constants.rs    |  2 +-
 .../currency-params/src/currencies_codes.rs   |  2 +-
 lib/tools/currency-params/src/db.rs           |  2 +-
 .../src/genesis_block_params.rs               |  2 +-
 .../src/genesis_block_params/v10.rs           |  2 +-
 lib/tools/currency-params/src/lib.rs          |  2 +-
 lib/tools/documents/src/blockstamp.rs         |  2 +-
 lib/tools/documents/src/documents/block.rs    |  2 +-
 .../documents/src/documents/block/v10.rs      |  2 +-
 .../documents/src/documents/certification.rs  |  2 +-
 .../src/documents/certification/v10.rs        |  2 +-
 lib/tools/documents/src/documents/identity.rs |  2 +-
 .../documents/src/documents/identity/v10.rs   |  2 +-
 .../documents/src/documents/membership.rs     |  2 +-
 .../documents/src/documents/membership/v10.rs |  2 +-
 lib/tools/documents/src/documents/mod.rs      |  4 +-
 .../documents/src/documents/revocation.rs     |  2 +-
 .../documents/src/documents/revocation/v10.rs |  4 +-
 .../documents/src/documents/transaction.rs    |  2 +-
 lib/tools/documents/src/lib.rs                |  4 +-
 lib/tools/documents/src/parsers/blocks.rs     |  2 +-
 .../documents/src/parsers/certifications.rs   |  2 +-
 lib/tools/documents/src/parsers/identities.rs |  2 +-
 .../documents/src/parsers/memberships.rs      |  2 +-
 lib/tools/documents/src/parsers/mod.rs        |  2 +-
 lib/tools/documents/src/parsers/revoked.rs    |  2 +-
 .../documents/src/parsers/transactions.rs     |  2 +-
 .../documents/src/text_document_traits.rs     |  2 +-
 lib/tools/network-documents/README.md         |  2 +-
 lib/tools/network-documents/src/host.rs       |  2 +-
 lib/tools/network-documents/src/lib.rs        |  2 +-
 .../network-documents/src/network_endpoint.rs |  6 +--
 .../network-documents/src/network_head.rs     |  2 +-
 .../network-documents/src/network_head_v2.rs  |  2 +-
 .../network-documents/src/network_head_v3.rs  |  2 +-
 .../network-documents/src/network_peer.rs     |  2 +-
 lib/tools/network-documents/src/url.rs        |  2 +-
 lib/tools/wot/data/mod.rs                     |  2 +-
 lib/tools/wot/data/rusty.rs                   |  2 +-
 lib/tools/wot/lib.rs                          |  2 +-
 lib/tools/wot/operations/centrality.rs        |  2 +-
 lib/tools/wot/operations/distance.rs          |  2 +-
 lib/tools/wot/operations/file.rs              |  2 +-
 lib/tools/wot/operations/mod.rs               |  2 +-
 lib/tools/wot/operations/path.rs              |  2 +-
 release/arch/armv7/build-armv7.sh             | 10 ++---
 release/arch/linux-x64/build-lin-x64.sh       |  8 ++--
 release/arch/win64/build-win64.sh             | 12 +++---
 release/docker/Dockerfile                     | 18 ++++----
 release/extra/systemd/durs.service            |  4 +-
 239 files changed, 390 insertions(+), 390 deletions(-)
 rename bin/{durs-server => dunitrust-server}/Cargo.toml (69%)
 rename bin/{durs-server => dunitrust-server}/README.md (73%)
 rename bin/{durs-server => dunitrust-server}/src/cli.rs (95%)
 rename bin/{durs-server => dunitrust-server}/src/init.rs (100%)
 rename bin/{durs-server => dunitrust-server}/src/main.rs (90%)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e95020b4..f0b87879 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -103,7 +103,7 @@ tests:linux64:stable:
   tags:
     - redshift-docker-runner
   script: 
-    - cd bin/durs-server
+    - cd bin/dunitrust-server
     - RUSTFLAGS="-D warnings" cargo build --features=ssl
     - cargo test --all
     - cargo test --all -- --ignored
@@ -120,7 +120,7 @@ tests:arm-v7-:stable:
     refs:
       - tags
   script: 
-    - cd bin/durs-server
+    - cd bin/dunitrust-server
     - RUSTFLAGS="-D warnings" cargo build --target=armv7-unknown-linux-gnueabihf --features=ssl
     - cargo test --all --target=armv7-unknown-linux-gnueabihf
 
@@ -130,7 +130,7 @@ tests:arm-v7:stable:
   only:
     - tags
   script: 
-    - cd bin/durs-server
+    - cd bin/dunitrust-server
     - RUSTFLAGS="-D warnings" cargo build --target=armv7-unknown-linux-gnueabihf --features=ssl
     - cargo test --all --target=armv7-unknown-linux-gnueabihf
 
@@ -138,7 +138,7 @@ tests:win64:stable:
   <<: *rust_stable_win64
   stage: tests
   script: 
-    - cd bin/durs-server
+    - cd bin/dunitrust-server
     - RUSTFLAGS="-D warnings" cargo build --target=x86_64-pc-windows-gnu
     - cargo test --package dunitrust --target=x86_64-pc-windows-gnu
     - cargo test --package durs-conf --target=x86_64-pc-windows-gnu
diff --git a/Cargo.lock b/Cargo.lock
index a4dbb0cd..da995d2b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -318,6 +318,21 @@ dependencies = [
  "dup-currency-params 0.1.0",
 ]
 
+[[package]]
+name = "dunitrust"
+version = "0.2.0-a"
+dependencies = [
+ "durs-core 0.2.0-a",
+ "durs-module 0.2.0-a",
+ "durs-network 0.2.0-a",
+ "durs-tui 0.2.0-a",
+ "durs-ws2p 0.2.0-a",
+ "durs-ws2p-v1-legacy 0.2.0-a",
+ "human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
+ "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
 [[package]]
 name = "dup-crypto"
 version = "0.6.0"
@@ -352,21 +367,6 @@ dependencies = [
  "serde 1.0.86 (registry+https://github.com/rust-lang/crates.io-index)",
 ]
 
-[[package]]
-name = "durs"
-version = "0.2.0-a"
-dependencies = [
- "durs-core 0.2.0-a",
- "durs-module 0.2.0-a",
- "durs-network 0.2.0-a",
- "durs-tui 0.2.0-a",
- "durs-ws2p 0.2.0-a",
- "durs-ws2p-v1-legacy 0.2.0-a",
- "human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "structopt 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
 [[package]]
 name = "durs-blockchain"
 version = "0.2.0-a"
diff --git a/Cargo.toml b/Cargo.toml
index fbb0f4d6..20d45440 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [workspace]
 members = [
-    "bin/durs-server",
+    "bin/dunitrust-server",
     "lib/core/conf",
     "lib/core/core",
     "lib/core/message",
diff --git a/README.md b/README.md
index c8e3b43c..1c5eae85 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 # Duniter Rust (durs)
 
 [![Latest Version](https://img.shields.io/badge/latest-v0.1.1--a1-orange.svg)](https://git.duniter.org/nodes/rust/duniter-rs/tags/v0.1.1-a1)
-[![docs](https://librelois.fr/img/docs-read%20now-green.svg)](https://nodes.duniter.io/rust/duniter-rs/durs/)
+[![docs](https://librelois.fr/img/docs-read%20now-green.svg)](https://nodes.duniter.io/rust/duniter-rs/dunitrust/)
 [![build status](https://git.duniter.org/nodes/rust/duniter-rs/badges/dev/build.svg)](https://git.duniter.org/nodes/rust/duniter-rs/commits/dev)
 [![Minimum rustc version](https://img.shields.io/badge/rustc-1.35.0+-yellow.svg)](https://github.com/rust-lang/rust/blob/master/RELEASES.md)
 
@@ -25,7 +25,7 @@ It's in active developpement but is not usable yet.
 
 ## License
 
-Copyright (C) 2017  The Duniter Project Developers.
+Copyright (C) 2017  The Dunitrust Project Developers.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
diff --git a/bin/durs-server/Cargo.toml b/bin/dunitrust-server/Cargo.toml
similarity index 69%
rename from bin/durs-server/Cargo.toml
rename to bin/dunitrust-server/Cargo.toml
index 4229077e..41f788a3 100644
--- a/bin/durs-server/Cargo.toml
+++ b/bin/dunitrust-server/Cargo.toml
@@ -1,8 +1,8 @@
 [package]
-name = "durs"
+name = "dunitrust"
 version = "0.2.0-a"
 authors = ["librelois <elois@duniter.org>","nanocryk <nanocryk@duniter.org>","inso <inso@tuta.io>"]
-description = "DURS (Dividende Universel RuSt) is a new implementation of Duniter protocol and software in Rust, a safe, concurrent, practical language"
+description = "Dunitrust (Dividende Universel Rust) is a new implementation of Duniter protocol and software in Rust, a safe, concurrent, practical language"
 license = "AGPL-3.0"
 repository = "https://git.duniter.org/nodes/rust/duniter-rs"
 homepage = "https://git.duniter.org/nodes/rust/duniter-rs"
@@ -34,14 +34,14 @@ depends = "$auto"
 section = "misc"
 priority = "optional"
 assets = [
-    ["../../target/release/durs", "usr/bin/", "755"],
-    ["../../images/duniter-rs.png", "usr/share/durs/", "644"],
+    ["../../target/release/dunitrust", "usr/bin/", "755"],
+    ["../../images/duniter-rs.png", "usr/share/dunitrust/", "644"],
 ]
 features = ["ssl"]
 
 [package.metadata.deb.variants.arm]
 assets = [
-    ["../../target/armv7-unknown-linux-gnueabihf/release/durs", "usr/bin/", "755"],
-    ["../../images/duniter-rs.png", "usr/share/durs/", "644"],
+    ["../../target/armv7-unknown-linux-gnueabihf/release/dunitrust", "usr/bin/", "755"],
+    ["../../images/duniter-rs.png", "usr/share/dunitrust/", "644"],
 ]
 features = ["ssl"]
\ No newline at end of file
diff --git a/bin/durs-server/README.md b/bin/dunitrust-server/README.md
similarity index 73%
rename from bin/durs-server/README.md
rename to bin/dunitrust-server/README.md
index 1d9c4dd9..e0f1791b 100644
--- a/bin/durs-server/README.md
+++ b/bin/dunitrust-server/README.md
@@ -1,7 +1,7 @@
 ![Duniter-Rust logo](https://git.duniter.org/nodes/rust/duniter-rs/raw/dev/images/duniter-rs.png)
 
-# Durs-Server
+# Dunitrust-Server
 
-Command line variant for Durs project.
+Command line variant for Dunitrust project.
 
 For more informations, see [README at root of project](../../README.md).
diff --git a/bin/durs-server/src/cli.rs b/bin/dunitrust-server/src/cli.rs
similarity index 95%
rename from bin/durs-server/src/cli.rs
rename to bin/dunitrust-server/src/cli.rs
index 606d4bc9..b55fc6fd 100644
--- a/bin/durs-server/src/cli.rs
+++ b/bin/dunitrust-server/src/cli.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Command line options for classic Durs nodes (no specialization).
+//! Command line options for classic Dunitrust nodes (no specialization).
 
 use durs_core::commands::dbex::DbExOpt;
 use durs_core::commands::keys::KeysOpt;
@@ -36,9 +36,9 @@ use structopt::StructOpt;
     name = "durs",
     raw(setting = "structopt::clap::AppSettings::ColoredHelp")
 )]
-/// Durs command line options
+/// Dunitrust command line options
 pub struct DursCliOpt {
-    /// Durs subcommand
+    /// Dunitrust subcommand
     #[structopt(subcommand)]
     cmd: DursCliSubCommand,
     /// Path where user profiles are persisted
@@ -77,7 +77,7 @@ impl ExecutableModuleCommand for DursCliOpt {
 }
 
 impl DursCliOpt {
-    /// Into Durs command
+    /// Into Dunitrust command
     pub fn into_durs_command(self) -> DursCommand<DursCliOpt> {
         let options = DursCoreOptions {
             keypairs_file: self.keypairs_file.clone(),
@@ -129,7 +129,7 @@ impl DursCliOpt {
 }
 
 #[derive(StructOpt, Debug, Clone)]
-/// Classic Durs nodes subcommand
+/// Classic Dunitrust nodes subcommand
 pub enum DursCliSubCommand {
     /// Database explorer
     #[structopt(
diff --git a/bin/durs-server/src/init.rs b/bin/dunitrust-server/src/init.rs
similarity index 100%
rename from bin/durs-server/src/init.rs
rename to bin/dunitrust-server/src/init.rs
diff --git a/bin/durs-server/src/main.rs b/bin/dunitrust-server/src/main.rs
similarity index 90%
rename from bin/durs-server/src/main.rs
rename to bin/dunitrust-server/src/main.rs
index 7d77e635..0d3cf1a6 100644
--- a/bin/durs-server/src/main.rs
+++ b/bin/dunitrust-server/src/main.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Main function for classic Durs nodes (no specialization).
+//! Main function for classic Dunitrust nodes (no specialization).
 
 #![deny(
     missing_docs,
@@ -42,7 +42,7 @@ pub use durs_tui::TuiModule;
 pub use durs_ws2p::WS2PModule;
 pub use durs_ws2p_v1_legacy::WS2Pv1Module;
 
-/// Durs cli main macro
+/// Dunitrust cli main macro
 macro_rules! durs_cli_main {
     ( $closure_plug:expr ) => {{
         init();
@@ -57,7 +57,7 @@ macro_rules! durs_cli_main {
     }};
 }
 
-/// Durs command line edition, main function
+/// Dunitrust command line edition, main function
 #[cfg(unix)]
 #[cfg(not(target_arch = "arm"))]
 fn main() {
diff --git a/doc/en/dev/developing-a-durs-module.md b/doc/en/dev/developing-a-durs-module.md
index 18c89fc0..aeb63657 100644
--- a/doc/en/dev/developing-a-durs-module.md
+++ b/doc/en/dev/developing-a-durs-module.md
@@ -1,27 +1,27 @@
-# How to write your Durs module
+# How to write your Dunitrust module
 
 Date: 2018-11-20
 Authors: elois
 
-In this tutorial we'll see how to develop a new module for Durs, the Rust implementation of [Duniter](https://duniter.org).
+In this tutorial we'll see how to develop a new module for Dunitrust, the Rust implementation of [Duniter](https://duniter.org).
 
 You are expected to have [setup your development environment](setup-your-dev-environment.md).
 
 ## General architecture
 
-The Durs repository is composed of two types of crates: binaries and libraries.
+The Dunitrust repository is composed of two types of crates: binaries and libraries.
 
 There are two binary crates in the `bin/` directory:
 
-* `durs-server`: builds an executable for the command line, targetting a server install,
+* `dunitrust-server`: builds an executable for the command line, targetting a server install,
 * `durs-desktop`: builds a Graphical User Interface (GUI), for the desktop, also in the form of one executable. This one doesn't exist yet.
 
-A Durs module is a library crate. You must then create your crate in the `lib/` directory.
+A Dunitrust module is a library crate. You must then create your crate in the `lib/` directory.
 
 The `lib/` directory has 4 sub-directories which correspond to 4 types of libraries:
 
 1. `tools`: utilities that could be useful to all crates.
-2. `modules`: libraries forming a Durs module.
+2. `modules`: libraries forming a Dunitrust module.
 3. `modules-lib`: libraries dedicated to a subset of modules.
 4. `core`: libraries structuring the architecture, linking modules between them.
 
@@ -251,7 +251,7 @@ If it is `false`, you must run your module, and this is done in the following st
 5. run the main loop, in which you'll listen to the incoming messages to your channel
 
 If the router doesn't receive all the modules' registration in less than 20 seconds, it stops the program. You must then register it before any intensive action.
-If you think 20 seconds is large anyway, keep in mind that Durs is aimed to run on low-performance micro-computers, that could even busy with other tasks. It is possible to not include your module into the arm build.
+If you think 20 seconds is large anyway, keep in mind that Dunitrust is aimed to run on low-performance micro-computers, that could even busy with other tasks. It is possible to not include your module into the arm build.
 
 In short: if your module takes more than 3 seconds to register on your pc, it's already too much.
 
@@ -259,13 +259,13 @@ In short: if your module takes more than 3 seconds to register on your pc, it's
 
 First, you must add your module to the binary crates' dependencies. They are declared in the `Cargo.toml`.
 
-To add `toto`, add the following line to `bin/durs-server/Cargo.toml`:
+To add `toto`, add the following line to `bin/dunitrust-server/Cargo.toml`:
 
     durs-toto = { path = "../../lib/modules/toto" }
 
-## Injecting your module into `durs-server`
+## Injecting your module into `dunitrust-server`
 
-Once you added your module in `durs-server` dependencies as shown above, you'll want to use it from the main.rs:
+Once you added your module in `dunitrust-server` dependencies as shown above, you'll want to use it from the main.rs:
 
 1. use the struct that implements `DursModule`:
 
diff --git a/doc/en/dev/setup-your-dev-environment.md b/doc/en/dev/setup-your-dev-environment.md
index 655d4208..4afba6ba 100644
--- a/doc/en/dev/setup-your-dev-environment.md
+++ b/doc/en/dev/setup-your-dev-environment.md
@@ -117,7 +117,7 @@ To setup and start the debugger, refer to [the vscode doc](https://code.visualst
             "name": "Debug",
             "type": "lldb",
             "request": "launch",
-            "program": "${workspaceFolder}/target/debug/durs",
+            "program": "${workspaceFolder}/target/debug/dunitrust",
             "cwd": "${workspaceRoot}",
             "terminal": "integrated",
             "args": ["start"],
diff --git a/doc/en/user/install-durs.md b/doc/en/user/install-durs.md
index 21c9f9a4..e02fcf87 100644
--- a/doc/en/user/install-durs.md
+++ b/doc/en/user/install-durs.md
@@ -8,21 +8,21 @@ In any case, you will have to:
 2. which version number you want
 3. select the release corresponding to your operating system and processor architecture
 
-### `durs-server` or `durs-desktop`
+### `dunitrust-server` or `durs-desktop`
 
 `durs-desktop` comes with a graphic user interface and is made for people who want to install it in their desktop computer
 
-`durs-server` is much lighter but only has a terminal user interface. It's recommended for:
+`dunitrust-server` is much lighter but only has a terminal user interface. It's recommended for:
 
 * Installing on a remote server
 * Installing on a low performance computer
 * For users who are confortable with command line interfaces
 
-Note: it's possible to remotely control `durs-server` via a graphic user interface (see [durs remote admin]).
+Note: it's possible to remotely control `dunitrust-server` via a graphic user interface (see [durs remote admin]).
 
 ## Choose the durs version to install
 
-<s>You can get the last stable version on [the official Durs website](durs.info)</s>
+<s>You can get the last stable version on [the official Dunitrust website](dunitrust.org)</s>
 
 If you have any question about which version to install, ask it on the [duniter forum](https://forum.duniter.org/).
 
@@ -43,24 +43,24 @@ If no release has been made for you, fall back to the manual installation below.
 
 ## Manual installation
 
-To install Durs manually, you must first [install Rust](https://www.rust-lang.org/tools/install).
+To install Dunitrust manually, you must first [install Rust](https://www.rust-lang.org/tools/install).
 
-Then install Durs dependencies. Here is how to do on Debian based systems:
+Then install Dunitrust dependencies. Here is how to do on Debian based systems:
 
     apt-get install pkg-config libssl-dev # install required packages
-    git clone https://git.duniter.org/nodes/rust/duniter-rs.git # clone the Durs repository
+    git clone https://git.duniter.org/nodes/rust/duniter-rs.git # clone the Dunitrust repository
 
 Change your current directory to the folder correspondig to the variant you want to build:
 
-* For `durs-server`, go into `bin/durs-server`
+* For `dunitrust-server`, go into `bin/dunitrust-server`
 
-    cd bin/durs-server
+    cd bin/dunitrust-server
 
-* For `durs-desktop`, go into `bin/durs-desktop`
+* For `durs-desktop`, go into `bin/dunitrust-desktop`
 
-    cd bin/durs-desktop
+    cd bin/dunitrust-desktop
 
-Then build Durs with the command:
+Then build Dunitrust with the command:
 
     cargo build --release --features ssl
 
diff --git a/doc/en/user/synchronise-durs-node.md b/doc/en/user/synchronise-durs-node.md
index 1e13d83a..e103c90f 100644
--- a/doc/en/user/synchronise-durs-node.md
+++ b/doc/en/user/synchronise-durs-node.md
@@ -1,14 +1,14 @@
-# Synchronise your Durs node
+# Synchronise your Dunitrust node
 
 ## Synchronise from the network
 
-This feature is not yet available in Durs.
+This feature is not yet available in Dunitrust.
 
 ## Synchronise from a local Duniter node
 
 Make sure you have a Duniter node (duniter-ts) syncronised on the same computer.
 
-You must tell Durs the path of the raw blockchain in JSON format.
+You must tell Dunitrust the path of the raw blockchain in JSON format.
 It is usually located in  `~/.config/duniter/<profile>/<currency>`.
 
 Example:
diff --git a/doc/fr/developpeurs/developper-un-module-durs.md b/doc/fr/developpeurs/developper-un-module-durs.md
index 5a2b0fd9..0a22d946 100644
--- a/doc/fr/developpeurs/developper-un-module-durs.md
+++ b/doc/fr/developpeurs/developper-un-module-durs.md
@@ -1,9 +1,9 @@
-# Développer votre module Durs
+# Développer votre module Dunitrust
 
 Date: 2018-11-20
 Authors: elois
 
-Dans ce tutoriel nous allons voir comment développer un module pour [Durs](https://forum.duniter.org/t/etat-davancement-de-durs-dividende-universel-rust/4777), l'implémentation [Rust](https://www.rust-lang.org) de [Duniter](https://duniter.org).
+Dans ce tutoriel nous allons voir comment développer un module pour [Dunitrust](https://forum.duniter.org/t/etat-davancement-de-durs-dividende-universel-rust/4777), l'implémentation [Rust](https://www.rust-lang.org) de [Duniter](https://duniter.org).
 
 Si ce n'est pas déjà fait, vous devez au préalable [préparer votre environnement de développement](installer-son-environnement-de-dev.md).
 
@@ -13,7 +13,7 @@ Le dépôt durs est constitué de deux types de crates : les binaires et les bib
 
 Les crates binaires sont regroupés dans le dossier `bin` et sont au nombre de deux :
 
-* durs-server : produit un exécutable de durs en ligne de commande, donc installable sur un serveur.
+* dunitrust-server : produit un exécutable de durs en ligne de commande, donc installable sur un serveur.
 * durs-desktop : produit un exécutable de durs en application graphique de bureau (n'existe pas encore).
 
 Les modules durs sont des crates de type bibliothèques, vous devez donc placer la crate de votre module dans le dossier `lib`.
@@ -267,7 +267,7 @@ En revanche, si `load_conf_only` vaut `false` c'est qu'il vous faut réellement
 
 Si jamais le router n'a pas reçu l'enregistrement de tous les modules au bout de 20 secondes, il interrompt le programme.
 Le plus important est donc d'enregistrer votre module auprès du router AVANT tout traitement lourd ou coûteux.
-20 secondes peut vous sembler énorme, mais gardez en tête que Durs peut être amené à s'exécuter dans n'importe quel contexte, y compris sur un micro-pc aux performances très très réduites. De plus, Durs n'est pas seul sur la machine de l'utilisateur final, le délai de 20 secondes doit être respecté même dans le pire des scénarios (micro-pc déjà très occupé à d'autres taches).
+20 secondes peut vous sembler énorme, mais gardez en tête que Dunitrust peut être amené à s'exécuter dans n'importe quel contexte, y compris sur un micro-pc aux performances très très réduites. De plus, Dunitrust n'est pas seul sur la machine de l'utilisateur final, le délai de 20 secondes doit être respecté même dans le pire des scénarios (micro-pc déjà très occupé à d'autres taches).
 
 Si vous prévoyez de réaliser des traitements lourds ou/et coûteux dans votre module, il peut être pertinent de ne pas l'inclure dans la release pour micro-pc (architecture arm), n'hésitez pas à poser la question aux développeurs principaux du projet en cas de doute.
 En gros, lorsque votre poste de développement ne fait rien de coûteux en même temps, votre module doit s'être enregistré en moins de 3 secondes, si ça dépasse c'est que vous faites trop de choses à l'initialisation.
@@ -276,15 +276,15 @@ En gros, lorsque votre poste de développement ne fait rien de coûteux en même
 
 Tout d'abord, il faut ajouter votre module aux dépendances des crates binaires. Les dépendances d'une crate sont déclarées dans son fichier `Cargo.toml`.
 
-Par exemple, pour ajouter le module `toto` à la crate binaire `durs-server` il faut ajouter la ligne suivante dans la section `[dependencies]` du fichier `bin/durs-server/Cargo.toml` :
+Par exemple, pour ajouter le module `toto` à la crate binaire `dunitrust-server` il faut ajouter la ligne suivante dans la section `[dependencies]` du fichier `bin/dunitrust-server/Cargo.toml` :
 
     durs-toto = { path = "../../lib/modules/toto" }
 
 Vous pouvez modifier une copie de la ligne du module skeleton pour être sûr de ne pas vous tromper.
 
-### Injecter votre module dans `durs-server`
+### Injecter votre module dans `dunitrust-server`
 
-Une fois que vous avez ajouté votre module en dépendance dans le Cargo.toml de `durs-server`, il va falloir utiliser votre module dans le main.rs :
+Une fois que vous avez ajouté votre module en dépendance dans le Cargo.toml de `dunitrust-server`, il va falloir utiliser votre module dans le main.rs :
 
 1. Utilisez votre structure implémentant le trait DursModule :
 
diff --git a/doc/fr/developpeurs/installer-son-environnement-de-dev.md b/doc/fr/developpeurs/installer-son-environnement-de-dev.md
index 0d319fd9..c64f275c 100644
--- a/doc/fr/developpeurs/installer-son-environnement-de-dev.md
+++ b/doc/fr/developpeurs/installer-son-environnement-de-dev.md
@@ -141,7 +141,7 @@ Pour paramétrer et démarrer le débugger, consultez [la doc vscode](https://co
             "name": "Debug",
             "type": "lldb",
             "request": "launch",
-            "program": "${workspaceFolder}/target/debug/durs",
+            "program": "${workspaceFolder}/target/debug/dunitrust",
             "cwd": "${workspaceRoot}",
             "terminal": "integrated",
             "args": ["start"],
@@ -190,9 +190,9 @@ Bien que cela soit de plus en plus rare, certaines crates rust dépendent encore
 
 En Rust, les "features" sont des options de compilation.
 
-Durs peut être compilé avec la feature `ssl`, cela lui permet de contacter les endpoints WS2P en ws**s**://.
+Dunitrust peut être compilé avec la feature `ssl`, cela lui permet de contacter les endpoints WS2P en ws**s**://.
 Par défaut les endpoints WS2P sont accesible en ws://, mais certains utilisateurs choississent de placer un reverse proxy avec une couche TLS devant leur endpoint.
-Pour compiler Durs avec la feature `ssl`, vous aurez besoin du paquet supplémentaire suivant :
+Pour compiler Dunitrust avec la feature `ssl`, vous aurez besoin du paquet supplémentaire suivant :
 
     sudo apt-get install libssl-dev
 
@@ -280,12 +280,12 @@ Personnellement j'utilise les alias suivants :
     alias cc="cargo fmt && cargo check"
     alias cddr="cd ~/dev/duniter/nodes/rust/duniter-rs"
     alias clip="cargo clippy"
-    alias cbrf="cargo fmt && cargo build --release --manifest-path bin/durs-server/Cargo.toml --features ssl"
+    alias cbrf="cargo fmt && cargo build --release --manifest-path bin/dunitrust-server/Cargo.toml --features ssl"
     alias fmt="cargo fmt"
     alias tc="cargo fmt && cargo test --package"
     alias ta="cargo fmt && cargo test --all"
     alias rsup="rustup update && cargo install-update -a"
-    alias dursd="./target/release/durs"
+    alias dursd="./target/release/dunitrust"
 
 Si vous utilisez bash ses alias sont a placer dans votre fichier `~/.bash_aliases` il vous faudra également décomenter la ligne incluant ce fichier dans votre `~/.bashrc`. Si vous utilisez un autre sheel, référez vous a la documentation de votre shell.
 
@@ -307,9 +307,9 @@ Attention clippy ne vas pas rechecker les crates déjà parcourues par cargo che
 Lancez toujours clippy avant de pusher et corrigez tout les warning, en cas de souci avec un warning contactez un lead dev, dans certains cas très exceptionnels le lead dev pourra décider de skipper explicitement le warning en question, mais la plupart du temps il faudra le résoudre.
 Rassurez vous, la CI (Continious integration) de Gitlab passera clippy sur tout le projet dans tout les cas, donc en cas d'oubli vous vous en rendrez compte.
 
-### cbrf="cargo fmt && cargo build --release --manifest-path bin/durs-server/Cargo.toml --features ssl"
+### cbrf="cargo fmt && cargo build --release --manifest-path bin/dunitrust-server/Cargo.toml --features ssl"
 
-Commande pour builder `durs-server`. Le dépot contiendra plusieurs binaires a terme (nottament la variante durs-desktop mais pas que). Il faut donc indiquer a cargo quel binaire builder avec l'option `--manifest-path`.
+Commande pour builder `dunitrust-server`. Le dépot contiendra plusieurs binaires a terme (nottament la variante durs-desktop mais pas que). Il faut donc indiquer a cargo quel binaire builder avec l'option `--manifest-path`.
 
 De plus, pour utiliser durs vous aurez besoin de compiler en mode release, c'est long donc ne le fait que lorsqu'un `cargo check` ne vous retourne plus aucune erreur. Théoriquemetn il devrait etre possible d'utiliser durs en mode debug, c'est un probleme connu et qui sera réglé a terme ([#136](https://git.duniter.org/nodes/rust/duniter-rs/issues/136)).
 
@@ -335,8 +335,8 @@ Exécute tout les tests de toutes les crates, attention c'est long !
 Permet de mettre a jours toutes vos toolchains rust ainsi que tout les binaires que vous avez installer via `cargo install`.
 Nécessite d'avoir installé au préalable [cargo-update](https://github.com/nabijaczleweli/cargo-update).
 
-### dursd="./target/release/durs"
+### dursd="./target/release/dunitrust"
 
-Lorsque vous avez compilé `durs-server` avec l'alias `cbrf`, le binaire final est un fichier exécutable qui se nomme `durs` et il se trouve dans le dossier `target/release`. Plutot que de volus déplacer dans ce dossier a chaque fois que vous souhaitez faire des tests manuels, cet alias vous permet de lancer durs en restant a la racine du dépot.
+Lorsque vous avez compilé `dunitrust-server` avec l'alias `cbrf`, le binaire final est un fichier exécutable qui se nomme `durs` et il se trouve dans le dossier `target/release`. Plutot que de volus déplacer dans ce dossier a chaque fois que vous souhaitez faire des tests manuels, cet alias vous permet de lancer durs en restant a la racine du dépot.
 
 Vous pouvez évidemment renommer ces alias comme bon vous semble tant que vous vous y retrouvez.
diff --git a/doc/fr/developpeurs/tests-auto.md b/doc/fr/developpeurs/tests-auto.md
index 799b0315..c5f8b86a 100644
--- a/doc/fr/developpeurs/tests-auto.md
+++ b/doc/fr/developpeurs/tests-auto.md
@@ -50,4 +50,4 @@ De plus, le Gitlab est configuré de tel façon a ce qu'il soit impossible d'acc
 Afin d'éviter les regressions, les tests doivent couvrir le plus de cas possible (idéalement tous mais il est impossible de penser a tout les cas).
 Pour vérifier la couverture des tests d'une crate, **(en cours de rédaction)**.
 
-L'intégration d'un outils de coverage au projets est un chantier en cours, les outils Rust dédiés au coverage arrivent tout juste a maturité et devrait donc etre intégrés au projet Durs dans les prochains mois.
+L'intégration d'un outils de coverage au projets est un chantier en cours, les outils Rust dédiés au coverage arrivent tout juste a maturité et devrait donc etre intégrés au projet Dunitrust dans les prochains mois.
diff --git a/doc/fr/utilisateurs/installer-durs.md b/doc/fr/utilisateurs/installer-durs.md
index c581209f..eee00fba 100644
--- a/doc/fr/utilisateurs/installer-durs.md
+++ b/doc/fr/utilisateurs/installer-durs.md
@@ -4,27 +4,27 @@
 
 Dans tout les cas vous aurez 3 choix a faire :
 
-1. Choisir entre durs-server ou durs-desktop
-2. Choisir la version de Durs que vous souhaitez installer
+1. Choisir entre dunitrust-server ou dunitrust-desktop
+2. Choisir la version de Dunitrust que vous souhaitez installer
 3. Choisir le livrable correspondant votre système d'exploitation et votre processeur.
 
-### `durs-server` ou `durs-desktop`
+### `dunitrust-server` ou `dunitrust-desktop`
 
-`durs-desktop` est destiné aux utilisateurs souhaitant installer Durs sur leur ordinateur personnel et administrer leur noeud Durs via une interface graphique.
+`dunitrust-desktop` est destiné aux utilisateurs souhaitant installer Dunitrust sur leur ordinateur personnel et administrer leur noeud Dunitrust via une interface graphique.
 
-`durs-server` est beaucoup plus léger et se manipule via la ligne de commande. Il est notamment utile dans les cas suivants :
+`dunitrust-server` est beaucoup plus léger et se manipule via la ligne de commande. Il est notamment utile dans les cas suivants :
 
 * Installation de durs sur serveur dédié
 * Installation de durs sur micro pc (raspberry pi, brique internet, etc)
 * Pour les utilisateurs avancé qui préfèrent la ligne de commande.
 
-Notez bien : il est possible d'administrer `durs-server` a distance via une interface graphique (voir [administrer un noeud durs a distance]).
+Notez bien : il est possible d'administrer `dunitrust-server` a distance via une interface graphique (voir [administrer un noeud durs a distance]).
 
-### Choisir la version de Durs a installer
+### Choisir la version de Dunitrust a installer
 
-<s>Rendez vous sur [le site officiel de Durs](durs.info), vous y trouverez un lien direct vers la dernière version stable.</s>
+<s>Rendez vous sur [le site officiel de Dunitrust](dunitrust.org), vous y trouverez un lien direct vers la dernière version stable.</s>
 
-Le site web de Durs n'existe pas encore, en attendant vous devrez vous renseigenr sur le [forum duniter](https://forum.duniter.org) pour savoir quelle version installer.
+Le site web de Dunitrust n'existe pas encore, en attendant vous devrez vous renseigenr sur le [forum duniter](https://forum.duniter.org) pour savoir quelle version installer.
 
 Vous trouverez toute les versions disponibles au téléchargement sur [cette page du gitlab](https://git.duniter.org/nodes/rust/duniter-rs/tags).
 
@@ -59,23 +59,23 @@ Ensuite configurez votre noeud durs via un fichier de variables d'environnement
 
 Vous devrez nottament définir la variable d'environnement DURS_SYNC_URL qui indiquera a durs sur quel url il devra se synchroniser au démarrage.
 
-Enfin lancez votre conteneur Durs comme suit :
+Enfin lancez votre conteneur Dunitrust comme suit :
 
     docker run -it --env-file path/to/your/env/file --name durs registry.duniter.org/nodes/rust/duniter-rs:TAG
 
 ### Externaliser les données utilisateur (config, bases de données, logs, trousseaux de clés)
 
-Vous pouvez externaliser les données utilisateurs en montant un volume dans /var/lib/durs, via l'option `-v`  de `docker run`.
+Vous pouvez externaliser les données utilisateurs en montant un volume dans /var/lib/dunitrust, via l'option `-v`  de `docker run`.
 
 L'option `-v` de la commande `docker run` indique quel dossier de la machine hôte doit etre monté dans le conteneur et a quel endroint. La syntaxe générale est `-v HOST_PATH:CONTAINER_PATH`.
 
-il faut alors indiquer a durs que vous souhaitez stocker les données dans `/var/lib/durs` via l'option `--profiles-path`
+il faut alors indiquer a durs que vous souhaitez stocker les données dans `/var/lib/dunitrust` via l'option `--profiles-path`
 
-Exemple, pour stocker les donnes dans le dossier `/home/you/durs-datas` de votre machien hôte :
+Exemple, pour stocker les donnes dans le dossier `/home/you/dunitrust-datas` de votre machien hôte :
 
-    docker run -it -v /home/you/durs-datas:/var/lib/durs registry.duniter.org/nodes/rust/duniter-rs:TAG durs --profiles-path /var/lib/durs
+    docker run -it -v /home/you/dunitrust-datas:/var/lib/dunitrust registry.duniter.org/nodes/rust/duniter-rs:TAG durs --profiles-path /var/lib/dunitrust
 
-Astuce : vous pourrez alors injecter un trousseau de clé personnalisé dans `/home/you/durs-datas/default/keypairs.json`.
+Astuce : vous pourrez alors injecter un trousseau de clé personnalisé dans `/home/you/dunitrust-datas/default/keypairs.json`.
 
 ### Docker secrets
 
@@ -97,15 +97,15 @@ Ensuite, clonez le dépot git :
 
 Rendez vous dans le dossier `duniter-rs` ainsi créé puis dans le sous-dossier correspondant à la variante que vous souhaitez installer :
 
-* Pour `durs-server`, rendez-vous dans `bin/durs-server`
+* Pour `dunitrust-server`, rendez-vous dans `bin/dunitrust-server`
 
-    cd bin/durs-server
+    cd bin/dunitrust-server
 
-* Pour `durs-desktop`, rendez-vous dans `bin/durs-desktop`
+* Pour `dunitrust-desktop`, rendez-vous dans `bin/dunitrust-desktop`
 
-    cd bin/durs-desktop
+    cd bin/dunitrust-desktop
 
-Enfin lancez la compilation de Durs avec la commande suivante :
+Enfin lancez la compilation de Dunitrust avec la commande suivante :
 
     cargo build --release --features ssl
 
@@ -116,5 +116,5 @@ Si vous avez des problèmes avec `openssl` lors de la compilation, vous pouvez e
 Cela implique juste que votre noeud ne pourra pas contacter les endpoint WS2P qui sont derrière une couche SSL/TLS.  
 Votre noeud devrait tout de même fonctionner normalement s'il ya suffisamment de endpoint WS2P accesibles en clair.
 
-Si la compilation réussie, votre exécutable se trouve dans `duniter-rs/target/release` et se nomme `durs` ou `durs-desktop`.
+Si la compilation réussie, votre exécutable se trouve dans `duniter-rs/target/release` et se nomme `durs` ou `dunitrust-desktop`.
 Vous pouvez le déplacer ou bon vous semble sur votre disque puis l'exécuter directement.
diff --git a/doc/fr/utilisateurs/synchroniser-noeud-durs.md b/doc/fr/utilisateurs/synchroniser-noeud-durs.md
index 87afeee6..72915da3 100644
--- a/doc/fr/utilisateurs/synchroniser-noeud-durs.md
+++ b/doc/fr/utilisateurs/synchroniser-noeud-durs.md
@@ -8,7 +8,7 @@ Cette fonctionnalitée n'est pas encore intégrée à Durs.
 
 Assurez vous d'avoir un noeud Duniter synchronisé sur la même machine.
 
-Vous devez indiquer a Durs le chemin vers le répertoire contenant la blockchain brute sous forme de fichiers JSON. Elle se trouve dans `~/.config/duniter/<profile>/<currency>`.
+Vous devez indiquer a Dunitrust le chemin vers le répertoire contenant la blockchain brute sous forme de fichiers JSON. Elle se trouve dans `~/.config/duniter/<profile>/<currency>`.
 
 Exemple:
 
diff --git a/lib/core/conf/src/constants.rs b/lib/core/conf/src/constants.rs
index f4141441..24d1f56b 100644
--- a/lib/core/conf/src/constants.rs
+++ b/lib/core/conf/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs configuration constants
+//! Dunitrust configuration constants
 
 /// User datas folder
 pub static USER_DATAS_FOLDER: &'static str = "durs-dev";
diff --git a/lib/core/conf/src/keys.rs b/lib/core/conf/src/keys.rs
index 77969ad0..929c1438 100644
--- a/lib/core/conf/src/keys.rs
+++ b/lib/core/conf/src/keys.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs keys configuration module
+//! Dunitrust keys configuration module
 
 #![deny(
     missing_docs, missing_debug_implementations, missing_copy_implementations, trivial_casts,
diff --git a/lib/core/conf/src/lib.rs b/lib/core/conf/src/lib.rs
index a7e703f7..756f3057 100644
--- a/lib/core/conf/src/lib.rs
+++ b/lib/core/conf/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs configuration files properties module
+//! Dunitrust configuration files properties module
 
 #![deny(
     missing_docs,
@@ -199,11 +199,11 @@ impl From<DuRsConfV1> for DuRsConfV2 {
 }
 
 #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
-/// Durs node configuration
+/// Dunitrust node configuration
 pub enum DuRsConf {
-    /// Durs node configuration v1
+    /// Dunitrust node configuration v1
     V1(DuRsConfV1),
-    /// Durs node configuration v2
+    /// Dunitrust node configuration v2
     V2 {
         /// Global configuration
         global_conf: DuRsConfV2,
@@ -213,11 +213,11 @@ pub enum DuRsConf {
 }
 
 #[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
-/// Durs global configuration (without modules configuration)
+/// Dunitrust global configuration (without modules configuration)
 pub enum DuRsGlobalConf {
-    /// Durs global configuration v1
+    /// Dunitrust global configuration v1
     V1(DuRsConfV1),
-    /// Durs global configuration v2
+    /// Dunitrust global configuration v2
     V2(DuRsConfV2),
 }
 
diff --git a/lib/core/core/Cargo.toml b/lib/core/core/Cargo.toml
index 7d4a8b7b..0576c5cc 100644
--- a/lib/core/core/Cargo.toml
+++ b/lib/core/core/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-core"
 version = "0.2.0-a"
 authors = ["librelois <elois@ifee.fr>"]
-description = "Durs core."
+description = "Dunitrust core."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/core/core/src/change_conf.rs b/lib/core/core/src/change_conf.rs
index 67ecb580..037fe7de 100644
--- a/lib/core/core/src/change_conf.rs
+++ b/lib/core/core/src/change_conf.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/commands/dbex.rs b/lib/core/core/src/commands/dbex.rs
index c8636552..b1b7b033 100644
--- a/lib/core/core/src/commands/dbex.rs
+++ b/lib/core/core/src/commands/dbex.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/commands/keys.rs b/lib/core/core/src/commands/keys.rs
index 7e766551..9302b691 100644
--- a/lib/core/core/src/commands/keys.rs
+++ b/lib/core/core/src/commands/keys.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/commands/mod.rs b/lib/core/core/src/commands/mod.rs
index bea553d7..f11fd979 100644
--- a/lib/core/core/src/commands/mod.rs
+++ b/lib/core/core/src/commands/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -33,7 +33,7 @@ pub use reset::*;
 pub use start::*;
 use std::path::PathBuf;
 
-/// Durs core options
+/// Dunitrust core options
 pub struct DursCoreOptions {
     /// Keypairs file path
     pub keypairs_file: Option<PathBuf>,
@@ -47,9 +47,9 @@ pub struct DursCoreOptions {
     pub profiles_path: Option<PathBuf>,
 }
 
-/// Durs executable command
+/// Dunitrust executable command
 pub trait DursExecutableCoreCommand {
-    /// Execute Durs command
+    /// Execute Dunitrust command
     fn execute(self, durs_core: DursCore<DuRsConf>) -> Result<(), DursCoreError>;
 }
 
@@ -59,15 +59,15 @@ pub trait ExecutableModuleCommand {
     fn execute_module_command(self, options: DursCoreOptions) -> Result<(), DursCoreError>;
 }
 
-/// Durs command with options
+/// Dunitrust command with options
 pub struct DursCommand<T: ExecutableModuleCommand> {
-    /// Durs core options
+    /// Dunitrust core options
     pub options: DursCoreOptions,
-    /// Durs command
+    /// Dunitrust command
     pub command: DursCommandEnum<T>,
 }
 
-/// Durs command
+/// Dunitrust command
 pub enum DursCommandEnum<T: ExecutableModuleCommand> {
     /// Core command
     Core(DursCoreCommand),
@@ -76,7 +76,7 @@ pub enum DursCommandEnum<T: ExecutableModuleCommand> {
 }
 
 impl<T: ExecutableModuleCommand> DursCommand<T> {
-    /// Execute Durs command
+    /// Execute Dunitrust command
     pub fn execute<PlugFunc>(
         self,
         soft_name: &'static str,
diff --git a/lib/core/core/src/commands/modules.rs b/lib/core/core/src/commands/modules.rs
index 96da6e6f..0d4a1390 100644
--- a/lib/core/core/src/commands/modules.rs
+++ b/lib/core/core/src/commands/modules.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/commands/reset.rs b/lib/core/core/src/commands/reset.rs
index d71a449f..ea452066 100644
--- a/lib/core/core/src/commands/reset.rs
+++ b/lib/core/core/src/commands/reset.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/commands/start.rs b/lib/core/core/src/commands/start.rs
index 148a397d..4feb41eb 100644
--- a/lib/core/core/src/commands/start.rs
+++ b/lib/core/core/src/commands/start.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/core/src/constants.rs b/lib/core/core/src/constants.rs
index 95b0375f..8e8910b7 100644
--- a/lib/core/core/src/constants.rs
+++ b/lib/core/core/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs core constants.
+//! Dunitrust core constants.
 
 /// Default user profile
 pub static DEFAULT_USER_PROFILE: &'static str = "default";
diff --git a/lib/core/core/src/errors.rs b/lib/core/core/src/errors.rs
index 5ec513f0..a5f7e26b 100644
--- a/lib/core/core/src/errors.rs
+++ b/lib/core/core/src/errors.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Manage Durs core errors.
+//! Manage Dunitrust core errors.
 
 use crate::logger::InitLoggerError;
 use dup_currency_params::db::CurrencyParamsDbError;
@@ -21,7 +21,7 @@ use durs_module::{ModuleStaticName, PlugModuleError};
 use failure::{Error, Fail};
 
 #[derive(Debug, Fail)]
-/// Durs server error
+/// Dunitrust server error
 pub enum DursCoreError {
     /// Error with configuration file
     #[fail(display = "Error with configuration file: {}", _0)]
diff --git a/lib/core/core/src/lib.rs b/lib/core/core/src/lib.rs
index 0949e85a..2fd73b0d 100644
--- a/lib/core/core/src/lib.rs
+++ b/lib/core/core/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Crate containing Durs core.
+//! Crate containing Dunitrust core.
 
 //#![cfg_attr(feature = "cargo-clippy", allow(implicit_hasher))]
 #![deny(
@@ -71,11 +71,11 @@ macro_rules! durs_plug {
     };
 }
 
-/// Durs Core Datas
+/// Dunitrust Core Datas
 pub struct DursCore<DC: DursConfTrait> {
     /// Currency name
     pub currency_name: Option<CurrencyName>,
-    /// Durs core options
+    /// Dunitrust core options
     pub options: DursCoreOptions,
     /// Does the entered command require to launch server ?
     server_command: Option<ServerMode>,
@@ -230,7 +230,7 @@ impl DursCore<DuRsConf> {
             DursCoreCommand::KeysOpt(opts) => opts.execute(durs_core),
         }
     }
-    /// Initialize Durs core
+    /// Initialize Dunitrust core
     fn init(
         soft_name: &'static str,
         soft_version: &'static str,
diff --git a/lib/core/core/src/logger.rs b/lib/core/core/src/logger.rs
index fb8e6a8c..62400817 100644
--- a/lib/core/core/src/logger.rs
+++ b/lib/core/core/src/logger.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs core logger
+//! Dunitrust core logger
 
 use crate::commands::DursCoreOptions;
 use failure::Fail;
diff --git a/lib/core/core/src/router.rs b/lib/core/core/src/router.rs
index abb84f93..7e3a267d 100644
--- a/lib/core/core/src/router.rs
+++ b/lib/core/core/src/router.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/message/Cargo.toml b/lib/core/message/Cargo.toml
index 50109a74..90dc1183 100644
--- a/lib/core/message/Cargo.toml
+++ b/lib/core/message/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-message"
 version = "0.2.0-a"
 authors = ["librelois <elois@ifee.fr>"]
-description = "message model for the Durs project."
+description = "message model for the Dunitrust project."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/core/message/src/events.rs b/lib/core/message/src/events.rs
index fb538736..9d77b905 100644
--- a/lib/core/message/src/events.rs
+++ b/lib/core/message/src/events.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/message/src/lib.rs b/lib/core/message/src/lib.rs
index 32fad925..973c4ffb 100644
--- a/lib/core/message/src/lib.rs
+++ b/lib/core/message/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -44,10 +44,10 @@ use crate::events::*;
 use crate::requests::*;
 use crate::responses::*;
 
-/// Message exchanged between Durs modules
+/// Message exchanged between Dunitrust modules
 #[derive(Debug, Clone)]
 pub enum DursMsg {
-    /// Durs module event
+    /// Dunitrust module event
     Event {
         /// The module that issued the event
         event_from: ModuleStaticName,
@@ -56,7 +56,7 @@ pub enum DursMsg {
         /// Event content
         event_content: DursEvent,
     },
-    /// Durs modules requests
+    /// Dunitrust modules requests
     Request {
         /// The requester
         req_from: ModuleStaticName,
@@ -67,7 +67,7 @@ pub enum DursMsg {
         /// Request content
         req_content: DursReqContent,
     },
-    /// Durs modules request response
+    /// Dunitrust modules request response
     Response {
         /// The module that answers the request
         res_from: ModuleStaticName,
diff --git a/lib/core/message/src/requests.rs b/lib/core/message/src/requests.rs
index 9f670d9a..7c2252ed 100644
--- a/lib/core/message/src/requests.rs
+++ b/lib/core/message/src/requests.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/message/src/responses.rs b/lib/core/message/src/responses.rs
index 8485c39a..26fde36e 100644
--- a/lib/core/message/src/responses.rs
+++ b/lib/core/message/src/responses.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -26,7 +26,7 @@ use durs_module::ModuleReqId;
 use durs_network::requests::NetworkResponse;
 use std::collections::HashMap;
 
-/// Durs request response message
+/// Dunitrust request response message
 #[derive(Debug, Clone)]
 pub enum DursResContent {
     /// BlockchainResponse
diff --git a/lib/core/module/src/lib.rs b/lib/core/module/src/lib.rs
index 74b1cf0f..aa1047e2 100644
--- a/lib/core/module/src/lib.rs
+++ b/lib/core/module/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -103,7 +103,7 @@ impl ToString for ModuleReqFullId {
     }
 }
 
-/// Durs global configuration trait
+/// Dunitrust global configuration trait
 pub trait DursGlobalConfTrait:
     Clone + Debug + PartialEq + Serialize + DeserializeOwned + Send + ToOwned
 {
@@ -113,11 +113,11 @@ pub trait DursGlobalConfTrait:
     fn default_sync_module(&self) -> ModuleName;
 }
 
-/// Durs configuration trait
+/// Dunitrust configuration trait
 pub trait DursConfTrait:
     Clone + Debug + Default + PartialEq + Serialize + DeserializeOwned + Send + ToOwned
 {
-    /// Durs configuration without modules configuration
+    /// Dunitrust configuration without modules configuration
     type GlobalConf: DursGlobalConfTrait;
 
     /// Disable a module
diff --git a/lib/core/network/Cargo.toml b/lib/core/network/Cargo.toml
index 73d59887..e13596d7 100644
--- a/lib/core/network/Cargo.toml
+++ b/lib/core/network/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-network"
 version = "0.2.0-a"
 authors = ["librelois <elois@duniter.org>"]
-description = "Network model for the Durs project."
+description = "Network model for the Dunitrust project."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/core/network/cli/mod.rs b/lib/core/network/cli/mod.rs
index 73496ae1..14c3620c 100644
--- a/lib/core/network/cli/mod.rs
+++ b/lib/core/network/cli/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,6 +13,6 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs network cli
+//! Dunitrust network cli
 
 pub mod sync;
diff --git a/lib/core/network/cli/sync.rs b/lib/core/network/cli/sync.rs
index eccd473e..74db6ad1 100644
--- a/lib/core/network/cli/sync.rs
+++ b/lib/core/network/cli/sync.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Durs network cli : sync subcommands.
+//! Dunitrust network cli : sync subcommands.
 
 use durs_network_documents::url::Url;
 use std::path::PathBuf;
diff --git a/lib/core/network/events.rs b/lib/core/network/events.rs
index 793ec6a2..55e9b7ea 100644
--- a/lib/core/network/events.rs
+++ b/lib/core/network/events.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/network/lib.rs b/lib/core/network/lib.rs
index 977f3bb1..932f99ee 100644
--- a/lib/core/network/lib.rs
+++ b/lib/core/network/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/core/network/requests.rs b/lib/core/network/requests.rs
index d3679365..c2ac011d 100644
--- a/lib/core/network/requests.rs
+++ b/lib/core/network/requests.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/Cargo.toml b/lib/modules/blockchain/blockchain-dal/Cargo.toml
index 41d1aaa1..c6c4de94 100644
--- a/lib/modules/blockchain/blockchain-dal/Cargo.toml
+++ b/lib/modules/blockchain/blockchain-dal/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-blockchain-dal"
 version = "0.2.0-a"
 authors = ["librelois <elois@ifee.fr>"]
-description = "Data Access Layer for Durs Blockchain module."
+description = "Data Access Layer for Dunitrust Blockchain module."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/modules/blockchain/blockchain-dal/src/constants.rs b/lib/modules/blockchain/blockchain-dal/src/constants.rs
index 780d8a54..31dd43cf 100644
--- a/lib/modules/blockchain/blockchain-dal/src/constants.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/entities/block.rs b/lib/modules/blockchain/blockchain-dal/src/entities/block.rs
index b22ade1d..8eb79d20 100644
--- a/lib/modules/blockchain/blockchain-dal/src/entities/block.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/entities/block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/entities/fork_tree.rs b/lib/modules/blockchain/blockchain-dal/src/entities/fork_tree.rs
index 22c42ad1..f2b772ea 100644
--- a/lib/modules/blockchain/blockchain-dal/src/entities/fork_tree.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/entities/fork_tree.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/entities/identity.rs b/lib/modules/blockchain/blockchain-dal/src/entities/identity.rs
index f5447e2c..ed2d29e9 100644
--- a/lib/modules/blockchain/blockchain-dal/src/entities/identity.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/entities/identity.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/entities/mod.rs b/lib/modules/blockchain/blockchain-dal/src/entities/mod.rs
index 03cd65cb..34a2653f 100644
--- a/lib/modules/blockchain/blockchain-dal/src/entities/mod.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/entities/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/entities/sources.rs b/lib/modules/blockchain/blockchain-dal/src/entities/sources.rs
index c53bb1a1..06f93b0c 100644
--- a/lib/modules/blockchain/blockchain-dal/src/entities/sources.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/entities/sources.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/filters/identities.rs b/lib/modules/blockchain/blockchain-dal/src/filters/identities.rs
index e3e09781..73a434bd 100644
--- a/lib/modules/blockchain/blockchain-dal/src/filters/identities.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/filters/identities.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/filters/mod.rs b/lib/modules/blockchain/blockchain-dal/src/filters/mod.rs
index b04d5402..cd7915e7 100644
--- a/lib/modules/blockchain/blockchain-dal/src/filters/mod.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/filters/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/lib.rs b/lib/modules/blockchain/blockchain-dal/src/lib.rs
index 2ac1a229..bfb1b451 100644
--- a/lib/modules/blockchain/blockchain-dal/src/lib.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/balance.rs b/lib/modules/blockchain/blockchain-dal/src/readers/balance.rs
index 3f142a88..ddd40205 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/balance.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/balance.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/block.rs b/lib/modules/blockchain/blockchain-dal/src/readers/block.rs
index 8df1aa1b..14c6ba71 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/block.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/certs.rs b/lib/modules/blockchain/blockchain-dal/src/readers/certs.rs
index 33ebdcfd..ed0eaa34 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/certs.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/certs.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/currency_params.rs b/lib/modules/blockchain/blockchain-dal/src/readers/currency_params.rs
index 2be4b61d..fa545619 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/currency_params.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/currency_params.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/fork_tree.rs b/lib/modules/blockchain/blockchain-dal/src/readers/fork_tree.rs
index e408d991..93b1dbdd 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/fork_tree.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/fork_tree.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/identity.rs b/lib/modules/blockchain/blockchain-dal/src/readers/identity.rs
index 2ece0d4a..119cbf74 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/identity.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/identity.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/readers/mod.rs b/lib/modules/blockchain/blockchain-dal/src/readers/mod.rs
index cbbabe50..c145bebb 100644
--- a/lib/modules/blockchain/blockchain-dal/src/readers/mod.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/readers/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/tools.rs b/lib/modules/blockchain/blockchain-dal/src/tools.rs
index dc12918b..74c869db 100644
--- a/lib/modules/blockchain/blockchain-dal/src/tools.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/tools.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/block.rs b/lib/modules/blockchain/blockchain-dal/src/writers/block.rs
index 47a27058..2ec76497 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/block.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/certification.rs b/lib/modules/blockchain/blockchain-dal/src/writers/certification.rs
index ae10d828..05590be0 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/certification.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/certification.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/dividend.rs b/lib/modules/blockchain/blockchain-dal/src/writers/dividend.rs
index 0bf89428..89792f27 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/dividend.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/dividend.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/fork_tree.rs b/lib/modules/blockchain/blockchain-dal/src/writers/fork_tree.rs
index 8885d216..f90f3b85 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/fork_tree.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/fork_tree.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/identity.rs b/lib/modules/blockchain/blockchain-dal/src/writers/identity.rs
index 154e8ecd..6a2e0d0a 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/identity.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/identity.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/mod.rs b/lib/modules/blockchain/blockchain-dal/src/writers/mod.rs
index 7960d1da..11d109e7 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/mod.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/requests.rs b/lib/modules/blockchain/blockchain-dal/src/writers/requests.rs
index 9b227ea3..1cfbc499 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/requests.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/requests.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain-dal/src/writers/transaction.rs b/lib/modules/blockchain/blockchain-dal/src/writers/transaction.rs
index 74cf76f9..fb6ec794 100644
--- a/lib/modules/blockchain/blockchain-dal/src/writers/transaction.rs
+++ b/lib/modules/blockchain/blockchain-dal/src/writers/transaction.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/Cargo.toml b/lib/modules/blockchain/blockchain/Cargo.toml
index f4e6184f..319f9843 100644
--- a/lib/modules/blockchain/blockchain/Cargo.toml
+++ b/lib/modules/blockchain/blockchain/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-blockchain"
 version = "0.2.0-a"
 authors = ["librelois <elois@ifee.fr>"]
-description = "Blockchain module for the Durs project."
+description = "Blockchain module for the Dunitrust project."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/modules/blockchain/blockchain/src/constants.rs b/lib/modules/blockchain/blockchain/src/constants.rs
index d62c7d4f..8af6e737 100644
--- a/lib/modules/blockchain/blockchain/src/constants.rs
+++ b/lib/modules/blockchain/blockchain/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dbex.rs b/lib/modules/blockchain/blockchain/src/dbex.rs
index ab4767a4..55eeeea6 100644
--- a/lib/modules/blockchain/blockchain/src/dbex.rs
+++ b/lib/modules/blockchain/blockchain/src/dbex.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dubp/apply/mod.rs b/lib/modules/blockchain/blockchain/src/dubp/apply/mod.rs
index 3cef4d90..da41785f 100644
--- a/lib/modules/blockchain/blockchain/src/dubp/apply/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/dubp/apply/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dubp/check/hashs.rs b/lib/modules/blockchain/blockchain/src/dubp/check/hashs.rs
index 81a9d785..babceb61 100644
--- a/lib/modules/blockchain/blockchain/src/dubp/check/hashs.rs
+++ b/lib/modules/blockchain/blockchain/src/dubp/check/hashs.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dubp/check/mod.rs b/lib/modules/blockchain/blockchain/src/dubp/check/mod.rs
index b14762ea..ba7e0276 100644
--- a/lib/modules/blockchain/blockchain/src/dubp/check/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/dubp/check/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dubp/mod.rs b/lib/modules/blockchain/blockchain/src/dubp/mod.rs
index 87a588b5..47ddae88 100644
--- a/lib/modules/blockchain/blockchain/src/dubp/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/dubp/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dunp/mod.rs b/lib/modules/blockchain/blockchain/src/dunp/mod.rs
index 26baecb6..c9c05aa8 100644
--- a/lib/modules/blockchain/blockchain/src/dunp/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/dunp/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dunp/queries.rs b/lib/modules/blockchain/blockchain/src/dunp/queries.rs
index 9a7bd34b..b20a2724 100644
--- a/lib/modules/blockchain/blockchain/src/dunp/queries.rs
+++ b/lib/modules/blockchain/blockchain/src/dunp/queries.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/dunp/receiver.rs b/lib/modules/blockchain/blockchain/src/dunp/receiver.rs
index 28641af0..d469403f 100644
--- a/lib/modules/blockchain/blockchain/src/dunp/receiver.rs
+++ b/lib/modules/blockchain/blockchain/src/dunp/receiver.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/events/mod.rs b/lib/modules/blockchain/blockchain/src/events/mod.rs
index 0e373125..614a6402 100644
--- a/lib/modules/blockchain/blockchain/src/events/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/events/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/events/received.rs b/lib/modules/blockchain/blockchain/src/events/received.rs
index 00e79ed4..0568ec6f 100644
--- a/lib/modules/blockchain/blockchain/src/events/received.rs
+++ b/lib/modules/blockchain/blockchain/src/events/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/events/sent.rs b/lib/modules/blockchain/blockchain/src/events/sent.rs
index d165ba61..c50cd1f7 100644
--- a/lib/modules/blockchain/blockchain/src/events/sent.rs
+++ b/lib/modules/blockchain/blockchain/src/events/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/fork/fork_algo.rs b/lib/modules/blockchain/blockchain/src/fork/fork_algo.rs
index 2784da53..04183faa 100644
--- a/lib/modules/blockchain/blockchain/src/fork/fork_algo.rs
+++ b/lib/modules/blockchain/blockchain/src/fork/fork_algo.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/fork/mod.rs b/lib/modules/blockchain/blockchain/src/fork/mod.rs
index c1e94b64..fc95dac9 100644
--- a/lib/modules/blockchain/blockchain/src/fork/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/fork/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/fork/revert_block.rs b/lib/modules/blockchain/blockchain/src/fork/revert_block.rs
index 09e09935..6790ccf6 100644
--- a/lib/modules/blockchain/blockchain/src/fork/revert_block.rs
+++ b/lib/modules/blockchain/blockchain/src/fork/revert_block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/fork/rollback.rs b/lib/modules/blockchain/blockchain/src/fork/rollback.rs
index df2f602f..53b9735a 100644
--- a/lib/modules/blockchain/blockchain/src/fork/rollback.rs
+++ b/lib/modules/blockchain/blockchain/src/fork/rollback.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/fork/stackable_blocks.rs b/lib/modules/blockchain/blockchain/src/fork/stackable_blocks.rs
index 905d059d..923349bb 100644
--- a/lib/modules/blockchain/blockchain/src/fork/stackable_blocks.rs
+++ b/lib/modules/blockchain/blockchain/src/fork/stackable_blocks.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/lib.rs b/lib/modules/blockchain/blockchain/src/lib.rs
index 7af1f493..965298bd 100644
--- a/lib/modules/blockchain/blockchain/src/lib.rs
+++ b/lib/modules/blockchain/blockchain/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/requests/mod.rs b/lib/modules/blockchain/blockchain/src/requests/mod.rs
index f2456178..5bd38cb2 100644
--- a/lib/modules/blockchain/blockchain/src/requests/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/requests/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/requests/received.rs b/lib/modules/blockchain/blockchain/src/requests/received.rs
index 0be54d41..ff1b27a4 100644
--- a/lib/modules/blockchain/blockchain/src/requests/received.rs
+++ b/lib/modules/blockchain/blockchain/src/requests/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/requests/sent.rs b/lib/modules/blockchain/blockchain/src/requests/sent.rs
index 779b22d9..99031326 100644
--- a/lib/modules/blockchain/blockchain/src/requests/sent.rs
+++ b/lib/modules/blockchain/blockchain/src/requests/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/responses/mod.rs b/lib/modules/blockchain/blockchain/src/responses/mod.rs
index 3429683f..7f53f3a2 100644
--- a/lib/modules/blockchain/blockchain/src/responses/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/responses/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/responses/received.rs b/lib/modules/blockchain/blockchain/src/responses/received.rs
index 709fdd1d..71346b4a 100644
--- a/lib/modules/blockchain/blockchain/src/responses/received.rs
+++ b/lib/modules/blockchain/blockchain/src/responses/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/responses/sent.rs b/lib/modules/blockchain/blockchain/src/responses/sent.rs
index 30ecffe2..ad4290ac 100644
--- a/lib/modules/blockchain/blockchain/src/responses/sent.rs
+++ b/lib/modules/blockchain/blockchain/src/responses/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/apply/blocks_worker.rs b/lib/modules/blockchain/blockchain/src/sync/apply/blocks_worker.rs
index 049d7ffd..aefd1fc6 100644
--- a/lib/modules/blockchain/blockchain/src/sync/apply/blocks_worker.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/apply/blocks_worker.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/apply/mod.rs b/lib/modules/blockchain/blockchain/src/sync/apply/mod.rs
index a3512fa3..c53de602 100644
--- a/lib/modules/blockchain/blockchain/src/sync/apply/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/apply/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/apply/txs_worker.rs b/lib/modules/blockchain/blockchain/src/sync/apply/txs_worker.rs
index 37e73bd4..25f79bf3 100644
--- a/lib/modules/blockchain/blockchain/src/sync/apply/txs_worker.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/apply/txs_worker.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/apply/wot_worker.rs b/lib/modules/blockchain/blockchain/src/sync/apply/wot_worker.rs
index 2b38b5d0..efe67b84 100644
--- a/lib/modules/blockchain/blockchain/src/sync/apply/wot_worker.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/apply/wot_worker.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/download/json_reader_worker.rs b/lib/modules/blockchain/blockchain/src/sync/download/json_reader_worker.rs
index 1c038957..76f7a48b 100644
--- a/lib/modules/blockchain/blockchain/src/sync/download/json_reader_worker.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/download/json_reader_worker.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/download/mod.rs b/lib/modules/blockchain/blockchain/src/sync/download/mod.rs
index f1f3bd4a..1ae0ae0e 100644
--- a/lib/modules/blockchain/blockchain/src/sync/download/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/download/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/blockchain/blockchain/src/sync/mod.rs b/lib/modules/blockchain/blockchain/src/sync/mod.rs
index bf39fb25..d3af2b41 100644
--- a/lib/modules/blockchain/blockchain/src/sync/mod.rs
+++ b/lib/modules/blockchain/blockchain/src/sync/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/skeleton/Cargo.toml b/lib/modules/skeleton/Cargo.toml
index 2317ef47..019c5245 100644
--- a/lib/modules/skeleton/Cargo.toml
+++ b/lib/modules/skeleton/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-skeleton"
 version = "0.1.0"
 authors = ["name <mail@domain.tld>"]
-description = "Module template to copy to create a new Durs module."
+description = "Module template to copy to create a new Dunitrust module."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/modules/skeleton/lib.rs b/lib/modules/skeleton/lib.rs
index 394d5d02..4ee9c512 100644
--- a/lib/modules/skeleton/lib.rs
+++ b/lib/modules/skeleton/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Module template to copy to create a new Durs module.
+//! Module template to copy to create a new Dunitrust module.
 
 #![deny(
     missing_docs,
diff --git a/lib/modules/tui/lib.rs b/lib/modules/tui/lib.rs
index 3e5f68da..59851866 100644
--- a/lib/modules/tui/lib.rs
+++ b/lib/modules/tui/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/Cargo.toml b/lib/modules/ws2p-v1-legacy/Cargo.toml
index 4c7944ef..f295d45a 100644
--- a/lib/modules/ws2p-v1-legacy/Cargo.toml
+++ b/lib/modules/ws2p-v1-legacy/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-ws2p-v1-legacy"
 version = "0.2.0-a"
 authors = ["librelois <elois@ifee.fr>"]
-description = "WebSocketToPeer API for the Durs project."
+description = "WebSocketToPeer API for the Dunitrust project."
 license = "AGPL-3.0"
 edition = "2018"
 
diff --git a/lib/modules/ws2p-v1-legacy/src/constants.rs b/lib/modules/ws2p-v1-legacy/src/constants.rs
index 1eb189ed..b2213175 100644
--- a/lib/modules/ws2p-v1-legacy/src/constants.rs
+++ b/lib/modules/ws2p-v1-legacy/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/events/mod.rs b/lib/modules/ws2p-v1-legacy/src/events/mod.rs
index 0e373125..614a6402 100644
--- a/lib/modules/ws2p-v1-legacy/src/events/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/events/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/events/received.rs b/lib/modules/ws2p-v1-legacy/src/events/received.rs
index 6b137337..d908ebca 100644
--- a/lib/modules/ws2p-v1-legacy/src/events/received.rs
+++ b/lib/modules/ws2p-v1-legacy/src/events/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/events/sent.rs b/lib/modules/ws2p-v1-legacy/src/events/sent.rs
index b7d9f05b..22770387 100644
--- a/lib/modules/ws2p-v1-legacy/src/events/sent.rs
+++ b/lib/modules/ws2p-v1-legacy/src/events/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/heads.rs b/lib/modules/ws2p-v1-legacy/src/heads.rs
index 209bf147..8d1e6a98 100644
--- a/lib/modules/ws2p-v1-legacy/src/heads.rs
+++ b/lib/modules/ws2p-v1-legacy/src/heads.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/lib.rs b/lib/modules/ws2p-v1-legacy/src/lib.rs
index 821e0e16..317ba984 100644
--- a/lib/modules/ws2p-v1-legacy/src/lib.rs
+++ b/lib/modules/ws2p-v1-legacy/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! WebSocketToPeer API for the Durs project.
+//! WebSocketToPeer API for the Dunitrust project.
 
 #![allow(clippy::large_enum_variant, clippy::identity_conversion)]
 #![deny(
diff --git a/lib/modules/ws2p-v1-legacy/src/requests/mod.rs b/lib/modules/ws2p-v1-legacy/src/requests/mod.rs
index f2456178..5bd38cb2 100644
--- a/lib/modules/ws2p-v1-legacy/src/requests/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/requests/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/requests/received.rs b/lib/modules/ws2p-v1-legacy/src/requests/received.rs
index fca0ebe7..c4ca6cb1 100644
--- a/lib/modules/ws2p-v1-legacy/src/requests/received.rs
+++ b/lib/modules/ws2p-v1-legacy/src/requests/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/requests/sent.rs b/lib/modules/ws2p-v1-legacy/src/requests/sent.rs
index 624c8617..ee90ae16 100644
--- a/lib/modules/ws2p-v1-legacy/src/requests/sent.rs
+++ b/lib/modules/ws2p-v1-legacy/src/requests/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/responses/mod.rs b/lib/modules/ws2p-v1-legacy/src/responses/mod.rs
index 516f7af7..7f53f3a2 100644
--- a/lib/modules/ws2p-v1-legacy/src/responses/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/responses/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/responses/received.rs b/lib/modules/ws2p-v1-legacy/src/responses/received.rs
index 7f64853b..a21dc45d 100644
--- a/lib/modules/ws2p-v1-legacy/src/responses/received.rs
+++ b/lib/modules/ws2p-v1-legacy/src/responses/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/responses/sent.rs b/lib/modules/ws2p-v1-legacy/src/responses/sent.rs
index 1e576ef5..7dbeb34c 100644
--- a/lib/modules/ws2p-v1-legacy/src/responses/sent.rs
+++ b/lib/modules/ws2p-v1-legacy/src/responses/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/block.rs b/lib/modules/ws2p-v1-legacy/src/serializers/block.rs
index 95c8afe9..d65e26fb 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/block.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/certification.rs b/lib/modules/ws2p-v1-legacy/src/serializers/certification.rs
index d2017fd6..c312a4b8 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/certification.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/certification.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/head.rs b/lib/modules/ws2p-v1-legacy/src/serializers/head.rs
index 4c149c55..5507a683 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/head.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/head.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/identity.rs b/lib/modules/ws2p-v1-legacy/src/serializers/identity.rs
index 16c05719..7157e431 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/identity.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/identity.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/membership.rs b/lib/modules/ws2p-v1-legacy/src/serializers/membership.rs
index d2e28cb9..c7cb5bc9 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/membership.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/membership.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/mod.rs b/lib/modules/ws2p-v1-legacy/src/serializers/mod.rs
index 19a9d304..bd04cc8a 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/revoked.rs b/lib/modules/ws2p-v1-legacy/src/serializers/revoked.rs
index ab875323..8000e8b1 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/revoked.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/revoked.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/serializers/transaction.rs b/lib/modules/ws2p-v1-legacy/src/serializers/transaction.rs
index 72e9f3eb..631a01c6 100644
--- a/lib/modules/ws2p-v1-legacy/src/serializers/transaction.rs
+++ b/lib/modules/ws2p-v1-legacy/src/serializers/transaction.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/subcommands/mod.rs b/lib/modules/ws2p-v1-legacy/src/subcommands/mod.rs
index cab62bf9..ae842a3f 100644
--- a/lib/modules/ws2p-v1-legacy/src/subcommands/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/subcommands/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/subcommands/prefered.rs b/lib/modules/ws2p-v1-legacy/src/subcommands/prefered.rs
index a442661c..42dba1f3 100644
--- a/lib/modules/ws2p-v1-legacy/src/subcommands/prefered.rs
+++ b/lib/modules/ws2p-v1-legacy/src/subcommands/prefered.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws2p_db.rs b/lib/modules/ws2p-v1-legacy/src/ws2p_db.rs
index 8746d8fd..b2d9c347 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws2p_db.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws2p_db.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/handler.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/handler.rs
index 08422feb..dbcc4e32 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/handler.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/handler.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/messages.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/messages.rs
index 8944123e..416e9e64 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/messages.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/messages.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/meta_datas.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/meta_datas.rs
index 8f8537e4..33a7bd61 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/meta_datas.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/meta_datas.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/mod.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/mod.rs
index eaaafb9e..3cc6206f 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/mod.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/mod.rs
index 0daccbb5..51e2fde0 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/received.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/received.rs
index dc2294cd..167b2ea8 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/received.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/sent.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/sent.rs
index d208dbb7..d0fb73fd 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/sent.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/requests/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/mod.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/mod.rs
index d293c19a..66abac80 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/mod.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/received.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/received.rs
index 6ef36a42..7f72a3e6 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/received.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/received.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/sent.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/sent.rs
index f4823410..1443eba1 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/sent.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/responses/sent.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p-v1-legacy/src/ws_connections/states.rs b/lib/modules/ws2p-v1-legacy/src/ws_connections/states.rs
index 48e91425..acb6df90 100644
--- a/lib/modules/ws2p-v1-legacy/src/ws_connections/states.rs
+++ b/lib/modules/ws2p-v1-legacy/src/ws_connections/states.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/lib.rs b/lib/modules/ws2p/ws2p-messages/lib.rs
index 00aa23b1..121029f7 100644
--- a/lib/modules/ws2p/ws2p-messages/lib.rs
+++ b/lib/modules/ws2p/ws2p-messages/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/api_features.rs b/lib/modules/ws2p/ws2p-messages/v2/api_features.rs
index f12a71ff..7ad082e5 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/api_features.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/api_features.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/connect.rs b/lib/modules/ws2p/ws2p-messages/v2/connect.rs
index aa085fb5..0f60892e 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/connect.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/connect.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/mod.rs b/lib/modules/ws2p/ws2p-messages/v2/mod.rs
index 59e1b696..56db3c0c 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/mod.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/ok.rs b/lib/modules/ws2p/ws2p-messages/v2/ok.rs
index f0d13e22..5a73d09d 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/ok.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/ok.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/payload_container.rs b/lib/modules/ws2p/ws2p-messages/v2/payload_container.rs
index 678322aa..5bf89864 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/payload_container.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/payload_container.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/req_responses.rs b/lib/modules/ws2p/ws2p-messages/v2/req_responses.rs
index eaee2974..311c3d75 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/req_responses.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/req_responses.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/requests.rs b/lib/modules/ws2p/ws2p-messages/v2/requests.rs
index f8d36676..bbec87b7 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/requests.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/requests.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-messages/v2/secret_flags.rs b/lib/modules/ws2p/ws2p-messages/v2/secret_flags.rs
index 68e44fdf..82af1ee4 100644
--- a/lib/modules/ws2p/ws2p-messages/v2/secret_flags.rs
+++ b/lib/modules/ws2p/ws2p-messages/v2/secret_flags.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/connection_state.rs b/lib/modules/ws2p/ws2p-protocol/src/connection_state.rs
index 8f73ee2e..f3fa7c2c 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/connection_state.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/connection_state.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/constants.rs b/lib/modules/ws2p/ws2p-protocol/src/constants.rs
index ce200fea..8465e9fa 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/constants.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller.rs b/lib/modules/ws2p/ws2p-protocol/src/controller.rs
index 82befe1e..8bbb61ab 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/meta_datas.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/meta_datas.rs
index 27f1fca4..3d819e81 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/meta_datas.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/meta_datas.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message.rs
index b0e5fcda..bdb98348 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ack_msg.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ack_msg.rs
index cc829e00..0935e66d 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ack_msg.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ack_msg.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/connect_msg.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/connect_msg.rs
index b2bdb7ee..8e62395f 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/connect_msg.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/connect_msg.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ok_msg.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ok_msg.rs
index 37985be7..4149b28c 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ok_msg.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/ok_msg.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/secret_flags.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/secret_flags.rs
index 331e71d7..43eefaf9 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/secret_flags.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_message/secret_flags.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/controller/on_open.rs b/lib/modules/ws2p/ws2p-protocol/src/controller/on_open.rs
index c7991ed6..5a88f707 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/controller/on_open.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/controller/on_open.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/lib.rs b/lib/modules/ws2p/ws2p-protocol/src/lib.rs
index 9ce88c50..23ed6f9b 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/lib.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/orchestrator.rs b/lib/modules/ws2p/ws2p-protocol/src/orchestrator.rs
index 177a9da8..8b7234e3 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/orchestrator.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/orchestrator.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p-protocol/src/websocket.rs b/lib/modules/ws2p/ws2p-protocol/src/websocket.rs
index e9b641e4..4ab46e20 100644
--- a/lib/modules/ws2p/ws2p-protocol/src/websocket.rs
+++ b/lib/modules/ws2p/ws2p-protocol/src/websocket.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/constants.rs b/lib/modules/ws2p/ws2p/src/constants.rs
index 1ef0e92c..eb953373 100644
--- a/lib/modules/ws2p/ws2p/src/constants.rs
+++ b/lib/modules/ws2p/ws2p/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/controllers/handler.rs b/lib/modules/ws2p/ws2p/src/controllers/handler.rs
index 6f7eff77..ad5ed63c 100644
--- a/lib/modules/ws2p/ws2p/src/controllers/handler.rs
+++ b/lib/modules/ws2p/ws2p/src/controllers/handler.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/controllers/incoming_connections.rs b/lib/modules/ws2p/ws2p/src/controllers/incoming_connections.rs
index 827bdd01..7ddc2316 100644
--- a/lib/modules/ws2p/ws2p/src/controllers/incoming_connections.rs
+++ b/lib/modules/ws2p/ws2p/src/controllers/incoming_connections.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/controllers/mod.rs b/lib/modules/ws2p/ws2p/src/controllers/mod.rs
index 56bd75c6..11184b5c 100644
--- a/lib/modules/ws2p/ws2p/src/controllers/mod.rs
+++ b/lib/modules/ws2p/ws2p/src/controllers/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/controllers/outgoing_connections.rs b/lib/modules/ws2p/ws2p/src/controllers/outgoing_connections.rs
index 525a53ef..ed1d5f91 100644
--- a/lib/modules/ws2p/ws2p/src/controllers/outgoing_connections.rs
+++ b/lib/modules/ws2p/ws2p/src/controllers/outgoing_connections.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/errors.rs b/lib/modules/ws2p/ws2p/src/errors.rs
index fd6c4be8..0c4a12c6 100644
--- a/lib/modules/ws2p/ws2p/src/errors.rs
+++ b/lib/modules/ws2p/ws2p/src/errors.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/generate_peer.rs b/lib/modules/ws2p/ws2p/src/generate_peer.rs
index 05d5b328..40569ae5 100644
--- a/lib/modules/ws2p/ws2p/src/generate_peer.rs
+++ b/lib/modules/ws2p/ws2p/src/generate_peer.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/lib.rs b/lib/modules/ws2p/ws2p/src/lib.rs
index 1118c3e6..a484e853 100644
--- a/lib/modules/ws2p/ws2p/src/lib.rs
+++ b/lib/modules/ws2p/ws2p/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -84,7 +84,7 @@ impl Default for WS2PConf {
         WS2PConf {
             outcoming_quota: *constants::WS2P_DEFAULT_OUTCOMING_QUOTA,
             sync_endpoints: vec![
-                EndpointV2::parse_from_raw("WS2P 2 g1.durs.info 443 ws2p").unwrap(),
+                EndpointV2::parse_from_raw("WS2P 2 g1.dunitrust.org 443 ws2p").unwrap(),
                 EndpointV2::parse_from_raw("WS2P 2 rs.g1.librelois.fr 443 ws2p").unwrap(),
             ],
         }
diff --git a/lib/modules/ws2p/ws2p/src/services/mod.rs b/lib/modules/ws2p/ws2p/src/services/mod.rs
index 068bf68c..6a791fe2 100644
--- a/lib/modules/ws2p/ws2p/src/services/mod.rs
+++ b/lib/modules/ws2p/ws2p/src/services/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/src/services/outgoing.rs b/lib/modules/ws2p/ws2p/src/services/outgoing.rs
index abecf71c..dd0c3fef 100644
--- a/lib/modules/ws2p/ws2p/src/services/outgoing.rs
+++ b/lib/modules/ws2p/ws2p/src/services/outgoing.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/modules/ws2p/ws2p/tests/connection_negociation.rs b/lib/modules/ws2p/ws2p/tests/connection_negociation.rs
index aa35b27f..36d30f81 100644
--- a/lib/modules/ws2p/ws2p/tests/connection_negociation.rs
+++ b/lib/modules/ws2p/ws2p/tests/connection_negociation.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tests-tools/common-tests-tools/Cargo.toml b/lib/tests-tools/common-tests-tools/Cargo.toml
index a721418b..e7fe4124 100644
--- a/lib/tests-tools/common-tests-tools/Cargo.toml
+++ b/lib/tests-tools/common-tests-tools/Cargo.toml
@@ -2,7 +2,7 @@
 name = "durs-common-tests-tools"
 version = "0.1.0"
 authors = ["elois <elois@duniter.org>"]
-description = "Common tests tools for Durs project."
+description = "Common tests tools for Dunitrust project."
 repository = "https://git.duniter.org/nodes/rust/duniter-rs"
 readme = "README.md"
 keywords = ["durs", "test", "tools"]
diff --git a/lib/tests-tools/common-tests-tools/src/collections/mod.rs b/lib/tests-tools/common-tests-tools/src/collections/mod.rs
index 662896d5..8d8ed1a5 100644
--- a/lib/tests-tools/common-tests-tools/src/collections/mod.rs
+++ b/lib/tests-tools/common-tests-tools/src/collections/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tests-tools/common-tests-tools/src/lib.rs b/lib/tests-tools/common-tests-tools/src/lib.rs
index 9449e5c1..7d984df4 100644
--- a/lib/tests-tools/common-tests-tools/src/lib.rs
+++ b/lib/tests-tools/common-tests-tools/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tests-tools/common-tests-tools/src/logger.rs b/lib/tests-tools/common-tests-tools/src/logger.rs
index 201e2722..71dcd11a 100644
--- a/lib/tests-tools/common-tests-tools/src/logger.rs
+++ b/lib/tests-tools/common-tests-tools/src/logger.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/bases/b16.rs b/lib/tools/crypto/src/bases/b16.rs
index d4936f7d..f715cb91 100644
--- a/lib/tools/crypto/src/bases/b16.rs
+++ b/lib/tools/crypto/src/bases/b16.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/bases/b58.rs b/lib/tools/crypto/src/bases/b58.rs
index 73d809c0..c5bc0707 100644
--- a/lib/tools/crypto/src/bases/b58.rs
+++ b/lib/tools/crypto/src/bases/b58.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/bases/b64.rs b/lib/tools/crypto/src/bases/b64.rs
index 31b8e445..1a13b580 100644
--- a/lib/tools/crypto/src/bases/b64.rs
+++ b/lib/tools/crypto/src/bases/b64.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/bases/mod.rs b/lib/tools/crypto/src/bases/mod.rs
index 4dbcbf8d..80ba0dfd 100644
--- a/lib/tools/crypto/src/bases/mod.rs
+++ b/lib/tools/crypto/src/bases/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/hashs/mod.rs b/lib/tools/crypto/src/hashs/mod.rs
index c4d32ba0..9e6260f1 100644
--- a/lib/tools/crypto/src/hashs/mod.rs
+++ b/lib/tools/crypto/src/hashs/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/keys/bin_signable.rs b/lib/tools/crypto/src/keys/bin_signable.rs
index 79d2a02f..5fe8c2e6 100644
--- a/lib/tools/crypto/src/keys/bin_signable.rs
+++ b/lib/tools/crypto/src/keys/bin_signable.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/keys/ed25519.rs b/lib/tools/crypto/src/keys/ed25519.rs
index 86e98e51..f67da8ae 100644
--- a/lib/tools/crypto/src/keys/ed25519.rs
+++ b/lib/tools/crypto/src/keys/ed25519.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Duniter Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/keys/mod.rs b/lib/tools/crypto/src/keys/mod.rs
index 5f9c9ba9..9f4b5756 100644
--- a/lib/tools/crypto/src/keys/mod.rs
+++ b/lib/tools/crypto/src/keys/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/keys/text_signable.rs b/lib/tools/crypto/src/keys/text_signable.rs
index 6d27da10..925047ea 100644
--- a/lib/tools/crypto/src/keys/text_signable.rs
+++ b/lib/tools/crypto/src/keys/text_signable.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/crypto/src/lib.rs b/lib/tools/crypto/src/lib.rs
index 6ffa8d70..0518f820 100644
--- a/lib/tools/crypto/src/lib.rs
+++ b/lib/tools/crypto/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/constants.rs b/lib/tools/currency-params/src/constants.rs
index 73b106ce..da2844e2 100644
--- a/lib/tools/currency-params/src/constants.rs
+++ b/lib/tools/currency-params/src/constants.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/currencies_codes.rs b/lib/tools/currency-params/src/currencies_codes.rs
index 19bfaaaf..6b09b60a 100644
--- a/lib/tools/currency-params/src/currencies_codes.rs
+++ b/lib/tools/currency-params/src/currencies_codes.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/db.rs b/lib/tools/currency-params/src/db.rs
index b2e6a1b2..fe418418 100644
--- a/lib/tools/currency-params/src/db.rs
+++ b/lib/tools/currency-params/src/db.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/genesis_block_params.rs b/lib/tools/currency-params/src/genesis_block_params.rs
index c29ef4b2..40521b9c 100644
--- a/lib/tools/currency-params/src/genesis_block_params.rs
+++ b/lib/tools/currency-params/src/genesis_block_params.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/genesis_block_params/v10.rs b/lib/tools/currency-params/src/genesis_block_params/v10.rs
index dbc0bada..6626839d 100644
--- a/lib/tools/currency-params/src/genesis_block_params/v10.rs
+++ b/lib/tools/currency-params/src/genesis_block_params/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/currency-params/src/lib.rs b/lib/tools/currency-params/src/lib.rs
index fd20b2e6..32163448 100644
--- a/lib/tools/currency-params/src/lib.rs
+++ b/lib/tools/currency-params/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/blockstamp.rs b/lib/tools/documents/src/blockstamp.rs
index 0a8d7629..de27cd7e 100644
--- a/lib/tools/documents/src/blockstamp.rs
+++ b/lib/tools/documents/src/blockstamp.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/block.rs b/lib/tools/documents/src/documents/block.rs
index f9ded4b7..d985a2a1 100644
--- a/lib/tools/documents/src/documents/block.rs
+++ b/lib/tools/documents/src/documents/block.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/block/v10.rs b/lib/tools/documents/src/documents/block/v10.rs
index b795a516..0249a761 100644
--- a/lib/tools/documents/src/documents/block/v10.rs
+++ b/lib/tools/documents/src/documents/block/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/certification.rs b/lib/tools/documents/src/documents/certification.rs
index 1439eb76..75ade7e0 100644
--- a/lib/tools/documents/src/documents/certification.rs
+++ b/lib/tools/documents/src/documents/certification.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/certification/v10.rs b/lib/tools/documents/src/documents/certification/v10.rs
index ab22299f..13c65d97 100644
--- a/lib/tools/documents/src/documents/certification/v10.rs
+++ b/lib/tools/documents/src/documents/certification/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/identity.rs b/lib/tools/documents/src/documents/identity.rs
index 31ef0d71..a2e9d093 100644
--- a/lib/tools/documents/src/documents/identity.rs
+++ b/lib/tools/documents/src/documents/identity.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/identity/v10.rs b/lib/tools/documents/src/documents/identity/v10.rs
index 6bed0d30..d0b0af65 100644
--- a/lib/tools/documents/src/documents/identity/v10.rs
+++ b/lib/tools/documents/src/documents/identity/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/membership.rs b/lib/tools/documents/src/documents/membership.rs
index 9cdda47a..e8168ce3 100644
--- a/lib/tools/documents/src/documents/membership.rs
+++ b/lib/tools/documents/src/documents/membership.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/membership/v10.rs b/lib/tools/documents/src/documents/membership/v10.rs
index ad3ea629..649b14e5 100644
--- a/lib/tools/documents/src/documents/membership/v10.rs
+++ b/lib/tools/documents/src/documents/membership/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/mod.rs b/lib/tools/documents/src/documents/mod.rs
index a38f1643..fc5caf47 100644
--- a/lib/tools/documents/src/documents/mod.rs
+++ b/lib/tools/documents/src/documents/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Implements the Durs blockchain Documents.
+//! Implements the Dunitrust blockchain Documents.
 
 use crate::documents::block::*;
 use crate::documents::certification::*;
diff --git a/lib/tools/documents/src/documents/revocation.rs b/lib/tools/documents/src/documents/revocation.rs
index 933234f8..6eafa6a4 100644
--- a/lib/tools/documents/src/documents/revocation.rs
+++ b/lib/tools/documents/src/documents/revocation.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/revocation/v10.rs b/lib/tools/documents/src/documents/revocation/v10.rs
index 95b49b36..d8a35f94 100644
--- a/lib/tools/documents/src/documents/revocation/v10.rs
+++ b/lib/tools/documents/src/documents/revocation/v10.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Wrappers around Revocation documents V//  Copyright (C) 2018  The Duniter Project Developers.
+//! Wrappers around Revocation documents V//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/documents/transaction.rs b/lib/tools/documents/src/documents/transaction.rs
index 290b5b05..239f688d 100644
--- a/lib/tools/documents/src/documents/transaction.rs
+++ b/lib/tools/documents/src/documents/transaction.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/lib.rs b/lib/tools/documents/src/lib.rs
index e3185143..97088a6c 100644
--- a/lib/tools/documents/src/lib.rs
+++ b/lib/tools/documents/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -13,7 +13,7 @@
 // You should have received a copy of the GNU Affero General Public License
 // along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-//! Implements the Durs Documents Protocol.
+//! Implements the Dunitrust Documents Protocol.
 
 #![deny(
     missing_debug_implementations,
diff --git a/lib/tools/documents/src/parsers/blocks.rs b/lib/tools/documents/src/parsers/blocks.rs
index 95f38b83..38dc95e7 100644
--- a/lib/tools/documents/src/parsers/blocks.rs
+++ b/lib/tools/documents/src/parsers/blocks.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/certifications.rs b/lib/tools/documents/src/parsers/certifications.rs
index becd0ceb..9ef4f5c8 100644
--- a/lib/tools/documents/src/parsers/certifications.rs
+++ b/lib/tools/documents/src/parsers/certifications.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/identities.rs b/lib/tools/documents/src/parsers/identities.rs
index 988b355d..fd7d6914 100644
--- a/lib/tools/documents/src/parsers/identities.rs
+++ b/lib/tools/documents/src/parsers/identities.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/memberships.rs b/lib/tools/documents/src/parsers/memberships.rs
index d1a19d5e..91f2d8d7 100644
--- a/lib/tools/documents/src/parsers/memberships.rs
+++ b/lib/tools/documents/src/parsers/memberships.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/mod.rs b/lib/tools/documents/src/parsers/mod.rs
index 37c941d0..c26285c5 100644
--- a/lib/tools/documents/src/parsers/mod.rs
+++ b/lib/tools/documents/src/parsers/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/revoked.rs b/lib/tools/documents/src/parsers/revoked.rs
index 5e85ac98..37fcf27d 100644
--- a/lib/tools/documents/src/parsers/revoked.rs
+++ b/lib/tools/documents/src/parsers/revoked.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/parsers/transactions.rs b/lib/tools/documents/src/parsers/transactions.rs
index a7e7d950..efbebcdf 100644
--- a/lib/tools/documents/src/parsers/transactions.rs
+++ b/lib/tools/documents/src/parsers/transactions.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/documents/src/text_document_traits.rs b/lib/tools/documents/src/text_document_traits.rs
index 806ff22a..ccf8c227 100644
--- a/lib/tools/documents/src/text_document_traits.rs
+++ b/lib/tools/documents/src/text_document_traits.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Durs Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/README.md b/lib/tools/network-documents/README.md
index ce8f3b0d..7b58531f 100644
--- a/lib/tools/network-documents/README.md
+++ b/lib/tools/network-documents/README.md
@@ -1,3 +1,3 @@
-# Durs network Documents
+# Dunitrust network Documents
 
 Define documents format for DUNP (DUniter Network Protocol)
\ No newline at end of file
diff --git a/lib/tools/network-documents/src/host.rs b/lib/tools/network-documents/src/host.rs
index 7ac0d63d..905702e2 100644
--- a/lib/tools/network-documents/src/host.rs
+++ b/lib/tools/network-documents/src/host.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/lib.rs b/lib/tools/network-documents/src/lib.rs
index 3ffcb8cd..7ee768fc 100644
--- a/lib/tools/network-documents/src/lib.rs
+++ b/lib/tools/network-documents/src/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/network_endpoint.rs b/lib/tools/network-documents/src/network_endpoint.rs
index 37f213ab..25c2eab6 100644
--- a/lib/tools/network-documents/src/network_endpoint.rs
+++ b/lib/tools/network-documents/src/network_endpoint.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Duniter Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
@@ -793,7 +793,7 @@ mod tests {
     #[test]
     fn test_parse_and_read_endpoint_with_all_fields() {
         let str_endpoint =
-            "WS2P V2 S 0x7 5.135.188.170 [2001:41d0:8:c5aa::1] g1.durs.info 443 ws2p";
+            "WS2P V2 S 0x7 5.135.188.170 [2001:41d0:8:c5aa::1] g1.dunitrust.org 443 ws2p";
         let endpoint = EndpointV2 {
             api: ApiName(String::from("WS2P")),
             api_version: 2,
@@ -801,7 +801,7 @@ mod tests {
             api_features: ApiFeatures(vec![7u8]),
             ip_v4: Some(Ipv4Addr::from_str("5.135.188.170").unwrap()),
             ip_v6: Some(Ipv6Addr::from_str("2001:41d0:8:c5aa::1").unwrap()),
-            domain: Some(String::from("g1.durs.info")),
+            domain: Some(String::from("g1.dunitrust.org")),
             port: 443u16,
             path: Some(String::from("ws2p")),
         };
diff --git a/lib/tools/network-documents/src/network_head.rs b/lib/tools/network-documents/src/network_head.rs
index d043e4df..8d28e5ad 100644
--- a/lib/tools/network-documents/src/network_head.rs
+++ b/lib/tools/network-documents/src/network_head.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Durs Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/network_head_v2.rs b/lib/tools/network-documents/src/network_head_v2.rs
index ea18c83c..8ed6de01 100644
--- a/lib/tools/network-documents/src/network_head_v2.rs
+++ b/lib/tools/network-documents/src/network_head_v2.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Duniter Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/network_head_v3.rs b/lib/tools/network-documents/src/network_head_v3.rs
index 39a3c44c..e8bcb3bc 100644
--- a/lib/tools/network-documents/src/network_head_v3.rs
+++ b/lib/tools/network-documents/src/network_head_v3.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Durs Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/network_peer.rs b/lib/tools/network-documents/src/network_peer.rs
index 665f5a0e..0635cbd0 100644
--- a/lib/tools/network-documents/src/network_peer.rs
+++ b/lib/tools/network-documents/src/network_peer.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017  The Duniter Project Developers.
+//  Copyright (C) 2017  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/network-documents/src/url.rs b/lib/tools/network-documents/src/url.rs
index 98745e0b..b7c0a692 100644
--- a/lib/tools/network-documents/src/url.rs
+++ b/lib/tools/network-documents/src/url.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2018  The Duniter Project Developers.
+//  Copyright (C) 2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/data/mod.rs b/lib/tools/wot/data/mod.rs
index d7851b23..e3e13d01 100644
--- a/lib/tools/wot/data/mod.rs
+++ b/lib/tools/wot/data/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/data/rusty.rs b/lib/tools/wot/data/rusty.rs
index b3bbae06..becc5fc9 100644
--- a/lib/tools/wot/data/rusty.rs
+++ b/lib/tools/wot/data/rusty.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/lib.rs b/lib/tools/wot/lib.rs
index aecbdcc0..49a3fea1 100644
--- a/lib/tools/wot/lib.rs
+++ b/lib/tools/wot/lib.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/operations/centrality.rs b/lib/tools/wot/operations/centrality.rs
index c87b5f77..953398ea 100644
--- a/lib/tools/wot/operations/centrality.rs
+++ b/lib/tools/wot/operations/centrality.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/operations/distance.rs b/lib/tools/wot/operations/distance.rs
index d7e15768..3343f506 100644
--- a/lib/tools/wot/operations/distance.rs
+++ b/lib/tools/wot/operations/distance.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/operations/file.rs b/lib/tools/wot/operations/file.rs
index 9466a488..daea104f 100644
--- a/lib/tools/wot/operations/file.rs
+++ b/lib/tools/wot/operations/file.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/operations/mod.rs b/lib/tools/wot/operations/mod.rs
index bc956419..df06aeed 100644
--- a/lib/tools/wot/operations/mod.rs
+++ b/lib/tools/wot/operations/mod.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/lib/tools/wot/operations/path.rs b/lib/tools/wot/operations/path.rs
index 231af688..da181381 100644
--- a/lib/tools/wot/operations/path.rs
+++ b/lib/tools/wot/operations/path.rs
@@ -1,4 +1,4 @@
-//  Copyright (C) 2017-2018  The Duniter Project Developers.
+//  Copyright (C) 2017-2018  The Dunitrust Project Developers.
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU Affero General Public License as
diff --git a/release/arch/armv7/build-armv7.sh b/release/arch/armv7/build-armv7.sh
index 618511e4..2b4f3c5f 100644
--- a/release/arch/armv7/build-armv7.sh
+++ b/release/arch/armv7/build-armv7.sh
@@ -51,7 +51,7 @@ create_desc() {
 # 1. Building directory.
 build_extra_server() {
 	mkdir -p "${1}/lib/systemd/system" || exit 1
-	cp "${ROOT}/release/extra/systemd/durs.service" "${1}/lib/systemd/system" || exit 1
+	cp "${ROOT}/release/extra/systemd/dunitrust.service" "${1}/lib/systemd/system" || exit 1
 }
 
 # Debian package building.
@@ -59,9 +59,9 @@ build_extra_server() {
 # Parameters:
 # 1. Building type (either “desktop” or “server”).
 build_deb_pack() {
-	#cd "bin/durs-${1}"
+	#cd "bin/dunitrust-${1}"
 	#cargo build --release --target=armv7-unknown-linux-gnueabihf --features=ssl
-	cargo deb --manifest-path="bin/durs-${1}/Cargo.toml" --target=${TARGET} --variant=arm --output "${BIN}/duniter-rust-${1}-${DURS_TAG}-armv7.deb"
+	cargo deb --manifest-path="bin/dunitrust-${1}/Cargo.toml" --target=${TARGET} --variant=arm --output "${BIN}/duniter-rust-${1}-${DURS_TAG}-armv7.deb"
 	create_desc "${BIN}/duniter-rust-${1}-${DURS_TAG}-armv7.deb" "${1}" "Linux (Ubuntu/Debian/Raspbian)"
 }
 
@@ -92,8 +92,8 @@ mkdir -p "${RELEASES}/server_" || exit 1
 #mkdir -p "${RELEASES}/desktop_" || exit 1
 
 # Copy binary (build by cargo deb)
-cp "${ROOT}/target/${TARGET}/release/durs" "${RELEASES}/server_/" || exit 1
-#cp "${ROOT}/target/release/durs" "${RELEASES}/desktop_" || exit 1
+cp "${ROOT}/target/${TARGET}/release/dunitrust" "${RELEASES}/server_/" || exit 1
+#cp "${ROOT}/target/release/dunitrust" "${RELEASES}/desktop_" || exit 1
 
 # Copy logo
 cp "${ROOT}/images/duniter-rs.png" "${RELEASES}/server_/" || exit 1
diff --git a/release/arch/linux-x64/build-lin-x64.sh b/release/arch/linux-x64/build-lin-x64.sh
index 15f57729..85f2bd80 100644
--- a/release/arch/linux-x64/build-lin-x64.sh
+++ b/release/arch/linux-x64/build-lin-x64.sh
@@ -50,7 +50,7 @@ create_desc() {
 # 1. Building directory.
 build_extra_server() {
 	mkdir -p "${1}/lib/systemd/system" || exit 1
-	cp "${ROOT}/release/extra/systemd/durs.service" "${1}/lib/systemd/system" || exit 1
+	cp "${ROOT}/release/extra/systemd/dunitrust.service" "${1}/lib/systemd/system" || exit 1
 }
 
 # Debian package building.
@@ -58,7 +58,7 @@ build_extra_server() {
 # Parameters:
 # 1. Building type (either “desktop” or “server”).
 build_deb_pack() {
-	cd "${ROOT}/bin/durs-${1}"
+	cd "${ROOT}/bin/dunitrust-${1}"
 	cargo deb --output "${BIN}/duniter-rust-${1}-${DURS_TAG}-linux-x64.deb"
 	create_desc "${BIN}/duniter-rust-${1}-${DURS_TAG}-linux-x64.deb" "${1}" "Linux (Ubuntu/Debian)"
 }
@@ -90,8 +90,8 @@ mkdir -p "${RELEASES}/server_" || exit 1
 #mkdir -p "${RELEASES}/desktop_" || exit 1
 
 # Copy binary (build by cargo deb)
-cp "${ROOT}/target/release/durs" "${RELEASES}/server_/" || exit 1
-#cp "${ROOT}/target/release/durs" "${RELEASES}/desktop_" || exit 1
+cp "${ROOT}/target/release/dunitrust" "${RELEASES}/server_/" || exit 1
+#cp "${ROOT}/target/release/dunitrust" "${RELEASES}/desktop_" || exit 1
 
 # Copy logo
 cp "${ROOT}/images/duniter-rs.png" "${RELEASES}/server_/" || exit 1
diff --git a/release/arch/win64/build-win64.sh b/release/arch/win64/build-win64.sh
index c7d50100..770e8dae 100644
--- a/release/arch/win64/build-win64.sh
+++ b/release/arch/win64/build-win64.sh
@@ -62,19 +62,19 @@ cd "${DOWNLOADS}"
 # -----------
 
 # Prepare sources
-mkdir -p "${RELEASES}/durs" || exit 1
-cp -r $(find "${ROOT}" -mindepth 1 -maxdepth 1 ! -name "${WORK_NAME}") "${RELEASES}/durs" || exit 1
-cd "${RELEASES}/durs"
+mkdir -p "${RELEASES}/dunitrust" || exit 1
+cp -r $(find "${ROOT}" -mindepth 1 -maxdepth 1 ! -name "${WORK_NAME}") "${RELEASES}/dunitrust" || exit 1
+cd "${RELEASES}/dunitrust"
 rm -Rf .gitignore .git || exit 1 # Remove git files
 
 # Build binary
 echo ">> Building binary..."
-cd "${ROOT}/bin/durs-server"
+cd "${ROOT}/bin/dunitrust-server"
 cargo build --release --target=${TARGET} || exit 1
 
 mkdir -p "${RELEASES}/server_" || exit 1
-cp "${ROOT}/target/${TARGET}/release/durs.exe" "${RELEASES}/server_/" || exit 1
-#cp "${ROOT}/target/${TARGET}/release/durs" "${RELEASES}/desktop_" || exit 1
+cp "${ROOT}/target/${TARGET}/release/dunitrust.exe" "${RELEASES}/server_/" || exit 1
+#cp "${ROOT}/target/${TARGET}/release/dunitrust" "${RELEASES}/desktop_" || exit 1
 
 # Copy logo
 #cp "${ROOT}/images/duniter-rs.png" "${RELEASES}/server_/" || exit 1
diff --git a/release/docker/Dockerfile b/release/docker/Dockerfile
index ecb34209..889d401a 100644
--- a/release/docker/Dockerfile
+++ b/release/docker/Dockerfile
@@ -4,15 +4,15 @@
 
 FROM registry.duniter.org/docker/dunitrust/dunitrust-ci-lin64:latest as build
 
-LABEL maintainer="elois <elois@ifee.fr>"
-LABEL version="0.1.2"
-LABEL description="Durs server (Divende Universel RuSt)"
+LABEL maintainer="elois <elois@duniter.org>>"
+LABEL version="0.1.3"
+LABEL description="Dunitrust server (Divende Universel Rust)"
 
 # copy source tree
 COPY ./ ./
 
-# build durs-server in release with features
-RUN cargo build --release --manifest-path bin/durs-server/Cargo.toml --features ssl
+# build dunitrust-server in release with features
+RUN cargo build --release --manifest-path bin/dunitrust-server/Cargo.toml --features ssl
 
 # ------------------------------------------------------------------------------
 # Final Stage
@@ -27,16 +27,16 @@ RUN apt-get update && \
 
 RUN useradd -s /bin/sh -u 1000 -U user
 
-RUN mkdir -p /home/user/.config /var/lib/durs && chown -R user:user /home/user /var/lib/durs
+RUN mkdir -p /home/user/.config /var/lib/dunitrust && chown -R user:user /home/user /var/lib/dunitrust
 
 # copy the build artifact from the build stage
-COPY --from=build --chown=user:user /target/release/durs /usr/bin/
+COPY --from=build --chown=user:user /target/release/dunitrust /usr/bin/
 
-VOLUME /var/lib/durs
+VOLUME /var/lib/dunitrust
 
 USER user
 WORKDIR /home/user
 
-CMD ["durs", "start"]
+CMD ["dunitrust", "start"]
 
 #run whith `docker run -it IMAGE`
diff --git a/release/extra/systemd/durs.service b/release/extra/systemd/durs.service
index 3e8131ca..64c5ce85 100644
--- a/release/extra/systemd/durs.service
+++ b/release/extra/systemd/durs.service
@@ -3,10 +3,10 @@ Description=Duniter-Rust node
 After=network.target
 
 [Service]
-Environment="DURS_HOME=/var/lib/durs/.config/durs-dev"
+Environment="DURS_HOME=/var/lib/dunitrust/.config/dunitrust-dev"
 Environment="PROFILE=default"
 # If using a key file, DURS_OPTS can be defined like so:
-#Environment="DURS_OPTS=--keyfile /etc/durs/keys.yml"
+#Environment="DURS_OPTS=--keyfile /etc/dunitrust/keys.yml"
 Environment="DURS_OPTS="
 Group=durs
 User=durs
-- 
GitLab