-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathExportInPTxBuilder.ts
More file actions
257 lines (218 loc) · 9.72 KB
/
ExportInPTxBuilder.ts
File metadata and controls
257 lines (218 loc) · 9.72 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import { BaseCoin as CoinConfig } from '@bitgo/statics';
import { BuildTransactionError, NotSupported, TransactionType } from '@bitgo/sdk-core';
import { AtomicTransactionBuilder } from './atomicTransactionBuilder';
import {
pvmSerial,
UnsignedTx,
TransferableInput,
TransferableOutput,
TransferInput,
utils as FlareUtils,
TransferOutput,
Credential,
pvm,
} from '@flarenetwork/flarejs';
import utils from './utils';
import { DecodedUtxoObj, SECP256K1_Transfer_Output, FlareTransactionType, Tx } from './iface';
export class ExportInPTxBuilder extends AtomicTransactionBuilder {
constructor(_coinConfig: Readonly<CoinConfig>) {
super(_coinConfig);
// For Export FROM P-chain:
// - external chain (destination) is C-chain
// - blockchain ID (source) is P-chain
this._externalChainId = utils.cb58Decode(this.transaction._network.cChainBlockchainID);
// P-chain blockchain ID (from network config - decode from cb58 to hex)
this.transaction._blockchainID = Buffer.from(utils.cb58Decode(this.transaction._network.blockchainID)).toString(
'hex'
);
}
protected get transactionType(): TransactionType {
return TransactionType.Export;
}
initBuilder(tx: Tx, rawBytes?: Buffer, parsedCredentials?: Credential[]): this {
const exportTx = tx as pvmSerial.ExportTx;
if (!this.verifyTxType(exportTx._type)) {
throw new NotSupported('Transaction cannot be parsed or has an unsupported transaction type');
}
const outputs = exportTx.outs;
if (outputs.length !== 1) {
throw new BuildTransactionError('Transaction can have one external output');
}
const output = outputs[0];
const outputTransfer = output.output as TransferOutput;
const assetId = output.assetId.toBytes();
if (Buffer.compare(Buffer.from(assetId), Buffer.from(this.transaction._assetId, 'hex')) !== 0) {
throw new Error('The Asset ID of the output does not match the transaction');
}
const outputOwners = outputTransfer.outputOwners;
this.transaction._locktime = outputOwners.locktime.value();
this.transaction._threshold = outputOwners.threshold.value();
this.transaction._fromAddresses = outputOwners.addrs.map((addr) => Buffer.from(addr.toBytes()));
this._externalChainId = Buffer.from(exportTx.destination.toBytes());
this.transaction._amount = outputTransfer.amount();
this.transaction._utxos = this.recoverUtxos([...exportTx.baseTx.inputs], outputOwners.addrs);
const totalInputAmount = exportTx.baseTx.inputs.reduce((sum, input) => sum + input.amount(), BigInt(0));
const changeOutputAmount = exportTx.baseTx.outputs.reduce((sum, out) => {
const transferOut = out.output as TransferOutput;
return sum + transferOut.amount();
}, BigInt(0));
const fee = totalInputAmount - changeOutputAmount - this.transaction._amount;
this.transaction._fee.fee = fee.toString();
const credentials = parsedCredentials || [];
const hasCredentials = credentials.length > 0;
if (rawBytes && hasCredentials) {
this.transaction._rawSignedBytes = rawBytes;
}
this.computeAddressesIndexFromParsed();
// Use parsed credentials if available, otherwise create new ones based on sigIndices
// The sigIndices from the parsed transaction (stored in addressesIndex) determine
// the correct credential ordering for on-chain verification
const txCredentials =
credentials.length > 0
? credentials
: this.transaction._utxos.map((utxo) => {
const utxoThreshold = utxo.threshold || this.transaction._threshold;
const sigIndices = utxo.addressesIndex ?? [];
// Use sigIndices-based method if we have valid sigIndices from parsed transaction
if (sigIndices.length >= utxoThreshold && sigIndices.every((idx) => idx >= 0)) {
return this.createCredentialForUtxoWithSigIndices(utxo, utxoThreshold, sigIndices);
}
return this.createCredentialForUtxo(utxo, utxoThreshold);
});
// Create addressMaps using sigIndices from parsed transaction for consistency
const addressMaps = this.transaction._utxos.map((utxo) => {
const utxoThreshold = utxo.threshold || this.transaction._threshold;
const sigIndices = utxo.addressesIndex ?? [];
if (sigIndices.length >= utxoThreshold && sigIndices.every((idx) => idx >= 0)) {
return this.createAddressMapForUtxoWithSigIndices(utxo, utxoThreshold, sigIndices);
}
return this.createAddressMapForUtxo(utxo, utxoThreshold);
});
const unsignedTx = new UnsignedTx(exportTx, [], new FlareUtils.AddressMaps(addressMaps), txCredentials);
this.transaction.setTransaction(unsignedTx);
return this;
}
static verifyTxType(txnType: string): boolean {
return txnType === FlareTransactionType.PvmExportTx;
}
verifyTxType(txnType: string): boolean {
return ExportInPTxBuilder.verifyTxType(txnType);
}
/**
* Build the export transaction for P-chain
* Following AVAX P approach for UTXO handling and signature slot assignment.
* @protected
*/
protected async buildFlareTransaction(): Promise<void> {
if (this.transaction.hasCredentials) return;
const feeState = this.transaction._feeState;
if (!feeState) {
throw new BuildTransactionError('Fee state is required');
}
if (!this.transaction._context) {
throw new BuildTransactionError('context is required');
}
if (this.transaction._amount === undefined) {
throw new BuildTransactionError('amount is required');
}
if (!this.transaction._utxos || this.transaction._utxos.length === 0) {
throw new BuildTransactionError('UTXOs are required');
}
this.computeAddressesIndex();
this.validateUtxoAddresses();
const assetIdCb58 = utils.cb58Encode(Buffer.from(this.transaction._assetId, 'hex'));
const nativeUtxos = utils.decodedToUtxos(this.transaction._utxos, assetIdCb58);
const totalUtxoAmount = nativeUtxos.reduce((sum, utxo) => {
const output = utxo.output as TransferOutput;
return sum + output.amount();
}, BigInt(0));
if (totalUtxoAmount < this.transaction._amount) {
throw new BuildTransactionError(
`Insufficient UTXO balance: have ${totalUtxoAmount.toString()} nFLR, need at least ${this.transaction._amount.toString()} nFLR (plus fee)`
);
}
const assetId = utils.flareIdString(this.transaction._assetId).toString();
const fromAddresses = this.transaction._fromAddresses.map((addr) => Buffer.from(addr));
const transferableOutput = TransferableOutput.fromNative(
assetId,
this.transaction._amount,
fromAddresses,
this.transaction._locktime,
this.transaction._threshold
);
const exportTx = pvm.e.newExportTx(
{
feeState,
fromAddressesBytes: this.transaction._fromAddresses.map((addr) => Buffer.from(addr)),
destinationChainId: this.transaction._network.cChainBlockchainID,
outputs: [transferableOutput],
utxos: nativeUtxos,
},
this.transaction._context
);
const flareUnsignedTx = exportTx as UnsignedTx;
const innerTx = flareUnsignedTx.getTx() as pvmSerial.ExportTx;
const utxosWithIndex = innerTx.baseTx.inputs.map((input) => {
const inputTxid = utils.cb58Encode(Buffer.from(input.utxoID.txID.toBytes()));
const inputOutputIdx = input.utxoID.outputIdx.value().toString();
const originalUtxo = this.transaction._utxos.find(
(utxo) => utxo.txid === inputTxid && utxo.outputidx === inputOutputIdx
);
if (!originalUtxo) {
throw new BuildTransactionError(`Could not find matching UTXO for input ${inputTxid}:${inputOutputIdx}`);
}
const transferInput = input.input as TransferInput;
const actualSigIndices = transferInput.sigIndicies();
return {
...originalUtxo,
addressesIndex: originalUtxo.addressesIndex,
addresses: originalUtxo.addresses,
threshold: originalUtxo.threshold || this.transaction._threshold,
actualSigIndices,
};
});
this.transaction._utxos = utxosWithIndex;
const txCredentials = utxosWithIndex.map((utxo) =>
this.createCredentialForUtxoWithSigIndices(utxo, utxo.threshold, utxo.actualSigIndices)
);
const addressMaps = utxosWithIndex.map((utxo) =>
this.createAddressMapForUtxoWithSigIndices(utxo, utxo.threshold, utxo.actualSigIndices)
);
const fixedUnsignedTx = new UnsignedTx(innerTx, [], new FlareUtils.AddressMaps(addressMaps), txCredentials);
this.transaction.setTransaction(fixedUnsignedTx);
}
/**
* Recover UTXOs from inputs.
* Uses output addresses as proxy for UTXO addresses.
*
* @param inputs Array of TransferableInput
* @param outputAddrs Output owner addresses to use as proxy
* @returns Array of decoded UTXO objects
*/
private recoverUtxos(inputs: TransferableInput[], outputAddrs?: { toBytes(): Uint8Array }[]): DecodedUtxoObj[] {
const proxyAddresses = outputAddrs
? outputAddrs.map((addr) =>
utils.addressToString(
this.transaction._network.hrp,
this.transaction._network.alias,
Buffer.from(addr.toBytes())
)
)
: [];
return inputs.map((input) => {
const utxoId = input.utxoID;
const transferInput = input.input as TransferInput;
const sigIndicies = transferInput.sigIndicies();
const utxo: DecodedUtxoObj = {
outputID: SECP256K1_Transfer_Output,
amount: input.amount().toString(),
txid: utils.cb58Encode(Buffer.from(utxoId.txID.toBytes())),
outputidx: utxoId.outputIdx.value().toString(),
threshold: sigIndicies.length || this.transaction._threshold,
addresses: proxyAddresses,
addressesIndex: sigIndicies,
};
return utxo;
});
}
}