mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-20 17:45:40 +00:00
1295c36241
- Fixed TypeScript type assertion issues - Updated imports from api-augment/substrate to api-augment/bizinikiwi - Fixed imgConvert.mjs header and imports - Added @ts-expect-error for runtime-converted types - Fixed all @polkadot copyright headers to @pezkuwi
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
// Copyright 2017-2025 @pezkuwi/app-staking authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ApiPromise } from '@pezkuwi/api';
|
|
import type { BN } from '@pezkuwi/util';
|
|
import type { PoolAccounts } from './types.js';
|
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { createNamedHook, useApi } from '@pezkuwi/react-hooks';
|
|
import { bnToU8a, stringToU8a, u8aConcat } from '@pezkuwi/util';
|
|
|
|
const EMPTY_H256 = new Uint8Array(32);
|
|
const MOD_PREFIX = stringToU8a('modl');
|
|
const U32_OPTS = { bitLength: 32, isLe: true };
|
|
|
|
function createAccount (api: ApiPromise, palletId: Uint8Array, poolId: BN, index: number): string {
|
|
return api.registry.createType('AccountId32', u8aConcat(
|
|
MOD_PREFIX,
|
|
palletId,
|
|
new Uint8Array([index]),
|
|
bnToU8a(poolId, U32_OPTS),
|
|
EMPTY_H256
|
|
)).toString();
|
|
}
|
|
|
|
export function createAccounts (api: ApiPromise, poolId: BN): PoolAccounts {
|
|
const palletId = api.consts.nominationPools.palletId.toU8a();
|
|
|
|
return {
|
|
rewardId: createAccount(api, palletId, poolId, 1),
|
|
stashId: createAccount(api, palletId, poolId, 0)
|
|
};
|
|
}
|
|
|
|
function usePoolAccountsImpl (poolId: BN): PoolAccounts {
|
|
const { api } = useApi();
|
|
|
|
return useMemo(
|
|
() => createAccounts(api, poolId),
|
|
[api, poolId]
|
|
);
|
|
}
|
|
|
|
export default createNamedHook('usePoolAccounts', usePoolAccountsImpl);
|