// Copyright (C) 2017 go-nebulas authors // // This file is part of the go-nebulas library. // // the go-nebulas library is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // the go-nebulas library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with the go-nebulas library. If not, see <www.gnu.org/licenses/>. // syntax = “proto3”; package corepb;
message Data {
string type = 1; bytes payload = 2;
}
message Transaction {
bytes hash = 1; bytes from = 2; bytes to = 3; bytes value = 4; uint64 nonce = 5; int64 timestamp = 6; Data data = 7; uint32 chain_id = 8; bytes gas_price = 9; bytes gas_limit = 10; uint32 alg = 11; bytes sign = 12;
}