This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
utilities.ts
221 lines (203 loc) · 5.44 KB
/
utilities.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
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
import {
INVALID_INPUT_MESSAGE,
SECONDS_IN_A_YEAR,
TOTAL_IO_SUPPLY,
} from './constants';
import {
ArNSAuctionData,
Auctions,
Balances,
BlockHeight,
BlockTimestamp,
DeepReadonly,
Gateway,
Gateways,
IOState,
RegistryVaults,
VaultData,
Vaults,
WalletAddress,
mIOToken,
} from './types';
export function walletHasSufficientBalance(
balances: DeepReadonly<Balances>,
wallet: string,
qty: mIOToken,
): boolean {
return !!balances[wallet] && balances[wallet] >= qty.valueOf();
}
export function resetProtocolBalance({
balances,
auctions,
vaults,
gateways,
}: {
balances: DeepReadonly<Balances>;
auctions: DeepReadonly<Auctions>;
vaults: DeepReadonly<RegistryVaults>;
gateways: DeepReadonly<Gateways>;
}): Pick<IOState, 'balances'> {
const updatedBalances: Balances = {};
// balances
const totalBalances = Object.values(balances).reduce(
(total: number, current: number) => total + current,
0,
);
// gateway stakes
const totalGatewayStaked = Object.values(gateways).reduce(
(totalGatewaysStake: number, gateway: Gateway) => {
const gatewayStake =
gateway.operatorStake +
gateway.totalDelegatedStake +
Object.values(gateway.vaults).reduce(
(totalVaulted: number, currentVault: VaultData) =>
totalVaulted + currentVault.balance,
0,
) +
Object.values(gateway.delegates).reduce(
(totalDelegated: number, delegate) => {
return (
totalDelegated +
Object.values(delegate.vaults).reduce(
(totalVaulted: number, currentVault: VaultData) => {
return totalVaulted + currentVault.balance;
},
0,
)
);
},
0,
);
return totalGatewaysStake + gatewayStake;
},
0,
);
// active auctions
const totalAuctionStake = Object.values(auctions).reduce(
(totalAuctionStake: number, auction: ArNSAuctionData) => {
return totalAuctionStake + auction.floorPrice;
},
0,
);
// vaults
const totalVaultedStake = Object.values(vaults).reduce(
(totalVaulted: number, vault: Vaults) => {
return (
totalVaulted +
Object.values(vault).reduce(
(totalAddressVaulted: number, currentVault: VaultData) =>
currentVault.balance + totalAddressVaulted,
0,
)
);
},
0,
);
// TODO: add in vaults, delegates, and stakes
const totalContractIO =
totalBalances + totalGatewayStaked + totalAuctionStake + totalVaultedStake;
// could be negative
const diff = TOTAL_IO_SUPPLY.valueOf() - totalContractIO;
if (diff !== 0) {
updatedBalances[SmartWeave.contract.id] =
balances[SmartWeave.contract.id] + diff; // it may be plus a negative number
}
const newBalances = Object.keys(updatedBalances).length
? { ...balances, ...updatedBalances }
: balances;
return {
balances: newBalances,
};
}
export function getInvalidAjvMessage(
validator: any,
input: any,
functionName: string,
): string {
return `${INVALID_INPUT_MESSAGE} for ${functionName}: ${validator.errors
.map((e: any) => {
const key = e.instancePath.replace('/', '');
const value = input[key];
return `${key} ('${value}') ${e.message}`;
})
.join(', ')}`;
}
export function isGatewayJoined({
gateway,
currentBlockHeight,
}: {
gateway: DeepReadonly<Gateway> | undefined;
currentBlockHeight: BlockHeight;
}): boolean {
return (
gateway?.status === 'joined' &&
gateway?.start <= currentBlockHeight.valueOf()
);
}
export function isGatewayEligibleToBeRemoved({
gateway,
currentBlockHeight,
}: {
gateway: DeepReadonly<Gateway> | undefined;
currentBlockHeight: BlockHeight;
}): boolean {
return (
gateway?.status === 'leaving' &&
gateway?.end <= currentBlockHeight.valueOf()
);
}
export function isGatewayEligibleToLeave({
gateway,
currentBlockHeight,
minimumGatewayJoinLength,
}: {
gateway: DeepReadonly<Gateway> | undefined;
currentBlockHeight: BlockHeight;
minimumGatewayJoinLength: BlockHeight;
}): boolean {
if (!gateway) return false;
const joinedForMinimum =
currentBlockHeight.valueOf() >=
gateway.start + minimumGatewayJoinLength.valueOf();
const isActive = isGatewayJoined({ gateway, currentBlockHeight });
return joinedForMinimum && isActive;
}
export function calculateYearsBetweenTimestamps({
startTimestamp,
endTimestamp,
}: {
startTimestamp: BlockTimestamp;
endTimestamp: BlockTimestamp;
}): number {
const yearsRemainingFloat =
(endTimestamp.valueOf() - startTimestamp.valueOf()) / SECONDS_IN_A_YEAR;
return +yearsRemainingFloat.toFixed(2);
}
// Unsafe because it does not check if the balance exists or is sufficient
export function unsafeDecrementBalance(
balances: Balances,
address: WalletAddress,
amount: mIOToken,
removeIfZero = true,
): void {
balances[address] -= amount.valueOf();
if (removeIfZero && balances[address] === 0) {
delete balances[address];
}
}
export function incrementBalance(
balances: Balances,
address: WalletAddress,
amount: mIOToken,
): void {
if (amount.valueOf() < 1) {
throw new ContractError(`"Amount must be positive`);
}
if (address in balances) {
const prevBalance = new mIOToken(balances[address]);
const newBalance = prevBalance.plus(amount);
balances[address] = newBalance.valueOf();
} else {
balances[address] = amount.valueOf();
}
}