-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuseProxyAccounts.ts
310 lines (281 loc) · 9.73 KB
/
useProxyAccounts.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
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
import {
crossChainTransfer,
getDefaultAssetBalance,
getTokenBalanceOfAccount,
transfer,
xcmLocationToAssetIdNumber,
} from '@/lib/helpers/polkadotjs.helper';
import {
calculateProxyAccounts,
createProxyAccount,
getCrossChainTransferParameters,
validateProxyAccount,
} from '@/lib/helpers/proxyAccounts.helper';
import chainsConfigState from '@/lib/state/chainsConfig.atom';
import proxyAccountsState from '@/lib/state/proxyAccounts.atom';
import { BN } from '@polkadot/util';
import { decodeAddress } from '@polkadot/util-crypto';
import { useRecoilState, useRecoilValue } from 'recoil';
import { convertWithScientificNotation } from '../utils/balance';
import useWallet from './useWallet';
/**
* Initial balance needed for a proxy account in the origin chain
* @constant
*/
export const ORIGIN_INITIAL_BALANCE = convertWithScientificNotation(1, 15);
/**
* Initial balance needed for a proxy account in the target chain
* @constant
*/
export const TARGET_INITIAL_BALANCE = convertWithScientificNotation(1, 17);
/**
* Minimum balance needed to make a transfer to a proxy account
*/
export const PROXY_ACCOUNT_MIN_TRANSFER_BALANCE = convertWithScientificNotation(
1,
10
);
/**
* Hook for managing proxy accounts and related operations
*
* @returns
* - calculateProxies - Calculates proxy addresses derived from the connected account address.
* - proxiesExist - Validates if origin and target proxy accounts exist.
* - getProxiesBalances - Updates the balances of origin and target proxy accounts.
* - createAccounts - Creates proxy accounts for origin and/or target chains.
* - topUpProxyAccounts - Tops up the balances of proxy accounts on the origin and/or
* target chains to meet specified minimum balances.
*/
const useProxyAccounts = () => {
const [proxyAccounts, setProxyAccountsState] =
useRecoilState(proxyAccountsState);
const { originConfig, targetConfig } = useRecoilValue(chainsConfigState);
const { account } = useWallet();
/**
* Calculates both origin and target proxy addresses derived from
* the connected account address, then it saves these addresses in `proxyAccounts` atom state
*
* @remarks
* For the origin address we use derivation function V3, while for target address
* we use derivation function V2
*
* @requires
* - A connected `account`
* - *Target* api is setted in `chainsConfig` atom state
*/
const calculateProxies = () => {
if (!account || !targetConfig.getApi()) return;
const calculatedProxyAddresses = calculateProxyAccounts(
originConfig.chain,
targetConfig.chain,
account
);
setProxyAccountsState({ ...calculatedProxyAddresses });
};
/**
* Validates if origin and target proxy accounts exist
*
* @requires
* - *Origin* and *Target* apis setted in `chainsConfig` atom state
*
* @returns a promise that resolves in an object that indicates if both origin and target proxy accounts exist
*/
const proxiesExist = async () => {
const result = {
originExists: await validateProxyAccount(
originConfig.getParachainAddress(account!.address),
proxyAccounts.originProxyAddress,
originConfig.getApi()!
),
targetExists: await validateProxyAccount(
targetConfig.getParachainAddress(account!.address),
proxyAccounts.targetProxyAddress,
targetConfig.getApi()!
),
};
return result;
};
/**
* Updates the balances of origin and target proxy accounts in `proxyAccounts` atom state
*
* @requires
* - **Execute `calculateProxies` before using this function**
* - Proxy addresses calculated and saved in `proxyAccounts` atom state.
* - *Origin* and *Target* apis setted in `chainsConfig` atom state
* - Origin config `getDefaultAsset` is configured
*/
const getProxiesBalances = async () => {
const originAccountBalance = await getDefaultAssetBalance(
originConfig.getApi()!,
proxyAccounts.originProxyAddress
);
const originTokenOnTargetChain = (
await xcmLocationToAssetIdNumber(
targetConfig.getApi()!,
originConfig.getDefaultAsset()
)
).toNumber();
const targetAccountBalance = await getTokenBalanceOfAccount(
targetConfig.getApi()!,
proxyAccounts.targetProxyAddress,
originTokenOnTargetChain
);
setProxyAccountsState((current) => ({
...current,
originProxyFreeBalance: originAccountBalance.free.toString(),
targetProxyFreeBalance: targetAccountBalance.free.toString(),
}));
};
/**
* Creates proxy accounts for origin and/or target chains, considering if it is needed.
*
* If a proxy account already exists on a chain, the corresponding creation is not executed.
*
* @param originExists - Indicates whether a proxy account already exists on the origin chain
* @param targetExists - Indicates whether a proxy account already exists on the target chain
*
* @requires
* - Proxy addresses calculated and saved in `proxyAccounts` atom state.
* - *Origin* and *Target* apis setted in `chainsConfig` atom state
*
* @returns an array of promises that contain one or two promises that create a proxy account
*/
const createAccounts = async (
originExists: boolean,
targetExists: boolean
) => {
const promisesToExecute = [];
if (!originExists)
promisesToExecute.push(
createProxyAccount(
account!,
originConfig.getApi()!,
proxyAccounts.originProxyAddress
)
);
if (!targetExists)
promisesToExecute.push(
createProxyAccount(
account!,
targetConfig.getApi()!,
proxyAccounts.targetProxyAddress
)
);
return Promise.all(promisesToExecute);
};
/**
* Calculates the balance for topping-up a proxy account based on the required fee for the scheduled payment.
*
* @param balanceForFee - The desired balance to cover fees for the proxy account.
* @param currentBalanceStr - The current balance of the proxy account.
* @param initialBalance - The initial balance that a proxy account must have.
*
* @returns The balance to top-up the proxy account.
*/
const calculateTopUpBalance = (
balanceForFee: BN,
currentBalanceStr: string,
initialBalance: BN
) => {
const currentBalance = new BN(currentBalanceStr);
let topUpBalance: BN | undefined;
if (currentBalance.isZero()) {
topUpBalance = initialBalance.lt(balanceForFee)
? balanceForFee
: initialBalance;
} else if (currentBalance.lt(balanceForFee)) {
const balanceDifference = balanceForFee.sub(currentBalance);
topUpBalance = balanceDifference.lt(PROXY_ACCOUNT_MIN_TRANSFER_BALANCE)
? PROXY_ACCOUNT_MIN_TRANSFER_BALANCE
: balanceDifference;
}
return topUpBalance;
};
/**
* Calculates the total balance for topping-up proxy accounts based on the required fee for the scheduled payment.
*
* @param originBalanceForFee - The desired balance to cover fees for the origin proxy account.
* @param targetBalanceForFee - The desired balance to cover fees for the target proxy account.
*
* @returns The balances to top-up the proxy accounts.
*/
const calculateTotalTopUpBalances = (
originBalanceForFee: BN,
targetBalanceForFee: BN
): {
originTopUpBalance: BN | undefined;
targetTopUpBalance: BN | undefined;
} => {
const originTopUpBalance = calculateTopUpBalance(
originBalanceForFee,
proxyAccounts.originProxyFreeBalance!,
ORIGIN_INITIAL_BALANCE
);
const targetTopUpBalance = calculateTopUpBalance(
targetBalanceForFee,
proxyAccounts.targetProxyFreeBalance!,
TARGET_INITIAL_BALANCE
);
return { originTopUpBalance, targetTopUpBalance };
};
/**
* Tops up the balances of proxy accounts on the origin and/or target chains to meet specified required balances.
*
* @remarks
* Both *transfer* and *crosschain transfer* are batched in a single transaction so only one signature is needed.
*
* @requires
* - Proxy addresses calculated and saved in `proxyAccounts` atom state.
* - *Origin* and *Target* apis setted in `chainsConfig` atom state.
* - *Target* chain prefix is setted in `chainsConfig`
*
* @param originBalanceForFee - The desired balance to cover fees for the origin proxy account.
* @param targetBalanceForFee - The desired balance to cover fees for the target proxy account.
* @returns A promise that resolves to an array of extrinsics representing the topping up of proxy account balances.
* If no topping up is required, the promise resolves to void.
*/
const getTopUpProxyAccountsExtrinsics = (
originTopUpBalance?: BN,
targetTopUpBalance?: BN
) => {
const extrinsicsToSign = [];
if (originTopUpBalance) {
extrinsicsToSign.push(
transfer(
originConfig.getApi()!,
proxyAccounts.originProxyAddress,
originTopUpBalance
)
);
}
if (targetTopUpBalance) {
extrinsicsToSign.push(
crossChainTransfer(
originConfig.getApi()!,
...getCrossChainTransferParameters(
// TODO Implement a better way to consider the fees in crossChainTransfer.
targetTopUpBalance,
decodeAddress(
proxyAccounts.targetProxyAddress,
undefined,
targetConfig.chain.prefix
),
targetConfig.chain.paraId!
)
)
);
}
return extrinsicsToSign;
};
return {
calculateProxies,
proxiesExist,
getProxiesBalances,
createAccounts,
calculateTopUpBalance,
calculateTotalTopUpBalances,
getTopUpProxyAccountsExtrinsics,
PROXY_ACCOUNT_MIN_TRANSFER_BALANCE,
};
};
export default useProxyAccounts;