mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-07-27 16:55:43 +00:00
60a800b33e
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
// Copyright 2017-2025 @polkadot/react-query authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { DeriveBalancesAll } from '@polkadot/api-derive/types';
|
|
import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces';
|
|
|
|
import React from 'react';
|
|
|
|
import { useApi, useCall } from '@polkadot/react-hooks';
|
|
|
|
import FormatBalance from './FormatBalance.js';
|
|
|
|
interface Props {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
label?: React.ReactNode;
|
|
params?: AccountId | AccountIndex | Address | string | Uint8Array | null;
|
|
}
|
|
|
|
function AvailableDisplay ({ children, className = '', label, params }: Props): React.ReactElement<Props> {
|
|
const { api } = useApi();
|
|
const allBalances = useCall<DeriveBalancesAll>(api.derive.balances?.all, [params]);
|
|
|
|
return (
|
|
<FormatBalance
|
|
className={className}
|
|
label={label}
|
|
value={allBalances?.transferable || allBalances?.availableBalance}
|
|
>
|
|
{children}
|
|
</FormatBalance>
|
|
);
|
|
}
|
|
|
|
export default React.memo(AvailableDisplay);
|