github.com/turingchain2020/turingchain@v1.1.21/cmd/miner_accounts/accounts/account.proto (about)

     1  syntax = "proto3";
     2  
     3  package accounts;
     4  
     5  message Account {
     6      string addr    = 1;
     7      string frozen  = 2;
     8      string balance = 3;
     9  }
    10  
    11  message MinerAccount {
    12      string addr              = 1;
    13      string total             = 2;
    14      string increase          = 3;
    15      string frozen            = 4;
    16      string expectIncrease    = 5;
    17      string minerTrcDuring    = 6;
    18      string expectMinerBlocks = 7;
    19  }
    20  message Accounts {
    21      repeated Account accounts = 1;
    22  }
    23  
    24  message MinerAccounts {
    25      repeated MinerAccount minerAccounts       = 1;
    26      int64                 seconds             = 2;
    27      string                totalIncrease       = 3;
    28      int64                 blocks              = 4;
    29      int64                 expectBlocks        = 5;
    30      string                expectTotalIncrease = 6;
    31  }
    32  
    33  message Config {
    34      repeated string whitelist    = 1;
    35      string          jrpcBindAddr = 2;
    36      string          dataDir      = 3;
    37      repeated string minerAddr    = 4;
    38      string          turingchainhost  = 5;
    39  }