From a43ae570e700c4f8d603ba33f5a40af09fd224ec Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 13 Oct 2017 22:29:51 -0400 Subject: [PATCH 1/3] Add more addresses Include hot wallets and strategic partnership --- src/Controller/MainController.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Controller/MainController.php b/src/Controller/MainController.php index dcdce2d..9fdbc81 100644 --- a/src/Controller/MainController.php +++ b/src/Controller/MainController.php @@ -876,8 +876,13 @@ class MainController extends AppController { $reservedcommunity = $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'rFLUohPG4tP3gZHYoyhvADCtrDMiaYb7Qd'])->first(); $reservedoperational = $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9PGXsejVJb9ZfMf3QVdDEJCzxkd9JLxzL'])->first(); $reservedinstitutional = $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9srwX7DEN7Mex3a8oR1mKSqQmLBizoJvi'])->first(); - //aux is the address where some of the LBRY operational fund are, but not sold on market. - $reservedaux = $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bRo4FEeqqxY7nWFANsZsuKEWByEgkvz8Qt'])->first(); + //aux is the address of hot wallets and where some of the LBRY operational fund are, but not sold on market. + $reservedaux = $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bRo4FEeqqxY7nWFANsZsuKEWByEgkvz8Qt'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bU2XUzckfpdEuQNemKvhPT1gexQ3GG3SC2'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bay3VA6YTQBL4WLobbG7CthmoGeUKXuXkD'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bLPbiXBp6Vr3NSnsHzDsLNzoy5o36re9Cz'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bMvUBo1h5WS46ThHtmfmXftz3z33VHL7wc'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9srwX7DEN7Mex3a8oR1mKSqQmLBizoJvi'])->first(); $reservedtotal = $reservedcommunity->Balance + $reservedoperational->Balance + $reservedinstitutional->Balance + $reservedaux->Balance; -- 2.45.2 From 7c0f51cb559fb751a262970b2b73c8e742d8ac48 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 16 Oct 2017 11:27:07 -0400 Subject: [PATCH 2/3] add another hot wallet bVUrbCK8hcZ5XWti7b9eNxKEBxzc1rr393 - 10K lbc --- src/Controller/MainController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Controller/MainController.php b/src/Controller/MainController.php index 9fdbc81..9cf321c 100644 --- a/src/Controller/MainController.php +++ b/src/Controller/MainController.php @@ -882,7 +882,9 @@ class MainController extends AppController { $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bay3VA6YTQBL4WLobbG7CthmoGeUKXuXkD'])->first() + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bLPbiXBp6Vr3NSnsHzDsLNzoy5o36re9Cz'])->first() + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bMvUBo1h5WS46ThHtmfmXftz3z33VHL7wc'])->first() + - $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9srwX7DEN7Mex3a8oR1mKSqQmLBizoJvi'])->first(); + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9srwX7DEN7Mex3a8oR1mKSqQmLBizoJvi'])->first() + + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bVUrbCK8hcZ5XWti7b9eNxKEBxzc1rr393'])->first(); + $reservedtotal = $reservedcommunity->Balance + $reservedoperational->Balance + $reservedinstitutional->Balance + $reservedaux->Balance; -- 2.45.2 From be1796154262628e64912abaf0517a4b695d98e2 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Tue, 17 Oct 2017 11:48:46 -0400 Subject: [PATCH 3/3] removed duplicate address thanks @akinwale --- src/Controller/MainController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Controller/MainController.php b/src/Controller/MainController.php index 9cf321c..f68cd44 100644 --- a/src/Controller/MainController.php +++ b/src/Controller/MainController.php @@ -882,7 +882,6 @@ class MainController extends AppController { $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bay3VA6YTQBL4WLobbG7CthmoGeUKXuXkD'])->first() + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bLPbiXBp6Vr3NSnsHzDsLNzoy5o36re9Cz'])->first() + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bMvUBo1h5WS46ThHtmfmXftz3z33VHL7wc'])->first() + - $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'r9srwX7DEN7Mex3a8oR1mKSqQmLBizoJvi'])->first() + $this->Addresses->find()->select(['Balance'])->where(['Address =' => 'bVUrbCK8hcZ5XWti7b9eNxKEBxzc1rr393'])->first(); $reservedtotal = $reservedcommunity->Balance + $reservedoperational->Balance + $reservedinstitutional->Balance + $reservedaux->Balance; -- 2.45.2