forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactionInterface.php
139 lines (114 loc) · 2.88 KB
/
TransactionInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
declare(strict_types=1);
namespace BitWasp\Bitcoin\Transaction;
use BitWasp\Bitcoin\Script\ScriptWitnessInterface;
use BitWasp\Bitcoin\SerializableInterface;
use BitWasp\Bitcoin\Utxo\Utxo;
use BitWasp\Buffertools\BufferInterface;
interface TransactionInterface extends SerializableInterface
{
const DEFAULT_VERSION = 1;
/**
* The locktime parameter is encoded as a uint32
*/
const MAX_LOCKTIME = 4294967295;
/**
* @return bool
*/
public function isCoinbase(): bool;
/**
* Get the transactions sha256d hash.
*
* @return BufferInterface
*/
public function getTxHash(): BufferInterface;
/**
* Get the little-endian sha256d hash.
* @return BufferInterface
*/
public function getTxId(): BufferInterface;
/**
* Get the little endian sha256d hash including witness data
* @return BufferInterface
*/
public function getWitnessTxId(): BufferInterface;
/**
* Get the version of this transaction
*
* @return int
*/
public function getVersion(): int;
/**
* Return an array of all inputs
*
* @return TransactionInputInterface[]
*/
public function getInputs(): array;
/**
* @param int $index
* @return TransactionInputInterface
*/
public function getInput(int $index): TransactionInputInterface;
/**
* Return an array of all outputs
*
* @return TransactionOutputInterface[]
*/
public function getOutputs(): array;
/**
* @param int $vout
* @return TransactionOutputInterface
*/
public function getOutput(int $vout): TransactionOutputInterface;
/**
* @param int $index
* @return ScriptWitnessInterface
*/
public function getWitness(int $index): ScriptWitnessInterface;
/**
* @return ScriptWitnessInterface[]
*/
public function getWitnesses(): array;
/**
* @param int $vout
* @return OutPointInterface
*/
public function makeOutPoint(int $vout): OutPointInterface;
/**
* @param int $vout
* @return Utxo
*/
public function makeUtxo(int $vout): Utxo;
/**
* Return the locktime for this transaction
*
* @return int
*/
public function getLockTime(): int;
/**
* @return int
*/
public function getValueOut();
/**
* @return bool
*/
public function hasWitness(): bool;
/**
* @param TransactionInterface $tx
* @return bool
*/
public function equals(TransactionInterface $tx): bool;
/**
* @return BufferInterface
*/
public function getBaseSerialization(): BufferInterface;
/**
* @return BufferInterface
*/
public function getWitnessSerialization(): BufferInterface;
/**
* @deprecated
* @return BufferInterface
*/
public function getWitnessBuffer(): BufferInterface;
}