diff --git a/end2end-tests/cucumber-features/monetary_mass.feature b/end2end-tests/cucumber-features/monetary_mass.feature
index 8679d2c2326c48360581d19dc119c97865d3ef22..2a810a55237037eea1ed53b2efb1161d2e95709e 100644
--- a/end2end-tests/cucumber-features/monetary_mass.feature
+++ b/end2end-tests/cucumber-features/monetary_mass.feature
@@ -1,10 +1,10 @@
 Feature: Balance transfer
 
-  Scenario: After 10 blocks, the monetary mass should be 60 ÄžD
-    Then Monetary mass should be 30.00 ÄžD
-    Then Current UD amount should be 10.00 ÄžD
+  Scenario: After 10 blocks, the monetary mass should be 600 ÄžD
+    Then Monetary mass should be 300.00 ÄžD
+    Then Current UD amount should be 100.00 ÄžD
     When 10 blocks later
-    Then Monetary mass should be 60.00 ÄžD
+    Then Monetary mass should be 600.00 ÄžD
     When 10 blocks later
-    Then Monetary mass should be 90.00 ÄžD
-    Then Current UD amount should be 10.00 ÄžD
+    Then Monetary mass should be 900.00 ÄžD
+    Then Current UD amount should be 100.00 ÄžD
diff --git a/end2end-tests/cucumber-features/transfer_all.feature b/end2end-tests/cucumber-features/transfer_all.feature
index b111bb51822d628e4cefed0b71b199e33bf7a5bc..bd2dd30cd120009976ccceded4ad17c5a0fc4a65 100644
--- a/end2end-tests/cucumber-features/transfer_all.feature
+++ b/end2end-tests/cucumber-features/transfer_all.feature
@@ -1,11 +1,14 @@
 @genesis.default
 Feature: Balance transfer all
 
-  Scenario: If alice sends all her ÄžDs to Dave, Dave will get 8 ÄžD
+  Scenario: If alice sends all her ÄžDs to Dave, Dave will get 96 ÄžD
     When alice sends all her ÄžDs to dave
     """
     Alice is a smith member, as such she is not allowed to empty her account completely,
     if she tries to do so, the existence deposit (2 ÄžD) must remain.
     """
     Then alice should have 2 ÄžD
-    Then dave should have 8 ÄžD
+    """
+    100 ÄžD (initial Alice balance) - 2 ÄžD (Existential deposit) - 1.4 ÄžD (transaction fees)
+    """
+    Then dave should have 96.60 ÄžD
diff --git a/end2end-tests/cucumber-genesis/default.json b/end2end-tests/cucumber-genesis/default.json
index 7a978091070b4cf42720b9a07c2ae6eb99d728e7..43438583cb075b420b025a575b754cfb5baa1e93 100644
--- a/end2end-tests/cucumber-genesis/default.json
+++ b/end2end-tests/cucumber-genesis/default.json
@@ -1,19 +1,19 @@
 {
-  "first_ud": 1000,
+  "first_ud": 10000,
   "first_ud_reeval": 100,
   "identities": {
     "Alice": {
-      "balance": 1000,
+      "balance": 10000,
       "certs": ["Bob", "Charlie"],
       "pubkey": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"
     },
     "Bob": {
-      "balance": 1000,
+      "balance": 10000,
       "certs": ["Alice", "Charlie"],
       "pubkey": "5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty"
     },
     "Charlie": {
-      "balance": 1000,
+      "balance": 10000,
       "certs": ["Alice", "Bob"],
       "pubkey": "5FLSigC9HGRKVhB9FiEo4Y3koPsNmBmLJbpXg2mp1hXcS59Y"
     }
diff --git a/runtime/g1/src/parameters.rs b/runtime/g1/src/parameters.rs
index 4275a5ef17fcdae9038002d361f9873d8dce0ace..bf2c6bea3a6fa1f38446a1fadb03e2200c00a1ba 100644
--- a/runtime/g1/src/parameters.rs
+++ b/runtime/g1/src/parameters.rs
@@ -79,7 +79,7 @@ frame_support::parameter_types! {
 
 // Transaction payment
 frame_support::parameter_types! {
-    pub const TransactionByteFee: Balance = 0;
+    pub const TransactionByteFee: Balance = 1;
 }
 
 // Universal dividend
diff --git a/runtime/gdev/src/parameters.rs b/runtime/gdev/src/parameters.rs
index 024568027d5c619abd49a5a5c3d8dfc2972de310..848135cb62988774f623fd3a8bf3dfd6f4f2706b 100644
--- a/runtime/gdev/src/parameters.rs
+++ b/runtime/gdev/src/parameters.rs
@@ -77,7 +77,7 @@ frame_support::parameter_types! {
 
 // Transaction payment
 frame_support::parameter_types! {
-    pub const TransactionByteFee: Balance = 0;
+    pub const TransactionByteFee: Balance = 1;
 }
 
 // Universal dividend
diff --git a/runtime/gtest/src/parameters.rs b/runtime/gtest/src/parameters.rs
index df70c7bf699294dda5938e286629f3ffdf9865e2..1a1eb4b333faa21d083474ea3efabc796e78a1a7 100644
--- a/runtime/gtest/src/parameters.rs
+++ b/runtime/gtest/src/parameters.rs
@@ -79,7 +79,7 @@ frame_support::parameter_types! {
 
 // Transaction payment
 frame_support::parameter_types! {
-    pub const TransactionByteFee: Balance = 0;
+    pub const TransactionByteFee: Balance = 1;
 }
 
 // Universal dividend