Rebrand: polkadot → pezkuwi build fixes

- 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
This commit is contained in:
2026-01-07 02:32:54 +03:00
parent fe2cd390f6
commit 1295c36241
4678 changed files with 26389 additions and 63316 deletions
@@ -1,12 +1,12 @@
// Copyright 2017-2025 @polkadot/test-supports authors & contributors
// Copyright 2017-2025 @pezkuwi/test-supports authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { DeriveBalancesAll, DeriveStakingAccount } from '@polkadot/api-derive/types';
import type { Accounts } from '@polkadot/react-hooks/ctx/types';
import type { UseAccountInfo } from '@polkadot/react-hooks/types';
import type { KeyringJson$Meta } from '@polkadot/ui-keyring/types';
import type { DeriveBalancesAll, DeriveStakingAccount } from '@pezkuwi/api-derive/types';
import type { Accounts } from '@pezkuwi/react-hooks/ctx/types';
import type { UseAccountInfo } from '@pezkuwi/react-hooks/types';
import type { KeyringJson$Meta } from '@pezkuwi/ui-keyring/types';
import { BN } from '@polkadot/util';
import { BN } from '@pezkuwi/util';
import { balanceOf } from '../creation/balance.js';
import { makeStakingLedger } from '../creation/staking.js';
@@ -1,10 +1,10 @@
// Copyright 2017-2025 @polkadot/test-supports authors & contributors
// Copyright 2017-2025 @pezkuwi/test-supports authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Balance } from '@polkadot/types/interfaces';
import type { BN } from '@polkadot/util';
import type { Balance } from '@pezkuwi/types/interfaces';
import type { BN } from '@pezkuwi/util';
import { formatBalance } from '@polkadot/util';
import { formatBalance } from '@pezkuwi/util';
import { balanceOf } from '../creation/balance.js';
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @polkadot/test-supports authors & contributors
// Copyright 2017-2025 @pezkuwi/test-supports authors & contributors
// SPDX-License-Identifier: Apache-2.0
export * from './accountDefaults.js';
@@ -1,9 +1,9 @@
// Copyright 2017-2025 @polkadot/test-support authors & contributors
// Copyright 2017-2025 @pezkuwi/test-support authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Registrar } from '@polkadot/react-hooks/types';
import type { H256, Multisig, ProxyDefinition, RegistrationJudgement, Voting } from '@polkadot/types/interfaces';
import type { BN } from '@polkadot/util';
import type { Registrar } from '@pezkuwi/react-hooks/types';
import type { H256, Multisig, ProxyDefinition, RegistrationJudgement, Voting } from '@pezkuwi/types/interfaces';
import type { BN } from '@pezkuwi/util';
class MockApiHooks {
public multisigApprovals: [H256, Multisig][] | undefined = [];
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @polkadot/test-supports authors & contributors
// Copyright 2017-2025 @pezkuwi/test-supports authors & contributors
// SPDX-License-Identifier: Apache-2.0
/* global expect */
@@ -1,4 +1,4 @@
// Copyright 2017-2025 @polkadot/test-support authors & contributors
// Copyright 2017-2025 @pezkuwi/test-support authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { WaitOptions } from '../types.js';