github.com/muhammedhassanm/blockchain@v0.0.0-20200120143007-697261defd4d/Decentralized-Energy-Composer-master/angular-app/src/app/home/home.component.html (about)

     1  
     2  
     3  <div class="container">
     4    <div class="row">  
     5       <h1 class="heading">Welcome to Decentralized Energy using Hyperledger Composer</h1>
     6    </div> 
     7  
     8    <div class="row">
     9      <br>
    10    </div> 
    11  
    12    <div class="row bodytext">       
    13        <div class="col-md-12">
    14          <p class=""> This Blockchain application demonstrates energy sharing on a network among 'Residents' on a grid. The energy trade is based on exchanging coins for energy provided. The network also includes 'Utility Companies' to trade excess energy with or obtain energy from, and 'Banks' to exchange cash (fiat money) for coins.  </p>
    15          <p class=""> Find more detail <a [routerLink]="['/About']" > about the application. </a> </p>
    16  
    17        </div>
    18      </div> 
    19  
    20    <div class="row">
    21      <br>
    22    </div> 
    23  
    24    <div class="row">
    25      <h4> Step1 - Create and Update Participants </h4>
    26    </div> 
    27      <div class="row">
    28      <div class="participant col-md-4">
    29        <p> <strong>Residents</strong> own three assets: Energy, Coins and Cash. They can trade with fellow residents, banks, and utility companies.</p>
    30        <a [routerLink]="['/Resident']" class=participantButton>Residents</a> 
    31      </div>      
    32      
    33      <div class="participant col-md-4">
    34        <p> <strong>Banks</strong> on the network own two assets: Cash and Coins. They can trade with residents, who can buy or sell coins for cash. </p>
    35        <a [routerLink]="['/Bank']" class="participantButton">Banks</a>
    36      </div>   
    37  
    38      <div class="participant col-md-4">
    39        <p> <strong>Utility Companies</strong> own two assets: Energy and Coins. They can trade with residents, who can buy or sell energy for coins. </p>
    40        <a [routerLink]="['/UtilityCompany']" class="participantButton">Utility Companies</a>
    41      </div> 
    42    
    43    </div> 
    44  
    45    <div class="row">
    46      <br>
    47    </div> 
    48  
    49  
    50    <div class="row">
    51      <h4> Step2 - Execute Transactions </h4>
    52    </div> 
    53  
    54    <div class="row"> 
    55          
    56      <div class="participant col-md-4">
    57        <p> Execute a transaction between Residents by exchanging Coins for Energy </p>
    58        <a [routerLink]="['/TransactionRR']" class=participantButton>Resident to Resident</a> 
    59      </div>           
    60  
    61      <div class="participant col-md-4">
    62        <p> Execute a transaction between a Resident and a Bank by exchanging Coins for Cash </p>
    63        <a [routerLink]="['/TransactionRB']" class="participantButton">Resident to Bank</a>
    64      </div> 
    65      
    66      <div class="participant col-md-4">
    67        <p> Execute a transaction between a Resident and a Utility Company by exchanging Coins for Energy </p>
    68        <a [routerLink]="['/TransactionRU']" class="participantButton">Resident to Utility</a>
    69      </div>   
    70      
    71    </div> 
    72  
    73    <div class="row">
    74      <br>
    75    </div> 
    76    <div class="row">
    77      <br>
    78    </div> 
    79  
    80  </div>