2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-10-31 13:58:04 +00:00
|
|
|
package core
|
|
|
|
|
2019-03-27 04:05:30 +00:00
|
|
|
type TransactionModel struct {
|
|
|
|
Data []byte `db:"input_data"`
|
2018-02-02 21:53:16 +00:00
|
|
|
From string `db:"tx_from"`
|
2019-03-19 19:11:26 +00:00
|
|
|
GasLimit uint64
|
|
|
|
GasPrice int64
|
|
|
|
Hash string
|
|
|
|
Nonce uint64
|
|
|
|
Raw []byte
|
2018-01-03 17:23:43 +00:00
|
|
|
Receipt
|
2019-03-19 19:11:26 +00:00
|
|
|
To string `db:"tx_to"`
|
|
|
|
TxIndex int64 `db:"tx_index"`
|
|
|
|
Value string
|
2017-10-31 13:58:04 +00:00
|
|
|
}
|
2019-03-27 04:05:30 +00:00
|
|
|
|
|
|
|
type RpcTransaction struct {
|
|
|
|
Nonce string `json:"nonce"`
|
|
|
|
GasPrice string `json:"gasPrice"`
|
|
|
|
GasLimit string `json:"gas"`
|
|
|
|
Recipient string `json:"to"`
|
|
|
|
Amount string `json:"value"`
|
2019-03-27 18:49:44 +00:00
|
|
|
Payload string `json:"input"`
|
2019-03-27 04:05:30 +00:00
|
|
|
V string `json:"v"`
|
|
|
|
R string `json:"r"`
|
|
|
|
S string `json:"s"`
|
|
|
|
Hash string
|
|
|
|
From string
|
|
|
|
TransactionIndex string `json:"transactionIndex"`
|
|
|
|
}
|