Initial rebrand: @polkadot -> @pezkuwi (14 packages)

- Package namespace: @polkadot/* -> @pezkuwi/*
- Repository: polkadot-js/common -> pezkuwichain/pezkuwi-common
- Author: Pezkuwi Team <team@pezkuwichain.io>

Core packages:
- @pezkuwi/util (utilities)
- @pezkuwi/util-crypto (crypto primitives)
- @pezkuwi/keyring (account management)
- @pezkuwi/networks (chain metadata)
- @pezkuwi/hw-ledger (Ledger hardware wallet)
- @pezkuwi/x-* (10 polyfill packages)

Total: 14 packages
Upstream: polkadot-js/common v14.0.1
This commit is contained in:
2026-01-05 14:00:34 +03:00
commit ec06da0ebc
687 changed files with 48096 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# @pezkuwi/x-bundle
A rollup-only package to allow for bundling of builtin dependencies
+25
View File
@@ -0,0 +1,25 @@
{
"author": "Jaco Greeff <jacogr@gmail.com>",
"bugs": "https://github.com/pezkuwichain/pezkuwi-common/issues",
"description": "A bundler helper",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/pezkuwichain/pezkuwi-common/tree/master/packages/x-bundle#readme",
"license": "Apache-2.0",
"name": "@pezkuwi/x-bundle",
"repository": {
"directory": "packages/x-bundle",
"type": "git",
"url": "https://github.com/pezkuwichain/pezkuwi-common.git"
},
"sideEffects": false,
"type": "module",
"version": "14.0.1",
"main": "index.js",
"dependencies": {
"@pezkuwi/util": "14.0.1",
"buffer-es6": "^4.9.3",
"tslib": "^2.8.0"
}
}
+8
View File
@@ -0,0 +1,8 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// @ts-expect-error Only used in rollup bundling, we are not adding a declaration
import { Buffer } from 'buffer-es6';
export default Buffer;
export { Buffer };
+7
View File
@@ -0,0 +1,7 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// @ts-expect-error In dev mode we don't have export maps...
const { BN } = require('@polkadot/util');
module.exports = BN;
+3
View File
@@ -0,0 +1,3 @@
{
"type": "commonjs"
}
+4
View File
@@ -0,0 +1,4 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
export default {};
+8
View File
@@ -0,0 +1,8 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// This is a dummy, aka we don't check requires and then have
// some issues with the fact that we have a util reference
import { BN } from '@pezkuwi/util';
export { BN };
+4
View File
@@ -0,0 +1,4 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
export default {};
+6
View File
@@ -0,0 +1,6 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
export { packageInfo } from './packageInfo.js';
console.error('@polkadot/x-bundle is not meant to be used directly');
+28
View File
@@ -0,0 +1,28 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// Adapted from https://github.com/isaacs/inherits/blob/dbade4c47c548aa7259017eca8874d61c8aaad2b/inherits_browser.js
// The ISC License
// Copyright (c) Isaac Z. Schlueter
interface Class {
prototype: object;
super_: Class;
[key: string]: unknown;
}
export default function inherits (child: Class, parent: Class): void {
if (parent) {
child.super_ = parent;
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
child.prototype = Object.create(parent.prototype, {
constructor: {
configurable: true,
enumerable: false,
value: child,
writable: true
}
});
}
}
+6
View File
@@ -0,0 +1,6 @@
// Copyright 2017-2025 @polkadot/x-bundle authors & contributors
// SPDX-License-Identifier: Apache-2.0
// Do not edit, auto-generated by @polkadot/dev
export const packageInfo = { name: '@polkadot/x-bundle', path: 'auto', type: 'auto', version: '14.0.1' };
+11
View File
@@ -0,0 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": "..",
"outDir": "./build",
"rootDir": "./src"
},
"references": [
{ "path": "../util/tsconfig.build.json" }
]
}