This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 458
/
fee.ts
55 lines (47 loc) · 1.57 KB
/
fee.ts
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
/*
* Copyright © 2020 Lisk Foundation
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation,
* no part of this software, including this file, may be copied, modified,
* propagated, or distributed except according to the terms contained in the
* LICENSE file.
*
* Removal or modification of this copyright notice is prohibited.
*
*/
import { getBytes } from './sign';
export interface Options {
readonly minFeePerByte?: number;
readonly numberOfSignatures?: number;
readonly numberOfEmptySignatures?: number;
}
const DEFAULT_MIN_FEE_PER_BYTE = 1000;
const DEFAULT_NUMBER_OF_SIGNATURES = 1;
const DEFAULT_SIGNATURE_BYTE_SIZE = 64;
export const computeMinFee = (
trx: Record<string, unknown>,
assetSchema?: object,
options?: Options,
): bigint => {
const mockSignatures = new Array(
options?.numberOfSignatures ?? DEFAULT_NUMBER_OF_SIGNATURES,
).fill(Buffer.alloc(DEFAULT_SIGNATURE_BYTE_SIZE));
if (options?.numberOfEmptySignatures) {
mockSignatures.push(
...new Array<Buffer>(options.numberOfEmptySignatures).fill(Buffer.alloc(0)),
);
}
const { ...transaction } = trx;
transaction.signatures = mockSignatures;
transaction.fee = BigInt(0);
let minFee = BigInt(0);
do {
transaction.fee = minFee;
const transactionSize = getBytes(transaction, assetSchema).length;
minFee = BigInt(transactionSize * (options?.minFeePerByte ?? DEFAULT_MIN_FEE_PER_BYTE));
} while (minFee > BigInt(transaction.fee as bigint));
return minFee;
};