-
Notifications
You must be signed in to change notification settings - Fork 2
/
Block.ts
151 lines (130 loc) · 3.92 KB
/
Block.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
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
import { AssetSymbol } from './Blockchain';
import { SigPublicKey } from './Keys';
import { StorageId } from './Storage';
export class Signature extends String {}
export type SignatureData = {
type: string;
prev: Signature | undefined;
symbol: AssetSymbol | undefined;
senderBalance: string;
senderAmount: string;
refBlock: Signature | undefined;
refAsset: string | undefined;
refAddress: SigPublicKey | undefined;
claimSignature: string | undefined;
payload: string | undefined;
feeAmount: string | undefined;
};
export enum BlockType {
OPENING = 'OPENING',
RECEIVE = 'RECEIVE',
SEND = 'SEND',
DEPOSIT = 'DEPOSIT',
WITHDRAWAL = 'WITHDRAWAL',
ASSET = 'ASSET',
BURN = 'BURN',
}
export class Block {
// ledger level
id: StorageId;
chainId: StorageId;
txId: string;
// common fields
signature: Signature;
type: BlockType;
symbol: AssetSymbol | undefined;
prev: Signature | undefined;
refBlock: Signature | undefined;
refAsset: string | undefined;
refAddress: SigPublicKey | undefined;
claimSignature: string | undefined;
payload: string | undefined;
createdAt: number;
senderBalance: string;
senderAmount: string;
feeAmount: string | undefined;
// used mostly on wallet level
nonce: number[] | undefined;
state: string | undefined;
getDataForSignature(): SignatureData {
const {
type,
prev,
symbol,
senderBalance,
senderAmount,
refBlock,
refAsset,
refAddress,
claimSignature,
payload,
feeAmount,
} = this;
return {
type,
prev,
symbol,
senderBalance,
senderAmount,
refBlock,
refAsset,
refAddress,
claimSignature,
payload,
feeAmount,
};
}
setAmount(amount: string | number | bigint, balance: string | number | bigint, prev?: Block) {
if (typeof amount === 'string' && amount.indexOf('.') >= 0) {
console.error('There may be an issue with the amount fraction on the caller side (see Ledger.TIXL_DIVISOR).');
throw new Error('Decimals as the amount are not allowed on a block.');
}
if (typeof amount === 'number' && amount > Number.MAX_SAFE_INTEGER) {
console.error('There may be an issue with the amount fraction on the caller side (see Ledger.TIXL_DIVISOR).');
throw new Error('Amount is too big. Please use the bigint type.');
}
if (typeof balance === 'string' && balance.indexOf('.') >= 0) {
console.error('There may be an issue with the amount fraction on the caller side (see Ledger.TIXL_DIVISOR).');
throw new Error('Decimals as the balance are not allowed on a block.');
}
if (typeof balance === 'number' && balance > Number.MAX_SAFE_INTEGER) {
console.error('There may be an issue with the amount fraction on the caller side (see Ledger.TIXL_DIVISOR).');
throw new Error('Balance is too big. Please use the bigint type.');
}
this.senderAmount = amount.toString();
this.senderBalance = balance.toString();
if (prev) {
this.prev = prev.signature;
}
}
}
export function fromBlockObject(obj: any) {
const block = new Block();
block.signature = obj.signature;
block.type = obj.type;
block.prev = obj.prev;
block.symbol = obj.symbol;
block.refBlock = obj.refBlock;
block.refAsset = obj.refAsset;
block.refAddress = obj.refAddress;
block.claimSignature = obj.claimSignature;
block.createdAt = obj.createdAt;
block.senderBalance = obj.senderBalance;
block.senderAmount = obj.senderAmount;
block.state = obj.state;
block.payload = obj.payload;
block.nonce = obj.nonce;
block.feeAmount = obj.feeAmount;
return block;
}
export type BlockValues = {
amount: string | number | bigint;
balance: string | number | bigint;
};
export function isBlock(val: any): boolean {
if (!val) return false;
// Ducktyping: maybe extend check with more fields
if (!val.type) return false;
if (!val.senderAmount) return false;
return true;
}