github.com/turingchain2020/turingchain@v1.1.21/system/dapp/coins/proto/coins.proto (about)

     1  syntax = "proto3";
     2  
     3  package types;
     4  
     5  import "transaction.proto";
     6  
     7  option go_package = "types";
     8  
     9  // message for execs.coins
    10  message CoinsAction {
    11      oneof value {
    12          AssetsTransfer       transfer       = 1;
    13          AssetsWithdraw       withdraw       = 4;
    14          AssetsGenesis        genesis        = 2;
    15          AssetsTransferToExec transferToExec = 5;
    16      }
    17      int32 ty = 3;
    18  }