diff --git a/.github/workflows/pr-any.yml b/.github/workflows/pr-any.yml index f27cedfed8e..60cb8f0ffe1 100644 --- a/.github/workflows/pr-any.yml +++ b/.github/workflows/pr-any.yml @@ -13,6 +13,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 'lts/*' + - name: Set Execute Permissions + run: chmod +x ./scripts/* - name: ${{ matrix.step }} run: | yarn install --immutable diff --git a/.github/workflows/push-master.yml b/.github/workflows/push-master.yml index 23a8f5c452e..879792f449b 100644 --- a/.github/workflows/push-master.yml +++ b/.github/workflows/push-master.yml @@ -20,6 +20,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 'lts/*' + - name: Set Execute Permissions + run: chmod +x ./scripts/* - name: ${{ matrix.step }} env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} @@ -44,6 +46,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 'lts/*' + - name: Set Execute Permissions + run: chmod +x ./docker/* - name: docker env: DOCKER_PASS: ${{ secrets.DOCKER_PASS }} @@ -74,6 +78,8 @@ jobs: # run: | # mkdir -p ~/private_keys/ # echo '${{ secrets.API_KEY }}' > ~/private_keys/AuthKey_${{ secrets.API_KEY_ID }}.p8 + - name: Set Execute Permissions + run: chmod +x ./scripts/* - name: Build/release Electron app uses: samuelmeuli/action-electron-builder@v1 with: diff --git a/.prettierrc.cjs b/.prettierrc.cjs index 31010eff149..0279dca84a6 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 module.exports = require('@polkadot/dev/config/prettier.cjs'); diff --git a/docker/build.sh b/docker/build.sh old mode 100755 new mode 100644 index 18165f12af5..5413ed5763f --- a/docker/build.sh +++ b/docker/build.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2017-2024 @polkadot/apps authors & contributors +# Copyright 2017-2025 @polkadot/apps authors & contributors # This software may be modified and distributed under the terms # of the Apache-2.0 license. See the LICENSE file for details. diff --git a/docker/env.sh b/docker/env.sh old mode 100755 new mode 100644 index d1e175aec61..a997b68bf0e --- a/docker/env.sh +++ b/docker/env.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2017-2024 @polkadot/apps authors & contributors +# Copyright 2017-2025 @polkadot/apps authors & contributors # SPDX-License-Identifier: Apache-2.0 # This script is used when the docker container starts and does the magic to diff --git a/eslint.config.js b/eslint.config.js index dfe9de2a634..2b99e8e4b76 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import baseConfig from '@polkadot/dev/config/eslint'; diff --git a/i18next-scanner.config.cjs b/i18next-scanner.config.cjs index fef8c80e134..3270ed29746 100644 --- a/i18next-scanner.config.cjs +++ b/i18next-scanner.config.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('fs'); diff --git a/packages/apps-config/src/api/chain/cere.ts b/packages/apps-config/src/api/chain/cere.ts index e9f0ab504b6..1a43111f1fa 100644 --- a/packages/apps-config/src/api/chain/cere.ts +++ b/packages/apps-config/src/api/chain/cere.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/chain/index.ts b/packages/apps-config/src/api/chain/index.ts index 3f35c6e458b..fb63f7c15a3 100644 --- a/packages/apps-config/src/api/chain/index.ts +++ b/packages/apps-config/src/api/chain/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/constants.ts b/packages/apps-config/src/api/constants.ts index 6bad19db637..2e1cdbcec2c 100644 --- a/packages/apps-config/src/api/constants.ts +++ b/packages/apps-config/src/api/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/apps-config/src/api/derives.ts b/packages/apps-config/src/api/derives.ts index 939a17e93f0..b0c3200c317 100644 --- a/packages/apps-config/src/api/derives.ts +++ b/packages/apps-config/src/api/derives.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition, OverrideBundleType } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/index.ts b/packages/apps-config/src/api/index.ts index acabb86e12f..c0a62c8d3f4 100644 --- a/packages/apps-config/src/api/index.ts +++ b/packages/apps-config/src/api/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { applyDerives } from './derives.js'; diff --git a/packages/apps-config/src/api/params/index.ts b/packages/apps-config/src/api/params/index.ts index 94cd64d813e..c821637e1be 100644 --- a/packages/apps-config/src/api/params/index.ts +++ b/packages/apps-config/src/api/params/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './inflation.js'; diff --git a/packages/apps-config/src/api/params/inflation.ts b/packages/apps-config/src/api/params/inflation.ts index 3e16bad3f20..6d5967e18bf 100644 --- a/packages/apps-config/src/api/params/inflation.ts +++ b/packages/apps-config/src/api/params/inflation.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-config/src/api/params/proposalThresholds.ts b/packages/apps-config/src/api/params/proposalThresholds.ts index 3aa45341c32..3b0a96243b2 100644 --- a/packages/apps-config/src/api/params/proposalThresholds.ts +++ b/packages/apps-config/src/api/params/proposalThresholds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-config/src/api/params/teleport.ts b/packages/apps-config/src/api/params/teleport.ts index 0a8bd2fa259..5e90b451bfb 100644 --- a/packages/apps-config/src/api/params/teleport.ts +++ b/packages/apps-config/src/api/params/teleport.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-config/src/api/params/tracks/index.ts b/packages/apps-config/src/api/params/tracks/index.ts index fa17aaab4d4..1540de4d092 100644 --- a/packages/apps-config/src/api/params/tracks/index.ts +++ b/packages/apps-config/src/api/params/tracks/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-config/src/api/params/tracks/kusama.ts b/packages/apps-config/src/api/params/tracks/kusama.ts index eda03844fa0..d301e15c04e 100644 --- a/packages/apps-config/src/api/params/tracks/kusama.ts +++ b/packages/apps-config/src/api/params/tracks/kusama.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TrackInfo } from './types.js'; diff --git a/packages/apps-config/src/api/params/tracks/polkadot.ts b/packages/apps-config/src/api/params/tracks/polkadot.ts index 34244c50fd4..d22ea8ce953 100644 --- a/packages/apps-config/src/api/params/tracks/polkadot.ts +++ b/packages/apps-config/src/api/params/tracks/polkadot.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TrackInfo } from './types.js'; diff --git a/packages/apps-config/src/api/params/tracks/types.ts b/packages/apps-config/src/api/params/tracks/types.ts index b23accf0139..3530b3dc013 100644 --- a/packages/apps-config/src/api/params/tracks/types.ts +++ b/packages/apps-config/src/api/params/tracks/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/api/params/tracks/util.ts b/packages/apps-config/src/api/params/tracks/util.ts index 0ffcd5b12e7..ebb15db741c 100644 --- a/packages/apps-config/src/api/params/tracks/util.ts +++ b/packages/apps-config/src/api/params/tracks/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/api/spec/acala.ts b/packages/apps-config/src/api/spec/acala.ts index 82e5565c6ca..4a4315e7179 100644 --- a/packages/apps-config/src/api/spec/acala.ts +++ b/packages/apps-config/src/api/spec/acala.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { typesBundleForPolkadot } from '@acala-network/type-definitions'; diff --git a/packages/apps-config/src/api/spec/ajuna.ts b/packages/apps-config/src/api/spec/ajuna.ts index 9f3afa04d16..c9d56d0e6c3 100644 --- a/packages/apps-config/src/api/spec/ajuna.ts +++ b/packages/apps-config/src/api/spec/ajuna.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/allfeat.ts b/packages/apps-config/src/api/spec/allfeat.ts index ac775b68b92..916b83fcb59 100644 --- a/packages/apps-config/src/api/spec/allfeat.ts +++ b/packages/apps-config/src/api/spec/allfeat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/altair.ts b/packages/apps-config/src/api/spec/altair.ts index 811f5b1279e..38ea4dde58c 100644 --- a/packages/apps-config/src/api/spec/altair.ts +++ b/packages/apps-config/src/api/spec/altair.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/apron.ts b/packages/apps-config/src/api/spec/apron.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/apron.ts +++ b/packages/apps-config/src/api/spec/apron.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/ares-gladios.ts b/packages/apps-config/src/api/spec/ares-gladios.ts index b535e816405..350a72d3907 100644 --- a/packages/apps-config/src/api/spec/ares-gladios.ts +++ b/packages/apps-config/src/api/spec/ares-gladios.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/ares-parachain.ts b/packages/apps-config/src/api/spec/ares-parachain.ts index 55ace1ec801..0258f0c6085 100644 --- a/packages/apps-config/src/api/spec/ares-parachain.ts +++ b/packages/apps-config/src/api/spec/ares-parachain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/argon.ts b/packages/apps-config/src/api/spec/argon.ts index 3fd8ab670d8..959c7ca2a83 100644 --- a/packages/apps-config/src/api/spec/argon.ts +++ b/packages/apps-config/src/api/spec/argon.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/astar.ts b/packages/apps-config/src/api/spec/astar.ts index c18effbcd87..1390f61e2d0 100644 --- a/packages/apps-config/src/api/spec/astar.ts +++ b/packages/apps-config/src/api/spec/astar.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bajun.ts b/packages/apps-config/src/api/spec/bajun.ts index 9f3afa04d16..c9d56d0e6c3 100644 --- a/packages/apps-config/src/api/spec/bajun.ts +++ b/packages/apps-config/src/api/spec/bajun.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/basilisk.ts b/packages/apps-config/src/api/spec/basilisk.ts index 6e371258630..49bbe1cdde6 100644 --- a/packages/apps-config/src/api/spec/basilisk.ts +++ b/packages/apps-config/src/api/spec/basilisk.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/beresheet.ts b/packages/apps-config/src/api/spec/beresheet.ts index 3eda4287a6e..759ceaba9a6 100644 --- a/packages/apps-config/src/api/spec/beresheet.ts +++ b/packages/apps-config/src/api/spec/beresheet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bifrost-asgard.ts b/packages/apps-config/src/api/spec/bifrost-asgard.ts index d289bbdf362..74e67328da7 100644 --- a/packages/apps-config/src/api/spec/bifrost-asgard.ts +++ b/packages/apps-config/src/api/spec/bifrost-asgard.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bifrost-parachain.ts b/packages/apps-config/src/api/spec/bifrost-parachain.ts index 3adf4e13eec..6c4b6448512 100644 --- a/packages/apps-config/src/api/spec/bifrost-parachain.ts +++ b/packages/apps-config/src/api/spec/bifrost-parachain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bifrost.ts b/packages/apps-config/src/api/spec/bifrost.ts index 3adf4e13eec..6c4b6448512 100644 --- a/packages/apps-config/src/api/spec/bifrost.ts +++ b/packages/apps-config/src/api/spec/bifrost.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bitcountry-pioneer.ts b/packages/apps-config/src/api/spec/bitcountry-pioneer.ts index de272245066..f5ff8b7c8f3 100644 --- a/packages/apps-config/src/api/spec/bitcountry-pioneer.ts +++ b/packages/apps-config/src/api/spec/bitcountry-pioneer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { types } from '@metaverse-network-sdk/type-definitions'; diff --git a/packages/apps-config/src/api/spec/bitcountry-rococo.ts b/packages/apps-config/src/api/spec/bitcountry-rococo.ts index 2eef6233bdf..ba67dfffd1e 100644 --- a/packages/apps-config/src/api/spec/bitcountry-rococo.ts +++ b/packages/apps-config/src/api/spec/bitcountry-rococo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bitcountry.ts b/packages/apps-config/src/api/spec/bitcountry.ts index ec67176c5d5..0e44e82eb0f 100644 --- a/packages/apps-config/src/api/spec/bitcountry.ts +++ b/packages/apps-config/src/api/spec/bitcountry.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/bittensor.ts b/packages/apps-config/src/api/spec/bittensor.ts index f5e677e36c7..7bda31c0cce 100644 --- a/packages/apps-config/src/api/spec/bittensor.ts +++ b/packages/apps-config/src/api/spec/bittensor.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/centrifuge-chain.ts b/packages/apps-config/src/api/spec/centrifuge-chain.ts index 0a14cdfb2bf..71e6cc625a5 100644 --- a/packages/apps-config/src/api/spec/centrifuge-chain.ts +++ b/packages/apps-config/src/api/spec/centrifuge-chain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/centrifuge.ts b/packages/apps-config/src/api/spec/centrifuge.ts index 89588d13d7b..7d181639e89 100644 --- a/packages/apps-config/src/api/spec/centrifuge.ts +++ b/packages/apps-config/src/api/spec/centrifuge.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/chainx.ts b/packages/apps-config/src/api/spec/chainx.ts index 7f9e088322e..caed418d709 100644 --- a/packages/apps-config/src/api/spec/chainx.ts +++ b/packages/apps-config/src/api/spec/chainx.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/clover-rococo.ts b/packages/apps-config/src/api/spec/clover-rococo.ts index c2ec839adff..1d759b2ebca 100644 --- a/packages/apps-config/src/api/spec/clover-rococo.ts +++ b/packages/apps-config/src/api/spec/clover-rococo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/clover.ts b/packages/apps-config/src/api/spec/clover.ts index 9bd84e9c2b7..04a4744d8bd 100644 --- a/packages/apps-config/src/api/spec/clover.ts +++ b/packages/apps-config/src/api/spec/clover.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/coinversation.ts b/packages/apps-config/src/api/spec/coinversation.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/coinversation.ts +++ b/packages/apps-config/src/api/spec/coinversation.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/communeai.ts b/packages/apps-config/src/api/spec/communeai.ts index f5e677e36c7..7bda31c0cce 100644 --- a/packages/apps-config/src/api/spec/communeai.ts +++ b/packages/apps-config/src/api/spec/communeai.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/competitors-club.ts b/packages/apps-config/src/api/spec/competitors-club.ts index 9599348b68e..1fa7a635674 100644 --- a/packages/apps-config/src/api/spec/competitors-club.ts +++ b/packages/apps-config/src/api/spec/competitors-club.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/contracts.ts b/packages/apps-config/src/api/spec/contracts.ts index 46049c4f8f5..20cffab46da 100644 --- a/packages/apps-config/src/api/spec/contracts.ts +++ b/packages/apps-config/src/api/spec/contracts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/crown-sterling.ts b/packages/apps-config/src/api/spec/crown-sterling.ts index 6f2e90048e9..9ef1d9f4ab1 100644 --- a/packages/apps-config/src/api/spec/crown-sterling.ts +++ b/packages/apps-config/src/api/spec/crown-sterling.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/crust.ts b/packages/apps-config/src/api/spec/crust.ts index 47141e7e14f..44f6214ace8 100644 --- a/packages/apps-config/src/api/spec/crust.ts +++ b/packages/apps-config/src/api/spec/crust.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/cumulus-test-parachain.ts b/packages/apps-config/src/api/spec/cumulus-test-parachain.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/cumulus-test-parachain.ts +++ b/packages/apps-config/src/api/spec/cumulus-test-parachain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/curio.ts b/packages/apps-config/src/api/spec/curio.ts index 479c5ccbbf5..66426a9c6ea 100644 --- a/packages/apps-config/src/api/spec/curio.ts +++ b/packages/apps-config/src/api/spec/curio.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/datahighway.ts b/packages/apps-config/src/api/spec/datahighway.ts index 371abda15ec..c055dfa455e 100644 --- a/packages/apps-config/src/api/spec/datahighway.ts +++ b/packages/apps-config/src/api/spec/datahighway.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/dock-mainnet.ts b/packages/apps-config/src/api/spec/dock-mainnet.ts index 748d75e5774..09c720cc54d 100644 --- a/packages/apps-config/src/api/spec/dock-mainnet.ts +++ b/packages/apps-config/src/api/spec/dock-mainnet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/dock-testnet.ts b/packages/apps-config/src/api/spec/dock-testnet.ts index b28d96b2911..63af274b80b 100644 --- a/packages/apps-config/src/api/spec/dock-testnet.ts +++ b/packages/apps-config/src/api/spec/dock-testnet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/dolphin.ts b/packages/apps-config/src/api/spec/dolphin.ts index 14ae3b69206..3bd49ef1b25 100644 --- a/packages/apps-config/src/api/spec/dolphin.ts +++ b/packages/apps-config/src/api/spec/dolphin.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/dotmog.ts b/packages/apps-config/src/api/spec/dotmog.ts index 8ca552f8359..7cd1f2e5a74 100644 --- a/packages/apps-config/src/api/spec/dotmog.ts +++ b/packages/apps-config/src/api/spec/dotmog.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/eave.ts b/packages/apps-config/src/api/spec/eave.ts index 7b081ee9a1e..323da8d4328 100644 --- a/packages/apps-config/src/api/spec/eave.ts +++ b/packages/apps-config/src/api/spec/eave.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/edgeware.ts b/packages/apps-config/src/api/spec/edgeware.ts index 3eda4287a6e..759ceaba9a6 100644 --- a/packages/apps-config/src/api/spec/edgeware.ts +++ b/packages/apps-config/src/api/spec/edgeware.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/elysium.ts b/packages/apps-config/src/api/spec/elysium.ts index da2963c2fb8..4036baf1d49 100644 --- a/packages/apps-config/src/api/spec/elysium.ts +++ b/packages/apps-config/src/api/spec/elysium.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/encointer-node-notee.ts b/packages/apps-config/src/api/spec/encointer-node-notee.ts index 6c93e6a3f94..76d4f8fa823 100644 --- a/packages/apps-config/src/api/spec/encointer-node-notee.ts +++ b/packages/apps-config/src/api/spec/encointer-node-notee.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/encointer-node-teeproxy.ts b/packages/apps-config/src/api/spec/encointer-node-teeproxy.ts index 335f3830ea2..aaf71ae3c8a 100644 --- a/packages/apps-config/src/api/spec/encointer-node-teeproxy.ts +++ b/packages/apps-config/src/api/spec/encointer-node-teeproxy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/encointer-para.ts b/packages/apps-config/src/api/spec/encointer-para.ts index 04fd37fc8f4..7feed23e2b4 100644 --- a/packages/apps-config/src/api/spec/encointer-para.ts +++ b/packages/apps-config/src/api/spec/encointer-para.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/equilibrium.ts b/packages/apps-config/src/api/spec/equilibrium.ts index 5594e2f5702..13b14577bfb 100644 --- a/packages/apps-config/src/api/spec/equilibrium.ts +++ b/packages/apps-config/src/api/spec/equilibrium.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiInterfaceRx } from '@polkadot/api/types'; diff --git a/packages/apps-config/src/api/spec/fantour.ts b/packages/apps-config/src/api/spec/fantour.ts index d148e8d0bc5..8f44e8ba2cb 100644 --- a/packages/apps-config/src/api/spec/fantour.ts +++ b/packages/apps-config/src/api/spec/fantour.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // structs need to be in order diff --git a/packages/apps-config/src/api/spec/ferrum.ts b/packages/apps-config/src/api/spec/ferrum.ts index 504e5efc51f..b19e29b235a 100644 --- a/packages/apps-config/src/api/spec/ferrum.ts +++ b/packages/apps-config/src/api/spec/ferrum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/fragnova.ts b/packages/apps-config/src/api/spec/fragnova.ts index 0dab5ba1944..1699a545e5c 100644 --- a/packages/apps-config/src/api/spec/fragnova.ts +++ b/packages/apps-config/src/api/spec/fragnova.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // Not used/included in index.ts as of https://github.com/polkadot-js/apps/pull/9243 diff --git a/packages/apps-config/src/api/spec/frequency.ts b/packages/apps-config/src/api/spec/frequency.ts index 99cd5aebc37..09421b08228 100644 --- a/packages/apps-config/src/api/spec/frequency.ts +++ b/packages/apps-config/src/api/spec/frequency.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/galital-parachain.ts b/packages/apps-config/src/api/spec/galital-parachain.ts index 68cfedc0eda..dcad623e40f 100644 --- a/packages/apps-config/src/api/spec/galital-parachain.ts +++ b/packages/apps-config/src/api/spec/galital-parachain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/galital.ts b/packages/apps-config/src/api/spec/galital.ts index 1018abfdd34..3d3a23f7430 100644 --- a/packages/apps-config/src/api/spec/galital.ts +++ b/packages/apps-config/src/api/spec/galital.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/galois.ts b/packages/apps-config/src/api/spec/galois.ts index 705ab4130b9..db29ecb9c85 100644 --- a/packages/apps-config/src/api/spec/galois.ts +++ b/packages/apps-config/src/api/spec/galois.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/gamepower.ts b/packages/apps-config/src/api/spec/gamepower.ts index 89fd6b27935..a3edf87eb97 100644 --- a/packages/apps-config/src/api/spec/gamepower.ts +++ b/packages/apps-config/src/api/spec/gamepower.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/genshiro.ts b/packages/apps-config/src/api/spec/genshiro.ts index bfa61a4d936..42ca4c24213 100644 --- a/packages/apps-config/src/api/spec/genshiro.ts +++ b/packages/apps-config/src/api/spec/genshiro.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/hanonycash.ts b/packages/apps-config/src/api/spec/hanonycash.ts index 50415c4eca2..3a4c86fa5a1 100644 --- a/packages/apps-config/src/api/spec/hanonycash.ts +++ b/packages/apps-config/src/api/spec/hanonycash.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/hydrate.ts b/packages/apps-config/src/api/spec/hydrate.ts index ad75ac0212d..86de0886d74 100644 --- a/packages/apps-config/src/api/spec/hydrate.ts +++ b/packages/apps-config/src/api/spec/hydrate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/hyperbridge.ts b/packages/apps-config/src/api/spec/hyperbridge.ts index 8f1e2239de4..f21fb8e6186 100644 --- a/packages/apps-config/src/api/spec/hyperbridge.ts +++ b/packages/apps-config/src/api/spec/hyperbridge.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/idavoll.ts b/packages/apps-config/src/api/spec/idavoll.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/idavoll.ts +++ b/packages/apps-config/src/api/spec/idavoll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/imbue.ts b/packages/apps-config/src/api/spec/imbue.ts index e2a8d22344a..c80d2b80945 100644 --- a/packages/apps-config/src/api/spec/imbue.ts +++ b/packages/apps-config/src/api/spec/imbue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/index.ts b/packages/apps-config/src/api/spec/index.ts index e26c3bc4c84..ec46080dac4 100644 --- a/packages/apps-config/src/api/spec/index.ts +++ b/packages/apps-config/src/api/spec/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/integritee.ts b/packages/apps-config/src/api/spec/integritee.ts index dd2d51d7a97..689726167c8 100644 --- a/packages/apps-config/src/api/spec/integritee.ts +++ b/packages/apps-config/src/api/spec/integritee.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/interbtc.ts b/packages/apps-config/src/api/spec/interbtc.ts index 33c2848d5ca..5b4541d5be2 100644 --- a/packages/apps-config/src/api/spec/interbtc.ts +++ b/packages/apps-config/src/api/spec/interbtc.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment */ diff --git a/packages/apps-config/src/api/spec/ipse.ts b/packages/apps-config/src/api/spec/ipse.ts index 3d35dac3ed3..7a3cd3f7488 100644 --- a/packages/apps-config/src/api/spec/ipse.ts +++ b/packages/apps-config/src/api/spec/ipse.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/jamton.ts b/packages/apps-config/src/api/spec/jamton.ts index f2453de92fd..3ee26f6958f 100644 --- a/packages/apps-config/src/api/spec/jamton.ts +++ b/packages/apps-config/src/api/spec/jamton.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/jupiter-rococo.ts b/packages/apps-config/src/api/spec/jupiter-rococo.ts index df07dc594cb..6b2bb54b66c 100644 --- a/packages/apps-config/src/api/spec/jupiter-rococo.ts +++ b/packages/apps-config/src/api/spec/jupiter-rococo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/jupiter.ts b/packages/apps-config/src/api/spec/jupiter.ts index 1011db62632..13e089da2b3 100644 --- a/packages/apps-config/src/api/spec/jupiter.ts +++ b/packages/apps-config/src/api/spec/jupiter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/jur.ts b/packages/apps-config/src/api/spec/jur.ts index 3968ee1287e..422192c2a2a 100644 --- a/packages/apps-config/src/api/spec/jur.ts +++ b/packages/apps-config/src/api/spec/jur.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/khala.ts b/packages/apps-config/src/api/spec/khala.ts index b62e2509e6d..289e19ad631 100644 --- a/packages/apps-config/src/api/spec/khala.ts +++ b/packages/apps-config/src/api/spec/khala.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/kilt.ts b/packages/apps-config/src/api/spec/kilt.ts index d1c0515d477..19dd8e9f2f4 100644 --- a/packages/apps-config/src/api/spec/kilt.ts +++ b/packages/apps-config/src/api/spec/kilt.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { typesBundle } from '@kiltprotocol/type-definitions'; diff --git a/packages/apps-config/src/api/spec/konomi.ts b/packages/apps-config/src/api/spec/konomi.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/konomi.ts +++ b/packages/apps-config/src/api/spec/konomi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/kpron.ts b/packages/apps-config/src/api/spec/kpron.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/kpron.ts +++ b/packages/apps-config/src/api/spec/kpron.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/kulupu.ts b/packages/apps-config/src/api/spec/kulupu.ts index a7ea8f5ab23..e2066345b72 100644 --- a/packages/apps-config/src/api/spec/kulupu.ts +++ b/packages/apps-config/src/api/spec/kulupu.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/kusari.ts b/packages/apps-config/src/api/spec/kusari.ts index 02737007084..21b503a7e74 100644 --- a/packages/apps-config/src/api/spec/kusari.ts +++ b/packages/apps-config/src/api/spec/kusari.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/kylin.ts b/packages/apps-config/src/api/spec/kylin.ts index d4c2c56c686..2feacc59a92 100644 --- a/packages/apps-config/src/api/spec/kylin.ts +++ b/packages/apps-config/src/api/spec/kylin.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/laminar.ts b/packages/apps-config/src/api/spec/laminar.ts index 7160991b971..7ece72e2b51 100644 --- a/packages/apps-config/src/api/spec/laminar.ts +++ b/packages/apps-config/src/api/spec/laminar.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/litentry.ts b/packages/apps-config/src/api/spec/litentry.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/litentry.ts +++ b/packages/apps-config/src/api/spec/litentry.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/logion-parachain.ts b/packages/apps-config/src/api/spec/logion-parachain.ts index 2e71175dc27..af2ce54772f 100644 --- a/packages/apps-config/src/api/spec/logion-parachain.ts +++ b/packages/apps-config/src/api/spec/logion-parachain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/logion.ts b/packages/apps-config/src/api/spec/logion.ts index 06b1bba8109..feb3f557047 100644 --- a/packages/apps-config/src/api/spec/logion.ts +++ b/packages/apps-config/src/api/spec/logion.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // structs need to be in order diff --git a/packages/apps-config/src/api/spec/mangata.ts b/packages/apps-config/src/api/spec/mangata.ts index 6de79d4c468..4adff89c18e 100644 --- a/packages/apps-config/src/api/spec/mangata.ts +++ b/packages/apps-config/src/api/spec/mangata.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // structs need to be in order diff --git a/packages/apps-config/src/api/spec/manta.ts b/packages/apps-config/src/api/spec/manta.ts index 6d1e5c35cca..8e49d948f7a 100644 --- a/packages/apps-config/src/api/spec/manta.ts +++ b/packages/apps-config/src/api/spec/manta.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/mathchain.ts b/packages/apps-config/src/api/spec/mathchain.ts index 705ab4130b9..db29ecb9c85 100644 --- a/packages/apps-config/src/api/spec/mathchain.ts +++ b/packages/apps-config/src/api/spec/mathchain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/moonbeam.ts b/packages/apps-config/src/api/spec/moonbeam.ts index 4521eca80f0..5d3c5d71b4f 100644 --- a/packages/apps-config/src/api/spec/moonbeam.ts +++ b/packages/apps-config/src/api/spec/moonbeam.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { moonbeamDefinitions } from 'moonbeam-types-bundle'; diff --git a/packages/apps-config/src/api/spec/muse.ts b/packages/apps-config/src/api/spec/muse.ts index 8065c1aa018..fe7e5f623b8 100644 --- a/packages/apps-config/src/api/spec/muse.ts +++ b/packages/apps-config/src/api/spec/muse.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/mybank.ts b/packages/apps-config/src/api/spec/mybank.ts index 02f4f6f33e8..6d1a70c9747 100644 --- a/packages/apps-config/src/api/spec/mybank.ts +++ b/packages/apps-config/src/api/spec/mybank.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/mythos.ts b/packages/apps-config/src/api/spec/mythos.ts index 8065c1aa018..fe7e5f623b8 100644 --- a/packages/apps-config/src/api/spec/mythos.ts +++ b/packages/apps-config/src/api/spec/mythos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/neatcoin.ts b/packages/apps-config/src/api/spec/neatcoin.ts index 299bf8056ba..d0cf4884104 100644 --- a/packages/apps-config/src/api/spec/neatcoin.ts +++ b/packages/apps-config/src/api/spec/neatcoin.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/neuroweb.ts b/packages/apps-config/src/api/spec/neuroweb.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/neuroweb.ts +++ b/packages/apps-config/src/api/spec/neuroweb.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/nftmart.ts b/packages/apps-config/src/api/spec/nftmart.ts index 4e82a728ac6..2e29e2a3770 100644 --- a/packages/apps-config/src/api/spec/nftmart.ts +++ b/packages/apps-config/src/api/spec/nftmart.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // structs need to be in order diff --git a/packages/apps-config/src/api/spec/nodle.ts b/packages/apps-config/src/api/spec/nodle.ts index d9467e1956a..dd47880f45a 100644 --- a/packages/apps-config/src/api/spec/nodle.ts +++ b/packages/apps-config/src/api/spec/nodle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/oak.ts b/packages/apps-config/src/api/spec/oak.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/oak.ts +++ b/packages/apps-config/src/api/spec/oak.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/opal.ts b/packages/apps-config/src/api/spec/opal.ts index 3caa33a5e68..2b26bff91be 100644 --- a/packages/apps-config/src/api/spec/opal.ts +++ b/packages/apps-config/src/api/spec/opal.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/opportunity.ts b/packages/apps-config/src/api/spec/opportunity.ts index 7ea15d5eda4..0396f96c0e2 100644 --- a/packages/apps-config/src/api/spec/opportunity.ts +++ b/packages/apps-config/src/api/spec/opportunity.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/oz-template.ts b/packages/apps-config/src/api/spec/oz-template.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/oz-template.ts +++ b/packages/apps-config/src/api/spec/oz-template.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/parallel.ts b/packages/apps-config/src/api/spec/parallel.ts index fd4ceba7d11..128e9856325 100644 --- a/packages/apps-config/src/api/spec/parallel.ts +++ b/packages/apps-config/src/api/spec/parallel.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { typesBundleForPolkadot } from '@parallel-finance/type-definitions'; diff --git a/packages/apps-config/src/api/spec/parami.ts b/packages/apps-config/src/api/spec/parami.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/parami.ts +++ b/packages/apps-config/src/api/spec/parami.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/peaq.ts b/packages/apps-config/src/api/spec/peaq.ts index 2a9a3bf5d73..c3cca8de2d2 100644 --- a/packages/apps-config/src/api/spec/peaq.ts +++ b/packages/apps-config/src/api/spec/peaq.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/peerplays.ts b/packages/apps-config/src/api/spec/peerplays.ts index cdcd7b0ed74..d26b9463040 100644 --- a/packages/apps-config/src/api/spec/peerplays.ts +++ b/packages/apps-config/src/api/spec/peerplays.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/pendulum.ts b/packages/apps-config/src/api/spec/pendulum.ts index 1470bc15e74..89362897a40 100644 --- a/packages/apps-config/src/api/spec/pendulum.ts +++ b/packages/apps-config/src/api/spec/pendulum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/phoenix.ts b/packages/apps-config/src/api/spec/phoenix.ts index bb511f8b1ec..94e5237dbb0 100644 --- a/packages/apps-config/src/api/spec/phoenix.ts +++ b/packages/apps-config/src/api/spec/phoenix.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/pichiu.ts b/packages/apps-config/src/api/spec/pichiu.ts index d4c2c56c686..2feacc59a92 100644 --- a/packages/apps-config/src/api/spec/pichiu.ts +++ b/packages/apps-config/src/api/spec/pichiu.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/plasm.ts b/packages/apps-config/src/api/spec/plasm.ts index eb2cec50af2..0558078e67c 100644 --- a/packages/apps-config/src/api/spec/plasm.ts +++ b/packages/apps-config/src/api/spec/plasm.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/polimec.ts b/packages/apps-config/src/api/spec/polimec.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/polimec.ts +++ b/packages/apps-config/src/api/spec/polimec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/polkadex.ts b/packages/apps-config/src/api/spec/polkadex.ts index 33bd284b315..2751553723e 100644 --- a/packages/apps-config/src/api/spec/polkadex.ts +++ b/packages/apps-config/src/api/spec/polkadex.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/polkafoundry.ts b/packages/apps-config/src/api/spec/polkafoundry.ts index b3a1d1465c3..b9146eaa4a5 100644 --- a/packages/apps-config/src/api/spec/polkafoundry.ts +++ b/packages/apps-config/src/api/spec/polkafoundry.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/polymesh-mainnet.ts b/packages/apps-config/src/api/spec/polymesh-mainnet.ts index b3d4ef5dc9a..a60aad698ad 100644 --- a/packages/apps-config/src/api/spec/polymesh-mainnet.ts +++ b/packages/apps-config/src/api/spec/polymesh-mainnet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/polymesh-testnet.ts b/packages/apps-config/src/api/spec/polymesh-testnet.ts index ba66ba3b2a3..28db99ef5ac 100644 --- a/packages/apps-config/src/api/spec/polymesh-testnet.ts +++ b/packages/apps-config/src/api/spec/polymesh-testnet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/pontem.ts b/packages/apps-config/src/api/spec/pontem.ts index 06b9c7c983e..94f3483a9b3 100644 --- a/packages/apps-config/src/api/spec/pontem.ts +++ b/packages/apps-config/src/api/spec/pontem.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { pontemDefinitions } from 'pontem-types-bundle'; diff --git a/packages/apps-config/src/api/spec/prism.ts b/packages/apps-config/src/api/spec/prism.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/prism.ts +++ b/packages/apps-config/src/api/spec/prism.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/quartz.ts b/packages/apps-config/src/api/spec/quartz.ts index 79064f25541..7f9868b712b 100644 --- a/packages/apps-config/src/api/spec/quartz.ts +++ b/packages/apps-config/src/api/spec/quartz.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/realis.ts b/packages/apps-config/src/api/spec/realis.ts index 12be9b89cd8..15bba008286 100644 --- a/packages/apps-config/src/api/spec/realis.ts +++ b/packages/apps-config/src/api/spec/realis.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/riochain.ts b/packages/apps-config/src/api/spec/riochain.ts index da4c31f9875..cb140cc1c4f 100644 --- a/packages/apps-config/src/api/spec/riochain.ts +++ b/packages/apps-config/src/api/spec/riochain.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/robonomics.ts b/packages/apps-config/src/api/spec/robonomics.ts index 50afe80f8ea..bfd56a0d35d 100644 --- a/packages/apps-config/src/api/spec/robonomics.ts +++ b/packages/apps-config/src/api/spec/robonomics.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/rootnet.ts b/packages/apps-config/src/api/spec/rootnet.ts index f7ffde06a83..b37282a35db 100644 --- a/packages/apps-config/src/api/spec/rootnet.ts +++ b/packages/apps-config/src/api/spec/rootnet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/sapphire.ts b/packages/apps-config/src/api/spec/sapphire.ts index fe45bebd196..85b52f9d993 100644 --- a/packages/apps-config/src/api/spec/sapphire.ts +++ b/packages/apps-config/src/api/spec/sapphire.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/shibuya.ts b/packages/apps-config/src/api/spec/shibuya.ts index b69c36f3d26..e5453a66d85 100644 --- a/packages/apps-config/src/api/spec/shibuya.ts +++ b/packages/apps-config/src/api/spec/shibuya.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/shiden.ts b/packages/apps-config/src/api/spec/shiden.ts index cbddeb4b41c..2c95463713a 100644 --- a/packages/apps-config/src/api/spec/shiden.ts +++ b/packages/apps-config/src/api/spec/shiden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/snowbridge.ts b/packages/apps-config/src/api/spec/snowbridge.ts index 9f55c9ed1f4..7c88b13cc22 100644 --- a/packages/apps-config/src/api/spec/snowbridge.ts +++ b/packages/apps-config/src/api/spec/snowbridge.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { definition } from '@snowfork/snowbridge-types'; diff --git a/packages/apps-config/src/api/spec/soraSubstrate.ts b/packages/apps-config/src/api/spec/soraSubstrate.ts index c2d804ab30d..d32fdf63136 100644 --- a/packages/apps-config/src/api/spec/soraSubstrate.ts +++ b/packages/apps-config/src/api/spec/soraSubstrate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/spanner.ts b/packages/apps-config/src/api/spec/spanner.ts index 969311fce1d..a8b341c4011 100644 --- a/packages/apps-config/src/api/spec/spanner.ts +++ b/packages/apps-config/src/api/spec/spanner.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/spreehafen.ts b/packages/apps-config/src/api/spec/spreehafen.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/spreehafen.ts +++ b/packages/apps-config/src/api/spec/spreehafen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/stafi.ts b/packages/apps-config/src/api/spec/stafi.ts index 4e6c8c31734..f51a00c7e3a 100644 --- a/packages/apps-config/src/api/spec/stafi.ts +++ b/packages/apps-config/src/api/spec/stafi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/standard.ts b/packages/apps-config/src/api/spec/standard.ts index 6524f97c74d..a864554504f 100644 --- a/packages/apps-config/src/api/spec/standard.ts +++ b/packages/apps-config/src/api/spec/standard.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/subdao.ts b/packages/apps-config/src/api/spec/subdao.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/subdao.ts +++ b/packages/apps-config/src/api/spec/subdao.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/subgame.ts b/packages/apps-config/src/api/spec/subgame.ts index 29e1782885a..2c0e0131cd1 100644 --- a/packages/apps-config/src/api/spec/subgame.ts +++ b/packages/apps-config/src/api/spec/subgame.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/subsocial.ts b/packages/apps-config/src/api/spec/subsocial.ts index 79615ed3773..856243002e6 100644 --- a/packages/apps-config/src/api/spec/subsocial.ts +++ b/packages/apps-config/src/api/spec/subsocial.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // IMPORTANT diff --git a/packages/apps-config/src/api/spec/subspace.ts b/packages/apps-config/src/api/spec/subspace.ts index 4ea95263d49..20317688a21 100644 --- a/packages/apps-config/src/api/spec/subspace.ts +++ b/packages/apps-config/src/api/spec/subspace.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // structs need to be in order diff --git a/packages/apps-config/src/api/spec/substrateContractsNode.ts b/packages/apps-config/src/api/spec/substrateContractsNode.ts index a18dd082a2f..cf7f92a150b 100644 --- a/packages/apps-config/src/api/spec/substrateContractsNode.ts +++ b/packages/apps-config/src/api/spec/substrateContractsNode.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/swapdex.ts b/packages/apps-config/src/api/spec/swapdex.ts index 02737007084..21b503a7e74 100644 --- a/packages/apps-config/src/api/spec/swapdex.ts +++ b/packages/apps-config/src/api/spec/swapdex.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/t0rn.ts b/packages/apps-config/src/api/spec/t0rn.ts index f417b98fcac..ccad5ef76aa 100644 --- a/packages/apps-config/src/api/spec/t0rn.ts +++ b/packages/apps-config/src/api/spec/t0rn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/tanganika.ts b/packages/apps-config/src/api/spec/tanganika.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/tanganika.ts +++ b/packages/apps-config/src/api/spec/tanganika.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/ternoa.ts b/packages/apps-config/src/api/spec/ternoa.ts index 6b0bc305c54..acc5089554d 100644 --- a/packages/apps-config/src/api/spec/ternoa.ts +++ b/packages/apps-config/src/api/spec/ternoa.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/trustbase.ts b/packages/apps-config/src/api/spec/trustbase.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/trustbase.ts +++ b/packages/apps-config/src/api/spec/trustbase.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/turing.ts b/packages/apps-config/src/api/spec/turing.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/turing.ts +++ b/packages/apps-config/src/api/spec/turing.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/uart.ts b/packages/apps-config/src/api/spec/uart.ts index 245bd87ad47..ee8e76309b0 100644 --- a/packages/apps-config/src/api/spec/uart.ts +++ b/packages/apps-config/src/api/spec/uart.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/unique.ts b/packages/apps-config/src/api/spec/unique.ts index 1fb7247bc2a..0019a03b08d 100644 --- a/packages/apps-config/src/api/spec/unique.ts +++ b/packages/apps-config/src/api/spec/unique.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/unitnetwork.ts b/packages/apps-config/src/api/spec/unitnetwork.ts index 9e168b8e7b0..b42f49ec943 100644 --- a/packages/apps-config/src/api/spec/unitnetwork.ts +++ b/packages/apps-config/src/api/spec/unitnetwork.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/unitv.ts b/packages/apps-config/src/api/spec/unitv.ts index 4e6c8c31734..f51a00c7e3a 100644 --- a/packages/apps-config/src/api/spec/unitv.ts +++ b/packages/apps-config/src/api/spec/unitv.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/vln-rococo.ts b/packages/apps-config/src/api/spec/vln-rococo.ts index 33671896a45..758e91e1c23 100644 --- a/packages/apps-config/src/api/spec/vln-rococo.ts +++ b/packages/apps-config/src/api/spec/vln-rococo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/vln.ts b/packages/apps-config/src/api/spec/vln.ts index 4ba8befd77a..fa4c3b27f73 100644 --- a/packages/apps-config/src/api/spec/vln.ts +++ b/packages/apps-config/src/api/spec/vln.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/vodka.ts b/packages/apps-config/src/api/spec/vodka.ts index 959f26f01ee..6200c4060b7 100644 --- a/packages/apps-config/src/api/spec/vodka.ts +++ b/packages/apps-config/src/api/spec/vodka.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/watr.ts b/packages/apps-config/src/api/spec/watr.ts index 7e8f7108c4c..18d1d031b94 100644 --- a/packages/apps-config/src/api/spec/watr.ts +++ b/packages/apps-config/src/api/spec/watr.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/web3games.ts b/packages/apps-config/src/api/spec/web3games.ts index 7c524e9fa6c..75ece546d15 100644 --- a/packages/apps-config/src/api/spec/web3games.ts +++ b/packages/apps-config/src/api/spec/web3games.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/westlake.ts b/packages/apps-config/src/api/spec/westlake.ts index a6f0433ac27..1677ab2ffde 100644 --- a/packages/apps-config/src/api/spec/westlake.ts +++ b/packages/apps-config/src/api/spec/westlake.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/zCloak.ts b/packages/apps-config/src/api/spec/zCloak.ts index c476c47b9a4..b718bd5e5d1 100644 --- a/packages/apps-config/src/api/spec/zCloak.ts +++ b/packages/apps-config/src/api/spec/zCloak.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/zeitgeist.ts b/packages/apps-config/src/api/spec/zeitgeist.ts index c24ba83254d..859eff5a05f 100644 --- a/packages/apps-config/src/api/spec/zeitgeist.ts +++ b/packages/apps-config/src/api/spec/zeitgeist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/zenlink.ts b/packages/apps-config/src/api/spec/zenlink.ts index f89485d3bcb..af35bb51591 100644 --- a/packages/apps-config/src/api/spec/zenlink.ts +++ b/packages/apps-config/src/api/spec/zenlink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/spec/zero.ts b/packages/apps-config/src/api/spec/zero.ts index 6eed14f7b81..60cf44e992e 100644 --- a/packages/apps-config/src/api/spec/zero.ts +++ b/packages/apps-config/src/api/spec/zero.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@polkadot/types/types'; diff --git a/packages/apps-config/src/api/typesBundle.spec.ts b/packages/apps-config/src/api/typesBundle.spec.ts index d093ec9023d..51f30bebb72 100644 --- a/packages/apps-config/src/api/typesBundle.spec.ts +++ b/packages/apps-config/src/api/typesBundle.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-config/src/api/typesBundle.ts b/packages/apps-config/src/api/typesBundle.ts index f9d069c70c8..517eecff56b 100644 --- a/packages/apps-config/src/api/typesBundle.ts +++ b/packages/apps-config/src/api/typesBundle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/apps-config diff --git a/packages/apps-config/src/api/typesBundleCheck.spec.ts b/packages/apps-config/src/api/typesBundleCheck.spec.ts index b2ace7e8109..ad664cd8ef0 100644 --- a/packages/apps-config/src/api/typesBundleCheck.spec.ts +++ b/packages/apps-config/src/api/typesBundleCheck.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-config/src/api/util.ts b/packages/apps-config/src/api/util.ts index b7963cae32c..1a8bab34d93 100644 --- a/packages/apps-config/src/api/util.ts +++ b/packages/apps-config/src/api/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export function typesFromDefs (definitions: Record }>): Record { diff --git a/packages/apps-config/src/ci/chainEndpoints.spec.ts b/packages/apps-config/src/ci/chainEndpoints.spec.ts index 80dec4592c3..f1c167b9a2d 100644 --- a/packages/apps-config/src/ci/chainEndpoints.spec.ts +++ b/packages/apps-config/src/ci/chainEndpoints.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-config/src/ci/fetch.ts b/packages/apps-config/src/ci/fetch.ts index 3c97e326c6f..26f937d746c 100644 --- a/packages/apps-config/src/ci/fetch.ts +++ b/packages/apps-config/src/ci/fetch.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { fetch } from '@polkadot/x-fetch'; diff --git a/packages/apps-config/src/endpoints/development.ts b/packages/apps-config/src/endpoints/development.ts index 8ab6a40813d..a70f9d3a8cd 100644 --- a/packages/apps-config/src/endpoints/development.ts +++ b/packages/apps-config/src/endpoints/development.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TFunction } from '../types.js'; diff --git a/packages/apps-config/src/endpoints/index.spec.ts b/packages/apps-config/src/endpoints/index.spec.ts index ef29416d1e6..0827accd373 100644 --- a/packages/apps-config/src/endpoints/index.spec.ts +++ b/packages/apps-config/src/endpoints/index.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-config/src/endpoints/index.ts b/packages/apps-config/src/endpoints/index.ts index e436b2a9849..669ffaafd8e 100644 --- a/packages/apps-config/src/endpoints/index.ts +++ b/packages/apps-config/src/endpoints/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TFunction, TOptions } from '../types.js'; diff --git a/packages/apps-config/src/endpoints/production.ts b/packages/apps-config/src/endpoints/production.ts index 6fca5fa821d..a74ae4a504a 100644 --- a/packages/apps-config/src/endpoints/production.ts +++ b/packages/apps-config/src/endpoints/production.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/productionRelayKusama.ts b/packages/apps-config/src/endpoints/productionRelayKusama.ts index d5e8d557d05..3c8adcfd4ca 100644 --- a/packages/apps-config/src/endpoints/productionRelayKusama.ts +++ b/packages/apps-config/src/endpoints/productionRelayKusama.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/productionRelayPolkadot.ts b/packages/apps-config/src/endpoints/productionRelayPolkadot.ts index 520c9805a4c..7bef01ec681 100644 --- a/packages/apps-config/src/endpoints/productionRelayPolkadot.ts +++ b/packages/apps-config/src/endpoints/productionRelayPolkadot.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/testing.ts b/packages/apps-config/src/endpoints/testing.ts index 3a3427b4d74..787c8ac75e0 100644 --- a/packages/apps-config/src/endpoints/testing.ts +++ b/packages/apps-config/src/endpoints/testing.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/testingRelayPaseo.ts b/packages/apps-config/src/endpoints/testingRelayPaseo.ts index 6fccac2d928..14f09053750 100644 --- a/packages/apps-config/src/endpoints/testingRelayPaseo.ts +++ b/packages/apps-config/src/endpoints/testingRelayPaseo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/testingRelayWestend.ts b/packages/apps-config/src/endpoints/testingRelayWestend.ts index 1dcec1094d1..2821ac8d9ce 100644 --- a/packages/apps-config/src/endpoints/testingRelayWestend.ts +++ b/packages/apps-config/src/endpoints/testingRelayWestend.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EndpointOption } from './types.js'; diff --git a/packages/apps-config/src/endpoints/types.ts b/packages/apps-config/src/endpoints/types.ts index 657eeb487a9..280f3a2b648 100644 --- a/packages/apps-config/src/endpoints/types.ts +++ b/packages/apps-config/src/endpoints/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/apps-config/src/endpoints/util.ts b/packages/apps-config/src/endpoints/util.ts index 9239c9c024d..eaddbc94064 100644 --- a/packages/apps-config/src/endpoints/util.ts +++ b/packages/apps-config/src/endpoints/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TFunction } from '../types.js'; diff --git a/packages/apps-config/src/extensions/index.ts b/packages/apps-config/src/extensions/index.ts index eee2a2333c7..e8f08f12430 100644 --- a/packages/apps-config/src/extensions/index.ts +++ b/packages/apps-config/src/extensions/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Browser, Extension, Known } from './types.js'; diff --git a/packages/apps-config/src/extensions/polkadot-js.ts b/packages/apps-config/src/extensions/polkadot-js.ts index 5325fcd8fb2..eee0960dd49 100644 --- a/packages/apps-config/src/extensions/polkadot-js.ts +++ b/packages/apps-config/src/extensions/polkadot-js.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Known } from './types.js'; diff --git a/packages/apps-config/src/extensions/types.ts b/packages/apps-config/src/extensions/types.ts index e6ebe48c014..7d5bf88ef84 100644 --- a/packages/apps-config/src/extensions/types.ts +++ b/packages/apps-config/src/extensions/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export type Browser = 'chrome' | 'firefox'; diff --git a/packages/apps-config/src/index.ts b/packages/apps-config/src/index.ts index e898b9a3bee..f3785a1473d 100644 --- a/packages/apps-config/src/index.ts +++ b/packages/apps-config/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './api/index.js'; diff --git a/packages/apps-config/src/links/cerestats.ts b/packages/apps-config/src/links/cerestats.ts index c57b66d3179..01f1b6abac2 100644 --- a/packages/apps-config/src/links/cerestats.ts +++ b/packages/apps-config/src/links/cerestats.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/commonwealth.ts b/packages/apps-config/src/links/commonwealth.ts index 8e2476b2582..b803b91310b 100644 --- a/packages/apps-config/src/links/commonwealth.ts +++ b/packages/apps-config/src/links/commonwealth.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/dotreasury.ts b/packages/apps-config/src/links/dotreasury.ts index c0839d5ba4c..387a19bbe17 100644 --- a/packages/apps-config/src/links/dotreasury.ts +++ b/packages/apps-config/src/links/dotreasury.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/edgscan.ts b/packages/apps-config/src/links/edgscan.ts index 807b65f40ca..2d68576785d 100644 --- a/packages/apps-config/src/links/edgscan.ts +++ b/packages/apps-config/src/links/edgscan.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/index.ts b/packages/apps-config/src/links/index.ts index 3498101048b..69eceb0d2ea 100644 --- a/packages/apps-config/src/links/index.ts +++ b/packages/apps-config/src/links/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ExternalDef } from './types.js'; diff --git a/packages/apps-config/src/links/kodadot.ts b/packages/apps-config/src/links/kodadot.ts index 442de16ff23..1a12b5e8139 100644 --- a/packages/apps-config/src/links/kodadot.ts +++ b/packages/apps-config/src/links/kodadot.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/moonbeamApps.ts b/packages/apps-config/src/links/moonbeamApps.ts index a15b1fc61d0..32571746007 100644 --- a/packages/apps-config/src/links/moonbeamApps.ts +++ b/packages/apps-config/src/links/moonbeamApps.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/polkascan.ts b/packages/apps-config/src/links/polkascan.ts index 1a6d9b82465..8a285cd862f 100644 --- a/packages/apps-config/src/links/polkascan.ts +++ b/packages/apps-config/src/links/polkascan.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/polkassembly.ts b/packages/apps-config/src/links/polkassembly.ts index da1fce1c9d3..7e09a68200b 100644 --- a/packages/apps-config/src/links/polkassembly.ts +++ b/packages/apps-config/src/links/polkassembly.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/polkastats.ts b/packages/apps-config/src/links/polkastats.ts index c12f6c246c4..0f70191e2a3 100644 --- a/packages/apps-config/src/links/polkastats.ts +++ b/packages/apps-config/src/links/polkastats.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/singular.ts b/packages/apps-config/src/links/singular.ts index 474fd3aaa48..9da936e463b 100644 --- a/packages/apps-config/src/links/singular.ts +++ b/packages/apps-config/src/links/singular.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/statescan.ts b/packages/apps-config/src/links/statescan.ts index 3b071ad2534..9fec13a72cd 100644 --- a/packages/apps-config/src/links/statescan.ts +++ b/packages/apps-config/src/links/statescan.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/subid.ts b/packages/apps-config/src/links/subid.ts index 43763920256..0d81a2d4aa6 100644 --- a/packages/apps-config/src/links/subid.ts +++ b/packages/apps-config/src/links/subid.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/subscan.ts b/packages/apps-config/src/links/subscan.ts index da0f51e2e7b..a5e3939dfb9 100644 --- a/packages/apps-config/src/links/subscan.ts +++ b/packages/apps-config/src/links/subscan.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/subsquare.ts b/packages/apps-config/src/links/subsquare.ts index 4e4951fb46b..a555c7dcb82 100644 --- a/packages/apps-config/src/links/subsquare.ts +++ b/packages/apps-config/src/links/subsquare.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/links/types.ts b/packages/apps-config/src/links/types.ts index c014dcb14e7..e7122c49a8c 100644 --- a/packages/apps-config/src/links/types.ts +++ b/packages/apps-config/src/links/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/apps-config/src/packageDetect.ts b/packages/apps-config/src/packageDetect.ts index 9204c4b7a72..9e16a6fa73c 100644 --- a/packages/apps-config/src/packageDetect.ts +++ b/packages/apps-config/src/packageDetect.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev diff --git a/packages/apps-config/src/packageInfo.ts b/packages/apps-config/src/packageInfo.ts index 3b4e1924ed0..7711bb3b8e7 100644 --- a/packages/apps-config/src/packageInfo.ts +++ b/packages/apps-config/src/packageInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev diff --git a/packages/apps-config/src/settings/ethereumChains.ts b/packages/apps-config/src/settings/ethereumChains.ts index d724ad6953d..6781bf670d1 100644 --- a/packages/apps-config/src/settings/ethereumChains.ts +++ b/packages/apps-config/src/settings/ethereumChains.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // The list of Ethereum networks, for these the UI will default to Ethereum-only accounts diff --git a/packages/apps-config/src/settings/index.ts b/packages/apps-config/src/settings/index.ts index c3577310d74..8386907ed6e 100644 --- a/packages/apps-config/src/settings/index.ts +++ b/packages/apps-config/src/settings/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './ethereumChains.js'; diff --git a/packages/apps-config/src/settings/languages.ts b/packages/apps-config/src/settings/languages.ts index 5be702d0863..bd6bd5f9d1e 100644 --- a/packages/apps-config/src/settings/languages.ts +++ b/packages/apps-config/src/settings/languages.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TFunction } from '../types.js'; diff --git a/packages/apps-config/src/settings/ss58.ts b/packages/apps-config/src/settings/ss58.ts index 285168709b0..f9ef3e55c1f 100644 --- a/packages/apps-config/src/settings/ss58.ts +++ b/packages/apps-config/src/settings/ss58.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TFunction } from '../types.js'; diff --git a/packages/apps-config/src/settings/types.ts b/packages/apps-config/src/settings/types.ts index f3f9afc60b3..fdd41432d47 100644 --- a/packages/apps-config/src/settings/types.ts +++ b/packages/apps-config/src/settings/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/apps-config/src/types.ts b/packages/apps-config/src/types.ts index 8d57eda9ffa..28ca890dc93 100644 --- a/packages/apps-config/src/types.ts +++ b/packages/apps-config/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export interface TOptions { diff --git a/packages/apps-config/src/ui/identityIcons/index.ts b/packages/apps-config/src/ui/identityIcons/index.ts index 04855fe384a..c5d61ddeab2 100644 --- a/packages/apps-config/src/ui/identityIcons/index.ts +++ b/packages/apps-config/src/ui/identityIcons/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 // overrides based on the actual software node type, valid values are one of - diff --git a/packages/apps-config/src/ui/index.ts b/packages/apps-config/src/ui/index.ts index 79a30cb00dd..ae977570986 100644 --- a/packages/apps-config/src/ui/index.ts +++ b/packages/apps-config/src/ui/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import { identityNodes, identitySpec } from './identityIcons/index.js'; diff --git a/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts index 69fa753ec06..c59b57da63b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/3dpassSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts index 805b4596456..e1440f575eb 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/abandPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts index 15e11b717cd..9c65255aac7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/acalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts index 2a8cf9ecd75..8bc554a6af3 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/acurastPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts index 7a96b88a4d6..09642ae10d1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/alephSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts index e261f50c235..2dd9861b3dd 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/allfeatSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts index 896a3e50d1b..730bf218b2b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/altairSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts index e91e6ec573f..e468cba4351 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/amplitudeSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts index 6f2af894591..e34311b4dd7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/analogSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts index 079a888e575..af1b18254ff 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/argonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/assethub-kusamaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/assethub-kusamaSVG.ts index 1f46a95f3bf..f9b591e6b81 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/assethub-kusamaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/assethub-kusamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts index 1184212f645..7016388c822 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/bitgreenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts index 6a4d5f48ac1..143d504e62a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/bittensorPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts index f744fe50818..30162065164 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/brainstormPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts index 14b32a12d7d..4e8ebfd3edd 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/chainflipPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts index cec79d6e7f9..83c13d8d18f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/communeaiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts index 550753344b0..eecf8bcc016 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/composableFinancePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/coretime-kusamaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/coretime-kusamaSVG.ts index 2793493915a..7d608cfd942 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/coretime-kusamaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/coretime-kusamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts index f6d79bcba59..04fe96c4ff3 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/creditcoin-testPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts index 1aefd7c9e1a..4befb1a30aa 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/creditcoinPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts index 8a64b251927..6965a66c401 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/debioSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts index e7c934a32cd..da0cb62ca76 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/dorafactoryPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts index 6de586d1007..1ca5b05dfb4 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/dustyPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts index 4eef9bba33a..c1540004ad0 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/equilibriumSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts index e3ba545a28c..b17c573c12b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/ferrumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts index f8c6231052c..5635dbc6d45 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/fragnovaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts index d9a62863074..84e97304da8 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/frequencyPaseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts b/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts index 560608e277d..9f89549bc54 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/frequencySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts index c7041e37387..b56b551d2e1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/geminisPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts index 854f6eddfd9..2d650e9c7ce 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/genshiroSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts b/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts index 6ff194cfbb1..97c8a97bf61 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/gmJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts index f4d5be819ce..32a5db3f575 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/hydration-paseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts index 94a48899296..76f08d9c7e7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/hydrationSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts index 71c4fe00083..8d26e910133 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/idiyanale_logo_whiteSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts b/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts index d2bf372f82d..04806bce64f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/invarchJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts index 74f4438ca27..dcc7fd08554 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/jurPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts index 79cf9244278..d38d780ed86 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/karuraSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts index 01be7b6169a..0480a44042a 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kicoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts index ee96c36beb1..d82eec3b467 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kintsugiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts index 5d3df8e9333..5c162ae287f 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kreivoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/kusamaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/kusamaSVG.ts index efe5035a6b3..8123ae328b0 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/kusamaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/kusamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts index 940a80bdf37..957a9c55b94 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/laos-sigmaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts index 4b87f174fc4..ec5cd8c9d27 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/laosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts index 1142c547d8e..fde8fcf769c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/liberlandPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts index 4de4418e1cb..1a2d6e2f53b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/listenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts index 7b87315dc37..c7bfc83958b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/logionPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/mangataPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/mangataPNG.ts index fa0ecd027d3..6e74b704bd7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/mangataPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/mangataPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/mangataxPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/mangataxPNG.ts index 39fd09019b1..f0341d63aff 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/mangataxPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/mangataxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts index 8e8311cddd5..8fbb0f27378 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/moonsamaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts index d4da7e48bb0..b181a6c37c7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/myriadPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts index 47b7b6c1e41..1331d9650a7 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/myxcavPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts index d4dac81b9af..48f9ffaa152 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/neuroweb-testnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts index 055b4c1b6e7..0fc0bcfeaa9 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/neurowebPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts index c680e167206..e0c079c2604 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/oakPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts index b20506e5bd1..790d54fbd5c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/paseoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts index 55c960cf308..805c47e7c88 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/peaqPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts index 1caeedaa422..c398fba71f1 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pendulumSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/people-kusamaSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/people-kusamaSVG.ts index 3ca13f3cd7f..3c2bd715d13 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/people-kusamaSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/people-kusamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/people-polkadotSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/people-polkadotSVG.ts index fe81cac1584..6fefc54bc49 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/people-polkadotSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/people-polkadotSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts index fe877a78f7a..cda64178e66 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/picassoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/polkadot-circleSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/polkadot-circleSVG.ts index bacea0e5108..6cb35bc3823 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/polkadot-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/polkadot-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts index 5a5469a4be1..0640e449b28 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/pop-networkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts index 9a45096134f..106d1532b84 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/qpnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts index f7bb54c2f72..f44bcc3b16c 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/riodefiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/rococoSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/rococoSVG.ts index f1bddc2a42b..8170ce1a85b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/rococoSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/rococoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts index 37d889c494e..4c6ee8ed04d 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/shidenPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts index dcfada2d173..5c44422a5da 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/skyekiwiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts index d3435d9bcd1..ae85f94c0ab 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/snowbridgePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts index b5a08e31fc8..bd2dfe26386 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/spannerPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts index 388d9bd8c8b..7fb651fa8ee 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/standardPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts index 0b1e8ed9a33..b405f10e063 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/t0rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts b/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts index 0ca0d26c6b3..887bb703d66 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/tanglePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts index 6c4d5ec7869..725f61de143 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/tinkerPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts b/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts index f02fc381530..d50b02534f5 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/totemSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts index 4113880bbf2..9f88c0a670e 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/turingPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts index 2c6b8aadce1..c8f8a24299b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/unorthodoxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts index 9da91b7f414..4ddb4557f6b 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/vara-testnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts index 32f0ad6e250..e8cfcf0d5e9 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/varaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts index 67f695e7362..aaa2c70e784 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/virtoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts index c552d65550b..05581e1dacf 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/vtbPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts b/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts index b27b0704c5d..3d65bffbd9d 100644 --- a/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts +++ b/packages/apps-config/src/ui/logos/chains/generated/watrPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/chains/index.ts b/packages/apps-config/src/ui/logos/chains/index.ts index ec2d91899cb..751980ca354 100644 --- a/packages/apps-config/src/ui/logos/chains/index.ts +++ b/packages/apps-config/src/ui/logos/chains/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/extensions/generated/polkadot-jsSVG.ts b/packages/apps-config/src/ui/logos/extensions/generated/polkadot-jsSVG.ts index 4fc92a283b8..203450943db 100644 --- a/packages/apps-config/src/ui/logos/extensions/generated/polkadot-jsSVG.ts +++ b/packages/apps-config/src/ui/logos/extensions/generated/polkadot-jsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/extensions/index.ts b/packages/apps-config/src/ui/logos/extensions/index.ts index ae424ac84df..ba0799eb7c7 100644 --- a/packages/apps-config/src/ui/logos/extensions/index.ts +++ b/packages/apps-config/src/ui/logos/extensions/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts b/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts index a67c8b60b2b..c91a93e30a5 100644 --- a/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/cerestatsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts b/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts index 3da77a3f7d0..55ba5d41477 100644 --- a/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/commonwealthPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/dotreasurySVG.ts b/packages/apps-config/src/ui/logos/external/generated/dotreasurySVG.ts index fbecc8f33fe..1936ec75007 100644 --- a/packages/apps-config/src/ui/logos/external/generated/dotreasurySVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/dotreasurySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/dotscannerPNG.ts b/packages/apps-config/src/ui/logos/external/generated/dotscannerPNG.ts index d18a889cc38..7646275b52b 100644 --- a/packages/apps-config/src/ui/logos/external/generated/dotscannerPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/dotscannerPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts b/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts index a6ac2d64253..dfbe4f1f0ba 100644 --- a/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/edgscanPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts b/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts index c98ad794898..133a9ab016f 100644 --- a/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/emptySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts b/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts index 0b77d67477d..37cd1c3d17b 100644 --- a/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/kodadotSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts b/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts index dad25c2c596..c45c850c05a 100644 --- a/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/moonbeamAppsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/polkaholicPNG.ts b/packages/apps-config/src/ui/logos/external/generated/polkaholicPNG.ts index b04109ec15b..bb8d3a175f4 100644 --- a/packages/apps-config/src/ui/logos/external/generated/polkaholicPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/polkaholicPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/polkascanPNG.ts b/packages/apps-config/src/ui/logos/external/generated/polkascanPNG.ts index 7356b0944c3..c5db1b9a587 100644 --- a/packages/apps-config/src/ui/logos/external/generated/polkascanPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/polkascanPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/polkassemblyPNG.ts b/packages/apps-config/src/ui/logos/external/generated/polkassemblyPNG.ts index 2f7a9ce96ac..588b9761d81 100644 --- a/packages/apps-config/src/ui/logos/external/generated/polkassemblyPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/polkassemblyPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/polkastatsPNG.ts b/packages/apps-config/src/ui/logos/external/generated/polkastatsPNG.ts index dcd17eb348c..d69ea91b2f5 100644 --- a/packages/apps-config/src/ui/logos/external/generated/polkastatsPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/polkastatsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts b/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts index 5926cb442ff..5050c6049d3 100644 --- a/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/singularSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts b/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts index 9b0b457d1e0..560c549e18d 100644 --- a/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/statescanSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts b/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts index 2dc02ddf8b2..4bbc531b256 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subidSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts b/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts index a4acc4f227a..48cd3fa215e 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subscanPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts b/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts index 731719a054e..78f049858cd 100644 --- a/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts +++ b/packages/apps-config/src/ui/logos/external/generated/subsquareSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/external/index.ts b/packages/apps-config/src/ui/logos/external/index.ts index cb0d2bb6e06..df5a61c30d2 100644 --- a/packages/apps-config/src/ui/logos/external/index.ts +++ b/packages/apps-config/src/ui/logos/external/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts index a80206f020c..98fdd29d495 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ajunaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts index 153cee90f79..1ce11fa5f34 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/apronPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts index bdfbac83118..49249e59ae4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/arcticPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts index c81cbc82c05..bdb1738feab 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-gladiosSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts index 4622d2181af..fd87c92b79f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-marsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts index 884a3350ca4..0da4b133021 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ares-odysseySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts index 574e6db2557..02bd8ffb921 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/aresPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts index 558b2c2aad2..ba2d30fa736 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/assetHubSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts index af55cb8bbda..c74132bf300 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/astarPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts index 8f4333a2c95..1e30b73421e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/autonomysPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts index a0cf33544c2..8dc7737a5a3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/aventusSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts index dfb28185a48..e704a5190b1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bajunPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/basilisk-rococo-bgPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/basilisk-rococo-bgPNG.ts index a69711e2e54..4bf3fb693bb 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/basilisk-rococo-bgPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/basilisk-rococo-bgPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts index 35e39c61345..c0340779ff1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/basiliskPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts index c53d4000e51..82db29604fa 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/beastSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts index 94d56fc6c4c..bc7546f4596 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bifrostSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts index d753f5aa204..3b43312cc16 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bitcountryPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts index 0af800a2e0e..6be85adc43a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubBlackSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts index f1bd1ea3ea2..450b13a7477 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/bridgeHubSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts index 57523d66acd..bab6fb620b6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/calamariPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts index d8e9de3fe58..71d9977fe78 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/centrifugePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts index 873538c8302..3b061d46cec 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cereSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts index 9f023b92fbf..301eddb524d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cessPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts index c47b1c60a1a..f19fb282308 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/chainxSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts index b4896ce3118..57c61ee91f9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/cloverSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts index 684c6828036..6f0f0fd42c5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/coinversationPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts index e27af409bba..4e7a8ee4250 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/competitors-clubPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts index 2995911529a..9d133c2e5f7 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/conftiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts index 40b718a64cd..59fd37f6121 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/continuumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts index 08c55c346f6..c79439bab88 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crabSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts index 4b7b5124e7a..8b43a49a070 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crown-sterlingPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts index 4f12098dd46..d2ca740b67f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crust-maxwellSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts index f0e8c42b7e5..e720d9f1a35 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crustParachainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts index eee7ca2afb1..097828ffea1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/crustSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts index 55f896e3591..7c024ca172b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/curioSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts index f005b91aeb9..1b2420451ca 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/daliPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/danceboxSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/danceboxSVG.ts index 5604e1ab076..2dc7472e1ca 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/danceboxSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/danceboxSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts index 1d0f400a465..10fd0fc565e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/darwinia-koiSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts index df0673d65df..50ed1f77832 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/darwiniaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts index 7db161350e2..397cfd3fed3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/datahighwayPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts index 9bf45418ba6..a05837c1f30 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dockPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts index 6c32845b5d3..0632226644d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dolphinSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts index fe0c576c3e5..3ed0752a3e7 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/dotmogSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts index f3c1bdf1ea6..e9f5247b410 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/eaveSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts index 072d970e173..8a7d90fd6b5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/edgeware-whitePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts index 6aef4776cbd..86627412b2a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/efinitySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts index e1442a3ca4a..0576e673375 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/elysiumPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts index 17f83bb915f..8aa0ed4dc48 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/encointer-blueSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts index 5007f51d06a..f797f9a0834 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ewxSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts index 196cde3bf2e..31d30454f5a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/fantourPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts index c52a3ff05a1..19709bedacd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/galital-logoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts index e7a37d81415..1f89342f01b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/gamepowerSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts index fe0e546a096..cd19b620d3b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/geekSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts index aeeff63d680..8326d04acb7 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/giantPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts index a4e3fee0db6..90fdfbef5b2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hanyonycashPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts index a318e2de675..0e941151e90 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hashedPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts index 237cd57d10e..b63d7645b2f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/helixstreetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts index 7c78e5b59c1..a5a9c16ac91 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/humanodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts index d01c5412cab..adc6c949def 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/hyperbridgePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts index 7d627ca4c7f..9f9f66a5c56 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/idavollPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts index 8f0c6d5a36b..8a9ca04a514 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ideal-networkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts index f64e537e2ac..46deacda8e5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/imbuePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts index 5d16df84ef4..495dbd85591 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/innovatorPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts index 06864603da4..5645c13d27b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/integriteeSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts index 3128e62199f..328c001b7c1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/interlaySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts index 1b6c025002d..ddae6707527 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/invoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts index 7a28b3814e2..367343fd60f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipciSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts index 5f0ad959f86..693ce40292a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipsePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts index c0d0d89c8b8..729c8f3a13f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ipseSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts index da668822b00..061fc60cd92 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jamtonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts index a1f5af3e77f..2c5cf59afa9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jazPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts index 7322ef7b644..c42082c9d09 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/joystreamSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts index fd5d962a940..66a4d8a3980 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/jupiterSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts index 5659cf804ed..c56c8cc6f58 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kabochaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts index 51f03c93b2d..b43c11ae439 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/karmachainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts index 9a3e306228e..526c3e00241 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/khalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kiltPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kiltPNG.ts index 7b71da35525..5c852b9559c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kiltPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kiltPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts index 5f9c7b4864e..21c387ae8f2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kineraPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts index 1240da08a0a..ec628047b57 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/klugPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts index 3bc2f4c4fe2..29f861cc58a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/konomiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts index e60ee7b470d..ef81e5e9cca 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/krestPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts index 0714b955e1b..e6ad32203ee 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kulupuSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts index 95955662020..6ab2453afe0 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kusariSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts index 9365ffa9ae6..6d245552e40 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/kylinPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts index 23b5a39985d..96b64eefbc3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/laminar-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/litentry-paseoSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/litentry-paseoSVG.ts index 345f62a1272..0d140a1cea9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/litentry-paseoSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/litentry-paseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/litentry-rococoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/litentry-rococoPNG.ts index 4dc6a518536..51a95176df1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/litentry-rococoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/litentry-rococoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/litentryPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/litentryPNG.ts index 61800bcf425..471d2337362 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/litentryPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/litentryPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/litmusPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/litmusPNG.ts index 152dae18956..b73d2ee768a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/litmusPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/litmusPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts index 01f04a19111..4e33bfe5c5f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/loom_networkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts index 38654e34d84..15af2d17957 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/magnetPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts index 79325902d15..3ecea6c38bd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mandalaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts index 80817f4f38f..2ca90fbbd4c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mantaPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts index 0ee4c6b75af..9db9203fc67 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mathSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts index ecc15659254..c59a62c2b9f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/md5PNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts index 5c9f9c80ef2..9f5b38d655d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/minixPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts index 676b806569f..ce257856d86 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonbase_alphaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts index ae885533f93..cdfc55b7ad9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonbeamSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts index 3c4e5866ac1..f399f64d019 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonriverSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts index 5f50be3eef4..03cfe9b5d41 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonrockPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts index 749a8a357e9..884df04eebe 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonsamaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts index 80e26203fc1..f32e9eff21a 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/moonshadowPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts index 513675e2b88..7871e6c4863 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/musePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts index bd6c2ebca4c..93e4aefe86f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mybankPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts index 16755802528..cd609272a03 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/myriadPaseoSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts index b3d72ab0b09..8a920935342 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/mythosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts index 9a625563ffa..55176054877 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/nftmartPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts index d28d4932912..6478027ee94 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/nodleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts index 37a0efd96ed..5725f09e1f9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/oliSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts index 108e56c10ba..34d8716cb6b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/omnibtcSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts index eb5b1638234..662833a7117 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/opal-logoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts index 88d0f0cb6f7..581b7d90a61 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/opportunityPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts index f4fbf5ff3a9..75cfcbf28a6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ozPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts index 613292ca32c..e308a2f1a8b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pangolinSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts index b0c9341c64b..562868aacd2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/parallelSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts b/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts index c3ea79cd169..4115a415427 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/paramiJPEG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts index a255a72575a..f400591df1f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/peerplaysPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts index 502549ec5f2..a4d89f284bd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phalaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts index e0710b37608..2b4ffaeafe7 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phoenixPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts index bda9c09cca5..89ea84ce0f6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/phyken-networkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts index ada60ffc394..134c7d13b9c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/picassoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts index 51da4680626..9034b2dc77c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pichiuPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts index d30dc123052..88accec61c1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/plasmPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polimecSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polimecSVG.ts index 7d62384fce0..def08c27f90 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polimecSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polimecSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts index 12d1226c3d4..c47143f8ebd 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkadexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts index 02bcafc246a..4f6de9bae33 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkafoundrySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts index bbca48686dc..8d83dcf1f9e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polkasmithSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts index 0ce0ce3f0e3..40fa45361b6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/polymeshSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts index 737ae784b8f..ee7b9c4584f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/pontemSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts index c6382234d55..233b6d9bda9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/prismPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts index 9d365624d56..43e3b7cd426 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/quartzPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts index b0ff78ce188..0ab0235d4d5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/realisPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts index 9b235700d30..075132ed224 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/regionxCocosPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts index a241afff7cc..0f82c69972f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/regionxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts index dd9f6d4edf8..70dd8bf8a1f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/rexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts index 321b66997f1..d185e0da83d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/riochainSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts index 5bcc13a0f03..13fb64fcc87 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/robonomicsSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts index 56e9af84fce..d47274ac281 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/rocfinitySVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts index dcca8f35b55..3df3ed5fd85 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sakuraSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts index 5ec24ea08fa..df04842cd2f 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/shadowSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts index 6d8d0e4baa6..0fc77afe5dc 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/shellSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts index fb7c2a9a9e4..bb51e94af32 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sherpaxPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts index 5fc02fd4ef5..857daaf941b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/singlavenderSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts index 954094731ae..14fe014a2c3 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/snowPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts index 16cb1527fee..f7f3f69f151 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/societalSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts index 5def69306be..b5004bff78b 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts index 168db422fe1..bb091553214 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/soonsocialXPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts index 2aa550b0f59..04ae5ef49e6 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/sora-substrateSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts index 7a41f0a6e1e..86e71ef8eb9 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/stafiPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts index 291559cf3bd..dcd650872a1 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/statemineSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts index d4caa834e84..b7b36659238 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subdaoPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts index 851686594f0..2b8fdf0142d 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subgameSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts index 869e26fb86d..b47fbcec0e8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subsocialSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts index 7aa5bb7a246..a90702faef5 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subsocialXSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts index 37644228a2a..031229b884c 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/subspacePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts index cf500d2f34d..d34892429fc 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-circleSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts index 83f4c5bd5e2..85bde724a93 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-contracts-nodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts index 3b1b7b4a6a4..630e0b31803 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-hexagonSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts index bac18a52704..f5a68e7c772 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/substrate-whiteSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts index d94bb64a9b3..cf9a72b4325 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/swapdexSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts index da5c762cdff..dd2fee1b2a8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/t1rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts index 974e1853923..55105dd7ca0 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/t3rnPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts index 027ca55f652..8e5b919eb98 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/ternoaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts index c3802080bf2..812ce6460e4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/thebifrostPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts index 2c6961d9421..2949bd8d690 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/trustbasePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts index ef4e172b039..cc68989e03e 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/uniartsPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts index 490b869e0f7..2ba2dbe2280 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/uniqueSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts index 4edfc49d8d6..cd7c123bac4 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/unitnetworkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts index 36a71244b62..2352e9c14ea 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/unitvPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts index 1228fa04441..85c6680a265 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/valiuPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts index da7361b516f..56cc7d8f945 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/varaSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts index 91d2238cf65..1147efd3a54 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/web3gamesSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/westend_colourSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/westend_colourSVG.ts index 96b83896889..ba477b0b4b8 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/westend_colourSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/westend_colourSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts index 6204aa97937..0edf6e4e659 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/xodePNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts index c444b360d10..060ae4afeda 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/yerbanetworkPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts index d7067409309..7fac627aebe 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zCloakSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts index 3fb53a1d558..1866683ca82 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zeitgeistPNG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts index 5454276c61d..0d0e77c48ce 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zenlinkSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts b/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts index 9cc932ac27b..c23608185d2 100644 --- a/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts +++ b/packages/apps-config/src/ui/logos/nodes/generated/zeroSVG.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/logos/nodes/index.ts b/packages/apps-config/src/ui/logos/nodes/index.ts index eb8f4d2ce9f..66064726cac 100644 --- a/packages/apps-config/src/ui/logos/nodes/index.ts +++ b/packages/apps-config/src/ui/logos/nodes/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit. Auto-generated via node scripts/imgConvert.mjs diff --git a/packages/apps-config/src/ui/util.ts b/packages/apps-config/src/ui/util.ts index 351f847f4ad..c7fcc0ca733 100644 --- a/packages/apps-config/src/ui/util.ts +++ b/packages/apps-config/src/ui/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-config authors & contributors +// Copyright 2017-2025 @polkadot/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 export function sanitize (value?: string): string { diff --git a/packages/apps-electron/src/api/account-store-api.ts b/packages/apps-electron/src/api/account-store-api.ts index 84e9e015bf7..37fd577e3eb 100644 --- a/packages/apps-electron/src/api/account-store-api.ts +++ b/packages/apps-electron/src/api/account-store-api.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-ts-comment diff --git a/packages/apps-electron/src/api/electron-main-api.ts b/packages/apps-electron/src/api/electron-main-api.ts index 239b2dd770d..dc706f0e37d 100644 --- a/packages/apps-electron/src/api/electron-main-api.ts +++ b/packages/apps-electron/src/api/electron-main-api.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountStoreApi } from './account-store-api.js'; diff --git a/packages/apps-electron/src/api/global-exported-api.ts b/packages/apps-electron/src/api/global-exported-api.ts index 703c4f8e2f8..7c782309977 100644 --- a/packages/apps-electron/src/api/global-exported-api.ts +++ b/packages/apps-electron/src/api/global-exported-api.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ElectronMainApi } from './electron-main-api.js'; diff --git a/packages/apps-electron/src/electron/autoUpdater.ts b/packages/apps-electron/src/electron/autoUpdater.ts index 5ba321f17df..d38050e6ed9 100644 --- a/packages/apps-electron/src/electron/autoUpdater.ts +++ b/packages/apps-electron/src/electron/autoUpdater.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppUpdater } from 'electron-updater'; diff --git a/packages/apps-electron/src/electron/contentSecurityPolicy.ts b/packages/apps-electron/src/electron/contentSecurityPolicy.ts index e7b3074f2c2..9eebac80e55 100644 --- a/packages/apps-electron/src/electron/contentSecurityPolicy.ts +++ b/packages/apps-electron/src/electron/contentSecurityPolicy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeadersReceivedResponse } from 'electron'; diff --git a/packages/apps-electron/src/electron/index.ts b/packages/apps-electron/src/electron/index.ts index 76c17c8d5da..0dec14830aa 100644 --- a/packages/apps-electron/src/electron/index.ts +++ b/packages/apps-electron/src/electron/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import { app } from 'electron'; diff --git a/packages/apps-electron/src/electron/window.ts b/packages/apps-electron/src/electron/window.ts index aaf805955c9..6285c2309fe 100644 --- a/packages/apps-electron/src/electron/window.ts +++ b/packages/apps-electron/src/electron/window.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import { BrowserWindow, screen } from 'electron'; diff --git a/packages/apps-electron/src/index.tsx b/packages/apps-electron/src/index.tsx index 32065607c67..c73715cd0bd 100644 --- a/packages/apps-electron/src/index.tsx +++ b/packages/apps-electron/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // setup these right at front diff --git a/packages/apps-electron/src/main/account-store.spec.ts b/packages/apps-electron/src/main/account-store.spec.ts index 71a07641016..5025e1b36bd 100644 --- a/packages/apps-electron/src/main/account-store.spec.ts +++ b/packages/apps-electron/src/main/account-store.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-electron/src/main/account-store.ts b/packages/apps-electron/src/main/account-store.ts index f97c6bba8b2..0105d0951d3 100644 --- a/packages/apps-electron/src/main/account-store.ts +++ b/packages/apps-electron/src/main/account-store.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-ts-comment diff --git a/packages/apps-electron/src/main/ipc-main-handler.ts b/packages/apps-electron/src/main/ipc-main-handler.ts index bdf1845c914..ab923a4b11f 100644 --- a/packages/apps-electron/src/main/ipc-main-handler.ts +++ b/packages/apps-electron/src/main/ipc-main-handler.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 export type IpcMainHandler = Record unknown>; diff --git a/packages/apps-electron/src/main/register-ipc-handler.ts b/packages/apps-electron/src/main/register-ipc-handler.ts index 66ee4600307..5e56cdec595 100644 --- a/packages/apps-electron/src/main/register-ipc-handler.ts +++ b/packages/apps-electron/src/main/register-ipc-handler.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IpcMainHandler } from './ipc-main-handler.js'; diff --git a/packages/apps-electron/src/preload.ts b/packages/apps-electron/src/preload.ts index ec1fb8a3434..57ad1021a8b 100644 --- a/packages/apps-electron/src/preload.ts +++ b/packages/apps-electron/src/preload.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-ts-comment diff --git a/packages/apps-electron/src/renderer/remote-electron-store.spec.ts b/packages/apps-electron/src/renderer/remote-electron-store.spec.ts index fdd1a5c4d62..2a705e466ee 100644 --- a/packages/apps-electron/src/renderer/remote-electron-store.spec.ts +++ b/packages/apps-electron/src/renderer/remote-electron-store.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/apps-electron/src/renderer/remote-electron-store.ts b/packages/apps-electron/src/renderer/remote-electron-store.ts index 75309875d34..90c6a9081f7 100644 --- a/packages/apps-electron/src/renderer/remote-electron-store.ts +++ b/packages/apps-electron/src/renderer/remote-electron-store.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-ts-comment diff --git a/packages/apps-electron/webpack.main.cjs b/packages/apps-electron/webpack.main.cjs index e1404bdb1a1..71602c1cf4c 100644 --- a/packages/apps-electron/webpack.main.cjs +++ b/packages/apps-electron/webpack.main.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable camelcase */ diff --git a/packages/apps-electron/webpack.renderer.cjs b/packages/apps-electron/webpack.renderer.cjs index 57d352f8d66..95c40e632d2 100644 --- a/packages/apps-electron/webpack.renderer.cjs +++ b/packages/apps-electron/webpack.renderer.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable camelcase */ diff --git a/packages/apps-routing/src/accounts.ts b/packages/apps-routing/src/accounts.ts index 52e4f46ed9b..9361b5e792f 100644 --- a/packages/apps-routing/src/accounts.ts +++ b/packages/apps-routing/src/accounts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/addresses.ts b/packages/apps-routing/src/addresses.ts index f070ca31873..1c27e65f161 100644 --- a/packages/apps-routing/src/addresses.ts +++ b/packages/apps-routing/src/addresses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/alliance.ts b/packages/apps-routing/src/alliance.ts index 7338d32a531..21f339dc42f 100644 --- a/packages/apps-routing/src/alliance.ts +++ b/packages/apps-routing/src/alliance.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/ambassador.ts b/packages/apps-routing/src/ambassador.ts index afebdf46b09..552ea57d77b 100644 --- a/packages/apps-routing/src/ambassador.ts +++ b/packages/apps-routing/src/ambassador.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/assets.ts b/packages/apps-routing/src/assets.ts index d5a5c66a8a7..f2328f73078 100644 --- a/packages/apps-routing/src/assets.ts +++ b/packages/apps-routing/src/assets.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/bounties.ts b/packages/apps-routing/src/bounties.ts index 2d92b455261..cc06dd95c93 100644 --- a/packages/apps-routing/src/bounties.ts +++ b/packages/apps-routing/src/bounties.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/broker.ts b/packages/apps-routing/src/broker.ts index adc8f7ca482..890b634f6dc 100644 --- a/packages/apps-routing/src/broker.ts +++ b/packages/apps-routing/src/broker.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/calendar.ts b/packages/apps-routing/src/calendar.ts index 0e223abe6cd..8a53248faf8 100644 --- a/packages/apps-routing/src/calendar.ts +++ b/packages/apps-routing/src/calendar.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/claims.ts b/packages/apps-routing/src/claims.ts index 18ac3c8484c..3016f2a0003 100644 --- a/packages/apps-routing/src/claims.ts +++ b/packages/apps-routing/src/claims.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/collator.ts b/packages/apps-routing/src/collator.ts index 0c833f0b0ee..b46f19b7f7a 100644 --- a/packages/apps-routing/src/collator.ts +++ b/packages/apps-routing/src/collator.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/contracts.ts b/packages/apps-routing/src/contracts.ts index 7d9f4c8dce3..b8ba35ad404 100644 --- a/packages/apps-routing/src/contracts.ts +++ b/packages/apps-routing/src/contracts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-routing/src/coretime.ts b/packages/apps-routing/src/coretime.ts index 37b45a48d8e..d1378725c31 100644 --- a/packages/apps-routing/src/coretime.ts +++ b/packages/apps-routing/src/coretime.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/council.ts b/packages/apps-routing/src/council.ts index 2279815e2b8..73cc0d7ed1f 100644 --- a/packages/apps-routing/src/council.ts +++ b/packages/apps-routing/src/council.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/democracy.ts b/packages/apps-routing/src/democracy.ts index e175be3bb5f..9cd7f92d13b 100644 --- a/packages/apps-routing/src/democracy.ts +++ b/packages/apps-routing/src/democracy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-routing/src/explorer.ts b/packages/apps-routing/src/explorer.ts index ed6d2a85e88..93335381087 100644 --- a/packages/apps-routing/src/explorer.ts +++ b/packages/apps-routing/src/explorer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/extrinsics.ts b/packages/apps-routing/src/extrinsics.ts index f0dbe5f179f..4d1ca7be85c 100644 --- a/packages/apps-routing/src/extrinsics.ts +++ b/packages/apps-routing/src/extrinsics.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/fellowship.ts b/packages/apps-routing/src/fellowship.ts index 797d68411fa..ab2651f849b 100644 --- a/packages/apps-routing/src/fellowship.ts +++ b/packages/apps-routing/src/fellowship.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/files.ts b/packages/apps-routing/src/files.ts index 42ebb5a81d6..a5c6090f67c 100644 --- a/packages/apps-routing/src/files.ts +++ b/packages/apps-routing/src/files.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/gilt.ts b/packages/apps-routing/src/gilt.ts index f5805ed1546..a7c1742a4b5 100644 --- a/packages/apps-routing/src/gilt.ts +++ b/packages/apps-routing/src/gilt.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/index.ts b/packages/apps-routing/src/index.ts index 713b0b9bcc0..10624d4b1c7 100644 --- a/packages/apps-routing/src/index.ts +++ b/packages/apps-routing/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Routes, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/js.ts b/packages/apps-routing/src/js.ts index c649f6db029..fc7e0397bce 100644 --- a/packages/apps-routing/src/js.ts +++ b/packages/apps-routing/src/js.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/membership.ts b/packages/apps-routing/src/membership.ts index a1b4ce5162f..67c9e1c2b8f 100644 --- a/packages/apps-routing/src/membership.ts +++ b/packages/apps-routing/src/membership.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/nfts.ts b/packages/apps-routing/src/nfts.ts index 91383645171..cdf7b320c5e 100644 --- a/packages/apps-routing/src/nfts.ts +++ b/packages/apps-routing/src/nfts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/nis.ts b/packages/apps-routing/src/nis.ts index b5599846cb8..bf8af130a43 100644 --- a/packages/apps-routing/src/nis.ts +++ b/packages/apps-routing/src/nis.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/parachains.ts b/packages/apps-routing/src/parachains.ts index 5d6f56b7b92..56841bb20e2 100644 --- a/packages/apps-routing/src/parachains.ts +++ b/packages/apps-routing/src/parachains.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/poll.ts b/packages/apps-routing/src/poll.ts index ff053273f9a..7c3a70cec7b 100644 --- a/packages/apps-routing/src/poll.ts +++ b/packages/apps-routing/src/poll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/preimages.ts b/packages/apps-routing/src/preimages.ts index 709e2d44ab4..8521a6110cc 100644 --- a/packages/apps-routing/src/preimages.ts +++ b/packages/apps-routing/src/preimages.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/ranked.ts b/packages/apps-routing/src/ranked.ts index 0e42830d3b7..f0f3b19800b 100644 --- a/packages/apps-routing/src/ranked.ts +++ b/packages/apps-routing/src/ranked.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/referenda.ts b/packages/apps-routing/src/referenda.ts index 8242891af30..e4f204549f1 100644 --- a/packages/apps-routing/src/referenda.ts +++ b/packages/apps-routing/src/referenda.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/rpc.ts b/packages/apps-routing/src/rpc.ts index aed46a8647f..ccb965b0a70 100644 --- a/packages/apps-routing/src/rpc.ts +++ b/packages/apps-routing/src/rpc.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/runtime.ts b/packages/apps-routing/src/runtime.ts index ad338b8948c..25223afd2d8 100644 --- a/packages/apps-routing/src/runtime.ts +++ b/packages/apps-routing/src/runtime.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/scheduler.ts b/packages/apps-routing/src/scheduler.ts index c126628edac..1157ed0aa31 100644 --- a/packages/apps-routing/src/scheduler.ts +++ b/packages/apps-routing/src/scheduler.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/settings.ts b/packages/apps-routing/src/settings.ts index 308205bc351..bdd4e396110 100644 --- a/packages/apps-routing/src/settings.ts +++ b/packages/apps-routing/src/settings.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/signing.ts b/packages/apps-routing/src/signing.ts index d4b997b6e3c..e128248e042 100644 --- a/packages/apps-routing/src/signing.ts +++ b/packages/apps-routing/src/signing.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/society.ts b/packages/apps-routing/src/society.ts index 5d8c60ee450..1750a74885c 100644 --- a/packages/apps-routing/src/society.ts +++ b/packages/apps-routing/src/society.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/staking.ts b/packages/apps-routing/src/staking.ts index 4a9766fb8d9..8cb67dde9fe 100644 --- a/packages/apps-routing/src/staking.ts +++ b/packages/apps-routing/src/staking.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-routing/src/staking2.ts b/packages/apps-routing/src/staking2.ts index 516b4a7ecec..3ccfeb0cb52 100644 --- a/packages/apps-routing/src/staking2.ts +++ b/packages/apps-routing/src/staking2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-routing/src/stakingLegacy.ts b/packages/apps-routing/src/stakingLegacy.ts index 694706ab5da..7303030cf27 100644 --- a/packages/apps-routing/src/stakingLegacy.ts +++ b/packages/apps-routing/src/stakingLegacy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps-routing/src/storage.ts b/packages/apps-routing/src/storage.ts index 8be42a5c2c9..70f6dabd51c 100644 --- a/packages/apps-routing/src/storage.ts +++ b/packages/apps-routing/src/storage.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/sudo.ts b/packages/apps-routing/src/sudo.ts index a3a8dc79444..9562ab06193 100644 --- a/packages/apps-routing/src/sudo.ts +++ b/packages/apps-routing/src/sudo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/techcomm.ts b/packages/apps-routing/src/techcomm.ts index c58ac4693d9..b5e28c07270 100644 --- a/packages/apps-routing/src/techcomm.ts +++ b/packages/apps-routing/src/techcomm.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/teleport.ts b/packages/apps-routing/src/teleport.ts index b5f3209fca6..8fe247c811e 100644 --- a/packages/apps-routing/src/teleport.ts +++ b/packages/apps-routing/src/teleport.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/transfer.ts b/packages/apps-routing/src/transfer.ts index 09ef542d311..e19e669c610 100644 --- a/packages/apps-routing/src/transfer.ts +++ b/packages/apps-routing/src/transfer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/treasury.ts b/packages/apps-routing/src/treasury.ts index b31e3b03153..7408bf9dc6c 100644 --- a/packages/apps-routing/src/treasury.ts +++ b/packages/apps-routing/src/treasury.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/types.ts b/packages/apps-routing/src/types.ts index e6e25fc05c2..c2f36b3a190 100644 --- a/packages/apps-routing/src/types.ts +++ b/packages/apps-routing/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/apps-routing/src/utilities.ts b/packages/apps-routing/src/utilities.ts index ed7c46483a6..8543ac4f443 100644 --- a/packages/apps-routing/src/utilities.ts +++ b/packages/apps-routing/src/utilities.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps-routing/src/whitelist.ts b/packages/apps-routing/src/whitelist.ts index a9c84acca5c..0830a441b59 100644 --- a/packages/apps-routing/src/whitelist.ts +++ b/packages/apps-routing/src/whitelist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps-routing authors & contributors +// Copyright 2017-2025 @polkadot/apps-routing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, TFunction } from './types.js'; diff --git a/packages/apps/public/env-config.js b/packages/apps/public/env-config.js index a526b6302fe..a993ed0d95e 100644 --- a/packages/apps/public/env-config.js +++ b/packages/apps/public/env-config.js @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Place any environment-specific configuration here diff --git a/packages/apps/src/Apps.tsx b/packages/apps/src/Apps.tsx index 0236ddd51e1..02ddabc55cc 100644 --- a/packages/apps/src/Apps.tsx +++ b/packages/apps/src/Apps.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BareProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/apps/src/Content/NotFound.tsx b/packages/apps/src/Content/NotFound.tsx index ed97378f269..507475cd9be 100644 --- a/packages/apps/src/Content/NotFound.tsx +++ b/packages/apps/src/Content/NotFound.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RouteProps } from '@polkadot/apps-routing/types'; diff --git a/packages/apps/src/Content/Status.tsx b/packages/apps/src/Content/Status.tsx index 831431919be..7f321747ef8 100644 --- a/packages/apps/src/Content/Status.tsx +++ b/packages/apps/src/Content/Status.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/apps/src/Content/index.tsx b/packages/apps/src/Content/index.tsx index e0cfbfea882..e3396d90659 100644 --- a/packages/apps/src/Content/index.tsx +++ b/packages/apps/src/Content/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route } from '@polkadot/apps-routing/types'; diff --git a/packages/apps/src/Endpoints/Group.tsx b/packages/apps/src/Endpoints/Group.tsx index cfbb36a4f24..547709a4af7 100644 --- a/packages/apps/src/Endpoints/Group.tsx +++ b/packages/apps/src/Endpoints/Group.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Group } from './types.js'; diff --git a/packages/apps/src/Endpoints/Network.tsx b/packages/apps/src/Endpoints/Network.tsx index 6aa74f4d3c5..685e4adfa1b 100644 --- a/packages/apps/src/Endpoints/Network.tsx +++ b/packages/apps/src/Endpoints/Network.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Network } from './types.js'; diff --git a/packages/apps/src/Endpoints/Url.tsx b/packages/apps/src/Endpoints/Url.tsx index e81343a0047..e32a3439aa3 100644 --- a/packages/apps/src/Endpoints/Url.tsx +++ b/packages/apps/src/Endpoints/Url.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/apps/src/Endpoints/index.tsx b/packages/apps/src/Endpoints/index.tsx index fefe4f80389..deb66b48bb8 100644 --- a/packages/apps/src/Endpoints/index.tsx +++ b/packages/apps/src/Endpoints/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/apps/src/Endpoints/types.ts b/packages/apps/src/Endpoints/types.ts index 8003536dea0..fa8d7896263 100644 --- a/packages/apps/src/Endpoints/types.ts +++ b/packages/apps/src/Endpoints/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/apps/src/Menu/ChainInfo.tsx b/packages/apps/src/Menu/ChainInfo.tsx index c0080010b8c..83b85a0cbf5 100644 --- a/packages/apps/src/Menu/ChainInfo.tsx +++ b/packages/apps/src/Menu/ChainInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RuntimeVersion } from '@polkadot/types/interfaces'; diff --git a/packages/apps/src/Menu/Grouping.tsx b/packages/apps/src/Menu/Grouping.tsx index 8f084d259a4..eeab24931b8 100644 --- a/packages/apps/src/Menu/Grouping.tsx +++ b/packages/apps/src/Menu/Grouping.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Group } from './types.js'; diff --git a/packages/apps/src/Menu/Item.tsx b/packages/apps/src/Menu/Item.tsx index a2c1d0ea420..07fe63f6e6b 100644 --- a/packages/apps/src/Menu/Item.tsx +++ b/packages/apps/src/Menu/Item.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ItemRoute } from './types.js'; diff --git a/packages/apps/src/Menu/NodeInfo.tsx b/packages/apps/src/Menu/NodeInfo.tsx index b3dd1c81c7f..552b7f80756 100644 --- a/packages/apps/src/Menu/NodeInfo.tsx +++ b/packages/apps/src/Menu/NodeInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BareProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/apps/src/Menu/index.tsx b/packages/apps/src/Menu/index.tsx index 27a3520b100..d2d238c0f1f 100644 --- a/packages/apps/src/Menu/index.tsx +++ b/packages/apps/src/Menu/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Route, Routes } from '@polkadot/apps-routing/types'; diff --git a/packages/apps/src/Menu/types.tsx b/packages/apps/src/Menu/types.tsx index 5394e87d4e3..3bfa9a206cb 100644 --- a/packages/apps/src/Menu/types.tsx +++ b/packages/apps/src/Menu/types.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/apps/src/Root.tsx b/packages/apps/src/Root.tsx index 859832ab1c5..bf3f6e4fae9 100644 --- a/packages/apps/src/Root.tsx +++ b/packages/apps/src/Root.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ThemeDef } from '@polkadot/react-components/types'; diff --git a/packages/apps/src/TopBar.tsx b/packages/apps/src/TopBar.tsx index b72c5b8fb47..758d68d4175 100644 --- a/packages/apps/src/TopBar.tsx +++ b/packages/apps/src/TopBar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Unused atm, experiment as a replacement for NodeInfo on the SideBar diff --git a/packages/apps/src/WarmUp.tsx b/packages/apps/src/WarmUp.tsx index d94e78e6978..5e1c25f59ee 100644 --- a/packages/apps/src/WarmUp.tsx +++ b/packages/apps/src/WarmUp.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/apps/src/endpoint.ts b/packages/apps/src/endpoint.ts index 8f49009f4c8..86b1ed0b365 100644 --- a/packages/apps/src/endpoint.ts +++ b/packages/apps/src/endpoint.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/apps/src/index.tsx b/packages/apps/src/index.tsx index 4aa7a7aa24f..dd08111ebab 100644 --- a/packages/apps/src/index.tsx +++ b/packages/apps/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // setup these right at front diff --git a/packages/apps/src/initBufferHack.ts b/packages/apps/src/initBufferHack.ts index ec43de30a3b..f2d90d8149a 100644 --- a/packages/apps/src/initBufferHack.ts +++ b/packages/apps/src/initBufferHack.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import { xglobal } from '@polkadot/x-global'; diff --git a/packages/apps/src/initSettings.ts b/packages/apps/src/initSettings.ts index 2200c8ab430..ca42519cbc4 100644 --- a/packages/apps/src/initSettings.ts +++ b/packages/apps/src/initSettings.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import queryString from 'query-string'; diff --git a/packages/apps/src/overlays/Base.tsx b/packages/apps/src/overlays/Base.tsx index 269190ffdba..14e7ba06cdb 100644 --- a/packages/apps/src/overlays/Base.tsx +++ b/packages/apps/src/overlays/Base.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/apps/src/overlays/Bottom.tsx b/packages/apps/src/overlays/Bottom.tsx index f83239b346c..95fd6108c13 100644 --- a/packages/apps/src/overlays/Bottom.tsx +++ b/packages/apps/src/overlays/Bottom.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/apps/src/overlays/Connecting.tsx b/packages/apps/src/overlays/Connecting.tsx index f027e4e601b..871e9b6ecf3 100644 --- a/packages/apps/src/overlays/Connecting.tsx +++ b/packages/apps/src/overlays/Connecting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/apps/src/overlays/DotApps.tsx b/packages/apps/src/overlays/DotApps.tsx index 91c47b0eea9..323ed723ce5 100644 --- a/packages/apps/src/overlays/DotApps.tsx +++ b/packages/apps/src/overlays/DotApps.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/apps/src/overlays/LocalFork.tsx b/packages/apps/src/overlays/LocalFork.tsx index a29f45bd85e..bec3a654456 100644 --- a/packages/apps/src/overlays/LocalFork.tsx +++ b/packages/apps/src/overlays/LocalFork.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/apps/src/packageDetect.ts b/packages/apps/src/packageDetect.ts index dee8180862d..196d80fd322 100644 --- a/packages/apps/src/packageDetect.ts +++ b/packages/apps/src/packageDetect.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev diff --git a/packages/apps/src/packageInfo.ts b/packages/apps/src/packageInfo.ts index 9be4fc51f46..7d419344f67 100644 --- a/packages/apps/src/packageInfo.ts +++ b/packages/apps/src/packageInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev diff --git a/packages/apps/src/translate.ts b/packages/apps/src/translate.ts index 55421d14732..d730a65123c 100644 --- a/packages/apps/src/translate.ts +++ b/packages/apps/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/apps/src/wp-gif.d.ts b/packages/apps/src/wp-gif.d.ts index e813176318c..a46783f76f3 100644 --- a/packages/apps/src/wp-gif.d.ts +++ b/packages/apps/src/wp-gif.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module '*.gif' { diff --git a/packages/apps/src/wp-md.d.ts b/packages/apps/src/wp-md.d.ts index ec85091e371..c012ec4235c 100644 --- a/packages/apps/src/wp-md.d.ts +++ b/packages/apps/src/wp-md.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module '*.md' { diff --git a/packages/apps/src/wp-png.d.ts b/packages/apps/src/wp-png.d.ts index 7bcf35a8a55..6ceefe65a52 100644 --- a/packages/apps/src/wp-png.d.ts +++ b/packages/apps/src/wp-png.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module '*.png' { diff --git a/packages/apps/src/wp-svg.d.ts b/packages/apps/src/wp-svg.d.ts index d03a1e6ed4b..157d9dbb135 100644 --- a/packages/apps/src/wp-svg.d.ts +++ b/packages/apps/src/wp-svg.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module '*.svg' { diff --git a/packages/apps/webpack.base.cjs b/packages/apps/webpack.base.cjs index 10e9bff2835..d114032a436 100644 --- a/packages/apps/webpack.base.cjs +++ b/packages/apps/webpack.base.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable camelcase */ diff --git a/packages/apps/webpack.config.cjs b/packages/apps/webpack.config.cjs index 0958c121c36..2dd738461a7 100644 --- a/packages/apps/webpack.config.cjs +++ b/packages/apps/webpack.config.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('fs'); diff --git a/packages/apps/webpack.serve.cjs b/packages/apps/webpack.serve.cjs index bcb0574e3e0..7b960acbf27 100644 --- a/packages/apps/webpack.serve.cjs +++ b/packages/apps/webpack.serve.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const path = require('path'); diff --git a/packages/page-accounts/src/Accounts/Account.tsx b/packages/page-accounts/src/Accounts/Account.tsx index 04daae3a995..f8ea5f5e96d 100644 --- a/packages/page-accounts/src/Accounts/Account.tsx +++ b/packages/page-accounts/src/Accounts/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 // This is for the use of `Ledger` diff --git a/packages/page-accounts/src/Accounts/Banner.tsx b/packages/page-accounts/src/Accounts/Banner.tsx index 16515959d51..09088286cf7 100644 --- a/packages/page-accounts/src/Accounts/Banner.tsx +++ b/packages/page-accounts/src/Accounts/Banner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-accounts/src/Accounts/BannerClaims.tsx b/packages/page-accounts/src/Accounts/BannerClaims.tsx index 2465bda104a..cbb632f8f21 100644 --- a/packages/page-accounts/src/Accounts/BannerClaims.tsx +++ b/packages/page-accounts/src/Accounts/BannerClaims.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-accounts/src/Accounts/BannerExtension.tsx b/packages/page-accounts/src/Accounts/BannerExtension.tsx index 3914400eed7..1da41e94c51 100644 --- a/packages/page-accounts/src/Accounts/BannerExtension.tsx +++ b/packages/page-accounts/src/Accounts/BannerExtension.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { detect } from 'detect-browser'; diff --git a/packages/page-accounts/src/Accounts/Summary.tsx b/packages/page-accounts/src/Accounts/Summary.tsx index fac087d377a..d77b538fef6 100644 --- a/packages/page-accounts/src/Accounts/Summary.tsx +++ b/packages/page-accounts/src/Accounts/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountBalance } from '../types.js'; diff --git a/packages/page-accounts/src/Accounts/index.spec.ts b/packages/page-accounts/src/Accounts/index.spec.ts index 0f27f8f089e..1bf7250b1f6 100644 --- a/packages/page-accounts/src/Accounts/index.spec.ts +++ b/packages/page-accounts/src/Accounts/index.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-accounts/src/Accounts/index.tsx b/packages/page-accounts/src/Accounts/index.tsx index 7afb1f85492..e0765bc651d 100644 --- a/packages/page-accounts/src/Accounts/index.tsx +++ b/packages/page-accounts/src/Accounts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/Accounts/types.ts b/packages/page-accounts/src/Accounts/types.ts index 090888655b3..1d3a068c801 100644 --- a/packages/page-accounts/src/Accounts/types.ts +++ b/packages/page-accounts/src/Accounts/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WithTranslation } from 'react-i18next'; diff --git a/packages/page-accounts/src/Accounts/useKnownAddresses.ts b/packages/page-accounts/src/Accounts/useKnownAddresses.ts index 2de59e0d890..06f0d4c494a 100644 --- a/packages/page-accounts/src/Accounts/useKnownAddresses.ts +++ b/packages/page-accounts/src/Accounts/useKnownAddresses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo } from 'react'; diff --git a/packages/page-accounts/src/Accounts/useMultisigApprovals.ts b/packages/page-accounts/src/Accounts/useMultisigApprovals.ts index 92cdf1a4b09..466e1b13ecd 100644 --- a/packages/page-accounts/src/Accounts/useMultisigApprovals.ts +++ b/packages/page-accounts/src/Accounts/useMultisigApprovals.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-accounts/src/Accounts/useProxies.ts b/packages/page-accounts/src/Accounts/useProxies.ts index 9346c1668fd..a986a891718 100644 --- a/packages/page-accounts/src/Accounts/useProxies.ts +++ b/packages/page-accounts/src/Accounts/useProxies.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Vec } from '@polkadot/types'; diff --git a/packages/page-accounts/src/CreateAccount.slow.spec.tsx b/packages/page-accounts/src/CreateAccount.slow.spec.tsx index 64bd2b5cba3..9071ae2cc7e 100644 --- a/packages/page-accounts/src/CreateAccount.slow.spec.tsx +++ b/packages/page-accounts/src/CreateAccount.slow.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-accounts/src/Vanity/Match.tsx b/packages/page-accounts/src/Vanity/Match.tsx index effd8d75e36..9f1eb5f1408 100644 --- a/packages/page-accounts/src/Vanity/Match.tsx +++ b/packages/page-accounts/src/Vanity/Match.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo } from 'react'; diff --git a/packages/page-accounts/src/Vanity/bipWorker.ts b/packages/page-accounts/src/Vanity/bipWorker.ts index edbe9870d54..29e70a41f77 100644 --- a/packages/page-accounts/src/Vanity/bipWorker.ts +++ b/packages/page-accounts/src/Vanity/bipWorker.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { cryptoWaitReady, ed25519PairFromSeed, mnemonicGenerate, mnemonicToMiniSecret, sr25519PairFromSeed } from '@polkadot/util-crypto'; diff --git a/packages/page-accounts/src/Vanity/index.tsx b/packages/page-accounts/src/Vanity/index.tsx index a5a52ca08d3..7f6b33d2fe1 100644 --- a/packages/page-accounts/src/Vanity/index.tsx +++ b/packages/page-accounts/src/Vanity/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/index.tsx b/packages/page-accounts/src/index.tsx index a873cbd4749..788ea68d69d 100644 --- a/packages/page-accounts/src/index.tsx +++ b/packages/page-accounts/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-accounts/src/modals/Backup.tsx b/packages/page-accounts/src/modals/Backup.tsx index 93a9e31902d..3f27bb909e2 100644 --- a/packages/page-accounts/src/modals/Backup.tsx +++ b/packages/page-accounts/src/modals/Backup.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import FileSaver from 'file-saver'; diff --git a/packages/page-accounts/src/modals/ChangePass.tsx b/packages/page-accounts/src/modals/ChangePass.tsx index 46ee2e6703e..7b95ae8fe7d 100644 --- a/packages/page-accounts/src/modals/ChangePass.tsx +++ b/packages/page-accounts/src/modals/ChangePass.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-accounts/src/modals/Create.spec.tsx b/packages/page-accounts/src/modals/Create.spec.tsx index 2144344ffac..2f12e1cd5a8 100644 --- a/packages/page-accounts/src/modals/Create.spec.tsx +++ b/packages/page-accounts/src/modals/Create.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-accounts/src/modals/Create.tsx b/packages/page-accounts/src/modals/Create.tsx index 4151a3cd4f6..8b2d92c95f8 100644 --- a/packages/page-accounts/src/modals/Create.tsx +++ b/packages/page-accounts/src/modals/Create.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/modals/CreateAccountInputs.tsx b/packages/page-accounts/src/modals/CreateAccountInputs.tsx index fe8eb70bce4..b0e8d7dcd16 100644 --- a/packages/page-accounts/src/modals/CreateAccountInputs.tsx +++ b/packages/page-accounts/src/modals/CreateAccountInputs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/page-accounts/src/modals/CreateConfirmation.tsx b/packages/page-accounts/src/modals/CreateConfirmation.tsx index 9f75ec24816..815b66d01f9 100644 --- a/packages/page-accounts/src/modals/CreateConfirmation.tsx +++ b/packages/page-accounts/src/modals/CreateConfirmation.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeypairType } from '@polkadot/util-crypto/types'; diff --git a/packages/page-accounts/src/modals/CreateEthDerivationPath.tsx b/packages/page-accounts/src/modals/CreateEthDerivationPath.tsx index 2698b5e9a6b..110272e7da8 100644 --- a/packages/page-accounts/src/modals/CreateEthDerivationPath.tsx +++ b/packages/page-accounts/src/modals/CreateEthDerivationPath.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ReactNode } from 'react'; diff --git a/packages/page-accounts/src/modals/CreateSuriLedger.tsx b/packages/page-accounts/src/modals/CreateSuriLedger.tsx index c98290288f3..16880e122b3 100644 --- a/packages/page-accounts/src/modals/CreateSuriLedger.tsx +++ b/packages/page-accounts/src/modals/CreateSuriLedger.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useRef, useState } from 'react'; diff --git a/packages/page-accounts/src/modals/Delegate.tsx b/packages/page-accounts/src/modals/Delegate.tsx index 2d861acdf42..0fba646f40f 100644 --- a/packages/page-accounts/src/modals/Delegate.tsx +++ b/packages/page-accounts/src/modals/Delegate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Conviction } from '@polkadot/types/interfaces'; diff --git a/packages/page-accounts/src/modals/Derive.tsx b/packages/page-accounts/src/modals/Derive.tsx index ee71898062d..acbfd04bc6d 100644 --- a/packages/page-accounts/src/modals/Derive.tsx +++ b/packages/page-accounts/src/modals/Derive.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringPair } from '@polkadot/keyring/types'; diff --git a/packages/page-accounts/src/modals/ExternalWarning.tsx b/packages/page-accounts/src/modals/ExternalWarning.tsx index a4781672195..421eb4ecac6 100644 --- a/packages/page-accounts/src/modals/ExternalWarning.tsx +++ b/packages/page-accounts/src/modals/ExternalWarning.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-accounts/src/modals/IdentityMain.tsx b/packages/page-accounts/src/modals/IdentityMain.tsx index e15168aba3e..928a581baaa 100644 --- a/packages/page-accounts/src/modals/IdentityMain.tsx +++ b/packages/page-accounts/src/modals/IdentityMain.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-accounts/src/modals/IdentitySub.tsx b/packages/page-accounts/src/modals/IdentitySub.tsx index e5e0067107c..22207061724 100644 --- a/packages/page-accounts/src/modals/IdentitySub.tsx +++ b/packages/page-accounts/src/modals/IdentitySub.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Data, Option } from '@polkadot/types'; diff --git a/packages/page-accounts/src/modals/Import.tsx b/packages/page-accounts/src/modals/Import.tsx index 085e740aefc..8e820484308 100644 --- a/packages/page-accounts/src/modals/Import.tsx +++ b/packages/page-accounts/src/modals/Import.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Dispatch, SetStateAction } from 'react'; diff --git a/packages/page-accounts/src/modals/InputValidateAmount.tsx b/packages/page-accounts/src/modals/InputValidateAmount.tsx index 390464ec29f..deb40216c30 100644 --- a/packages/page-accounts/src/modals/InputValidateAmount.tsx +++ b/packages/page-accounts/src/modals/InputValidateAmount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-accounts/src/modals/Ledger.tsx b/packages/page-accounts/src/modals/Ledger.tsx index 62725ceb856..c0f4134b73f 100644 --- a/packages/page-accounts/src/modals/Ledger.tsx +++ b/packages/page-accounts/src/modals/Ledger.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 // This is for the use of `Ledger` diff --git a/packages/page-accounts/src/modals/LocalAdd.tsx b/packages/page-accounts/src/modals/LocalAdd.tsx index 18294ee687a..9df6b8e730e 100644 --- a/packages/page-accounts/src/modals/LocalAdd.tsx +++ b/packages/page-accounts/src/modals/LocalAdd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/modals/MultisigApprove.tsx b/packages/page-accounts/src/modals/MultisigApprove.tsx index 12655f65568..067fde6bc11 100644 --- a/packages/page-accounts/src/modals/MultisigApprove.tsx +++ b/packages/page-accounts/src/modals/MultisigApprove.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-accounts/src/modals/MultisigCreate.tsx b/packages/page-accounts/src/modals/MultisigCreate.tsx index 3ce93cfcb04..cbcb5ec35be 100644 --- a/packages/page-accounts/src/modals/MultisigCreate.tsx +++ b/packages/page-accounts/src/modals/MultisigCreate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/modals/PasswordInput.tsx b/packages/page-accounts/src/modals/PasswordInput.tsx index 5c858637085..440af4c5964 100644 --- a/packages/page-accounts/src/modals/PasswordInput.tsx +++ b/packages/page-accounts/src/modals/PasswordInput.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useEffect, useState } from 'react'; diff --git a/packages/page-accounts/src/modals/ProxiedAdd.tsx b/packages/page-accounts/src/modals/ProxiedAdd.tsx index b15ff92636b..46381da23c9 100644 --- a/packages/page-accounts/src/modals/ProxiedAdd.tsx +++ b/packages/page-accounts/src/modals/ProxiedAdd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/modals/ProxyOverview.tsx b/packages/page-accounts/src/modals/ProxyOverview.tsx index 70a44a685f1..4c0fa3df4a5 100644 --- a/packages/page-accounts/src/modals/ProxyOverview.tsx +++ b/packages/page-accounts/src/modals/ProxyOverview.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-accounts/src/modals/Qr.tsx b/packages/page-accounts/src/modals/Qr.tsx index 31c36c0a8d9..4a68ff7be17 100644 --- a/packages/page-accounts/src/modals/Qr.tsx +++ b/packages/page-accounts/src/modals/Qr.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/src/modals/RecoverAccount.tsx b/packages/page-accounts/src/modals/RecoverAccount.tsx index 7542b478147..c9f6ab4ad48 100644 --- a/packages/page-accounts/src/modals/RecoverAccount.tsx +++ b/packages/page-accounts/src/modals/RecoverAccount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useState } from 'react'; diff --git a/packages/page-accounts/src/modals/RecoverSetup.tsx b/packages/page-accounts/src/modals/RecoverSetup.tsx index 71240d5a4c3..fa0eeea0b01 100644 --- a/packages/page-accounts/src/modals/RecoverSetup.tsx +++ b/packages/page-accounts/src/modals/RecoverSetup.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-accounts/src/modals/Undelegate.tsx b/packages/page-accounts/src/modals/Undelegate.tsx index 43717b409e8..70659521d42 100644 --- a/packages/page-accounts/src/modals/Undelegate.tsx +++ b/packages/page-accounts/src/modals/Undelegate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-accounts/src/translate.ts b/packages/page-accounts/src/translate.ts index 0f91e53827d..d560f9b19b9 100644 --- a/packages/page-accounts/src/translate.ts +++ b/packages/page-accounts/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-accounts/src/types.ts b/packages/page-accounts/src/types.ts index 320f2ddc8c5..71eb160c3ba 100644 --- a/packages/page-accounts/src/types.ts +++ b/packages/page-accounts/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WithTranslation } from 'react-i18next'; diff --git a/packages/page-accounts/src/useCounter.ts b/packages/page-accounts/src/useCounter.ts index b048bc59798..a1260c4c9d9 100644 --- a/packages/page-accounts/src/useCounter.ts +++ b/packages/page-accounts/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createNamedHook, useAccounts } from '@polkadot/react-hooks'; diff --git a/packages/page-accounts/src/util.tsx b/packages/page-accounts/src/util.tsx index dcd367aeadd..e34db044aa3 100644 --- a/packages/page-accounts/src/util.tsx +++ b/packages/page-accounts/src/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-accounts/test/pageElements/AccountRow.tsx b/packages/page-accounts/test/pageElements/AccountRow.tsx index 43ea1229cf0..0f9a4b34a31 100644 --- a/packages/page-accounts/test/pageElements/AccountRow.tsx +++ b/packages/page-accounts/test/pageElements/AccountRow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global expect */ diff --git a/packages/page-accounts/test/pages/accountsPage.tsx b/packages/page-accounts/test/pages/accountsPage.tsx index d496690accb..2f1c83822c0 100644 --- a/packages/page-accounts/test/pages/accountsPage.tsx +++ b/packages/page-accounts/test/pages/accountsPage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Sidebar } from '@polkadot/test-support/pagesElements'; diff --git a/packages/page-addresses/src/Contacts/Address.tsx b/packages/page-addresses/src/Contacts/Address.tsx index 3b7d397e273..92ca9c23ee1 100644 --- a/packages/page-addresses/src/Contacts/Address.tsx +++ b/packages/page-addresses/src/Contacts/Address.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-addresses/src/Contacts/index.spec.ts b/packages/page-addresses/src/Contacts/index.spec.ts index de53661ef26..81f7a0f4c2e 100644 --- a/packages/page-addresses/src/Contacts/index.spec.ts +++ b/packages/page-addresses/src/Contacts/index.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-addresses/src/Contacts/index.tsx b/packages/page-addresses/src/Contacts/index.tsx index 4a39cf08a17..473b5d1ae7f 100644 --- a/packages/page-addresses/src/Contacts/index.tsx +++ b/packages/page-addresses/src/Contacts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-addresses/src/index.tsx b/packages/page-addresses/src/index.tsx index 034ce172315..ce08e8f371b 100644 --- a/packages/page-addresses/src/index.tsx +++ b/packages/page-addresses/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-addresses/src/modals/Create.tsx b/packages/page-addresses/src/modals/Create.tsx index 04079a129bc..c5edb63b4da 100644 --- a/packages/page-addresses/src/modals/Create.tsx +++ b/packages/page-addresses/src/modals/Create.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveAccountInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-addresses/src/translate.ts b/packages/page-addresses/src/translate.ts index df1b4689e7f..9294f2381ef 100644 --- a/packages/page-addresses/src/translate.ts +++ b/packages/page-addresses/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-addresses/src/types.ts b/packages/page-addresses/src/types.ts index 2df73d7888e..0ef26eb55bd 100644 --- a/packages/page-addresses/src/types.ts +++ b/packages/page-addresses/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WithTranslation } from 'react-i18next'; diff --git a/packages/page-addresses/src/util.tsx b/packages/page-addresses/src/util.tsx index c5f98375529..ad70d88a2f2 100644 --- a/packages/page-addresses/src/util.tsx +++ b/packages/page-addresses/src/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringAddress } from '@polkadot/ui-keyring/types'; diff --git a/packages/page-addresses/test/pages/addressesPage.tsx b/packages/page-addresses/test/pages/addressesPage.tsx index 4fd34436afe..3993b9b7bea 100644 --- a/packages/page-addresses/test/pages/addressesPage.tsx +++ b/packages/page-addresses/test/pages/addressesPage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-addresses authors & contributors +// Copyright 2017-2025 @polkadot/app-addresses authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global jest */ diff --git a/packages/page-alliance/src/Announcements/Accouncement.tsx b/packages/page-alliance/src/Announcements/Accouncement.tsx index 1f76ca728f6..f3ed74a23b1 100644 --- a/packages/page-alliance/src/Announcements/Accouncement.tsx +++ b/packages/page-alliance/src/Announcements/Accouncement.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Cid } from '../types.js'; diff --git a/packages/page-alliance/src/Announcements/index.tsx b/packages/page-alliance/src/Announcements/index.tsx index 19e3024ae07..89a7356f5ba 100644 --- a/packages/page-alliance/src/Announcements/index.tsx +++ b/packages/page-alliance/src/Announcements/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Cid } from '../types.js'; diff --git a/packages/page-alliance/src/Members/Join.tsx b/packages/page-alliance/src/Members/Join.tsx index 9548ad1fea5..cc811d63c94 100644 --- a/packages/page-alliance/src/Members/Join.tsx +++ b/packages/page-alliance/src/Members/Join.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Member, Unscrupulous } from '../types.js'; diff --git a/packages/page-alliance/src/Members/Member.tsx b/packages/page-alliance/src/Members/Member.tsx index 000e8e0508e..ea2bfabebca 100644 --- a/packages/page-alliance/src/Members/Member.tsx +++ b/packages/page-alliance/src/Members/Member.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-alliance/src/Members/Summary.tsx b/packages/page-alliance/src/Members/Summary.tsx index fd1fdfb7169..2917406e703 100644 --- a/packages/page-alliance/src/Members/Summary.tsx +++ b/packages/page-alliance/src/Members/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Member as MemberType, Rule } from '../types.js'; diff --git a/packages/page-alliance/src/Members/index.tsx b/packages/page-alliance/src/Members/index.tsx index a4250f5db5e..96ed173c790 100644 --- a/packages/page-alliance/src/Members/index.tsx +++ b/packages/page-alliance/src/Members/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Member as MemberType, Rule, Unscrupulous } from '../types.js'; diff --git a/packages/page-alliance/src/Unscrupulous/Account.tsx b/packages/page-alliance/src/Unscrupulous/Account.tsx index c86e7e81807..c5f488a9796 100644 --- a/packages/page-alliance/src/Unscrupulous/Account.tsx +++ b/packages/page-alliance/src/Unscrupulous/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-alliance/src/Unscrupulous/Website.tsx b/packages/page-alliance/src/Unscrupulous/Website.tsx index 3c1c97094f9..ff05f9242e5 100644 --- a/packages/page-alliance/src/Unscrupulous/Website.tsx +++ b/packages/page-alliance/src/Unscrupulous/Website.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-alliance/src/Unscrupulous/index.tsx b/packages/page-alliance/src/Unscrupulous/index.tsx index 6f3c20977bc..945a85aff74 100644 --- a/packages/page-alliance/src/Unscrupulous/index.tsx +++ b/packages/page-alliance/src/Unscrupulous/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Unscrupulous as UnscrupulousType } from '../types.js'; diff --git a/packages/page-alliance/src/index.tsx b/packages/page-alliance/src/index.tsx index e9fba9213c7..7a3cfc78061 100644 --- a/packages/page-alliance/src/index.tsx +++ b/packages/page-alliance/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-alliance/src/translate.ts b/packages/page-alliance/src/translate.ts index d90b33bb150..842f45ae83e 100644 --- a/packages/page-alliance/src/translate.ts +++ b/packages/page-alliance/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-alliance/src/types.ts b/packages/page-alliance/src/types.ts index 1bf5478525b..204733b6789 100644 --- a/packages/page-alliance/src/types.ts +++ b/packages/page-alliance/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAllianceCid, PalletAllianceMemberRole } from '@polkadot/types/lookup'; diff --git a/packages/page-alliance/src/useAnnoucements.ts b/packages/page-alliance/src/useAnnoucements.ts index 50d3a919704..f991f9ed990 100644 --- a/packages/page-alliance/src/useAnnoucements.ts +++ b/packages/page-alliance/src/useAnnoucements.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAllianceCid } from '@polkadot/types/lookup'; diff --git a/packages/page-alliance/src/useCounter.ts b/packages/page-alliance/src/useCounter.ts index 157806230b3..f8b40ded9c0 100644 --- a/packages/page-alliance/src/useCounter.ts +++ b/packages/page-alliance/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo } from 'react'; diff --git a/packages/page-alliance/src/useMemberInfo.ts b/packages/page-alliance/src/useMemberInfo.ts index 4e743f9cced..d168b2ab36b 100644 --- a/packages/page-alliance/src/useMemberInfo.ts +++ b/packages/page-alliance/src/useMemberInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { bool, Option, UInt } from '@polkadot/types'; diff --git a/packages/page-alliance/src/useMembers.ts b/packages/page-alliance/src/useMembers.ts index 4521ea4699a..735dca4e0b9 100644 --- a/packages/page-alliance/src/useMembers.ts +++ b/packages/page-alliance/src/useMembers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId32 } from '@polkadot/types/interfaces'; diff --git a/packages/page-alliance/src/useRule.ts b/packages/page-alliance/src/useRule.ts index e8dffcbb527..91efa322a3e 100644 --- a/packages/page-alliance/src/useRule.ts +++ b/packages/page-alliance/src/useRule.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-alliance/src/useUnscrupulous.ts b/packages/page-alliance/src/useUnscrupulous.ts index 0bf34300a4e..85708a6aabb 100644 --- a/packages/page-alliance/src/useUnscrupulous.ts +++ b/packages/page-alliance/src/useUnscrupulous.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes } from '@polkadot/types'; diff --git a/packages/page-alliance/src/util.spec.ts b/packages/page-alliance/src/util.spec.ts index b8219751cb9..7bdc7d8e8e0 100644 --- a/packages/page-alliance/src/util.spec.ts +++ b/packages/page-alliance/src/util.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-alliance/src/util.ts b/packages/page-alliance/src/util.ts index 652be056af0..7f6af5bc260 100644 --- a/packages/page-alliance/src/util.ts +++ b/packages/page-alliance/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-alliance authors & contributors +// Copyright 2017-2025 @polkadot/app-alliance authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAllianceCid } from '@polkadot/types/lookup'; diff --git a/packages/page-ambassador/src/index.tsx b/packages/page-ambassador/src/index.tsx index 76d664db7e4..2ccb542a94e 100644 --- a/packages/page-ambassador/src/index.tsx +++ b/packages/page-ambassador/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-fellowship authors & contributors +// Copyright 2017-2025 @polkadot/app-fellowship authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-ambassador/src/useCounter.ts b/packages/page-ambassador/src/useCounter.ts index a45aa6081de..7c61339719f 100644 --- a/packages/page-ambassador/src/useCounter.ts +++ b/packages/page-ambassador/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCounterNamed } from '@polkadot/app-referenda/useCounter'; diff --git a/packages/page-assets/src/Balances/Account.tsx b/packages/page-assets/src/Balances/Account.tsx index 9682e62e337..03b65dd3043 100644 --- a/packages/page-assets/src/Balances/Account.tsx +++ b/packages/page-assets/src/Balances/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 // augment package diff --git a/packages/page-assets/src/Balances/Transfer.tsx b/packages/page-assets/src/Balances/Transfer.tsx index cc2d3e58b8f..1b666351b57 100644 --- a/packages/page-assets/src/Balances/Transfer.tsx +++ b/packages/page-assets/src/Balances/Transfer.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-assets/src/Balances/index.tsx b/packages/page-assets/src/Balances/index.tsx index fe60bd43159..11b93329148 100644 --- a/packages/page-assets/src/Balances/index.tsx +++ b/packages/page-assets/src/Balances/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps } from 'semantic-ui-react'; diff --git a/packages/page-assets/src/Balances/useBalances.ts b/packages/page-assets/src/Balances/useBalances.ts index f524e60ec66..0c701fd7d1b 100644 --- a/packages/page-assets/src/Balances/useBalances.ts +++ b/packages/page-assets/src/Balances/useBalances.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAssetsAssetAccount } from '@polkadot/types/lookup'; diff --git a/packages/page-assets/src/Overview/Asset.tsx b/packages/page-assets/src/Overview/Asset.tsx index cda1193fb08..6dafedcd4bd 100644 --- a/packages/page-assets/src/Overview/Asset.tsx +++ b/packages/page-assets/src/Overview/Asset.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AssetInfo } from '../types.js'; diff --git a/packages/page-assets/src/Overview/Assets.tsx b/packages/page-assets/src/Overview/Assets.tsx index 13695c157fc..1c66e19dc28 100644 --- a/packages/page-assets/src/Overview/Assets.tsx +++ b/packages/page-assets/src/Overview/Assets.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AssetInfo } from '../types.js'; diff --git a/packages/page-assets/src/Overview/Create/Create.tsx b/packages/page-assets/src/Overview/Create/Create.tsx index 677d03f2c36..44b3f40f01e 100644 --- a/packages/page-assets/src/Overview/Create/Create.tsx +++ b/packages/page-assets/src/Overview/Create/Create.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BatchOptions } from '@polkadot/react-hooks/types'; diff --git a/packages/page-assets/src/Overview/Create/Info.tsx b/packages/page-assets/src/Overview/Create/Info.tsx index d77d499526c..e9174c12043 100644 --- a/packages/page-assets/src/Overview/Create/Info.tsx +++ b/packages/page-assets/src/Overview/Create/Info.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-assets/src/Overview/Create/Team.tsx b/packages/page-assets/src/Overview/Create/Team.tsx index d2af260a30d..05397bf7861 100644 --- a/packages/page-assets/src/Overview/Create/Team.tsx +++ b/packages/page-assets/src/Overview/Create/Team.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TeamState } from './types.js'; diff --git a/packages/page-assets/src/Overview/Create/index.tsx b/packages/page-assets/src/Overview/Create/index.tsx index 2c1b0b4e30d..569d122499a 100644 --- a/packages/page-assets/src/Overview/Create/index.tsx +++ b/packages/page-assets/src/Overview/Create/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-assets/src/Overview/Create/types.ts b/packages/page-assets/src/Overview/Create/types.ts index 1ba9cf606c7..3ae068dcc2a 100644 --- a/packages/page-assets/src/Overview/Create/types.ts +++ b/packages/page-assets/src/Overview/Create/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-assets/src/Overview/Mint/Mint.tsx b/packages/page-assets/src/Overview/Mint/Mint.tsx index 9e481eba7d4..28d470180af 100644 --- a/packages/page-assets/src/Overview/Mint/Mint.tsx +++ b/packages/page-assets/src/Overview/Mint/Mint.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@polkadot/types/lookup'; diff --git a/packages/page-assets/src/Overview/Mint/index.tsx b/packages/page-assets/src/Overview/Mint/index.tsx index db7d4ed36fa..bbaf062ae81 100644 --- a/packages/page-assets/src/Overview/Mint/index.tsx +++ b/packages/page-assets/src/Overview/Mint/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@polkadot/types/lookup'; diff --git a/packages/page-assets/src/Overview/Query.tsx b/packages/page-assets/src/Overview/Query.tsx index 839ccb49e59..8741b0c2dcc 100644 --- a/packages/page-assets/src/Overview/Query.tsx +++ b/packages/page-assets/src/Overview/Query.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-assets/src/Overview/Summary.tsx b/packages/page-assets/src/Overview/Summary.tsx index c3987db0321..087339cc8bd 100644 --- a/packages/page-assets/src/Overview/Summary.tsx +++ b/packages/page-assets/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-assets/src/Overview/index.tsx b/packages/page-assets/src/Overview/index.tsx index c7cc6dab3a4..a13f9f651ac 100644 --- a/packages/page-assets/src/Overview/index.tsx +++ b/packages/page-assets/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-assets/src/index.tsx b/packages/page-assets/src/index.tsx index 3dd3ebf038a..53e1d076221 100644 --- a/packages/page-assets/src/index.tsx +++ b/packages/page-assets/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 // augment package diff --git a/packages/page-assets/src/translate.ts b/packages/page-assets/src/translate.ts index ec88745c02f..a45c2736509 100644 --- a/packages/page-assets/src/translate.ts +++ b/packages/page-assets/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-assets/src/types.ts b/packages/page-assets/src/types.ts index a684137be20..3b42f982bda 100644 --- a/packages/page-assets/src/types.ts +++ b/packages/page-assets/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAssetsAssetDetails, PalletAssetsAssetMetadata } from '@polkadot/types/lookup'; diff --git a/packages/page-assets/src/useAssetIds.ts b/packages/page-assets/src/useAssetIds.ts index 600d332258a..17d3238249a 100644 --- a/packages/page-assets/src/useAssetIds.ts +++ b/packages/page-assets/src/useAssetIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-assets/src/useAssetInfos.ts b/packages/page-assets/src/useAssetInfos.ts index 6b02cd15de1..870cbabe710 100644 --- a/packages/page-assets/src/useAssetInfos.ts +++ b/packages/page-assets/src/useAssetInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-assets authors & contributors +// Copyright 2017-2025 @polkadot/app-assets authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-bounties/src/Bounties.slow.spec.tsx b/packages/page-bounties/src/Bounties.slow.spec.tsx index 316fc457348..dda0f3e4654 100644 --- a/packages/page-bounties/src/Bounties.slow.spec.tsx +++ b/packages/page-bounties/src/Bounties.slow.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/Bounties.spec.ts b/packages/page-bounties/src/Bounties.spec.ts index 82c88973aed..afc04cb516f 100644 --- a/packages/page-bounties/src/Bounties.spec.ts +++ b/packages/page-bounties/src/Bounties.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/Bounties.tsx b/packages/page-bounties/src/Bounties.tsx index c7ccbfdfe8b..0aeffa2d9ba 100644 --- a/packages/page-bounties/src/Bounties.tsx +++ b/packages/page-bounties/src/Bounties.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo, useRef } from 'react'; diff --git a/packages/page-bounties/src/Bounty.tsx b/packages/page-bounties/src/Bounty.tsx index 6deac461be7..40db5c84b42 100644 --- a/packages/page-bounties/src/Bounty.tsx +++ b/packages/page-bounties/src/Bounty.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyActions/AwardBounty.tsx b/packages/page-bounties/src/BountyActions/AwardBounty.tsx index 208cba66e2f..75d04d46460 100644 --- a/packages/page-bounties/src/BountyActions/AwardBounty.tsx +++ b/packages/page-bounties/src/BountyActions/AwardBounty.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyActions/BountyAcceptCurator.tsx b/packages/page-bounties/src/BountyActions/BountyAcceptCurator.tsx index e68f3cfd966..500409591cd 100644 --- a/packages/page-bounties/src/BountyActions/BountyAcceptCurator.tsx +++ b/packages/page-bounties/src/BountyActions/BountyAcceptCurator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyActions/BountyClaimAction.tsx b/packages/page-bounties/src/BountyActions/BountyClaimAction.tsx index 612e9ac7c98..3dda62f005d 100644 --- a/packages/page-bounties/src/BountyActions/BountyClaimAction.tsx +++ b/packages/page-bounties/src/BountyActions/BountyClaimAction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyActions/BountyInitiateVoting.tsx b/packages/page-bounties/src/BountyActions/BountyInitiateVoting.tsx index 21f1b24a636..fe479af2d65 100644 --- a/packages/page-bounties/src/BountyActions/BountyInitiateVoting.tsx +++ b/packages/page-bounties/src/BountyActions/BountyInitiateVoting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyActions/ProposeCuratorAction.tsx b/packages/page-bounties/src/BountyActions/ProposeCuratorAction.tsx index 414355152db..9d311c68a42 100644 --- a/packages/page-bounties/src/BountyActions/ProposeCuratorAction.tsx +++ b/packages/page-bounties/src/BountyActions/ProposeCuratorAction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyActions/index.tsx b/packages/page-bounties/src/BountyActions/index.tsx index e0b9586ee4e..1d2fbf4fd41 100644 --- a/packages/page-bounties/src/BountyActions/index.tsx +++ b/packages/page-bounties/src/BountyActions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyCreate.tsx b/packages/page-bounties/src/BountyCreate.tsx index 461ad45c95d..243baf53f5b 100644 --- a/packages/page-bounties/src/BountyCreate.tsx +++ b/packages/page-bounties/src/BountyCreate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-bounties/src/BountyExtraActions/BountyRejectCurator.tsx b/packages/page-bounties/src/BountyExtraActions/BountyRejectCurator.tsx index 9662d852c4c..c0820c9e86d 100644 --- a/packages/page-bounties/src/BountyExtraActions/BountyRejectCurator.tsx +++ b/packages/page-bounties/src/BountyExtraActions/BountyRejectCurator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyExtraActions/CloseBounty.tsx b/packages/page-bounties/src/BountyExtraActions/CloseBounty.tsx index 301a6384db0..f66def13156 100644 --- a/packages/page-bounties/src/BountyExtraActions/CloseBounty.tsx +++ b/packages/page-bounties/src/BountyExtraActions/CloseBounty.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyExtraActions/ExtendBountyExpiryAction.tsx b/packages/page-bounties/src/BountyExtraActions/ExtendBountyExpiryAction.tsx index ee207a79774..f34f8e750cc 100644 --- a/packages/page-bounties/src/BountyExtraActions/ExtendBountyExpiryAction.tsx +++ b/packages/page-bounties/src/BountyExtraActions/ExtendBountyExpiryAction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyExtraActions/GiveUp.tsx b/packages/page-bounties/src/BountyExtraActions/GiveUp.tsx index cd75a7c88b0..465b2b613f3 100644 --- a/packages/page-bounties/src/BountyExtraActions/GiveUp.tsx +++ b/packages/page-bounties/src/BountyExtraActions/GiveUp.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BountyIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyExtraActions/SlashCurator.tsx b/packages/page-bounties/src/BountyExtraActions/SlashCurator.tsx index 3a95542b3fa..e33df5a8c7f 100644 --- a/packages/page-bounties/src/BountyExtraActions/SlashCurator.tsx +++ b/packages/page-bounties/src/BountyExtraActions/SlashCurator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-bounties/src/BountyExtraActions/index.tsx b/packages/page-bounties/src/BountyExtraActions/index.tsx index 61af7b7acbd..040c8011eec 100644 --- a/packages/page-bounties/src/BountyExtraActions/index.tsx +++ b/packages/page-bounties/src/BountyExtraActions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx b/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx index 5a22264f830..4a30d60f41d 100644 --- a/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx +++ b/packages/page-bounties/src/BountyInfos/VotingDescriptionInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyInfos/VotingLink.tsx b/packages/page-bounties/src/BountyInfos/VotingLink.tsx index 0d6126d7a91..ec38d3fbf01 100644 --- a/packages/page-bounties/src/BountyInfos/VotingLink.tsx +++ b/packages/page-bounties/src/BountyInfos/VotingLink.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-bounties/src/BountyInfos/VotingSummary.tsx b/packages/page-bounties/src/BountyInfos/VotingSummary.tsx index a0f838efee2..ee1c5618f1c 100644 --- a/packages/page-bounties/src/BountyInfos/VotingSummary.tsx +++ b/packages/page-bounties/src/BountyInfos/VotingSummary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyInfos/index.tsx b/packages/page-bounties/src/BountyInfos/index.tsx index b862ca6dc4f..cdc70dbc7b4 100644 --- a/packages/page-bounties/src/BountyInfos/index.tsx +++ b/packages/page-bounties/src/BountyInfos/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx b/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx index 557de2c6f49..dcfe71e6494 100644 --- a/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx +++ b/packages/page-bounties/src/BountyNextActionInfo/BountyActionMessage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyStatus } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/BountyNextActionInfo/BountyInfo.tsx b/packages/page-bounties/src/BountyNextActionInfo/BountyInfo.tsx index af527f48127..c3a444f577e 100644 --- a/packages/page-bounties/src/BountyNextActionInfo/BountyInfo.tsx +++ b/packages/page-bounties/src/BountyNextActionInfo/BountyInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-bounties/src/BountyStatusView.tsx b/packages/page-bounties/src/BountyStatusView.tsx index 66de35a7eb5..28d7e8adbc5 100644 --- a/packages/page-bounties/src/BountyStatusView.tsx +++ b/packages/page-bounties/src/BountyStatusView.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StatusName } from './types.js'; diff --git a/packages/page-bounties/src/Curator.tsx b/packages/page-bounties/src/Curator.tsx index e085716b114..2c3b20a05bf 100644 --- a/packages/page-bounties/src/Curator.tsx +++ b/packages/page-bounties/src/Curator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec } from '@polkadot/types/types'; diff --git a/packages/page-bounties/src/Description.tsx b/packages/page-bounties/src/Description.tsx index 440a6d8f679..fcee31491b0 100644 --- a/packages/page-bounties/src/Description.tsx +++ b/packages/page-bounties/src/Description.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-bounties/src/DueBlocks.tsx b/packages/page-bounties/src/DueBlocks.tsx index 2cd32e92a45..0f9a3dbde0e 100644 --- a/packages/page-bounties/src/DueBlocks.tsx +++ b/packages/page-bounties/src/DueBlocks.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-bounties/src/Summary.tsx b/packages/page-bounties/src/Summary.tsx index 0393d6a04a2..75a30aad763 100644 --- a/packages/page-bounties/src/Summary.tsx +++ b/packages/page-bounties/src/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyApi } from './hooks/useBounties.js'; diff --git a/packages/page-bounties/src/VotersColumn.tsx b/packages/page-bounties/src/VotersColumn.tsx index a3d570985ec..401a269c8a8 100644 --- a/packages/page-bounties/src/VotersColumn.tsx +++ b/packages/page-bounties/src/VotersColumn.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/page-bounties/src/helpers/calculateBountyBond.spec.ts b/packages/page-bounties/src/helpers/calculateBountyBond.spec.ts index 84a203cb532..af9fcd481f1 100644 --- a/packages/page-bounties/src/helpers/calculateBountyBond.spec.ts +++ b/packages/page-bounties/src/helpers/calculateBountyBond.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/helpers/calculateBountyBond.ts b/packages/page-bounties/src/helpers/calculateBountyBond.ts index e84a7084dd6..197dbf801c4 100644 --- a/packages/page-bounties/src/helpers/calculateBountyBond.ts +++ b/packages/page-bounties/src/helpers/calculateBountyBond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.spec.ts b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.spec.ts index ea2ac02b9a5..c5f9b5e660b 100644 --- a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.spec.ts +++ b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts index 13611ab1187..d31c7573639 100644 --- a/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts +++ b/packages/page-bounties/src/helpers/determineUnassignCuratorAction.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyStatus } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/helpers/extendedStatuses.ts b/packages/page-bounties/src/helpers/extendedStatuses.ts index 2d74ace95bc..ec01c1c8285 100644 --- a/packages/page-bounties/src/helpers/extendedStatuses.ts +++ b/packages/page-bounties/src/helpers/extendedStatuses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/helpers/getBountyStatus.spec.ts b/packages/page-bounties/src/helpers/getBountyStatus.spec.ts index 79aed611008..7695d6bbf5b 100644 --- a/packages/page-bounties/src/helpers/getBountyStatus.spec.ts +++ b/packages/page-bounties/src/helpers/getBountyStatus.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/helpers/getBountyStatus.ts b/packages/page-bounties/src/helpers/getBountyStatus.ts index 6b8f555ebdf..2d6a56e050c 100644 --- a/packages/page-bounties/src/helpers/getBountyStatus.ts +++ b/packages/page-bounties/src/helpers/getBountyStatus.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyStatus } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/helpers/increaseDateByBlocks.ts b/packages/page-bounties/src/helpers/increaseDateByBlocks.ts index 10d6e42fcf8..db18f4ffa83 100644 --- a/packages/page-bounties/src/helpers/increaseDateByBlocks.ts +++ b/packages/page-bounties/src/helpers/increaseDateByBlocks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-bounties/src/helpers/index.tsx b/packages/page-bounties/src/helpers/index.tsx index 2cf211e65f2..fee70ef0bdc 100644 --- a/packages/page-bounties/src/helpers/index.tsx +++ b/packages/page-bounties/src/helpers/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './calculateBountyBond.js'; diff --git a/packages/page-bounties/src/helpers/isClaimable.spec.ts b/packages/page-bounties/src/helpers/isClaimable.spec.ts index aea83e1cba6..f4d5acceba1 100644 --- a/packages/page-bounties/src/helpers/isClaimable.spec.ts +++ b/packages/page-bounties/src/helpers/isClaimable.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/helpers/isClaimable.ts b/packages/page-bounties/src/helpers/isClaimable.ts index c67f4a2c607..6a759950e64 100644 --- a/packages/page-bounties/src/helpers/isClaimable.ts +++ b/packages/page-bounties/src/helpers/isClaimable.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/helpers/permillOf.ts b/packages/page-bounties/src/helpers/permillOf.ts index 989ef76d9f8..3bed7388286 100644 --- a/packages/page-bounties/src/helpers/permillOf.ts +++ b/packages/page-bounties/src/helpers/permillOf.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-bounties/src/helpers/stringHelpers.ts b/packages/page-bounties/src/helpers/stringHelpers.ts index d03a0ec87b7..e2e36ffecd2 100644 --- a/packages/page-bounties/src/helpers/stringHelpers.ts +++ b/packages/page-bounties/src/helpers/stringHelpers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 export function insertSpaceBeforeCapitalLetter (str: string): string { diff --git a/packages/page-bounties/src/helpers/truncateTitle.spec.ts b/packages/page-bounties/src/helpers/truncateTitle.spec.ts index a6de6e1073c..47d9907ec4f 100644 --- a/packages/page-bounties/src/helpers/truncateTitle.spec.ts +++ b/packages/page-bounties/src/helpers/truncateTitle.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-bounties/src/hooks/index.ts b/packages/page-bounties/src/hooks/index.ts index c1d9f582e8e..b0d5f77e971 100644 --- a/packages/page-bounties/src/hooks/index.ts +++ b/packages/page-bounties/src/hooks/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './useBalance.js'; diff --git a/packages/page-bounties/src/hooks/useBalance.ts b/packages/page-bounties/src/hooks/useBalance.ts index 9b60f733cd1..f8ee959f03f 100644 --- a/packages/page-bounties/src/hooks/useBalance.ts +++ b/packages/page-bounties/src/hooks/useBalance.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/src/hooks/useBounties.tsx b/packages/page-bounties/src/hooks/useBounties.tsx index e7e608cbc7d..f15cc5d154a 100644 --- a/packages/page-bounties/src/hooks/useBounties.tsx +++ b/packages/page-bounties/src/hooks/useBounties.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-bounties/src/hooks/useBountyStatus.ts b/packages/page-bounties/src/hooks/useBountyStatus.ts index a5f2fce60c6..3d4f958ff95 100644 --- a/packages/page-bounties/src/hooks/useBountyStatus.ts +++ b/packages/page-bounties/src/hooks/useBountyStatus.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BountyStatus } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/hooks/useUserRole.ts b/packages/page-bounties/src/hooks/useUserRole.ts index 1b05cfb26c5..83fb215209a 100644 --- a/packages/page-bounties/src/hooks/useUserRole.ts +++ b/packages/page-bounties/src/hooks/useUserRole.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/page-bounties/src/index.tsx b/packages/page-bounties/src/index.tsx index 99b73035ec2..1c55314ddc1 100644 --- a/packages/page-bounties/src/index.tsx +++ b/packages/page-bounties/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-bounties/src/translate.ts b/packages/page-bounties/src/translate.ts index 11583fad44f..96ea29906c1 100644 --- a/packages/page-bounties/src/translate.ts +++ b/packages/page-bounties/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-bounties/src/types.ts b/packages/page-bounties/src/types.ts index b5648b63aaa..b741ca9f61b 100644 --- a/packages/page-bounties/src/types.ts +++ b/packages/page-bounties/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BlockNumber } from '@polkadot/types/interfaces/runtime'; diff --git a/packages/page-bounties/src/useCounter.ts b/packages/page-bounties/src/useCounter.ts index f05b36d009a..e4ceb5b90e9 100644 --- a/packages/page-bounties/src/useCounter.ts +++ b/packages/page-bounties/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBounties } from '@polkadot/api-derive/types'; diff --git a/packages/page-bounties/test/hooks/defaults.ts b/packages/page-bounties/test/hooks/defaults.ts index ab682bb9278..dfd23f2988f 100644 --- a/packages/page-bounties/test/hooks/defaults.ts +++ b/packages/page-bounties/test/hooks/defaults.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global jest */ diff --git a/packages/page-bounties/test/pages/bountiesPage.tsx b/packages/page-bounties/test/pages/bountiesPage.tsx index 97817f09e90..290a0018d88 100644 --- a/packages/page-bounties/test/pages/bountiesPage.tsx +++ b/packages/page-bounties/test/pages/bountiesPage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global jest, expect */ diff --git a/packages/page-bounties/test/utils/clickButtonWithName.ts b/packages/page-bounties/test/utils/clickButtonWithName.ts index 746956d3700..36cc4b7d1f5 100644 --- a/packages/page-bounties/test/utils/clickButtonWithName.ts +++ b/packages/page-bounties/test/utils/clickButtonWithName.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import { fireEvent } from '@testing-library/react'; diff --git a/packages/page-bounties/test/utils/clickElementWithTestId.ts b/packages/page-bounties/test/utils/clickElementWithTestId.ts index 11b26e8af5e..13aef933e8e 100644 --- a/packages/page-bounties/test/utils/clickElementWithTestId.ts +++ b/packages/page-bounties/test/utils/clickElementWithTestId.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import { fireEvent } from '@testing-library/react'; diff --git a/packages/page-bounties/test/utils/clickElementWithText.ts b/packages/page-bounties/test/utils/clickElementWithText.ts index 7d455a067ac..59ff5882b6a 100644 --- a/packages/page-bounties/test/utils/clickElementWithText.ts +++ b/packages/page-bounties/test/utils/clickElementWithText.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import { fireEvent } from '@testing-library/react'; diff --git a/packages/page-broker/src/Overview/CoreTable.tsx b/packages/page-broker/src/Overview/CoreTable.tsx index dd7d2fd7cae..0fa40746e63 100644 --- a/packages/page-broker/src/Overview/CoreTable.tsx +++ b/packages/page-broker/src/Overview/CoreTable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-broker/src/Overview/CoresTables.tsx b/packages/page-broker/src/Overview/CoresTables.tsx index 01a0c224e28..eb0982a548c 100644 --- a/packages/page-broker/src/Overview/CoresTables.tsx +++ b/packages/page-broker/src/Overview/CoresTables.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-broker/src/Overview/Filters.tsx b/packages/page-broker/src/Overview/Filters.tsx index c0880309525..265815bc142 100644 --- a/packages/page-broker/src/Overview/Filters.tsx +++ b/packages/page-broker/src/Overview/Filters.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CoreInfo } from '../types.js'; diff --git a/packages/page-broker/src/Overview/Summary.tsx b/packages/page-broker/src/Overview/Summary.tsx index d9f32ef06cb..ba9d05c2fef 100644 --- a/packages/page-broker/src/Overview/Summary.tsx +++ b/packages/page-broker/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/page-broker/src/Overview/Summary/RegionLength.tsx b/packages/page-broker/src/Overview/Summary/RegionLength.tsx index 369ca149f39..f83f90f7fe7 100644 --- a/packages/page-broker/src/Overview/Summary/RegionLength.tsx +++ b/packages/page-broker/src/Overview/Summary/RegionLength.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletBrokerConfigRecord } from '@polkadot/types/lookup'; diff --git a/packages/page-broker/src/Overview/Summary/Timeslice.tsx b/packages/page-broker/src/Overview/Summary/Timeslice.tsx index 9bdba0878fd..1220045ccc7 100644 --- a/packages/page-broker/src/Overview/Summary/Timeslice.tsx +++ b/packages/page-broker/src/Overview/Summary/Timeslice.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-broker/src/Overview/Summary/TimeslicePeriod.tsx b/packages/page-broker/src/Overview/Summary/TimeslicePeriod.tsx index 2581778ae1a..0d840289d50 100644 --- a/packages/page-broker/src/Overview/Summary/TimeslicePeriod.tsx +++ b/packages/page-broker/src/Overview/Summary/TimeslicePeriod.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-broker/src/Overview/WorkInfoRow.tsx b/packages/page-broker/src/Overview/WorkInfoRow.tsx index 77b7fd7888b..67d33a875c2 100644 --- a/packages/page-broker/src/Overview/WorkInfoRow.tsx +++ b/packages/page-broker/src/Overview/WorkInfoRow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FlagColor } from '@polkadot/react-components/types'; diff --git a/packages/page-broker/src/Overview/Workload.tsx b/packages/page-broker/src/Overview/Workload.tsx index b9f6b6cf710..23b27f61b3f 100644 --- a/packages/page-broker/src/Overview/Workload.tsx +++ b/packages/page-broker/src/Overview/Workload.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-broker/src/Overview/Workplan.tsx b/packages/page-broker/src/Overview/Workplan.tsx index 406be38fd0b..c92b2561158 100644 --- a/packages/page-broker/src/Overview/Workplan.tsx +++ b/packages/page-broker/src/Overview/Workplan.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RegionInfo } from '@polkadot/react-hooks/types'; diff --git a/packages/page-broker/src/Overview/index.tsx b/packages/page-broker/src/Overview/index.tsx index 46b90b64569..20d235d01f3 100644 --- a/packages/page-broker/src/Overview/index.tsx +++ b/packages/page-broker/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CoreWorkload, CoreWorkplan, LegacyLease, Reservation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-broker/src/index.tsx b/packages/page-broker/src/index.tsx index 477aa107155..263c294bf36 100644 --- a/packages/page-broker/src/index.tsx +++ b/packages/page-broker/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TabItem } from '@polkadot/react-components/types'; diff --git a/packages/page-broker/src/translate.ts b/packages/page-broker/src/translate.ts index 6de8c7786c5..2b7f071fbbd 100644 --- a/packages/page-broker/src/translate.ts +++ b/packages/page-broker/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-broker/src/types.ts b/packages/page-broker/src/types.ts index 1adc9581aa2..ec65fee6556 100644 --- a/packages/page-broker/src/types.ts +++ b/packages/page-broker/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CoreTimeTypes } from '@polkadot/react-hooks/constants'; diff --git a/packages/page-broker/src/utils.ts b/packages/page-broker/src/utils.ts index bdd4ed33bf2..cb3fe37818d 100644 --- a/packages/page-broker/src/utils.ts +++ b/packages/page-broker/src/utils.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-broker authors & contributors +// Copyright 2017-2025 @polkadot/app-broker authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainBlockConstants, CoreWorkload, LegacyLease, RegionInfo, Reservation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-calendar/src/Day.tsx b/packages/page-calendar/src/Day.tsx index c381e97ab21..1e01ae25615 100644 --- a/packages/page-calendar/src/Day.tsx +++ b/packages/page-calendar/src/Day.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EntryInfoTyped } from './types.js'; diff --git a/packages/page-calendar/src/DayHour.tsx b/packages/page-calendar/src/DayHour.tsx index d740d489456..26da7a1d011 100644 --- a/packages/page-calendar/src/DayHour.tsx +++ b/packages/page-calendar/src/DayHour.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EntryInfoTyped } from './types.js'; diff --git a/packages/page-calendar/src/DayItem.tsx b/packages/page-calendar/src/DayItem.tsx index bab4c20c791..887ecac88d6 100644 --- a/packages/page-calendar/src/DayItem.tsx +++ b/packages/page-calendar/src/DayItem.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EntryInfoTyped } from './types.js'; diff --git a/packages/page-calendar/src/DayTime.tsx b/packages/page-calendar/src/DayTime.tsx index 4713cceb6e6..40df9a04fbd 100644 --- a/packages/page-calendar/src/DayTime.tsx +++ b/packages/page-calendar/src/DayTime.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/page-calendar/src/Month.tsx b/packages/page-calendar/src/Month.tsx index f419d6470db..9dff8b928dc 100644 --- a/packages/page-calendar/src/Month.tsx +++ b/packages/page-calendar/src/Month.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DateState, EntryInfo } from './types.js'; diff --git a/packages/page-calendar/src/MonthDay.tsx b/packages/page-calendar/src/MonthDay.tsx index 331348c7006..99926c443b3 100644 --- a/packages/page-calendar/src/MonthDay.tsx +++ b/packages/page-calendar/src/MonthDay.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EntryInfo } from './types.js'; diff --git a/packages/page-calendar/src/UpcomingEvents.tsx b/packages/page-calendar/src/UpcomingEvents.tsx index 75a9877c722..1b4f89d9cb0 100644 --- a/packages/page-calendar/src/UpcomingEvents.tsx +++ b/packages/page-calendar/src/UpcomingEvents.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EntryInfoTyped } from './types.js'; diff --git a/packages/page-calendar/src/constants.ts b/packages/page-calendar/src/constants.ts index ca17dc4f51e..0a83eefa490 100644 --- a/packages/page-calendar/src/constants.ts +++ b/packages/page-calendar/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 export const DAYS = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']; diff --git a/packages/page-calendar/src/index.tsx b/packages/page-calendar/src/index.tsx index 066447ce0d7..d26b862c2d1 100644 --- a/packages/page-calendar/src/index.tsx +++ b/packages/page-calendar/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DateState } from './types.js'; diff --git a/packages/page-calendar/src/translate.ts b/packages/page-calendar/src/translate.ts index dbc90849184..b9d447d29a5 100644 --- a/packages/page-calendar/src/translate.ts +++ b/packages/page-calendar/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-calendar/src/types.ts b/packages/page-calendar/src/types.ts index 95e83c6e82e..13b97e62194 100644 --- a/packages/page-calendar/src/types.ts +++ b/packages/page-calendar/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-calendar/src/useScheduled.ts b/packages/page-calendar/src/useScheduled.ts index 11787bec671..78229838866 100644 --- a/packages/page-calendar/src/useScheduled.ts +++ b/packages/page-calendar/src/useScheduled.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal, DeriveDispatch, DeriveReferendumExt, DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-calendar/src/util.ts b/packages/page-calendar/src/util.ts index 189176b5253..14894473aa8 100644 --- a/packages/page-calendar/src/util.ts +++ b/packages/page-calendar/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-calendar authors & contributors +// Copyright 2017-2025 @polkadot/app-calendar authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DateState } from './types.js'; diff --git a/packages/page-claims/src/Attest.tsx b/packages/page-claims/src/Attest.tsx index f1c91a4d0c9..2eac9a07db8 100644 --- a/packages/page-claims/src/Attest.tsx +++ b/packages/page-claims/src/Attest.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TxCallback } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-claims/src/Claim.tsx b/packages/page-claims/src/Claim.tsx index 8bb88277fdd..134e73619f3 100644 --- a/packages/page-claims/src/Claim.tsx +++ b/packages/page-claims/src/Claim.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-claims/src/Statement.tsx b/packages/page-claims/src/Statement.tsx index 65388d724b2..c419e4089de 100644 --- a/packages/page-claims/src/Statement.tsx +++ b/packages/page-claims/src/Statement.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StatementKind } from '@polkadot/types/interfaces'; diff --git a/packages/page-claims/src/Warning.tsx b/packages/page-claims/src/Warning.tsx index 0a7a3dc60a3..419ce599a6e 100644 --- a/packages/page-claims/src/Warning.tsx +++ b/packages/page-claims/src/Warning.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-claims/src/index.tsx b/packages/page-claims/src/index.tsx index e50827b6d55..08e54ab86e4 100644 --- a/packages/page-claims/src/index.tsx +++ b/packages/page-claims/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-claims/src/secp256k1.d.ts b/packages/page-claims/src/secp256k1.d.ts index f99d18ab10c..e9885c46642 100644 --- a/packages/page-claims/src/secp256k1.d.ts +++ b/packages/page-claims/src/secp256k1.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module 'secp256k1/elliptic.js' { diff --git a/packages/page-claims/src/translate.ts b/packages/page-claims/src/translate.ts index a08cbdc9ce0..5529a4c7a83 100644 --- a/packages/page-claims/src/translate.ts +++ b/packages/page-claims/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-claims/src/useCounter.ts b/packages/page-claims/src/useCounter.ts index de1b2431694..79ee124f116 100644 --- a/packages/page-claims/src/useCounter.ts +++ b/packages/page-claims/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createNamedHook } from '@polkadot/react-hooks'; diff --git a/packages/page-claims/src/usePolkadotPreclaims.ts b/packages/page-claims/src/usePolkadotPreclaims.ts index 4a0ddedc940..536357539fa 100644 --- a/packages/page-claims/src/usePolkadotPreclaims.ts +++ b/packages/page-claims/src/usePolkadotPreclaims.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/page-claims/src/util.spec.ts b/packages/page-claims/src/util.spec.ts index 3aaa3591750..510bd1b8f95 100644 --- a/packages/page-claims/src/util.spec.ts +++ b/packages/page-claims/src/util.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-claims/src/util.ts b/packages/page-claims/src/util.ts index c44a08ad97b..f036d727028 100644 --- a/packages/page-claims/src/util.ts +++ b/packages/page-claims/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-claims authors & contributors +// Copyright 2017-2025 @polkadot/app-claims authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EcdsaSignature, EthereumAddress, StatementKind } from '@polkadot/types/interfaces'; diff --git a/packages/page-collator/src/Collator.tsx b/packages/page-collator/src/Collator.tsx index cf46b49cc81..326304bbfdf 100644 --- a/packages/page-collator/src/Collator.tsx +++ b/packages/page-collator/src/Collator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Collator as CollatorType } from './types.js'; diff --git a/packages/page-collator/src/Collators.tsx b/packages/page-collator/src/Collators.tsx index 11fbd02deee..c9a12efd6d8 100644 --- a/packages/page-collator/src/Collators.tsx +++ b/packages/page-collator/src/Collators.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-collator/src/Summary.tsx b/packages/page-collator/src/Summary.tsx index 12516a51b93..fefb40226dc 100644 --- a/packages/page-collator/src/Summary.tsx +++ b/packages/page-collator/src/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-collator/src/index.tsx b/packages/page-collator/src/index.tsx index abfce7d5468..16669d5802a 100644 --- a/packages/page-collator/src/index.tsx +++ b/packages/page-collator/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-collator/src/translate.ts b/packages/page-collator/src/translate.ts index b7f98c06bfa..29266d1bf92 100644 --- a/packages/page-collator/src/translate.ts +++ b/packages/page-collator/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-collator/src/types.ts b/packages/page-collator/src/types.ts index 4cfd135d3ec..3de3f4f3ac1 100644 --- a/packages/page-collator/src/types.ts +++ b/packages/page-collator/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-collator/src/useCollators.ts b/packages/page-collator/src/useCollators.ts index d7d54e4bab1..4637eeb3cd8 100644 --- a/packages/page-collator/src/useCollators.ts +++ b/packages/page-collator/src/useCollators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-collator authors & contributors +// Copyright 2017-2025 @polkadot/app-collator authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BTreeSet } from '@polkadot/types'; diff --git a/packages/page-contracts/src/Codes/Add.tsx b/packages/page-contracts/src/Codes/Add.tsx index d662a806e75..2b4f0e2059f 100644 --- a/packages/page-contracts/src/Codes/Add.tsx +++ b/packages/page-contracts/src/Codes/Add.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-contracts/src/Codes/Code.tsx b/packages/page-contracts/src/Codes/Code.tsx index 6233fe409f6..b3ba0e54c25 100644 --- a/packages/page-contracts/src/Codes/Code.tsx +++ b/packages/page-contracts/src/Codes/Code.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-contracts/src/Codes/Upload.tsx b/packages/page-contracts/src/Codes/Upload.tsx index 3c28cc3014d..dcd6859b195 100644 --- a/packages/page-contracts/src/Codes/Upload.tsx +++ b/packages/page-contracts/src/Codes/Upload.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-contracts/src/Codes/ValidateCode.tsx b/packages/page-contracts/src/Codes/ValidateCode.tsx index e14a1e782cf..65c4b3ed524 100644 --- a/packages/page-contracts/src/Codes/ValidateCode.tsx +++ b/packages/page-contracts/src/Codes/ValidateCode.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 /* eslint-disable camelcase */ diff --git a/packages/page-contracts/src/Codes/index.tsx b/packages/page-contracts/src/Codes/index.tsx index d9bed4e4e36..25d570eadc3 100644 --- a/packages/page-contracts/src/Codes/index.tsx +++ b/packages/page-contracts/src/Codes/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-contracts/src/Contracts/Add.tsx b/packages/page-contracts/src/Contracts/Add.tsx index 66f7ee0f8ba..3ad9c5904c4 100644 --- a/packages/page-contracts/src/Contracts/Add.tsx +++ b/packages/page-contracts/src/Contracts/Add.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-contracts/src/Contracts/Call.tsx b/packages/page-contracts/src/Contracts/Call.tsx index 7b85873e582..83fbe303247 100644 --- a/packages/page-contracts/src/Contracts/Call.tsx +++ b/packages/page-contracts/src/Contracts/Call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-contracts/src/Contracts/Contract.tsx b/packages/page-contracts/src/Contracts/Contract.tsx index 30b9c17e25c..5e6d35fe371 100644 --- a/packages/page-contracts/src/Contracts/Contract.tsx +++ b/packages/page-contracts/src/Contracts/Contract.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ContractPromise } from '@polkadot/api-contract'; diff --git a/packages/page-contracts/src/Contracts/ContractsTable.tsx b/packages/page-contracts/src/Contracts/ContractsTable.tsx index 06299abb255..d809fadf269 100644 --- a/packages/page-contracts/src/Contracts/ContractsTable.tsx +++ b/packages/page-contracts/src/Contracts/ContractsTable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-contracts/src/Contracts/Deploy.tsx b/packages/page-contracts/src/Contracts/Deploy.tsx index bdb5b9c6a75..06dc6e69398 100644 --- a/packages/page-contracts/src/Contracts/Deploy.tsx +++ b/packages/page-contracts/src/Contracts/Deploy.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-contracts/src/Contracts/Outcome.tsx b/packages/page-contracts/src/Contracts/Outcome.tsx index 947d2767cff..ec2b8ba310c 100644 --- a/packages/page-contracts/src/Contracts/Outcome.tsx +++ b/packages/page-contracts/src/Contracts/Outcome.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CallResult } from './types.js'; diff --git a/packages/page-contracts/src/Contracts/Summary.tsx b/packages/page-contracts/src/Contracts/Summary.tsx index 47328cf71ff..ddf82fb2259 100644 --- a/packages/page-contracts/src/Contracts/Summary.tsx +++ b/packages/page-contracts/src/Contracts/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-contracts/src/Contracts/ValidateAddr.tsx b/packages/page-contracts/src/Contracts/ValidateAddr.tsx index 765305fc73d..fc203e13479 100644 --- a/packages/page-contracts/src/Contracts/ValidateAddr.tsx +++ b/packages/page-contracts/src/Contracts/ValidateAddr.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-contracts/src/Contracts/index.tsx b/packages/page-contracts/src/Contracts/index.tsx index 26fd352704d..53aec6b858c 100644 --- a/packages/page-contracts/src/Contracts/index.tsx +++ b/packages/page-contracts/src/Contracts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-contracts/src/Contracts/types.ts b/packages/page-contracts/src/Contracts/types.ts index 88ad59b1b6c..6d082a26735 100644 --- a/packages/page-contracts/src/Contracts/types.ts +++ b/packages/page-contracts/src/Contracts/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AbiMessage, ContractCallOutcome } from '@polkadot/api-contract/types'; diff --git a/packages/page-contracts/src/Contracts/util.tsx b/packages/page-contracts/src/Contracts/util.tsx index 79d6de2b1d2..ba0668ac58a 100644 --- a/packages/page-contracts/src/Contracts/util.tsx +++ b/packages/page-contracts/src/Contracts/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps } from 'semantic-ui-react'; diff --git a/packages/page-contracts/src/RemoveABI.tsx b/packages/page-contracts/src/RemoveABI.tsx index b3288feaf6f..ec49fe34c2b 100644 --- a/packages/page-contracts/src/RemoveABI.tsx +++ b/packages/page-contracts/src/RemoveABI.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CodeStored } from './types.js'; diff --git a/packages/page-contracts/src/constants.ts b/packages/page-contracts/src/constants.ts index 231d414619f..5c825434d84 100644 --- a/packages/page-contracts/src/constants.ts +++ b/packages/page-contracts/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export const ENDOWMENT = 1000; diff --git a/packages/page-contracts/src/index.tsx b/packages/page-contracts/src/index.tsx index 199e3e65acb..16690e29a9d 100644 --- a/packages/page-contracts/src/index.tsx +++ b/packages/page-contracts/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-contracts/src/shared/ABI.tsx b/packages/page-contracts/src/shared/ABI.tsx index c9193cc96b0..613c449e212 100644 --- a/packages/page-contracts/src/shared/ABI.tsx +++ b/packages/page-contracts/src/shared/ABI.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Abi } from '@polkadot/api-contract'; diff --git a/packages/page-contracts/src/shared/CodeRow.tsx b/packages/page-contracts/src/shared/CodeRow.tsx index c73e42b8bf5..914327a5b5f 100644 --- a/packages/page-contracts/src/shared/CodeRow.tsx +++ b/packages/page-contracts/src/shared/CodeRow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CodeStored } from '../types.js'; diff --git a/packages/page-contracts/src/shared/InputMegaGas.tsx b/packages/page-contracts/src/shared/InputMegaGas.tsx index 119c458345d..de59f30233e 100644 --- a/packages/page-contracts/src/shared/InputMegaGas.tsx +++ b/packages/page-contracts/src/shared/InputMegaGas.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WeightV2 } from '@polkadot/types/interfaces'; diff --git a/packages/page-contracts/src/shared/InputName.tsx b/packages/page-contracts/src/shared/InputName.tsx index 4c5cc76d6ff..a22ba4180a2 100644 --- a/packages/page-contracts/src/shared/InputName.tsx +++ b/packages/page-contracts/src/shared/InputName.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-contracts/src/shared/Message.tsx b/packages/page-contracts/src/shared/Message.tsx index b03b623e128..ae8bc2212ed 100644 --- a/packages/page-contracts/src/shared/Message.tsx +++ b/packages/page-contracts/src/shared/Message.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AbiConstructor, ContractCallOutcome } from '@polkadot/api-contract/types'; diff --git a/packages/page-contracts/src/shared/MessageSignature.tsx b/packages/page-contracts/src/shared/MessageSignature.tsx index 27dfcfe73ae..8566b62ea8e 100644 --- a/packages/page-contracts/src/shared/MessageSignature.tsx +++ b/packages/page-contracts/src/shared/MessageSignature.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AbiMessage } from '@polkadot/api-contract/types'; diff --git a/packages/page-contracts/src/shared/Messages.tsx b/packages/page-contracts/src/shared/Messages.tsx index 0d15803c9dd..42dba277fe3 100644 --- a/packages/page-contracts/src/shared/Messages.tsx +++ b/packages/page-contracts/src/shared/Messages.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Abi, ContractPromise } from '@polkadot/api-contract'; diff --git a/packages/page-contracts/src/shared/Params.tsx b/packages/page-contracts/src/shared/Params.tsx index b989f714d40..57a0f17b6a2 100644 --- a/packages/page-contracts/src/shared/Params.tsx +++ b/packages/page-contracts/src/shared/Params.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RawParams } from '@polkadot/react-params/types'; diff --git a/packages/page-contracts/src/shared/index.tsx b/packages/page-contracts/src/shared/index.tsx index 0198f5f7f6d..6b692a24499 100644 --- a/packages/page-contracts/src/shared/index.tsx +++ b/packages/page-contracts/src/shared/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export { default as ABI } from './ABI.js'; diff --git a/packages/page-contracts/src/store.ts b/packages/page-contracts/src/store.ts index 37e1b689f38..9582fa9885a 100644 --- a/packages/page-contracts/src/store.ts +++ b/packages/page-contracts/src/store.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-contracts/src/translate.ts b/packages/page-contracts/src/translate.ts index f9923303ca3..2651b173bd4 100644 --- a/packages/page-contracts/src/translate.ts +++ b/packages/page-contracts/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-contracts/src/types.ts b/packages/page-contracts/src/types.ts index 09302dd7640..6f6f81d30d9 100644 --- a/packages/page-contracts/src/types.ts +++ b/packages/page-contracts/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-contracts authors & contributors +// Copyright 2017-2025 @polkadot/app-contracts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/page-contracts/src/useAbi.ts b/packages/page-contracts/src/useAbi.ts index 82f2db0afc2..b459bf70a89 100644 --- a/packages/page-contracts/src/useAbi.ts +++ b/packages/page-contracts/src/useAbi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useEffect, useState } from 'react'; diff --git a/packages/page-contracts/src/useCodes.ts b/packages/page-contracts/src/useCodes.ts index 9b6df0fefc7..2774ef85a8d 100644 --- a/packages/page-contracts/src/useCodes.ts +++ b/packages/page-contracts/src/useCodes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CodeStored } from './types.js'; diff --git a/packages/page-contracts/src/useContracts.ts b/packages/page-contracts/src/useContracts.ts index b140d2ef0d5..e7a4cbaf10d 100644 --- a/packages/page-contracts/src/useContracts.ts +++ b/packages/page-contracts/src/useContracts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect, useState } from 'react'; diff --git a/packages/page-contracts/src/useWeight.ts b/packages/page-contracts/src/useWeight.ts index 8821703bdde..54f76d743f5 100644 --- a/packages/page-contracts/src/useWeight.ts +++ b/packages/page-contracts/src/useWeight.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Weight, WeightV2 } from '@polkadot/types/interfaces'; diff --git a/packages/page-coretime/src/CoretimeContext.tsx b/packages/page-coretime/src/CoretimeContext.tsx index a92469c71a5..5ca71de1f0b 100644 --- a/packages/page-coretime/src/CoretimeContext.tsx +++ b/packages/page-coretime/src/CoretimeContext.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ReactNode } from 'react'; diff --git a/packages/page-coretime/src/CoretimePage.tsx b/packages/page-coretime/src/CoretimePage.tsx index 5e761f207d3..7021ec1572d 100644 --- a/packages/page-coretime/src/CoretimePage.tsx +++ b/packages/page-coretime/src/CoretimePage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-coretime/src/Overview/Summary.tsx b/packages/page-coretime/src/Overview/Summary.tsx index 48db3b29d67..05fa94b730e 100644 --- a/packages/page-coretime/src/Overview/Summary.tsx +++ b/packages/page-coretime/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BrokerStatus, ChainConstants, CoreDescription, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord, RegionInfo } from '@polkadot/react-hooks/types'; diff --git a/packages/page-coretime/src/Overview/index.tsx b/packages/page-coretime/src/Overview/index.tsx index 8f4b890569b..abf18de638b 100644 --- a/packages/page-coretime/src/Overview/index.tsx +++ b/packages/page-coretime/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainName } from '../types.js'; diff --git a/packages/page-coretime/src/ParachainTableRow.tsx b/packages/page-coretime/src/ParachainTableRow.tsx index 3db146424e7..d1d4c75a558 100644 --- a/packages/page-coretime/src/ParachainTableRow.tsx +++ b/packages/page-coretime/src/ParachainTableRow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainInformation, ChainWorkTaskInformation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-coretime/src/ParachainsTable.tsx b/packages/page-coretime/src/ParachainsTable.tsx index 82188cd1cb1..27a56081537 100644 --- a/packages/page-coretime/src/ParachainsTable.tsx +++ b/packages/page-coretime/src/ParachainsTable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-coretime/src/Row.tsx b/packages/page-coretime/src/Row.tsx index 42c1f3646bd..f88a14b9ae6 100644 --- a/packages/page-coretime/src/Row.tsx +++ b/packages/page-coretime/src/Row.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FlagColor } from '@polkadot/react-components/types'; diff --git a/packages/page-coretime/src/Sale/SaleTable.tsx b/packages/page-coretime/src/Sale/SaleTable.tsx index 9addc70eb30..c6bb7b3c287 100644 --- a/packages/page-coretime/src/Sale/SaleTable.tsx +++ b/packages/page-coretime/src/Sale/SaleTable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SaleDetails } from '../types.js'; diff --git a/packages/page-coretime/src/Sale/Summary.tsx b/packages/page-coretime/src/Sale/Summary.tsx index 5b89836b174..d1dd7f418e5 100644 --- a/packages/page-coretime/src/Sale/Summary.tsx +++ b/packages/page-coretime/src/Sale/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-coretime/src/Sale/index.tsx b/packages/page-coretime/src/Sale/index.tsx index 5b1012006c7..d5d914acc27 100644 --- a/packages/page-coretime/src/Sale/index.tsx +++ b/packages/page-coretime/src/Sale/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ProgressBarSection } from '@polkadot/react-components/types'; diff --git a/packages/page-coretime/src/constants.ts b/packages/page-coretime/src/constants.ts index 0e96ddd2b6c..7980d952e29 100644 --- a/packages/page-coretime/src/constants.ts +++ b/packages/page-coretime/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 export const PhaseName = { diff --git a/packages/page-coretime/src/index.tsx b/packages/page-coretime/src/index.tsx index f71e78ecaf6..8993a867fd9 100644 --- a/packages/page-coretime/src/index.tsx +++ b/packages/page-coretime/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-coretime/src/translate.ts b/packages/page-coretime/src/translate.ts index 125dda4ab07..b165cd9a029 100644 --- a/packages/page-coretime/src/translate.ts +++ b/packages/page-coretime/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-coretime/src/types.ts b/packages/page-coretime/src/types.ts index c765abf645a..b81b80e405e 100644 --- a/packages/page-coretime/src/types.ts +++ b/packages/page-coretime/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PhaseName } from './constants.js'; diff --git a/packages/page-coretime/src/utils/index.ts b/packages/page-coretime/src/utils/index.ts index 9582d6cdfbd..b886168a072 100644 --- a/packages/page-coretime/src/utils/index.ts +++ b/packages/page-coretime/src/utils/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainBlockConstants, ChainConstants, CoretimeInformation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-coretime/src/utils/sale.ts b/packages/page-coretime/src/utils/sale.ts index fe730311e26..3539aaf4da1 100644 --- a/packages/page-coretime/src/utils/sale.ts +++ b/packages/page-coretime/src/utils/sale.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-coretime authors & contributors +// Copyright 2017-2025 @polkadot/app-coretime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainConstants, PalletBrokerConfigRecord, PalletBrokerSaleInfoRecord } from '@polkadot/react-hooks/types'; diff --git a/packages/page-council/src/Motions/Close.tsx b/packages/page-council/src/Motions/Close.tsx index 055105929f0..73dcce3f99a 100644 --- a/packages/page-council/src/Motions/Close.tsx +++ b/packages/page-council/src/Motions/Close.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash, Proposal, ProposalIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-council/src/Motions/Motion.tsx b/packages/page-council/src/Motions/Motion.tsx index 7625e57671d..3ee8cf29a88 100644 --- a/packages/page-council/src/Motions/Motion.tsx +++ b/packages/page-council/src/Motions/Motion.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Motions/ProposeExternal.tsx b/packages/page-council/src/Motions/ProposeExternal.tsx index fe864c94f29..63eab4348eb 100644 --- a/packages/page-council/src/Motions/ProposeExternal.tsx +++ b/packages/page-council/src/Motions/ProposeExternal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-council/src/Motions/ProposeMotion.tsx b/packages/page-council/src/Motions/ProposeMotion.tsx index e627d00947e..6f6951d3f12 100644 --- a/packages/page-council/src/Motions/ProposeMotion.tsx +++ b/packages/page-council/src/Motions/ProposeMotion.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-council/src/Motions/Slashing.tsx b/packages/page-council/src/Motions/Slashing.tsx index a2ef1619d15..405d4b2295a 100644 --- a/packages/page-council/src/Motions/Slashing.tsx +++ b/packages/page-council/src/Motions/Slashing.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-council/src/Motions/Voters.tsx b/packages/page-council/src/Motions/Voters.tsx index 5240e37b292..5e902caadcb 100644 --- a/packages/page-council/src/Motions/Voters.tsx +++ b/packages/page-council/src/Motions/Voters.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, MemberCount } from '@polkadot/types/interfaces'; diff --git a/packages/page-council/src/Motions/Voting.tsx b/packages/page-council/src/Motions/Voting.tsx index b15096e3aad..a186416fc8c 100644 --- a/packages/page-council/src/Motions/Voting.tsx +++ b/packages/page-council/src/Motions/Voting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Hash, Proposal, ProposalIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-council/src/Motions/index.tsx b/packages/page-council/src/Motions/index.tsx index 8deac614894..3243bb83193 100644 --- a/packages/page-council/src/Motions/index.tsx +++ b/packages/page-council/src/Motions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/Candidate.tsx b/packages/page-council/src/Overview/Candidate.tsx index 1881111f500..25384c2a6a4 100644 --- a/packages/page-council/src/Overview/Candidate.tsx +++ b/packages/page-council/src/Overview/Candidate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance } from '@polkadot/types/interfaces'; diff --git a/packages/page-council/src/Overview/Candidates.tsx b/packages/page-council/src/Overview/Candidates.tsx index 15284346d53..8f2f83e3c11 100644 --- a/packages/page-council/src/Overview/Candidates.tsx +++ b/packages/page-council/src/Overview/Candidates.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/Members.tsx b/packages/page-council/src/Overview/Members.tsx index e42f8fd6fe4..d4de5347b43 100644 --- a/packages/page-council/src/Overview/Members.tsx +++ b/packages/page-council/src/Overview/Members.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/SubmitCandidacy.tsx b/packages/page-council/src/Overview/SubmitCandidacy.tsx index f36c4217954..c746a69799c 100644 --- a/packages/page-council/src/Overview/SubmitCandidacy.tsx +++ b/packages/page-council/src/Overview/SubmitCandidacy.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u128 } from '@polkadot/types'; diff --git a/packages/page-council/src/Overview/Summary.tsx b/packages/page-council/src/Overview/Summary.tsx index 318f19c69e2..23cf675f374 100644 --- a/packages/page-council/src/Overview/Summary.tsx +++ b/packages/page-council/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/Vote.tsx b/packages/page-council/src/Overview/Vote.tsx index 22321f6a9e5..2f097c4ebee 100644 --- a/packages/page-council/src/Overview/Vote.tsx +++ b/packages/page-council/src/Overview/Vote.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/Voters.tsx b/packages/page-council/src/Overview/Voters.tsx index 3ad823188b8..8b2592f347d 100644 --- a/packages/page-council/src/Overview/Voters.tsx +++ b/packages/page-council/src/Overview/Voters.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance } from '@polkadot/types/interfaces'; diff --git a/packages/page-council/src/Overview/index.tsx b/packages/page-council/src/Overview/index.tsx index 8ba56fd3cfb..123a564c433 100644 --- a/packages/page-council/src/Overview/index.tsx +++ b/packages/page-council/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCouncilVotes, DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/Overview/types.ts b/packages/page-council/src/Overview/types.ts index 5c13128f718..a41aad14c73 100644 --- a/packages/page-council/src/Overview/types.ts +++ b/packages/page-council/src/Overview/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveElectionsInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/index.tsx b/packages/page-council/src/index.tsx index bc7a2ea5403..eb0a1da34e8 100644 --- a/packages/page-council/src/index.tsx +++ b/packages/page-council/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/translate.ts b/packages/page-council/src/translate.ts index 95b41d2734f..554f60a4b9d 100644 --- a/packages/page-council/src/translate.ts +++ b/packages/page-council/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-council/src/useCounter.ts b/packages/page-council/src/useCounter.ts index 9235ac8cbe8..998da6a5ba6 100644 --- a/packages/page-council/src/useCounter.ts +++ b/packages/page-council/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-council/src/useModuleElections.ts b/packages/page-council/src/useModuleElections.ts index e889da35f94..18048389740 100644 --- a/packages/page-council/src/useModuleElections.ts +++ b/packages/page-council/src/useModuleElections.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-council authors & contributors +// Copyright 2017-2025 @polkadot/app-council authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo } from 'react'; diff --git a/packages/page-democracy/src/Overview/External.tsx b/packages/page-democracy/src/Overview/External.tsx index 9b3842a34f3..4bd369511ea 100644 --- a/packages/page-democracy/src/Overview/External.tsx +++ b/packages/page-democracy/src/Overview/External.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposalExternal } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/ExternalCell.tsx b/packages/page-democracy/src/Overview/ExternalCell.tsx index b504b101deb..2cfa5473481 100644 --- a/packages/page-democracy/src/Overview/ExternalCell.tsx +++ b/packages/page-democracy/src/Overview/ExternalCell.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposalImage } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Externals.tsx b/packages/page-democracy/src/Overview/Externals.tsx index 654bd7e463a..160d695fe2b 100644 --- a/packages/page-democracy/src/Overview/Externals.tsx +++ b/packages/page-democracy/src/Overview/Externals.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposalExternal } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Fasttrack.tsx b/packages/page-democracy/src/Overview/Fasttrack.tsx index eaa6273c379..d845a5c20f2 100644 --- a/packages/page-democracy/src/Overview/Fasttrack.tsx +++ b/packages/page-democracy/src/Overview/Fasttrack.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-democracy/src/Overview/PreImage.tsx b/packages/page-democracy/src/Overview/PreImage.tsx index c2c140dba9e..ffdde2de095 100644 --- a/packages/page-democracy/src/Overview/PreImage.tsx +++ b/packages/page-democracy/src/Overview/PreImage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/promise/types'; diff --git a/packages/page-democracy/src/Overview/PreImageButton.tsx b/packages/page-democracy/src/Overview/PreImageButton.tsx index 09ff45da054..3fc7fd0cc13 100644 --- a/packages/page-democracy/src/Overview/PreImageButton.tsx +++ b/packages/page-democracy/src/Overview/PreImageButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-democracy/src/Overview/Proposal.tsx b/packages/page-democracy/src/Overview/Proposal.tsx index 825ee6994a4..1124942d3a5 100644 --- a/packages/page-democracy/src/Overview/Proposal.tsx +++ b/packages/page-democracy/src/Overview/Proposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/ProposalCell.tsx b/packages/page-democracy/src/Overview/ProposalCell.tsx index 763fd85b0a8..d9360e5eb15 100644 --- a/packages/page-democracy/src/Overview/ProposalCell.tsx +++ b/packages/page-democracy/src/Overview/ProposalCell.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Compact } from '@polkadot/types'; diff --git a/packages/page-democracy/src/Overview/Proposals.tsx b/packages/page-democracy/src/Overview/Proposals.tsx index b150d274c27..b470e7dff30 100644 --- a/packages/page-democracy/src/Overview/Proposals.tsx +++ b/packages/page-democracy/src/Overview/Proposals.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Propose.tsx b/packages/page-democracy/src/Overview/Propose.tsx index 6a1e3a002b1..3826055a4dc 100644 --- a/packages/page-democracy/src/Overview/Propose.tsx +++ b/packages/page-democracy/src/Overview/Propose.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-democracy/src/Overview/Referendum.tsx b/packages/page-democracy/src/Overview/Referendum.tsx index 9aa0e972aa7..956a2caf04e 100644 --- a/packages/page-democracy/src/Overview/Referendum.tsx +++ b/packages/page-democracy/src/Overview/Referendum.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveReferendumExt } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/ReferendumVote.tsx b/packages/page-democracy/src/Overview/ReferendumVote.tsx index bd31fd53320..5c820206fd4 100644 --- a/packages/page-democracy/src/Overview/ReferendumVote.tsx +++ b/packages/page-democracy/src/Overview/ReferendumVote.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveReferendumVote } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/ReferendumVotes.tsx b/packages/page-democracy/src/Overview/ReferendumVotes.tsx index 60ae0929b36..47a1434d7ee 100644 --- a/packages/page-democracy/src/Overview/ReferendumVotes.tsx +++ b/packages/page-democracy/src/Overview/ReferendumVotes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveReferendumVote } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Referendums.tsx b/packages/page-democracy/src/Overview/Referendums.tsx index 8851033b132..5c159e6785c 100644 --- a/packages/page-democracy/src/Overview/Referendums.tsx +++ b/packages/page-democracy/src/Overview/Referendums.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveReferendumExt } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Seconding.tsx b/packages/page-democracy/src/Overview/Seconding.tsx index e38368e2b94..5e4988068dd 100644 --- a/packages/page-democracy/src/Overview/Seconding.tsx +++ b/packages/page-democracy/src/Overview/Seconding.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveProposalImage } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/Overview/Summary.tsx b/packages/page-democracy/src/Overview/Summary.tsx index 8daddb16ec3..6bf5477409b 100644 --- a/packages/page-democracy/src/Overview/Summary.tsx +++ b/packages/page-democracy/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-democracy/src/Overview/TreasuryCell.tsx b/packages/page-democracy/src/Overview/TreasuryCell.tsx index a3cda87ebe0..3858c19a0f2 100644 --- a/packages/page-democracy/src/Overview/TreasuryCell.tsx +++ b/packages/page-democracy/src/Overview/TreasuryCell.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Compact, Option } from '@polkadot/types'; diff --git a/packages/page-democracy/src/Overview/Voting.tsx b/packages/page-democracy/src/Overview/Voting.tsx index 4c208856970..35b9edba5ab 100644 --- a/packages/page-democracy/src/Overview/Voting.tsx +++ b/packages/page-democracy/src/Overview/Voting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PropIndex, Proposal } from '@polkadot/types/interfaces'; diff --git a/packages/page-democracy/src/Overview/index.tsx b/packages/page-democracy/src/Overview/index.tsx index a309efed842..385c1354ed6 100644 --- a/packages/page-democracy/src/Overview/index.tsx +++ b/packages/page-democracy/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveReferendumExt } from '@polkadot/api-derive/types'; diff --git a/packages/page-democracy/src/index.tsx b/packages/page-democracy/src/index.tsx index eebe02f7bf4..9156f035cd7 100644 --- a/packages/page-democracy/src/index.tsx +++ b/packages/page-democracy/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/page-democracy/src/translate.ts b/packages/page-democracy/src/translate.ts index fa7acc9ece2..13643e2f9fb 100644 --- a/packages/page-democracy/src/translate.ts +++ b/packages/page-democracy/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-democracy/src/useChangeCalc.ts b/packages/page-democracy/src/useChangeCalc.ts index ca5f273172d..b4faabb0736 100644 --- a/packages/page-democracy/src/useChangeCalc.ts +++ b/packages/page-democracy/src/useChangeCalc.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { VoteThreshold } from '@polkadot/types/interfaces'; diff --git a/packages/page-democracy/src/useCounter.ts b/packages/page-democracy/src/useCounter.ts index 32a57232b79..5b4fd8a0d0c 100644 --- a/packages/page-democracy/src/useCounter.ts +++ b/packages/page-democracy/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect, useState } from 'react'; diff --git a/packages/page-democracy/src/util.spec.ts b/packages/page-democracy/src/util.spec.ts index 8d699de640f..46aab2dccc9 100644 --- a/packages/page-democracy/src/util.spec.ts +++ b/packages/page-democracy/src/util.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-democracy/src/util.ts b/packages/page-democracy/src/util.ts index d611a4df04c..7ec3ad51cfc 100644 --- a/packages/page-democracy/src/util.ts +++ b/packages/page-democracy/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { VoteThreshold } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/Api/index.tsx b/packages/page-explorer/src/Api/index.tsx index c91c66ad518..ddae51abca5 100644 --- a/packages/page-explorer/src/Api/index.tsx +++ b/packages/page-explorer/src/Api/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartOptions } from 'chart.js'; diff --git a/packages/page-explorer/src/BestHash.tsx b/packages/page-explorer/src/BestHash.tsx index 148967d9f13..d40c1e01068 100644 --- a/packages/page-explorer/src/BestHash.tsx +++ b/packages/page-explorer/src/BestHash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Header } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/BlockHeader.tsx b/packages/page-explorer/src/BlockHeader.tsx index c0b643bda31..5a37a05996a 100644 --- a/packages/page-explorer/src/BlockHeader.tsx +++ b/packages/page-explorer/src/BlockHeader.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderExtended } from '@polkadot/api-derive/types'; diff --git a/packages/page-explorer/src/BlockHeaders.tsx b/packages/page-explorer/src/BlockHeaders.tsx index af72f6a2427..f637b7501a1 100644 --- a/packages/page-explorer/src/BlockHeaders.tsx +++ b/packages/page-explorer/src/BlockHeaders.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderExtended } from '@polkadot/api-derive/types'; diff --git a/packages/page-explorer/src/BlockInfo/ByHash.tsx b/packages/page-explorer/src/BlockInfo/ByHash.tsx index aee6bf0e018..02f88914866 100644 --- a/packages/page-explorer/src/BlockInfo/ByHash.tsx +++ b/packages/page-explorer/src/BlockInfo/ByHash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderExtended } from '@polkadot/api-derive/types'; diff --git a/packages/page-explorer/src/BlockInfo/ByNumber.tsx b/packages/page-explorer/src/BlockInfo/ByNumber.tsx index 4d61ddc40f3..5eea3816e5c 100644 --- a/packages/page-explorer/src/BlockInfo/ByNumber.tsx +++ b/packages/page-explorer/src/BlockInfo/ByNumber.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/BlockInfo/Extrinsic.tsx b/packages/page-explorer/src/BlockInfo/Extrinsic.tsx index f326ae8052c..7476b658255 100644 --- a/packages/page-explorer/src/BlockInfo/Extrinsic.tsx +++ b/packages/page-explorer/src/BlockInfo/Extrinsic.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyedEvent } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/page-explorer/src/BlockInfo/Extrinsics.tsx b/packages/page-explorer/src/BlockInfo/Extrinsics.tsx index 53eb25c038b..bf448990b8b 100644 --- a/packages/page-explorer/src/BlockInfo/Extrinsics.tsx +++ b/packages/page-explorer/src/BlockInfo/Extrinsics.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyedEvent } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/page-explorer/src/BlockInfo/Justifications.tsx b/packages/page-explorer/src/BlockInfo/Justifications.tsx index d205eb3fcf9..c6932cafdf4 100644 --- a/packages/page-explorer/src/BlockInfo/Justifications.tsx +++ b/packages/page-explorer/src/BlockInfo/Justifications.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, Tuple } from '@polkadot/types'; diff --git a/packages/page-explorer/src/BlockInfo/Logs.tsx b/packages/page-explorer/src/BlockInfo/Logs.tsx index d61be3419c0..c09d0656946 100644 --- a/packages/page-explorer/src/BlockInfo/Logs.tsx +++ b/packages/page-explorer/src/BlockInfo/Logs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DigestItem } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/BlockInfo/Summary.tsx b/packages/page-explorer/src/BlockInfo/Summary.tsx index 1b1a6a40fc5..6b1b14f5341 100644 --- a/packages/page-explorer/src/BlockInfo/Summary.tsx +++ b/packages/page-explorer/src/BlockInfo/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyedEvent } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/page-explorer/src/BlockInfo/index.tsx b/packages/page-explorer/src/BlockInfo/index.tsx index 3f00f18c07f..8997b0b08da 100644 --- a/packages/page-explorer/src/BlockInfo/index.tsx +++ b/packages/page-explorer/src/BlockInfo/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/page-explorer/src/Event.tsx b/packages/page-explorer/src/Event.tsx index 1541c6e1c9e..a8e231e9838 100644 --- a/packages/page-explorer/src/Event.tsx +++ b/packages/page-explorer/src/Event.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { EventRecord } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/Events.tsx b/packages/page-explorer/src/Events.tsx index d9c12391d95..53b38cdf7b8 100644 --- a/packages/page-explorer/src/Events.tsx +++ b/packages/page-explorer/src/Events.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyedEvent } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/page-explorer/src/Forks.tsx b/packages/page-explorer/src/Forks.tsx index 40c9d489580..d58f44d550b 100644 --- a/packages/page-explorer/src/Forks.tsx +++ b/packages/page-explorer/src/Forks.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Header } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/Latency/Chart.tsx b/packages/page-explorer/src/Latency/Chart.tsx index 5afaad3cff6..fc76a7ba7e9 100644 --- a/packages/page-explorer/src/Latency/Chart.tsx +++ b/packages/page-explorer/src/Latency/Chart.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartOptions } from 'chart.js'; diff --git a/packages/page-explorer/src/Latency/index.tsx b/packages/page-explorer/src/Latency/index.tsx index 5df0dd9a31a..d3a87078b66 100644 --- a/packages/page-explorer/src/Latency/index.tsx +++ b/packages/page-explorer/src/Latency/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartContents, Detail } from './types.js'; diff --git a/packages/page-explorer/src/Latency/types.ts b/packages/page-explorer/src/Latency/types.ts index 36b24c56cbe..cb5c6f02a64 100644 --- a/packages/page-explorer/src/Latency/types.ts +++ b/packages/page-explorer/src/Latency/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/Latency/useLatency.ts b/packages/page-explorer/src/Latency/useLatency.ts index 66a5a0d6813..b74af6837ae 100644 --- a/packages/page-explorer/src/Latency/useLatency.ts +++ b/packages/page-explorer/src/Latency/useLatency.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-explorer/src/Main.tsx b/packages/page-explorer/src/Main.tsx index 11fa5fb1326..6cea381a669 100644 --- a/packages/page-explorer/src/Main.tsx +++ b/packages/page-explorer/src/Main.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderExtended } from '@polkadot/api-derive/types'; diff --git a/packages/page-explorer/src/NodeInfo/Peers.tsx b/packages/page-explorer/src/NodeInfo/Peers.tsx index 131c0ef4a33..002d3e93125 100644 --- a/packages/page-explorer/src/NodeInfo/Peers.tsx +++ b/packages/page-explorer/src/NodeInfo/Peers.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PeerInfo } from '@polkadot/types/interfaces'; diff --git a/packages/page-explorer/src/NodeInfo/Summary.tsx b/packages/page-explorer/src/NodeInfo/Summary.tsx index a03179fac79..50ec000a6f0 100644 --- a/packages/page-explorer/src/NodeInfo/Summary.tsx +++ b/packages/page-explorer/src/NodeInfo/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Info } from './types.js'; diff --git a/packages/page-explorer/src/NodeInfo/index.tsx b/packages/page-explorer/src/NodeInfo/index.tsx index ad10a307699..10ae6570785 100644 --- a/packages/page-explorer/src/NodeInfo/index.tsx +++ b/packages/page-explorer/src/NodeInfo/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-explorer/src/NodeInfo/types.ts b/packages/page-explorer/src/NodeInfo/types.ts index 8e80386a7c6..a0610affeba 100644 --- a/packages/page-explorer/src/NodeInfo/types.ts +++ b/packages/page-explorer/src/NodeInfo/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Vec } from '@polkadot/types'; diff --git a/packages/page-explorer/src/Query.tsx b/packages/page-explorer/src/Query.tsx index 2c7d9a6885f..243147fcde7 100644 --- a/packages/page-explorer/src/Query.tsx +++ b/packages/page-explorer/src/Query.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-explorer/src/Summary.tsx b/packages/page-explorer/src/Summary.tsx index 44d1683c7cc..d9bf57aec78 100644 --- a/packages/page-explorer/src/Summary.tsx +++ b/packages/page-explorer/src/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-explorer/src/SummarySession.tsx b/packages/page-explorer/src/SummarySession.tsx index bdf7f3b5c3a..010ee885509 100644 --- a/packages/page-explorer/src/SummarySession.tsx +++ b/packages/page-explorer/src/SummarySession.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-explorer/src/index.tsx b/packages/page-explorer/src/index.tsx index 8323d6299fd..608eaae8722 100644 --- a/packages/page-explorer/src/index.tsx +++ b/packages/page-explorer/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TabItem } from '@polkadot/react-components/types'; diff --git a/packages/page-explorer/src/translate.ts b/packages/page-explorer/src/translate.ts index 1038f4f1346..9d77f66ea1f 100644 --- a/packages/page-explorer/src/translate.ts +++ b/packages/page-explorer/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-extrinsics/src/Decoded.tsx b/packages/page-extrinsics/src/Decoded.tsx index 4eae339dfbf..69285cf9659 100644 --- a/packages/page-extrinsics/src/Decoded.tsx +++ b/packages/page-extrinsics/src/Decoded.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-extrinsics/src/Decoder.tsx b/packages/page-extrinsics/src/Decoder.tsx index cfa2ef84140..3fbea04bc85 100644 --- a/packages/page-extrinsics/src/Decoder.tsx +++ b/packages/page-extrinsics/src/Decoder.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-extrinsics/src/Submission.tsx b/packages/page-extrinsics/src/Submission.tsx index 5f287f15853..3c209c1f4e9 100644 --- a/packages/page-extrinsics/src/Submission.tsx +++ b/packages/page-extrinsics/src/Submission.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-extrinsics/src/index.tsx b/packages/page-extrinsics/src/index.tsx index 9dfb10dd9b6..3bd4b983b2a 100644 --- a/packages/page-extrinsics/src/index.tsx +++ b/packages/page-extrinsics/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props, TabItem } from '@polkadot/react-components/types'; diff --git a/packages/page-extrinsics/src/translate.ts b/packages/page-extrinsics/src/translate.ts index b5e9ed7dcd6..3f3ef66d061 100644 --- a/packages/page-extrinsics/src/translate.ts +++ b/packages/page-extrinsics/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-extrinsics/src/types.ts b/packages/page-extrinsics/src/types.ts index ae981d7cdc4..901b3d5b433 100644 --- a/packages/page-extrinsics/src/types.ts +++ b/packages/page-extrinsics/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-fellowship/src/index.tsx b/packages/page-fellowship/src/index.tsx index 842c2255dd7..8c152256469 100644 --- a/packages/page-fellowship/src/index.tsx +++ b/packages/page-fellowship/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-fellowship authors & contributors +// Copyright 2017-2025 @polkadot/app-fellowship authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-fellowship/src/useCounter.ts b/packages/page-fellowship/src/useCounter.ts index 2d7fba35306..94c5f3f6c33 100644 --- a/packages/page-fellowship/src/useCounter.ts +++ b/packages/page-fellowship/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCounterNamed } from '@polkadot/app-referenda/useCounter'; diff --git a/packages/page-files/src/CrustFiles.tsx b/packages/page-files/src/CrustFiles.tsx index 1a79819ebd1..4379b26a1e2 100644 --- a/packages/page-files/src/CrustFiles.tsx +++ b/packages/page-files/src/CrustFiles.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatusBase } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-files/src/Progress.tsx b/packages/page-files/src/Progress.tsx index abcc2ce4993..78340a26ff1 100644 --- a/packages/page-files/src/Progress.tsx +++ b/packages/page-files/src/Progress.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CSSProperties } from 'react'; diff --git a/packages/page-files/src/UploadModal.tsx b/packages/page-files/src/UploadModal.tsx index b4e747e01a3..80e2694460d 100644 --- a/packages/page-files/src/UploadModal.tsx +++ b/packages/page-files/src/UploadModal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CancelTokenSource } from 'axios'; diff --git a/packages/page-files/src/hooks.ts b/packages/page-files/src/hooks.ts index d4dedf7cf6a..1b2c72de119 100644 --- a/packages/page-files/src/hooks.ts +++ b/packages/page-files/src/hooks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SaveFile } from './types.js'; diff --git a/packages/page-files/src/index.tsx b/packages/page-files/src/index.tsx index d259c196c87..57121e6d0d3 100644 --- a/packages/page-files/src/index.tsx +++ b/packages/page-files/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyedEvent } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/page-files/src/translate.ts b/packages/page-files/src/translate.ts index 37982b4cdb3..c1d66ee33df 100644 --- a/packages/page-files/src/translate.ts +++ b/packages/page-files/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-files/src/types.ts b/packages/page-files/src/types.ts index c81f5d5e50f..d96ad31638f 100644 --- a/packages/page-files/src/types.ts +++ b/packages/page-files/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-files authors & contributors +// Copyright 2017-2025 @polkadot/app-files authors & contributors // SPDX-License-Identifier: Apache-2.0 export interface UploadRes { diff --git a/packages/page-gilt/src/Overview/BidAdd.tsx b/packages/page-gilt/src/Overview/BidAdd.tsx index ea451f41178..34b4b449f06 100644 --- a/packages/page-gilt/src/Overview/BidAdd.tsx +++ b/packages/page-gilt/src/Overview/BidAdd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32, u128 } from '@polkadot/types'; diff --git a/packages/page-gilt/src/Overview/Queue.tsx b/packages/page-gilt/src/Overview/Queue.tsx index 0e2bedd50ec..872ee84464d 100644 --- a/packages/page-gilt/src/Overview/Queue.tsx +++ b/packages/page-gilt/src/Overview/Queue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTotal } from './types.js'; diff --git a/packages/page-gilt/src/Overview/Queues.tsx b/packages/page-gilt/src/Overview/Queues.tsx index 2ea888832c4..b8b63b420f0 100644 --- a/packages/page-gilt/src/Overview/Queues.tsx +++ b/packages/page-gilt/src/Overview/Queues.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTotal } from './types.js'; diff --git a/packages/page-gilt/src/Overview/Summary.tsx b/packages/page-gilt/src/Overview/Summary.tsx index 97359858f4b..e04e845f321 100644 --- a/packages/page-gilt/src/Overview/Summary.tsx +++ b/packages/page-gilt/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u128 } from '@polkadot/types'; diff --git a/packages/page-gilt/src/Overview/index.tsx b/packages/page-gilt/src/Overview/index.tsx index 938e3b3807c..c4251d1f2db 100644 --- a/packages/page-gilt/src/Overview/index.tsx +++ b/packages/page-gilt/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/page-gilt/src/Overview/types.ts b/packages/page-gilt/src/Overview/types.ts index 9183eee7ae2..11b8d2f4c93 100644 --- a/packages/page-gilt/src/Overview/types.ts +++ b/packages/page-gilt/src/Overview/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActiveGiltsTotal, BalanceOf } from '@polkadot/types/interfaces'; diff --git a/packages/page-gilt/src/Overview/useInfo.ts b/packages/page-gilt/src/Overview/useInfo.ts index 7343728fb6c..e8d290e4419 100644 --- a/packages/page-gilt/src/Overview/useInfo.ts +++ b/packages/page-gilt/src/Overview/useInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-gilt/src/index.tsx b/packages/page-gilt/src/index.tsx index 8e869b5c414..9752d1ea4bc 100644 --- a/packages/page-gilt/src/index.tsx +++ b/packages/page-gilt/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-gilt/src/translate.ts b/packages/page-gilt/src/translate.ts index 2ed40cce41c..eb8078d0cf7 100644 --- a/packages/page-gilt/src/translate.ts +++ b/packages/page-gilt/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-gilt/src/useProxies.ts b/packages/page-gilt/src/useProxies.ts index de7cb82932e..98ff7bf9eff 100644 --- a/packages/page-gilt/src/useProxies.ts +++ b/packages/page-gilt/src/useProxies.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-gilt authors & contributors +// Copyright 2017-2025 @polkadot/app-gilt authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Vec } from '@polkadot/types'; diff --git a/packages/page-js/src/ActionButtons.tsx b/packages/page-js/src/ActionButtons.tsx index 967ccb0eccf..037db6c2433 100644 --- a/packages/page-js/src/ActionButtons.tsx +++ b/packages/page-js/src/ActionButtons.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-js/src/Output.tsx b/packages/page-js/src/Output.tsx index 036d99643e6..af09b2a88d0 100644 --- a/packages/page-js/src/Output.tsx +++ b/packages/page-js/src/Output.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Log } from './types.js'; diff --git a/packages/page-js/src/Playground.tsx b/packages/page-js/src/Playground.tsx index 4e398079917..5cc8afe795f 100644 --- a/packages/page-js/src/Playground.tsx +++ b/packages/page-js/src/Playground.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-js/src/constants.tsx b/packages/page-js/src/constants.tsx index fad7aae3603..5f4ec7e4229 100644 --- a/packages/page-js/src/constants.tsx +++ b/packages/page-js/src/constants.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StrictLabelProps } from 'semantic-ui-react'; diff --git a/packages/page-js/src/index.tsx b/packages/page-js/src/index.tsx index 2d63c3b8e11..19a99e598ca 100644 --- a/packages/page-js/src/index.tsx +++ b/packages/page-js/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-js/src/snippets/consts-examples.ts b/packages/page-js/src/snippets/consts-examples.ts index a1a5973b815..90d366897cc 100644 --- a/packages/page-js/src/snippets/consts-examples.ts +++ b/packages/page-js/src/snippets/consts-examples.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Snippet } from '../types.js'; diff --git a/packages/page-js/src/snippets/extrinsics-examples.ts b/packages/page-js/src/snippets/extrinsics-examples.ts index 7ace604fb0e..8fa572dc318 100644 --- a/packages/page-js/src/snippets/extrinsics-examples.ts +++ b/packages/page-js/src/snippets/extrinsics-examples.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Snippet } from '../types.js'; diff --git a/packages/page-js/src/snippets/index.ts b/packages/page-js/src/snippets/index.ts index 033f8f27885..7c5b250be8b 100644 --- a/packages/page-js/src/snippets/index.ts +++ b/packages/page-js/src/snippets/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import { constsStakingParameters } from './consts-examples.js'; diff --git a/packages/page-js/src/snippets/rpc-examples.ts b/packages/page-js/src/snippets/rpc-examples.ts index 64e2d0907c8..c039f88250d 100644 --- a/packages/page-js/src/snippets/rpc-examples.ts +++ b/packages/page-js/src/snippets/rpc-examples.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Snippet } from '../types.js'; diff --git a/packages/page-js/src/snippets/storage-examples.ts b/packages/page-js/src/snippets/storage-examples.ts index 7b1288f9390..b9560442678 100644 --- a/packages/page-js/src/snippets/storage-examples.ts +++ b/packages/page-js/src/snippets/storage-examples.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StrictLabelProps } from 'semantic-ui-react'; diff --git a/packages/page-js/src/snippets/transfer.ts b/packages/page-js/src/snippets/transfer.ts index e0019f717fd..7aa51a16712 100644 --- a/packages/page-js/src/snippets/transfer.ts +++ b/packages/page-js/src/snippets/transfer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 export default `// transfer diff --git a/packages/page-js/src/snippets/wrapping.ts b/packages/page-js/src/snippets/wrapping.ts index e9804cf0b47..a630942b222 100644 --- a/packages/page-js/src/snippets/wrapping.ts +++ b/packages/page-js/src/snippets/wrapping.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 export function makeWrapper (isDevelopment: boolean): string { diff --git a/packages/page-js/src/translate.ts b/packages/page-js/src/translate.ts index 757137ca0cf..c048bc5a0e9 100644 --- a/packages/page-js/src/translate.ts +++ b/packages/page-js/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-js/src/types.ts b/packages/page-js/src/types.ts index c71b19103e9..becc39ec788 100644 --- a/packages/page-js/src/types.ts +++ b/packages/page-js/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps, StrictLabelProps } from 'semantic-ui-react'; diff --git a/packages/page-membership/src/index.tsx b/packages/page-membership/src/index.tsx index b97053b4268..1f4af6b99a0 100644 --- a/packages/page-membership/src/index.tsx +++ b/packages/page-membership/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-membership authors & contributors +// Copyright 2017-2025 @polkadot/app-membership authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-membership/src/useCounter.ts b/packages/page-membership/src/useCounter.ts index 4a82259c93c..0d44288efef 100644 --- a/packages/page-membership/src/useCounter.ts +++ b/packages/page-membership/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-membership authors & contributors +// Copyright 2017-2025 @polkadot/app-membership authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-nfts/src/AccountItems/Item.tsx b/packages/page-nfts/src/AccountItems/Item.tsx index b2792814e13..71cc7745713 100644 --- a/packages/page-nfts/src/AccountItems/Item.tsx +++ b/packages/page-nfts/src/AccountItems/Item.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ItemInfo } from './types.js'; diff --git a/packages/page-nfts/src/AccountItems/index.tsx b/packages/page-nfts/src/AccountItems/index.tsx index f4ccc6c8654..2e9f1f2bbd4 100644 --- a/packages/page-nfts/src/AccountItems/index.tsx +++ b/packages/page-nfts/src/AccountItems/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectionInfo, CollectionInfoComplete } from '../types.js'; diff --git a/packages/page-nfts/src/AccountItems/types.ts b/packages/page-nfts/src/AccountItems/types.ts index 0a2413a2f00..be9f72fab3c 100644 --- a/packages/page-nfts/src/AccountItems/types.ts +++ b/packages/page-nfts/src/AccountItems/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/page-nfts/src/AccountItems/useAccountItems.ts b/packages/page-nfts/src/AccountItems/useAccountItems.ts index d98f031dfe5..c397f9d41d4 100644 --- a/packages/page-nfts/src/AccountItems/useAccountItems.ts +++ b/packages/page-nfts/src/AccountItems/useAccountItems.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageKey, u32 } from '@polkadot/types'; diff --git a/packages/page-nfts/src/AccountItems/useItemsInfos.ts b/packages/page-nfts/src/AccountItems/useItemsInfos.ts index 1975df39569..d4af3e7d7ce 100644 --- a/packages/page-nfts/src/AccountItems/useItemsInfos.ts +++ b/packages/page-nfts/src/AccountItems/useItemsInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-nfts/src/Overview/Collection.tsx b/packages/page-nfts/src/Overview/Collection.tsx index 937a0b0dbe2..99c6c6c9e76 100644 --- a/packages/page-nfts/src/Overview/Collection.tsx +++ b/packages/page-nfts/src/Overview/Collection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-nfts/src/Overview/Collections.tsx b/packages/page-nfts/src/Overview/Collections.tsx index 83f1326b96b..97f33559890 100644 --- a/packages/page-nfts/src/Overview/Collections.tsx +++ b/packages/page-nfts/src/Overview/Collections.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectionInfo } from '../types.js'; diff --git a/packages/page-nfts/src/Overview/Summary.tsx b/packages/page-nfts/src/Overview/Summary.tsx index 69267118cdd..1bcb0aca4f6 100644 --- a/packages/page-nfts/src/Overview/Summary.tsx +++ b/packages/page-nfts/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-nfts/src/Overview/index.tsx b/packages/page-nfts/src/Overview/index.tsx index bf52d385d9d..e46a25ffcab 100644 --- a/packages/page-nfts/src/Overview/index.tsx +++ b/packages/page-nfts/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-nfts/src/index.tsx b/packages/page-nfts/src/index.tsx index 322f4faac1c..d99a97ad6cf 100644 --- a/packages/page-nfts/src/index.tsx +++ b/packages/page-nfts/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/api-augment/substrate'; diff --git a/packages/page-nfts/src/translate.ts b/packages/page-nfts/src/translate.ts index 87ec7ced5ba..b2174738682 100644 --- a/packages/page-nfts/src/translate.ts +++ b/packages/page-nfts/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-nfts/src/types.ts b/packages/page-nfts/src/types.ts index c0cb41df6a0..93c3c20aaf5 100644 --- a/packages/page-nfts/src/types.ts +++ b/packages/page-nfts/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/page-nfts/src/useCollectionIds.ts b/packages/page-nfts/src/useCollectionIds.ts index 234465c0cda..541b1038dcb 100644 --- a/packages/page-nfts/src/useCollectionIds.ts +++ b/packages/page-nfts/src/useCollectionIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-nfts/src/useCollectionInfos.ts b/packages/page-nfts/src/useCollectionInfos.ts index eb2a732c131..378c4b6157b 100644 --- a/packages/page-nfts/src/useCollectionInfos.ts +++ b/packages/page-nfts/src/useCollectionInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nfts authors & contributors +// Copyright 2017-2025 @polkadot/app-nfts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-nis/src/Overview/BidAdd.tsx b/packages/page-nis/src/Overview/BidAdd.tsx index c9317b325a4..3fd518fae24 100644 --- a/packages/page-nis/src/Overview/BidAdd.tsx +++ b/packages/page-nis/src/Overview/BidAdd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-nis/src/Overview/Queue.tsx b/packages/page-nis/src/Overview/Queue.tsx index 79d5e109a7b..339705c3d4a 100644 --- a/packages/page-nis/src/Overview/Queue.tsx +++ b/packages/page-nis/src/Overview/Queue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTotal } from './types.js'; diff --git a/packages/page-nis/src/Overview/Queues.tsx b/packages/page-nis/src/Overview/Queues.tsx index efcfb00c416..d6b6d67b0ae 100644 --- a/packages/page-nis/src/Overview/Queues.tsx +++ b/packages/page-nis/src/Overview/Queues.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTotal } from './types.js'; diff --git a/packages/page-nis/src/Overview/Summary.tsx b/packages/page-nis/src/Overview/Summary.tsx index 933531aa7c4..11d0160dcdc 100644 --- a/packages/page-nis/src/Overview/Summary.tsx +++ b/packages/page-nis/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { NisInfo } from './types.js'; diff --git a/packages/page-nis/src/Overview/index.tsx b/packages/page-nis/src/Overview/index.tsx index e0ceef14175..c0951397f3d 100644 --- a/packages/page-nis/src/Overview/index.tsx +++ b/packages/page-nis/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-nis/src/Overview/types.ts b/packages/page-nis/src/Overview/types.ts index 8f62bfe2265..3fdb96b3d65 100644 --- a/packages/page-nis/src/Overview/types.ts +++ b/packages/page-nis/src/Overview/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32, u128 } from '@polkadot/types'; diff --git a/packages/page-nis/src/Overview/useInfo.ts b/packages/page-nis/src/Overview/useInfo.ts index a8936800fb3..ab3fbff03fe 100644 --- a/packages/page-nis/src/Overview/useInfo.ts +++ b/packages/page-nis/src/Overview/useInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32, u128 } from '@polkadot/types'; diff --git a/packages/page-nis/src/index.tsx b/packages/page-nis/src/index.tsx index 7d1c2ad62de..006d690b993 100644 --- a/packages/page-nis/src/index.tsx +++ b/packages/page-nis/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-nis/src/translate.ts b/packages/page-nis/src/translate.ts index 50563ecfef8..64baf3c0769 100644 --- a/packages/page-nis/src/translate.ts +++ b/packages/page-nis/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-nis/src/useProxies.ts b/packages/page-nis/src/useProxies.ts index 93991ce02c5..7c084a10c06 100644 --- a/packages/page-nis/src/useProxies.ts +++ b/packages/page-nis/src/useProxies.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-nis authors & contributors +// Copyright 2017-2025 @polkadot/app-nis authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Vec } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Auctions/Auction.tsx b/packages/page-parachains/src/Auctions/Auction.tsx index 7dacb41bf76..6e822aa061f 100644 --- a/packages/page-parachains/src/Auctions/Auction.tsx +++ b/packages/page-parachains/src/Auctions/Auction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Auctions/Bid.tsx b/packages/page-parachains/src/Auctions/Bid.tsx index 995183dce0e..393803c4fa7 100644 --- a/packages/page-parachains/src/Auctions/Bid.tsx +++ b/packages/page-parachains/src/Auctions/Bid.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Auctions/Summary.tsx b/packages/page-parachains/src/Auctions/Summary.tsx index 76444a96369..443096311da 100644 --- a/packages/page-parachains/src/Auctions/Summary.tsx +++ b/packages/page-parachains/src/Auctions/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Auctions/WinRange.tsx b/packages/page-parachains/src/Auctions/WinRange.tsx index eabc8a739de..f4db0816280 100644 --- a/packages/page-parachains/src/Auctions/WinRange.tsx +++ b/packages/page-parachains/src/Auctions/WinRange.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Auctions/index.tsx b/packages/page-parachains/src/Auctions/index.tsx index 6bdf6d91b16..e0aff41c427 100644 --- a/packages/page-parachains/src/Auctions/index.tsx +++ b/packages/page-parachains/src/Auctions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AuctionInfo, Campaigns, OwnedId, Winning } from '../types.js'; diff --git a/packages/page-parachains/src/Crowdloan/Contribute.tsx b/packages/page-parachains/src/Crowdloan/Contribute.tsx index 2e665c6d98c..550df562bf1 100644 --- a/packages/page-parachains/src/Crowdloan/Contribute.tsx +++ b/packages/page-parachains/src/Crowdloan/Contribute.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-parachains/src/Crowdloan/Fund.tsx b/packages/page-parachains/src/Crowdloan/Fund.tsx index 6696c62519a..2b8048d7eee 100644 --- a/packages/page-parachains/src/Crowdloan/Fund.tsx +++ b/packages/page-parachains/src/Crowdloan/Fund.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Crowdloan/FundAdd.tsx b/packages/page-parachains/src/Crowdloan/FundAdd.tsx index 932e446b7e7..2edcb34bdba 100644 --- a/packages/page-parachains/src/Crowdloan/FundAdd.tsx +++ b/packages/page-parachains/src/Crowdloan/FundAdd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Crowdloan/Funds.tsx b/packages/page-parachains/src/Crowdloan/Funds.tsx index 004c6bccc0a..a29fba5dfe7 100644 --- a/packages/page-parachains/src/Crowdloan/Funds.tsx +++ b/packages/page-parachains/src/Crowdloan/Funds.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Crowdloan/Refund.tsx b/packages/page-parachains/src/Crowdloan/Refund.tsx index 8df1110b8f0..bbcf1438755 100644 --- a/packages/page-parachains/src/Crowdloan/Refund.tsx +++ b/packages/page-parachains/src/Crowdloan/Refund.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Crowdloan/Summary.tsx b/packages/page-parachains/src/Crowdloan/Summary.tsx index c33cc812b69..acdc9d1582f 100644 --- a/packages/page-parachains/src/Crowdloan/Summary.tsx +++ b/packages/page-parachains/src/Crowdloan/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Crowdloan/index.tsx b/packages/page-parachains/src/Crowdloan/index.tsx index 45c294bf401..f718450f167 100644 --- a/packages/page-parachains/src/Crowdloan/index.tsx +++ b/packages/page-parachains/src/Crowdloan/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AuctionInfo, Campaigns, LeasePeriod, OwnedId } from '../types.js'; diff --git a/packages/page-parachains/src/Crowdloan/useContributions.ts b/packages/page-parachains/src/Crowdloan/useContributions.ts index 9d59ff14f3e..8d5cc468360 100644 --- a/packages/page-parachains/src/Crowdloan/useContributions.ts +++ b/packages/page-parachains/src/Crowdloan/useContributions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveContributions, DeriveOwnContributions } from '@polkadot/api-derive/types'; diff --git a/packages/page-parachains/src/InputOwner.tsx b/packages/page-parachains/src/InputOwner.tsx index 097fae2dfab..eb391f49d95 100644 --- a/packages/page-parachains/src/InputOwner.tsx +++ b/packages/page-parachains/src/InputOwner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OwnedId, OwnerInfo } from './types.js'; diff --git a/packages/page-parachains/src/Overview/LeaseBlocks.tsx b/packages/page-parachains/src/Overview/LeaseBlocks.tsx index fde12964216..7ed5455f667 100644 --- a/packages/page-parachains/src/Overview/LeaseBlocks.tsx +++ b/packages/page-parachains/src/Overview/LeaseBlocks.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Overview/Lifecycle.tsx b/packages/page-parachains/src/Overview/Lifecycle.tsx index 830616a214b..daa51bf4fef 100644 --- a/packages/page-parachains/src/Overview/Lifecycle.tsx +++ b/packages/page-parachains/src/Overview/Lifecycle.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PolkadotRuntimeParachainsParasParaLifecycle } from '@polkadot/types/lookup'; diff --git a/packages/page-parachains/src/Overview/Parachain.tsx b/packages/page-parachains/src/Overview/Parachain.tsx index e479bf491eb..1604509eea9 100644 --- a/packages/page-parachains/src/Overview/Parachain.tsx +++ b/packages/page-parachains/src/Overview/Parachain.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, GroupIndex, ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/ParachainInfo.tsx b/packages/page-parachains/src/Overview/ParachainInfo.tsx index 6fabd38eb35..155462946ef 100644 --- a/packages/page-parachains/src/Overview/ParachainInfo.tsx +++ b/packages/page-parachains/src/Overview/ParachainInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/Parachains.tsx b/packages/page-parachains/src/Overview/Parachains.tsx index 545a13d0292..f6060cb036a 100644 --- a/packages/page-parachains/src/Overview/Parachains.tsx +++ b/packages/page-parachains/src/Overview/Parachains.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/Periods.tsx b/packages/page-parachains/src/Overview/Periods.tsx index ae11f62db54..e2f0c424f57 100644 --- a/packages/page-parachains/src/Overview/Periods.tsx +++ b/packages/page-parachains/src/Overview/Periods.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Overview/Summary.tsx b/packages/page-parachains/src/Overview/Summary.tsx index 8bf62a12840..58fe259093b 100644 --- a/packages/page-parachains/src/Overview/Summary.tsx +++ b/packages/page-parachains/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LeasePeriod } from '../types.js'; diff --git a/packages/page-parachains/src/Overview/index.tsx b/packages/page-parachains/src/Overview/index.tsx index 34981c0b784..55982be5539 100644 --- a/packages/page-parachains/src/Overview/index.tsx +++ b/packages/page-parachains/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/types.ts b/packages/page-parachains/src/Overview/types.ts index 9acdb5af8d2..244dec291e3 100644 --- a/packages/page-parachains/src/Overview/types.ts +++ b/packages/page-parachains/src/Overview/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, ParaValidatorIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/useChainDetails.ts b/packages/page-parachains/src/Overview/useChainDetails.ts index 6169bea1c63..6126c14d68f 100644 --- a/packages/page-parachains/src/Overview/useChainDetails.ts +++ b/packages/page-parachains/src/Overview/useChainDetails.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber, Header, ParaId, RuntimeVersion } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Overview/useEvents.ts b/packages/page-parachains/src/Overview/useEvents.ts index 3b08c5a16b7..99cd81ade95 100644 --- a/packages/page-parachains/src/Overview/useEvents.ts +++ b/packages/page-parachains/src/Overview/useEvents.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-parachains/src/Overview/useParaInfo.ts b/packages/page-parachains/src/Overview/useParaInfo.ts index 1fe6f2ba8df..0325d34bed7 100644 --- a/packages/page-parachains/src/Overview/useParaInfo.ts +++ b/packages/page-parachains/src/Overview/useParaInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, Vec } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Overview/useValidators.ts b/packages/page-parachains/src/Overview/useValidators.ts index dbc21fd0e84..507081d12db 100644 --- a/packages/page-parachains/src/Overview/useValidators.ts +++ b/packages/page-parachains/src/Overview/useValidators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, CoreAssignment, GroupIndex, ParaId, ParaValidatorIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Parathreads/Actions.tsx b/packages/page-parachains/src/Parathreads/Actions.tsx index 858f13a8a0e..bdecaf8c833 100644 --- a/packages/page-parachains/src/Parathreads/Actions.tsx +++ b/packages/page-parachains/src/Parathreads/Actions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Parathreads/Parathread.tsx b/packages/page-parachains/src/Parathreads/Parathread.tsx index b9cd7c3b866..10d41a64c7a 100644 --- a/packages/page-parachains/src/Parathreads/Parathread.tsx +++ b/packages/page-parachains/src/Parathreads/Parathread.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Parathreads/RegisterId.tsx b/packages/page-parachains/src/Parathreads/RegisterId.tsx index 2efb2b32152..285931d9aeb 100644 --- a/packages/page-parachains/src/Parathreads/RegisterId.tsx +++ b/packages/page-parachains/src/Parathreads/RegisterId.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u128 } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Parathreads/RegisterThread.tsx b/packages/page-parachains/src/Parathreads/RegisterThread.tsx index f4bfae9ac5e..e77aa1b0ecb 100644 --- a/packages/page-parachains/src/Parathreads/RegisterThread.tsx +++ b/packages/page-parachains/src/Parathreads/RegisterThread.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BalanceOf } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Parathreads/constants.tsx b/packages/page-parachains/src/Parathreads/constants.tsx index ce540997e65..c56f1a2eb05 100644 --- a/packages/page-parachains/src/Parathreads/constants.tsx +++ b/packages/page-parachains/src/Parathreads/constants.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import { BN, BN_ONE, BN_THOUSAND } from '@polkadot/util'; diff --git a/packages/page-parachains/src/Parathreads/index.tsx b/packages/page-parachains/src/Parathreads/index.tsx index ea16ca0451b..7af028c94b5 100644 --- a/packages/page-parachains/src/Parathreads/index.tsx +++ b/packages/page-parachains/src/Parathreads/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Parathreads/useParaMap.ts b/packages/page-parachains/src/Parathreads/useParaMap.ts index 6fcc2862726..95a92652e70 100644 --- a/packages/page-parachains/src/Parathreads/useParaMap.ts +++ b/packages/page-parachains/src/Parathreads/useParaMap.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Parathreads/useThreadInfo.ts b/packages/page-parachains/src/Parathreads/useThreadInfo.ts index 53c2942fce6..5bc670d2658 100644 --- a/packages/page-parachains/src/Parathreads/useThreadInfo.ts +++ b/packages/page-parachains/src/Parathreads/useThreadInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Proposals/Actions.tsx b/packages/page-parachains/src/Proposals/Actions.tsx index cec2ac44809..4a15becc94d 100644 --- a/packages/page-parachains/src/Proposals/Actions.tsx +++ b/packages/page-parachains/src/Proposals/Actions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-parachains/src/Proposals/Proposal.tsx b/packages/page-parachains/src/Proposals/Proposal.tsx index 5fe6048cc6b..8703665218a 100644 --- a/packages/page-parachains/src/Proposals/Proposal.tsx +++ b/packages/page-parachains/src/Proposals/Proposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/Proposals/Proposals.tsx b/packages/page-parachains/src/Proposals/Proposals.tsx index 9a3367029bf..e8553a21474 100644 --- a/packages/page-parachains/src/Proposals/Proposals.tsx +++ b/packages/page-parachains/src/Proposals/Proposals.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Proposals as UseProposals } from '../types.js'; diff --git a/packages/page-parachains/src/Proposals/Propose.tsx b/packages/page-parachains/src/Proposals/Propose.tsx index 09a66dab47c..17875a1f95b 100644 --- a/packages/page-parachains/src/Proposals/Propose.tsx +++ b/packages/page-parachains/src/Proposals/Propose.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-parachains/src/Proposals/index.tsx b/packages/page-parachains/src/Proposals/index.tsx index 05799078623..9dcc3df7b31 100644 --- a/packages/page-parachains/src/Proposals/index.tsx +++ b/packages/page-parachains/src/Proposals/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Proposals } from '../types.js'; diff --git a/packages/page-parachains/src/Proposals/useProposal.ts b/packages/page-parachains/src/Proposals/useProposal.ts index f6855149787..9f2f0bb86fd 100644 --- a/packages/page-parachains/src/Proposals/useProposal.ts +++ b/packages/page-parachains/src/Proposals/useProposal.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-parachains/src/Teleport.tsx b/packages/page-parachains/src/Teleport.tsx index dd0cf030a66..f440ba56bb9 100644 --- a/packages/page-parachains/src/Teleport.tsx +++ b/packages/page-parachains/src/Teleport.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-parachains/src/constants.ts b/packages/page-parachains/src/constants.ts index 7404c7bacb0..a4b639d1593 100644 --- a/packages/page-parachains/src/constants.ts +++ b/packages/page-parachains/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import { stringToU8a } from '@polkadot/util'; diff --git a/packages/page-parachains/src/index.tsx b/packages/page-parachains/src/index.tsx index 3f6e6a40321..d5591e3be5d 100644 --- a/packages/page-parachains/src/index.tsx +++ b/packages/page-parachains/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/api-augment/substrate'; diff --git a/packages/page-parachains/src/translate.ts b/packages/page-parachains/src/translate.ts index 8a20d19661b..5b7c3cb44d5 100644 --- a/packages/page-parachains/src/translate.ts +++ b/packages/page-parachains/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-parachains/src/types.ts b/packages/page-parachains/src/types.ts index 0175ff9fe66..643c242d3b6 100644 --- a/packages/page-parachains/src/types.ts +++ b/packages/page-parachains/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AuctionIndex, BalanceOf, BlockNumber, LeasePeriodOf, ParachainProposal, ParaId, SessionIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/useActionsQueue.ts b/packages/page-parachains/src/useActionsQueue.ts index 0429a46974d..924408b3367 100644 --- a/packages/page-parachains/src/useActionsQueue.ts +++ b/packages/page-parachains/src/useActionsQueue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParaId, SessionIndex } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/useAuctionInfo.tsx b/packages/page-parachains/src/useAuctionInfo.tsx index ede24c521f2..1723c4cc305 100644 --- a/packages/page-parachains/src/useAuctionInfo.tsx +++ b/packages/page-parachains/src/useAuctionInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useFunds.ts b/packages/page-parachains/src/useFunds.ts index 6cf997c0662..3f9ac3ef942 100644 --- a/packages/page-parachains/src/useFunds.ts +++ b/packages/page-parachains/src/useFunds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useLeasePeriod.ts b/packages/page-parachains/src/useLeasePeriod.ts index 5eb8e544357..2dc4acfe634 100644 --- a/packages/page-parachains/src/useLeasePeriod.ts +++ b/packages/page-parachains/src/useLeasePeriod.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/page-parachains/src/useLeaseRanges.ts b/packages/page-parachains/src/useLeaseRanges.ts index 76e1c3a3d88..6354d375511 100644 --- a/packages/page-parachains/src/useLeaseRanges.ts +++ b/packages/page-parachains/src/useLeaseRanges.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useOwnedIds.ts b/packages/page-parachains/src/useOwnedIds.ts index 8030a73e027..26a6a8d5003 100644 --- a/packages/page-parachains/src/useOwnedIds.ts +++ b/packages/page-parachains/src/useOwnedIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useProposals.ts b/packages/page-parachains/src/useProposals.ts index a45900bd6dd..5183d911c9b 100644 --- a/packages/page-parachains/src/useProposals.ts +++ b/packages/page-parachains/src/useProposals.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageKey } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useUpcomingIds.ts b/packages/page-parachains/src/useUpcomingIds.ts index 782428549b8..6d5e5d81acf 100644 --- a/packages/page-parachains/src/useUpcomingIds.ts +++ b/packages/page-parachains/src/useUpcomingIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-parachains/src/useWinningData.ts b/packages/page-parachains/src/useWinningData.ts index 5aefa6c7cdb..99d403e6047 100644 --- a/packages/page-parachains/src/useWinningData.ts +++ b/packages/page-parachains/src/useWinningData.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-parachains/src/util.ts b/packages/page-parachains/src/util.ts index 83eaf8a7f91..18dee00d5c8 100644 --- a/packages/page-parachains/src/util.ts +++ b/packages/page-parachains/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-parachains authors & contributors +// Copyright 2017-2025 @polkadot/app-parachains authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec } from '@polkadot/types/types'; diff --git a/packages/page-poll/src/index.tsx b/packages/page-poll/src/index.tsx index 4758e4eea51..07b2a36e093 100644 --- a/packages/page-poll/src/index.tsx +++ b/packages/page-poll/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-poll authors & contributors +// Copyright 2017-2025 @polkadot/app-poll authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Approvals, Balance, BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/page-poll/src/translate.ts b/packages/page-poll/src/translate.ts index aa4522988d2..54af8f9cf33 100644 --- a/packages/page-poll/src/translate.ts +++ b/packages/page-poll/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-poll authors & contributors +// Copyright 2017-2025 @polkadot/app-poll authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-preimages/src/Preimages/Add/Partial.tsx b/packages/page-preimages/src/Preimages/Add/Partial.tsx index c90af3c6502..fc62b3286f5 100644 --- a/packages/page-preimages/src/Preimages/Add/Partial.tsx +++ b/packages/page-preimages/src/Preimages/Add/Partial.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-preimages/src/Preimages/Add/index.tsx b/packages/page-preimages/src/Preimages/Add/index.tsx index c29d4bc73ae..56acb0fe167 100644 --- a/packages/page-preimages/src/Preimages/Add/index.tsx +++ b/packages/page-preimages/src/Preimages/Add/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HashState } from './types.js'; diff --git a/packages/page-preimages/src/Preimages/Add/types.ts b/packages/page-preimages/src/Preimages/Add/types.ts index e4dec0cade7..4ff6ae3dff7 100644 --- a/packages/page-preimages/src/Preimages/Add/types.ts +++ b/packages/page-preimages/src/Preimages/Add/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-preimages/src/Preimages/Call.tsx b/packages/page-preimages/src/Preimages/Call.tsx index 0acf6dd9b63..76f6eff0a90 100644 --- a/packages/page-preimages/src/Preimages/Call.tsx +++ b/packages/page-preimages/src/Preimages/Call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Preimage } from '@polkadot/react-hooks/types'; diff --git a/packages/page-preimages/src/Preimages/Free.tsx b/packages/page-preimages/src/Preimages/Free.tsx index 5d3f3e50859..c725c2b39da 100644 --- a/packages/page-preimages/src/Preimages/Free.tsx +++ b/packages/page-preimages/src/Preimages/Free.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Preimage } from '@polkadot/react-hooks/types'; diff --git a/packages/page-preimages/src/Preimages/Hash.tsx b/packages/page-preimages/src/Preimages/Hash.tsx index 48ff1475e71..488c9c6d8e9 100644 --- a/packages/page-preimages/src/Preimages/Hash.tsx +++ b/packages/page-preimages/src/Preimages/Hash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/page-preimages/src/Preimages/Preimage.tsx b/packages/page-preimages/src/Preimages/Preimage.tsx index f64ed2699ab..4144228adc8 100644 --- a/packages/page-preimages/src/Preimages/Preimage.tsx +++ b/packages/page-preimages/src/Preimages/Preimage.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/page-preimages/src/Preimages/Summary.tsx b/packages/page-preimages/src/Preimages/Summary.tsx index 5b4f450c6ea..6f57772c08e 100644 --- a/packages/page-preimages/src/Preimages/Summary.tsx +++ b/packages/page-preimages/src/Preimages/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-preimages/src/Preimages/index.tsx b/packages/page-preimages/src/Preimages/index.tsx index 9a5f1ebd7d8..2eacaba67da 100644 --- a/packages/page-preimages/src/Preimages/index.tsx +++ b/packages/page-preimages/src/Preimages/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-preimages/src/index.tsx b/packages/page-preimages/src/index.tsx index fa41ee67798..f30b57f4f89 100644 --- a/packages/page-preimages/src/index.tsx +++ b/packages/page-preimages/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-preimages/src/translate.ts b/packages/page-preimages/src/translate.ts index d5359f7a61d..cb0a268d944 100644 --- a/packages/page-preimages/src/translate.ts +++ b/packages/page-preimages/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-preimages/src/usePreimages.ts b/packages/page-preimages/src/usePreimages.ts index 911ee6167c8..9ae7d42b70c 100644 --- a/packages/page-preimages/src/usePreimages.ts +++ b/packages/page-preimages/src/usePreimages.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-ranked/src/App.tsx b/packages/page-ranked/src/App.tsx index 68c2e8222cd..3d7cd710b02 100644 --- a/packages/page-ranked/src/App.tsx +++ b/packages/page-ranked/src/App.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletColl, PalletPoll } from './types.js'; diff --git a/packages/page-ranked/src/Members/Member.tsx b/packages/page-ranked/src/Members/Member.tsx index 9055aaa88cb..9c8245cf895 100644 --- a/packages/page-ranked/src/Members/Member.tsx +++ b/packages/page-ranked/src/Members/Member.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FlagColor } from '@polkadot/react-components/types'; diff --git a/packages/page-ranked/src/Members/Summary.tsx b/packages/page-ranked/src/Members/Summary.tsx index 595e4b60c84..a72569f4696 100644 --- a/packages/page-ranked/src/Members/Summary.tsx +++ b/packages/page-ranked/src/Members/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Member as MemberType } from '../types.js'; diff --git a/packages/page-ranked/src/Members/index.tsx b/packages/page-ranked/src/Members/index.tsx index 98637cd484c..3a9f3860882 100644 --- a/packages/page-ranked/src/Members/index.tsx +++ b/packages/page-ranked/src/Members/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Member as MemberType } from '../types.js'; diff --git a/packages/page-ranked/src/index.tsx b/packages/page-ranked/src/index.tsx index 15a14fce126..90418f2ee19 100644 --- a/packages/page-ranked/src/index.tsx +++ b/packages/page-ranked/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-ranked/src/translate.ts b/packages/page-ranked/src/translate.ts index cfe52508137..da7280dfcad 100644 --- a/packages/page-ranked/src/translate.ts +++ b/packages/page-ranked/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-ranked/src/types.ts b/packages/page-ranked/src/types.ts index 4edd0135632..4aa37ee2945 100644 --- a/packages/page-ranked/src/types.ts +++ b/packages/page-ranked/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletRankedCollectiveMemberRecord } from '@polkadot/types/lookup'; diff --git a/packages/page-ranked/src/useCounter.ts b/packages/page-ranked/src/useCounter.ts index a41af09ef2c..b88d2335fd5 100644 --- a/packages/page-ranked/src/useCounter.ts +++ b/packages/page-ranked/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-ranked authors & contributors +// Copyright 2017-2025 @polkadot/app-ranked authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCounterNamed } from '@polkadot/app-referenda/useCounter'; diff --git a/packages/page-ranked/src/useMemberIds.ts b/packages/page-ranked/src/useMemberIds.ts index 66b5f30392a..23fff370116 100644 --- a/packages/page-ranked/src/useMemberIds.ts +++ b/packages/page-ranked/src/useMemberIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-ranked/src/useMembers.ts b/packages/page-ranked/src/useMembers.ts index f7516f15eca..0b51f99d095 100644 --- a/packages/page-ranked/src/useMembers.ts +++ b/packages/page-ranked/src/useMembers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-referenda/src/Referenda/Delegate/Activity.tsx b/packages/page-referenda/src/Referenda/Delegate/Activity.tsx index 5ce31b43395..f7bc302cb37 100644 --- a/packages/page-referenda/src/Referenda/Delegate/Activity.tsx +++ b/packages/page-referenda/src/Referenda/Delegate/Activity.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferenda, TrackDescription, TrackInfoExt } from '../../types.js'; diff --git a/packages/page-referenda/src/Referenda/Delegate/index.tsx b/packages/page-referenda/src/Referenda/Delegate/index.tsx index 489c6a2f16f..338e351aca5 100644 --- a/packages/page-referenda/src/Referenda/Delegate/index.tsx +++ b/packages/page-referenda/src/Referenda/Delegate/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BatchOptions } from '@polkadot/react-hooks/types'; diff --git a/packages/page-referenda/src/Referenda/Delegate/types.ts b/packages/page-referenda/src/Referenda/Delegate/types.ts index 9b733f26d67..ee52047da8a 100644 --- a/packages/page-referenda/src/Referenda/Delegate/types.ts +++ b/packages/page-referenda/src/Referenda/Delegate/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletConvictionVotingVoteVoting } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useActivity.ts b/packages/page-referenda/src/Referenda/Delegate/useActivity.ts index 9967a5b45e6..4569d37c6a6 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useActivity.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useActivity.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletVote } from '../../types.js'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useActivityAccount.ts b/packages/page-referenda/src/Referenda/Delegate/useActivityAccount.ts index 5c2915c1344..d7ae17d5663 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useActivityAccount.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useActivityAccount.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletVote } from '../../types.js'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useActivityFellows.ts b/packages/page-referenda/src/Referenda/Delegate/useActivityFellows.ts index beb947ee49d..8537c9ccc24 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useActivityFellows.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useActivityFellows.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletVote } from '../../types.js'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useActivityNominators.ts b/packages/page-referenda/src/Referenda/Delegate/useActivityNominators.ts index 6728d188860..4f9d3ca4a84 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useActivityNominators.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useActivityNominators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletVote } from '../../types.js'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useFellows.ts b/packages/page-referenda/src/Referenda/Delegate/useFellows.ts index e5bc38defc8..74315f25f15 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useFellows.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useFellows.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageKey } from '@polkadot/types'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useNominators.ts b/packages/page-referenda/src/Referenda/Delegate/useNominators.ts index bbd5f7e2e69..6182fc7d81b 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useNominators.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useNominators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useSuperIds.ts b/packages/page-referenda/src/Referenda/Delegate/useSuperIds.ts index 665188fed81..c80cc3d8b99 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useSuperIds.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useSuperIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts b/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts index 47450e2a045..d9b85c7b9af 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useVotingFor.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletConvictionVotingVoteVoting } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/Delegate/useVotingLocks.ts b/packages/page-referenda/src/Referenda/Delegate/useVotingLocks.ts index 98f5fbeb448..f2552068227 100644 --- a/packages/page-referenda/src/Referenda/Delegate/useVotingLocks.ts +++ b/packages/page-referenda/src/Referenda/Delegate/useVotingLocks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { INumber } from '@polkadot/types/types'; diff --git a/packages/page-referenda/src/Referenda/Deposits/Place.tsx b/packages/page-referenda/src/Referenda/Deposits/Place.tsx index 6203ffc7fd3..21b138934fc 100644 --- a/packages/page-referenda/src/Referenda/Deposits/Place.tsx +++ b/packages/page-referenda/src/Referenda/Deposits/Place.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaTrackInfo } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/Deposits/Refund.tsx b/packages/page-referenda/src/Referenda/Deposits/Refund.tsx index 7bbd3b08fa2..016eb1392be 100644 --- a/packages/page-referenda/src/Referenda/Deposits/Refund.tsx +++ b/packages/page-referenda/src/Referenda/Deposits/Refund.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Deposits/index.tsx b/packages/page-referenda/src/Referenda/Deposits/index.tsx index 1fe9aa51c56..6562c135273 100644 --- a/packages/page-referenda/src/Referenda/Deposits/index.tsx +++ b/packages/page-referenda/src/Referenda/Deposits/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaDeposit, PalletReferendaTrackInfo } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/Group.tsx b/packages/page-referenda/src/Referenda/Group.tsx index 93ae53a1f7b..ca6f1eac1c8 100644 --- a/packages/page-referenda/src/Referenda/Group.tsx +++ b/packages/page-referenda/src/Referenda/Group.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/RefEnd.tsx b/packages/page-referenda/src/Referenda/RefEnd.tsx index 0192adc4db6..1c7c71b231e 100644 --- a/packages/page-referenda/src/Referenda/RefEnd.tsx +++ b/packages/page-referenda/src/Referenda/RefEnd.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/RefKilled.tsx b/packages/page-referenda/src/Referenda/RefKilled.tsx index 231cc778f57..daebb52468f 100644 --- a/packages/page-referenda/src/Referenda/RefKilled.tsx +++ b/packages/page-referenda/src/Referenda/RefKilled.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ReferendumProps as Props } from '../types.js'; diff --git a/packages/page-referenda/src/Referenda/RefOngoing.tsx b/packages/page-referenda/src/Referenda/RefOngoing.tsx index 0217fcabce3..a01660afc4b 100644 --- a/packages/page-referenda/src/Referenda/RefOngoing.tsx +++ b/packages/page-referenda/src/Referenda/RefOngoing.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-referenda/src/Referenda/RefTuple.tsx b/packages/page-referenda/src/Referenda/RefTuple.tsx index b93f15c3da0..8216cd48a28 100644 --- a/packages/page-referenda/src/Referenda/RefTuple.tsx +++ b/packages/page-referenda/src/Referenda/RefTuple.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaDeposit } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/Referendum.tsx b/packages/page-referenda/src/Referenda/Referendum.tsx index 36193f4251d..179afae359d 100644 --- a/packages/page-referenda/src/Referenda/Referendum.tsx +++ b/packages/page-referenda/src/Referenda/Referendum.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartOptions, ChartTypeRegistry, TooltipItem } from 'chart.js'; diff --git a/packages/page-referenda/src/Referenda/Submit/TrackDropdown.tsx b/packages/page-referenda/src/Referenda/Submit/TrackDropdown.tsx index e636e89890b..65b44bb6e26 100644 --- a/packages/page-referenda/src/Referenda/Submit/TrackDropdown.tsx +++ b/packages/page-referenda/src/Referenda/Submit/TrackDropdown.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Submit/index.tsx b/packages/page-referenda/src/Referenda/Submit/index.tsx index 062885b1ed6..21a7a29239f 100644 --- a/packages/page-referenda/src/Referenda/Submit/index.tsx +++ b/packages/page-referenda/src/Referenda/Submit/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RawParam } from '@polkadot/react-params/types'; diff --git a/packages/page-referenda/src/Referenda/Submit/types.ts b/packages/page-referenda/src/Referenda/Submit/types.ts index 735896ef7b0..673c7db9454 100644 --- a/packages/page-referenda/src/Referenda/Submit/types.ts +++ b/packages/page-referenda/src/Referenda/Submit/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/page-referenda/src/Referenda/Submit/useTrackOptions.tsx b/packages/page-referenda/src/Referenda/Submit/useTrackOptions.tsx index 2068e8daffb..d76798ce325 100644 --- a/packages/page-referenda/src/Referenda/Submit/useTrackOptions.tsx +++ b/packages/page-referenda/src/Referenda/Submit/useTrackOptions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-referenda/src/Referenda/Summary.tsx b/packages/page-referenda/src/Referenda/Summary.tsx index e1b471c51ba..f95305af1d9 100644 --- a/packages/page-referenda/src/Referenda/Summary.tsx +++ b/packages/page-referenda/src/Referenda/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Vote/VoteAbstain.tsx b/packages/page-referenda/src/Referenda/Vote/VoteAbstain.tsx index 4b8da190db5..ed6276b4f14 100644 --- a/packages/page-referenda/src/Referenda/Vote/VoteAbstain.tsx +++ b/packages/page-referenda/src/Referenda/Vote/VoteAbstain.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Vote/VoteSplit.tsx b/packages/page-referenda/src/Referenda/Vote/VoteSplit.tsx index 5381dd54875..3cb3f784852 100644 --- a/packages/page-referenda/src/Referenda/Vote/VoteSplit.tsx +++ b/packages/page-referenda/src/Referenda/Vote/VoteSplit.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Vote/VoteStandard.tsx b/packages/page-referenda/src/Referenda/Vote/VoteStandard.tsx index a37374f0611..2dfc09ada41 100644 --- a/packages/page-referenda/src/Referenda/Vote/VoteStandard.tsx +++ b/packages/page-referenda/src/Referenda/Vote/VoteStandard.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/Vote/index.tsx b/packages/page-referenda/src/Referenda/Vote/index.tsx index c51dca56eaa..f10dfd95211 100644 --- a/packages/page-referenda/src/Referenda/Vote/index.tsx +++ b/packages/page-referenda/src/Referenda/Vote/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-referenda/src/Referenda/Votes.tsx b/packages/page-referenda/src/Referenda/Votes.tsx index c5067dd7cc4..1bc0361db2b 100644 --- a/packages/page-referenda/src/Referenda/Votes.tsx +++ b/packages/page-referenda/src/Referenda/Votes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletConvictionVotingTally, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/Referenda/index.tsx b/packages/page-referenda/src/Referenda/index.tsx index 03a44c8c64e..fd78a3dd809 100644 --- a/packages/page-referenda/src/Referenda/index.tsx +++ b/packages/page-referenda/src/Referenda/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/types.ts b/packages/page-referenda/src/Referenda/types.ts index 287bb623c7f..d4cf4f7aa29 100644 --- a/packages/page-referenda/src/Referenda/types.ts +++ b/packages/page-referenda/src/Referenda/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-referenda/src/Referenda/useVotes.ts b/packages/page-referenda/src/Referenda/useVotes.ts index 5f3ba485a55..f091acc6fdb 100644 --- a/packages/page-referenda/src/Referenda/useVotes.ts +++ b/packages/page-referenda/src/Referenda/useVotes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-referenda/src/Referenda/util.ts b/packages/page-referenda/src/Referenda/util.ts index 56a4838978c..84b89354ae9 100644 --- a/packages/page-referenda/src/Referenda/util.ts +++ b/packages/page-referenda/src/Referenda/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaDeposit } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/index.tsx b/packages/page-referenda/src/index.tsx index 419da4228ee..22989eee6cc 100644 --- a/packages/page-referenda/src/index.tsx +++ b/packages/page-referenda/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-referenda/src/translate.ts b/packages/page-referenda/src/translate.ts index f985ca3b2a6..1658d912f56 100644 --- a/packages/page-referenda/src/translate.ts +++ b/packages/page-referenda/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-referenda/src/types.ts b/packages/page-referenda/src/types.ts index a453b478594..57ab1dc5f01 100644 --- a/packages/page-referenda/src/types.ts +++ b/packages/page-referenda/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaReferendumInfoConvictionVotingTally, PalletReferendaReferendumInfoRankedCollectiveTally, PalletReferendaTrackInfo } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/useAccountLocks.ts b/packages/page-referenda/src/useAccountLocks.ts index 370d09e059f..2dfacd0cade 100644 --- a/packages/page-referenda/src/useAccountLocks.ts +++ b/packages/page-referenda/src/useAccountLocks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-referenda/src/useCounter.ts b/packages/page-referenda/src/useCounter.ts index 2d1215bd70d..3f538c8f27e 100644 --- a/packages/page-referenda/src/useCounter.ts +++ b/packages/page-referenda/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferenda } from './types.js'; diff --git a/packages/page-referenda/src/useReferenda.ts b/packages/page-referenda/src/useReferenda.ts index 0d82bfca0b6..f3391ea6e9d 100644 --- a/packages/page-referenda/src/useReferenda.ts +++ b/packages/page-referenda/src/useReferenda.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-referenda/src/useReferendaIds.ts b/packages/page-referenda/src/useReferendaIds.ts index df7e5c9d1e6..28b192c69da 100644 --- a/packages/page-referenda/src/useReferendaIds.ts +++ b/packages/page-referenda/src/useReferendaIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-referenda/src/useSummary.ts b/packages/page-referenda/src/useSummary.ts index 52617a2a395..3dc23a54b19 100644 --- a/packages/page-referenda/src/useSummary.ts +++ b/packages/page-referenda/src/useSummary.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-referenda/src/useTracks.ts b/packages/page-referenda/src/useTracks.ts index 9be0441122a..b43d15a5880 100644 --- a/packages/page-referenda/src/useTracks.ts +++ b/packages/page-referenda/src/useTracks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletReferendaTrackInfo } from '@polkadot/types/lookup'; diff --git a/packages/page-referenda/src/util.spec.ts b/packages/page-referenda/src/util.spec.ts index 97d6771d884..dfb253e92b6 100644 --- a/packages/page-referenda/src/util.spec.ts +++ b/packages/page-referenda/src/util.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/page-referenda/src/util.ts b/packages/page-referenda/src/util.ts index a0add1a9f92..37517d11ee5 100644 --- a/packages/page-referenda/src/util.ts +++ b/packages/page-referenda/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-referenda authors & contributors +// Copyright 2017-2025 @polkadot/app-referenda authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-rpc/src/Rpc/Account.tsx b/packages/page-rpc/src/Rpc/Account.tsx index 98228571083..2022573ca65 100644 --- a/packages/page-rpc/src/Rpc/Account.tsx +++ b/packages/page-rpc/src/Rpc/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-rpc/src/Rpc/Results.tsx b/packages/page-rpc/src/Rpc/Results.tsx index e2d1b49c9ef..4ade69ba0df 100644 --- a/packages/page-rpc/src/Rpc/Results.tsx +++ b/packages/page-rpc/src/Rpc/Results.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTx } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-rpc/src/Rpc/Selection.tsx b/packages/page-rpc/src/Rpc/Selection.tsx index 631e4b385b8..abd60632023 100644 --- a/packages/page-rpc/src/Rpc/Selection.tsx +++ b/packages/page-rpc/src/Rpc/Selection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTxRpcAdd } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-rpc/src/Rpc/index.tsx b/packages/page-rpc/src/Rpc/index.tsx index 9abf6fbc243..bd071ddc41e 100644 --- a/packages/page-rpc/src/Rpc/index.tsx +++ b/packages/page-rpc/src/Rpc/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-rpc/src/index.tsx b/packages/page-rpc/src/index.tsx index 69b27df4f26..c34d1d0b358 100644 --- a/packages/page-rpc/src/index.tsx +++ b/packages/page-rpc/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-rpc/src/translate.ts b/packages/page-rpc/src/translate.ts index 09d6bd3e0af..a8458ee84d4 100644 --- a/packages/page-rpc/src/translate.ts +++ b/packages/page-rpc/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-rpc authors & contributors +// Copyright 2017-2025 @polkadot/app-rpc authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-runtime/src/Runtime/Results.tsx b/packages/page-runtime/src/Runtime/Results.tsx index 20e0ae61e0f..a60bc53748b 100644 --- a/packages/page-runtime/src/Runtime/Results.tsx +++ b/packages/page-runtime/src/Runtime/Results.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Result } from './types.js'; diff --git a/packages/page-runtime/src/Runtime/Selection.tsx b/packages/page-runtime/src/Runtime/Selection.tsx index 0050d130ca8..3ddab77b0b3 100644 --- a/packages/page-runtime/src/Runtime/Selection.tsx +++ b/packages/page-runtime/src/Runtime/Selection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParamDef, RawParam } from '@polkadot/react-params/types'; diff --git a/packages/page-runtime/src/Runtime/index.tsx b/packages/page-runtime/src/Runtime/index.tsx index 783be0f074f..a16822b3937 100644 --- a/packages/page-runtime/src/Runtime/index.tsx +++ b/packages/page-runtime/src/Runtime/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RawParam } from '@polkadot/react-params/types'; diff --git a/packages/page-runtime/src/Runtime/types.ts b/packages/page-runtime/src/Runtime/types.ts index 91a5374e484..4410a455c72 100644 --- a/packages/page-runtime/src/Runtime/types.ts +++ b/packages/page-runtime/src/Runtime/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec, DefinitionCallNamed } from '@polkadot/types/types'; diff --git a/packages/page-runtime/src/index.tsx b/packages/page-runtime/src/index.tsx index 9789025d4a4..83a8170af9a 100644 --- a/packages/page-runtime/src/index.tsx +++ b/packages/page-runtime/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-runtime/src/translate.ts b/packages/page-runtime/src/translate.ts index 149a42d82db..22548980604 100644 --- a/packages/page-runtime/src/translate.ts +++ b/packages/page-runtime/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-runtime authors & contributors +// Copyright 2017-2025 @polkadot/app-runtime authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-scheduler/src/DispatchEntry.tsx b/packages/page-scheduler/src/DispatchEntry.tsx index 20509771886..49c910b8efe 100644 --- a/packages/page-scheduler/src/DispatchEntry.tsx +++ b/packages/page-scheduler/src/DispatchEntry.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveDispatch } from '@polkadot/api-derive/types'; diff --git a/packages/page-scheduler/src/DispatchQueue.tsx b/packages/page-scheduler/src/DispatchQueue.tsx index 514bdd2d37d..255aa932259 100644 --- a/packages/page-scheduler/src/DispatchQueue.tsx +++ b/packages/page-scheduler/src/DispatchQueue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveDispatch } from '@polkadot/api-derive/types'; diff --git a/packages/page-scheduler/src/Scheduled.tsx b/packages/page-scheduler/src/Scheduled.tsx index 7d957d3b087..c76a58d9872 100644 --- a/packages/page-scheduler/src/Scheduled.tsx +++ b/packages/page-scheduler/src/Scheduled.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/page-scheduler/src/Scheduler.tsx b/packages/page-scheduler/src/Scheduler.tsx index ff07dc85503..28781dcdeb8 100644 --- a/packages/page-scheduler/src/Scheduler.tsx +++ b/packages/page-scheduler/src/Scheduler.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-scheduler/src/index.tsx b/packages/page-scheduler/src/index.tsx index 8d49871ee00..c8e6ca53c03 100644 --- a/packages/page-scheduler/src/index.tsx +++ b/packages/page-scheduler/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/page-scheduler/src/translate.ts b/packages/page-scheduler/src/translate.ts index 7fb68faaad2..1ccd1ab5d5a 100644 --- a/packages/page-scheduler/src/translate.ts +++ b/packages/page-scheduler/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-scheduler/src/types.ts b/packages/page-scheduler/src/types.ts index f3d2fd4a4c9..3cb2b69fcef 100644 --- a/packages/page-scheduler/src/types.ts +++ b/packages/page-scheduler/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-scheduler authors & contributors +// Copyright 2017-2025 @polkadot/app-scheduler authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@polkadot/types'; diff --git a/packages/page-settings/src/Developer.tsx b/packages/page-settings/src/Developer.tsx index abef960d9a9..3c9710d1aa1 100644 --- a/packages/page-settings/src/Developer.tsx +++ b/packages/page-settings/src/Developer.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ActionStatus } from '@polkadot/react-components/Status/types'; diff --git a/packages/page-settings/src/General.tsx b/packages/page-settings/src/General.tsx index 47e23136bbc..7d3da42e1dc 100644 --- a/packages/page-settings/src/General.tsx +++ b/packages/page-settings/src/General.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/apps-config/settings/types'; diff --git a/packages/page-settings/src/I18n/StringInput.tsx b/packages/page-settings/src/I18n/StringInput.tsx index 96261f93d96..4c760f95747 100644 --- a/packages/page-settings/src/I18n/StringInput.tsx +++ b/packages/page-settings/src/I18n/StringInput.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/page-settings/src/I18n/index.tsx b/packages/page-settings/src/I18n/index.tsx index b86e3928802..58aa8b24b9d 100644 --- a/packages/page-settings/src/I18n/index.tsx +++ b/packages/page-settings/src/I18n/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import FileSaver from 'file-saver'; diff --git a/packages/page-settings/src/Metadata/ChainColorIndicator.tsx b/packages/page-settings/src/Metadata/ChainColorIndicator.tsx index 175c29d627a..1493fb4a5e4 100644 --- a/packages/page-settings/src/Metadata/ChainColorIndicator.tsx +++ b/packages/page-settings/src/Metadata/ChainColorIndicator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-settings/src/Metadata/Extensions.tsx b/packages/page-settings/src/Metadata/Extensions.tsx index d96b474bdc0..8df3be4a9ec 100644 --- a/packages/page-settings/src/Metadata/Extensions.tsx +++ b/packages/page-settings/src/Metadata/Extensions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { MetadataDef } from '@polkadot/extension-inject/types'; diff --git a/packages/page-settings/src/Metadata/NetworkSpecs.tsx b/packages/page-settings/src/Metadata/NetworkSpecs.tsx index 1ea9cf52842..47a8a56b5e1 100644 --- a/packages/page-settings/src/Metadata/NetworkSpecs.tsx +++ b/packages/page-settings/src/Metadata/NetworkSpecs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { NetworkSpecsStruct } from '@polkadot/ui-settings/types'; diff --git a/packages/page-settings/src/Metadata/iconOption.tsx b/packages/page-settings/src/Metadata/iconOption.tsx index 345fe7d4af3..b703efd24d0 100644 --- a/packages/page-settings/src/Metadata/iconOption.tsx +++ b/packages/page-settings/src/Metadata/iconOption.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-settings/src/Metadata/index.tsx b/packages/page-settings/src/Metadata/index.tsx index db7602dfbea..db454870554 100644 --- a/packages/page-settings/src/Metadata/index.tsx +++ b/packages/page-settings/src/Metadata/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-settings/src/index.tsx b/packages/page-settings/src/index.tsx index dfbb9a8787d..a68626e4559 100644 --- a/packages/page-settings/src/index.tsx +++ b/packages/page-settings/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-settings/src/translate.ts b/packages/page-settings/src/translate.ts index da6b27db7dc..901b8a2ac13 100644 --- a/packages/page-settings/src/translate.ts +++ b/packages/page-settings/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-settings/src/types.ts b/packages/page-settings/src/types.ts index b594feacc6e..a412d1bd32d 100644 --- a/packages/page-settings/src/types.ts +++ b/packages/page-settings/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { MetadataDef } from '@polkadot/extension-inject/types'; diff --git a/packages/page-settings/src/useChainInfo.ts b/packages/page-settings/src/useChainInfo.ts index 64d0a3e45ea..4c159148d7c 100644 --- a/packages/page-settings/src/useChainInfo.ts +++ b/packages/page-settings/src/useChainInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainInfo } from './types.js'; diff --git a/packages/page-settings/src/useCounter.ts b/packages/page-settings/src/useCounter.ts index 393be142b90..e0156c41402 100644 --- a/packages/page-settings/src/useCounter.ts +++ b/packages/page-settings/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createNamedHook } from '@polkadot/react-hooks'; diff --git a/packages/page-settings/src/useExtensions.ts b/packages/page-settings/src/useExtensions.ts index f9c820238ef..2a03cb01151 100644 --- a/packages/page-settings/src/useExtensions.ts +++ b/packages/page-settings/src/useExtensions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-settings/src/useRawMetadata.ts b/packages/page-settings/src/useRawMetadata.ts index b538dbbb45a..322f98ead80 100644 --- a/packages/page-settings/src/useRawMetadata.ts +++ b/packages/page-settings/src/useRawMetadata.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 // import type { RawMetadataDef } from '@polkadot/extension-inject/types'; diff --git a/packages/page-settings/src/util.tsx b/packages/page-settings/src/util.tsx index 4b1aea509a9..9b2467425b6 100644 --- a/packages/page-settings/src/util.tsx +++ b/packages/page-settings/src/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-settings authors & contributors +// Copyright 2017-2025 @polkadot/app-settings authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/apps-config/settings/types'; diff --git a/packages/page-signing/src/Sign.tsx b/packages/page-signing/src/Sign.tsx index 937eb017245..99e5462d470 100644 --- a/packages/page-signing/src/Sign.tsx +++ b/packages/page-signing/src/Sign.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-signing authors & contributors +// Copyright 2017-2025 @polkadot/app-signing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Signer } from '@polkadot/api/types'; diff --git a/packages/page-signing/src/Unlock.tsx b/packages/page-signing/src/Unlock.tsx index f9c00f6e4e9..68ee24737a7 100644 --- a/packages/page-signing/src/Unlock.tsx +++ b/packages/page-signing/src/Unlock.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-signing authors & contributors +// Copyright 2017-2025 @polkadot/app-signing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringPair } from '@polkadot/keyring/types'; diff --git a/packages/page-signing/src/Verify.tsx b/packages/page-signing/src/Verify.tsx index 38c1b88b3b3..be963ad184d 100644 --- a/packages/page-signing/src/Verify.tsx +++ b/packages/page-signing/src/Verify.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-signing authors & contributors +// Copyright 2017-2025 @polkadot/app-signing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeypairType } from '@polkadot/util-crypto/types'; diff --git a/packages/page-signing/src/index.tsx b/packages/page-signing/src/index.tsx index 52618831809..bfc0372b43c 100644 --- a/packages/page-signing/src/index.tsx +++ b/packages/page-signing/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-signing authors & contributors +// Copyright 2017-2025 @polkadot/app-signing authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-signing/src/translate.ts b/packages/page-signing/src/translate.ts index f350b2a283c..7584e64a275 100644 --- a/packages/page-signing/src/translate.ts +++ b/packages/page-signing/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-signing authors & contributors +// Copyright 2017-2025 @polkadot/app-signing authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-society/src/Candidates/Bid.tsx b/packages/page-society/src/Candidates/Bid.tsx index 87881700189..741a8e2e6ab 100644 --- a/packages/page-society/src/Candidates/Bid.tsx +++ b/packages/page-society/src/Candidates/Bid.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletSocietyBid } from '@polkadot/types/lookup'; diff --git a/packages/page-society/src/Candidates/BidNew.tsx b/packages/page-society/src/Candidates/BidNew.tsx index be465606df2..b726a106ed6 100644 --- a/packages/page-society/src/Candidates/BidNew.tsx +++ b/packages/page-society/src/Candidates/BidNew.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-society/src/Candidates/BidType.tsx b/packages/page-society/src/Candidates/BidType.tsx index 5a8e4b7d9f8..eef45c2491a 100644 --- a/packages/page-society/src/Candidates/BidType.tsx +++ b/packages/page-society/src/Candidates/BidType.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletSocietyBidKind } from '@polkadot/types/lookup'; diff --git a/packages/page-society/src/Candidates/Bids.tsx b/packages/page-society/src/Candidates/Bids.tsx index 28f12ec7c21..7eb42f9e662 100644 --- a/packages/page-society/src/Candidates/Bids.tsx +++ b/packages/page-society/src/Candidates/Bids.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletSocietyBid } from '@polkadot/types/lookup'; diff --git a/packages/page-society/src/Candidates/Candidate.tsx b/packages/page-society/src/Candidates/Candidate.tsx index 98000e5e619..e9aeaa53bec 100644 --- a/packages/page-society/src/Candidates/Candidate.tsx +++ b/packages/page-society/src/Candidates/Candidate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSocietyCandidate } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Candidates/CandidateVoting.tsx b/packages/page-society/src/Candidates/CandidateVoting.tsx index bf1a8525835..10624b7e1a2 100644 --- a/packages/page-society/src/Candidates/CandidateVoting.tsx +++ b/packages/page-society/src/Candidates/CandidateVoting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef, useState } from 'react'; diff --git a/packages/page-society/src/Candidates/Candidates.tsx b/packages/page-society/src/Candidates/Candidates.tsx index 07678891f53..874f478c043 100644 --- a/packages/page-society/src/Candidates/Candidates.tsx +++ b/packages/page-society/src/Candidates/Candidates.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSocietyCandidate } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Candidates/VouchFor.tsx b/packages/page-society/src/Candidates/VouchFor.tsx index d2ffceabbf4..e6d6d4e9353 100644 --- a/packages/page-society/src/Candidates/VouchFor.tsx +++ b/packages/page-society/src/Candidates/VouchFor.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-society/src/Candidates/index.tsx b/packages/page-society/src/Candidates/index.tsx index 98d467d7c42..92d3b28a284 100644 --- a/packages/page-society/src/Candidates/index.tsx +++ b/packages/page-society/src/Candidates/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSocietyCandidate } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Overview/Defender.tsx b/packages/page-society/src/Overview/Defender.tsx index 2f4177a77ab..142e45facd0 100644 --- a/packages/page-society/src/Overview/Defender.tsx +++ b/packages/page-society/src/Overview/Defender.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSociety, DeriveSocietyMember } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Overview/DefenderVoting.tsx b/packages/page-society/src/Overview/DefenderVoting.tsx index 9c5d0805330..17bcde01fcc 100644 --- a/packages/page-society/src/Overview/DefenderVoting.tsx +++ b/packages/page-society/src/Overview/DefenderVoting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef, useState } from 'react'; diff --git a/packages/page-society/src/Overview/DesignKusama.tsx b/packages/page-society/src/Overview/DesignKusama.tsx index c9e2826b199..abe59e3d05a 100644 --- a/packages/page-society/src/Overview/DesignKusama.tsx +++ b/packages/page-society/src/Overview/DesignKusama.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/page-society/src/Overview/Member.tsx b/packages/page-society/src/Overview/Member.tsx index 2464e1b6014..8544eb0af46 100644 --- a/packages/page-society/src/Overview/Member.tsx +++ b/packages/page-society/src/Overview/Member.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Balance, BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/page-society/src/Overview/Members.tsx b/packages/page-society/src/Overview/Members.tsx index 8462d782547..f5b927c135f 100644 --- a/packages/page-society/src/Overview/Members.tsx +++ b/packages/page-society/src/Overview/Members.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { MapMember } from '../types.js'; diff --git a/packages/page-society/src/Overview/Summary.tsx b/packages/page-society/src/Overview/Summary.tsx index 3d4c2bbf931..0bcfc4c8263 100644 --- a/packages/page-society/src/Overview/Summary.tsx +++ b/packages/page-society/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSociety } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Overview/Votes.tsx b/packages/page-society/src/Overview/Votes.tsx index d990a008b66..70c5b88edad 100644 --- a/packages/page-society/src/Overview/Votes.tsx +++ b/packages/page-society/src/Overview/Votes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { VoteSplit, VoteType } from '../types.js'; diff --git a/packages/page-society/src/Overview/VotesExpander.tsx b/packages/page-society/src/Overview/VotesExpander.tsx index 36d3fc94f99..c8599850aab 100644 --- a/packages/page-society/src/Overview/VotesExpander.tsx +++ b/packages/page-society/src/Overview/VotesExpander.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { VoteType } from '../types.js'; diff --git a/packages/page-society/src/Overview/index.tsx b/packages/page-society/src/Overview/index.tsx index 9395144e906..b260242b08f 100644 --- a/packages/page-society/src/Overview/index.tsx +++ b/packages/page-society/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSociety } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/Suspended/Suspension.tsx b/packages/page-society/src/Suspended/Suspension.tsx index 1f4983d60fd..2db0908881a 100644 --- a/packages/page-society/src/Suspended/Suspension.tsx +++ b/packages/page-society/src/Suspended/Suspension.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BalanceOf } from '@polkadot/types/interfaces'; diff --git a/packages/page-society/src/Suspended/index.tsx b/packages/page-society/src/Suspended/index.tsx index 92d434ba121..e7e06be6e25 100644 --- a/packages/page-society/src/Suspended/index.tsx +++ b/packages/page-society/src/Suspended/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-society/src/draw/canary.ts b/packages/page-society/src/draw/canary.ts index 87e09e899d1..eaabe359e13 100644 --- a/packages/page-society/src/draw/canary.ts +++ b/packages/page-society/src/draw/canary.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 // Adapted (with permission) from https://www.w3schools.com/code/tryit.asp?filename=GGIGKE2GG7N1 diff --git a/packages/page-society/src/index.tsx b/packages/page-society/src/index.tsx index f49481191f6..3169979cc45 100644 --- a/packages/page-society/src/index.tsx +++ b/packages/page-society/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSociety, DeriveSocietyMember } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/translate.ts b/packages/page-society/src/translate.ts index eb256313ece..1e99e98b05a 100644 --- a/packages/page-society/src/translate.ts +++ b/packages/page-society/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-society/src/types.ts b/packages/page-society/src/types.ts index 8a6a11272de..04ae81adaa2 100644 --- a/packages/page-society/src/types.ts +++ b/packages/page-society/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSocietyCandidate } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/useCounter.ts b/packages/page-society/src/useCounter.ts index b69168e7cd5..7f9b240522c 100644 --- a/packages/page-society/src/useCounter.ts +++ b/packages/page-society/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bid } from '@polkadot/types/interfaces'; diff --git a/packages/page-society/src/useMembers.ts b/packages/page-society/src/useMembers.ts index f74c1e0120a..e1896ec4444 100644 --- a/packages/page-society/src/useMembers.ts +++ b/packages/page-society/src/useMembers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSocietyMember } from '@polkadot/api-derive/types'; diff --git a/packages/page-society/src/useVoters.ts b/packages/page-society/src/useVoters.ts index cec78dd8b43..4814a1fb844 100644 --- a/packages/page-society/src/useVoters.ts +++ b/packages/page-society/src/useVoters.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-society authors & contributors +// Copyright 2017-2025 @polkadot/app-society authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Actions/Account/BondExtra.tsx b/packages/page-staking-legacy/src/Actions/Account/BondExtra.tsx index c0402da054b..cc1fe119224 100644 --- a/packages/page-staking-legacy/src/Actions/Account/BondExtra.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/BondExtra.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Actions/Account/InjectKeys.tsx b/packages/page-staking-legacy/src/Actions/Account/InjectKeys.tsx index a1c2dc42b41..87fa30be2ad 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InjectKeys.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InjectKeys.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeypairType } from '@polkadot/util-crypto/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/InputValidateAmount.tsx b/packages/page-staking-legacy/src/Actions/Account/InputValidateAmount.tsx index 86602466b66..3d23507a88b 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InputValidateAmount.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InputValidateAmount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx b/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx index d1e596e6b96..7a4d99cbcc3 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InputValidationController.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/InputValidationSessionKey.tsx b/packages/page-staking-legacy/src/Actions/Account/InputValidationSessionKey.tsx index d3773c37bca..f98d487694a 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InputValidationSessionKey.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InputValidationSessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { I18nProps } from '@polkadot/react-components/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/InputValidationUnstakeThreshold.tsx b/packages/page-staking-legacy/src/Actions/Account/InputValidationUnstakeThreshold.tsx index 99688d58f54..e6e84e98a4a 100644 --- a/packages/page-staking-legacy/src/Actions/Account/InputValidationUnstakeThreshold.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/InputValidationUnstakeThreshold.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Account/KickNominees.tsx b/packages/page-staking-legacy/src/Actions/Account/KickNominees.tsx index 84336e9cbda..417290841aa 100644 --- a/packages/page-staking-legacy/src/Actions/Account/KickNominees.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/KickNominees.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/ListNominees.tsx b/packages/page-staking-legacy/src/Actions/Account/ListNominees.tsx index 9b5a8045b6e..38219aa45ac 100644 --- a/packages/page-staking-legacy/src/Actions/Account/ListNominees.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/ListNominees.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveEraExposure, DeriveSessionIndexes } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/Nominate.tsx b/packages/page-staking-legacy/src/Actions/Account/Nominate.tsx index 83e1710267f..2515247b6e5 100644 --- a/packages/page-staking-legacy/src/Actions/Account/Nominate.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Account/Rebond.tsx b/packages/page-staking-legacy/src/Actions/Account/Rebond.tsx index bcfcbe0763d..46a5ad14298 100644 --- a/packages/page-staking-legacy/src/Actions/Account/Rebond.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/Rebond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/SetControllerAccount.tsx b/packages/page-staking-legacy/src/Actions/Account/SetControllerAccount.tsx index 12022b4e7ad..6f2642a5b14 100644 --- a/packages/page-staking-legacy/src/Actions/Account/SetControllerAccount.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/SetControllerAccount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo, useState } from 'react'; diff --git a/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx b/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx index 02aa33ffb09..41ced2c70a4 100644 --- a/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/SetRewardDestination.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/SetSessionKey.tsx b/packages/page-staking-legacy/src/Actions/Account/SetSessionKey.tsx index 240dec0d0ba..060c1074763 100644 --- a/packages/page-staking-legacy/src/Actions/Account/SetSessionKey.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/SetSessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo } from '../partials/types.js'; diff --git a/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx b/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx index fb219493eee..388e43a5517 100644 --- a/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/Unbond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletStakingStakingLedger } from '@polkadot/types/lookup'; diff --git a/packages/page-staking-legacy/src/Actions/Account/Validate.tsx b/packages/page-staking-legacy/src/Actions/Account/Validate.tsx index e6a2b150fe3..81703f92c3d 100644 --- a/packages/page-staking-legacy/src/Actions/Account/Validate.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/Validate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Account/WarnBond.tsx b/packages/page-staking-legacy/src/Actions/Account/WarnBond.tsx index 105c677ef64..12c7b71ae5d 100644 --- a/packages/page-staking-legacy/src/Actions/Account/WarnBond.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/WarnBond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Account/index.tsx b/packages/page-staking-legacy/src/Actions/Account/index.tsx index 90124c43186..984983b7b1b 100644 --- a/packages/page-staking-legacy/src/Actions/Account/index.tsx +++ b/packages/page-staking-legacy/src/Actions/Account/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Actions/Accounts.tsx b/packages/page-staking-legacy/src/Actions/Accounts.tsx index 2027b27b0e9..2022c4e71ae 100644 --- a/packages/page-staking-legacy/src/Actions/Accounts.tsx +++ b/packages/page-staking-legacy/src/Actions/Accounts.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/Actions/NewNominator.tsx b/packages/page-staking-legacy/src/Actions/NewNominator.tsx index 94e210c352b..507c2bcaffb 100644 --- a/packages/page-staking-legacy/src/Actions/NewNominator.tsx +++ b/packages/page-staking-legacy/src/Actions/NewNominator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SortedTargets } from '../types.js'; diff --git a/packages/page-staking-legacy/src/Actions/NewStash.tsx b/packages/page-staking-legacy/src/Actions/NewStash.tsx index 2ce64539b1f..53caae09e6c 100644 --- a/packages/page-staking-legacy/src/Actions/NewStash.tsx +++ b/packages/page-staking-legacy/src/Actions/NewStash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BondInfo } from './partials/types.js'; diff --git a/packages/page-staking-legacy/src/Actions/NewValidator.tsx b/packages/page-staking-legacy/src/Actions/NewValidator.tsx index 7af6ebd785c..279f24a4665 100644 --- a/packages/page-staking-legacy/src/Actions/NewValidator.tsx +++ b/packages/page-staking-legacy/src/Actions/NewValidator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/Account.tsx b/packages/page-staking-legacy/src/Actions/Pool/Account.tsx index 885663b4e86..b36bef51cd3 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/Account.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress, DeriveUnlocking } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/BondExtra.tsx b/packages/page-staking-legacy/src/Actions/Pool/BondExtra.tsx index 2310be6529d..708e98a3538 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/BondExtra.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/BondExtra.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/Unbond.tsx b/packages/page-staking-legacy/src/Actions/Pool/Unbond.tsx index 2c12e3261d3..49243a034e2 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/Unbond.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/Unbond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/index.tsx b/packages/page-staking-legacy/src/Actions/Pool/index.tsx index 4e03f9b2e7b..8e05946532d 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/index.tsx +++ b/packages/page-staking-legacy/src/Actions/Pool/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/types.ts b/packages/page-staking-legacy/src/Actions/Pool/types.ts index 5402ccab713..06316f43396 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/types.ts +++ b/packages/page-staking-legacy/src/Actions/Pool/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletNominationPoolsPoolMember } from '@polkadot/types/lookup'; diff --git a/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts b/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts index b38149096ca..8c62829cb01 100644 --- a/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts +++ b/packages/page-staking-legacy/src/Actions/Pool/useAccountInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Actions/Pools.tsx b/packages/page-staking-legacy/src/Actions/Pools.tsx index 8e7478078c8..345fbda329d 100644 --- a/packages/page-staking-legacy/src/Actions/Pools.tsx +++ b/packages/page-staking-legacy/src/Actions/Pools.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/destOptions.tsx b/packages/page-staking-legacy/src/Actions/destOptions.tsx index 8f9820c8233..e1616644c89 100644 --- a/packages/page-staking-legacy/src/Actions/destOptions.tsx +++ b/packages/page-staking-legacy/src/Actions/destOptions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 interface Option { diff --git a/packages/page-staking-legacy/src/Actions/index.tsx b/packages/page-staking-legacy/src/Actions/index.tsx index b4c8a2bda3f..389580f9b85 100644 --- a/packages/page-staking-legacy/src/Actions/index.tsx +++ b/packages/page-staking-legacy/src/Actions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/api-augment'; diff --git a/packages/page-staking-legacy/src/Actions/partials/Bond.tsx b/packages/page-staking-legacy/src/Actions/partials/Bond.tsx index f4816b17406..4f8c93abd92 100644 --- a/packages/page-staking-legacy/src/Actions/partials/Bond.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/Bond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Actions/partials/Nominate.tsx b/packages/page-staking-legacy/src/Actions/partials/Nominate.tsx index 599641292ac..35c931e2742 100644 --- a/packages/page-staking-legacy/src/Actions/partials/Nominate.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Actions/partials/PoolInfo.tsx b/packages/page-staking-legacy/src/Actions/partials/PoolInfo.tsx index ab555f1a689..34d8704809e 100644 --- a/packages/page-staking-legacy/src/Actions/partials/PoolInfo.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/PoolInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Actions/partials/SenderInfo.tsx b/packages/page-staking-legacy/src/Actions/partials/SenderInfo.tsx index e8edca9ba4b..995bb9d620d 100644 --- a/packages/page-staking-legacy/src/Actions/partials/SenderInfo.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/SenderInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking-legacy/src/Actions/partials/SessionKey.tsx b/packages/page-staking-legacy/src/Actions/partials/SessionKey.tsx index c23f0b7ff3f..f1cfcefe885 100644 --- a/packages/page-staking-legacy/src/Actions/partials/SessionKey.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/SessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo } from './types.js'; diff --git a/packages/page-staking-legacy/src/Actions/partials/Validate.tsx b/packages/page-staking-legacy/src/Actions/partials/Validate.tsx index 9bfadded37d..2184671e752 100644 --- a/packages/page-staking-legacy/src/Actions/partials/Validate.tsx +++ b/packages/page-staking-legacy/src/Actions/partials/Validate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ValidateInfo } from './types.js'; diff --git a/packages/page-staking-legacy/src/Actions/partials/types.ts b/packages/page-staking-legacy/src/Actions/partials/types.ts index cbef096c95a..6e454a85f7a 100644 --- a/packages/page-staking-legacy/src/Actions/partials/types.ts +++ b/packages/page-staking-legacy/src/Actions/partials/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking-legacy/src/Actions/types.ts b/packages/page-staking-legacy/src/Actions/types.ts index 30e535f9c60..3b75d493c7e 100644 --- a/packages/page-staking-legacy/src/Actions/types.ts +++ b/packages/page-staking-legacy/src/Actions/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance, UnappliedSlashOther } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking-legacy/src/Actions/useInactives.ts b/packages/page-staking-legacy/src/Actions/useInactives.ts index e885288f15a..fdb0a6b79ff 100644 --- a/packages/page-staking-legacy/src/Actions/useInactives.ts +++ b/packages/page-staking-legacy/src/Actions/useInactives.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts b/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts index 74e9577f3e1..df11b62e699 100644 --- a/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts +++ b/packages/page-staking-legacy/src/Actions/useSlashingSpans.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Actions/useUnbondDuration.ts b/packages/page-staking-legacy/src/Actions/useUnbondDuration.ts index 1c12688168b..066ae0ed1cd 100644 --- a/packages/page-staking-legacy/src/Actions/useUnbondDuration.ts +++ b/packages/page-staking-legacy/src/Actions/useUnbondDuration.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Bags/Bag.tsx b/packages/page-staking-legacy/src/Bags/Bag.tsx index fcf09ad6408..d1728604fa2 100644 --- a/packages/page-staking-legacy/src/Bags/Bag.tsx +++ b/packages/page-staking-legacy/src/Bags/Bag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId32 } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking-legacy/src/Bags/Rebag.tsx b/packages/page-staking-legacy/src/Bags/Rebag.tsx index 6d9b79d6d5f..e25ebb75c3b 100644 --- a/packages/page-staking-legacy/src/Bags/Rebag.tsx +++ b/packages/page-staking-legacy/src/Bags/Rebag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Bags/Stash.tsx b/packages/page-staking-legacy/src/Bags/Stash.tsx index 5119ee9a608..d2aa038f756 100644 --- a/packages/page-staking-legacy/src/Bags/Stash.tsx +++ b/packages/page-staking-legacy/src/Bags/Stash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Bags/Summary.tsx b/packages/page-staking-legacy/src/Bags/Summary.tsx index 7810da9372b..82b0eeaf418 100644 --- a/packages/page-staking-legacy/src/Bags/Summary.tsx +++ b/packages/page-staking-legacy/src/Bags/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Bags/index.tsx b/packages/page-staking-legacy/src/Bags/index.tsx index 3b66bc294ff..bb176bcaf4b 100644 --- a/packages/page-staking-legacy/src/Bags/index.tsx +++ b/packages/page-staking-legacy/src/Bags/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/Bags/types.ts b/packages/page-staking-legacy/src/Bags/types.ts index e317f91e6e1..09c9d81cd50 100644 --- a/packages/page-staking-legacy/src/Bags/types.ts +++ b/packages/page-staking-legacy/src/Bags/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletBagsListListBag, PalletBagsListListNode } from '@polkadot/types/lookup'; diff --git a/packages/page-staking-legacy/src/Bags/useBagEntries.tsx b/packages/page-staking-legacy/src/Bags/useBagEntries.tsx index 794893a2d1a..3151a5e3e0c 100644 --- a/packages/page-staking-legacy/src/Bags/useBagEntries.tsx +++ b/packages/page-staking-legacy/src/Bags/useBagEntries.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Bags/useBagsList.ts b/packages/page-staking-legacy/src/Bags/useBagsList.ts index e75bc2eb5e6..95db6871d08 100644 --- a/packages/page-staking-legacy/src/Bags/useBagsList.ts +++ b/packages/page-staking-legacy/src/Bags/useBagsList.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey, u64 } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx b/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx index 4a73827e2fe..9941e9d5153 100644 --- a/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx +++ b/packages/page-staking-legacy/src/Bags/useBagsNodes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Bags/useBonded.ts b/packages/page-staking-legacy/src/Bags/useBonded.ts index c75346e5c8a..20c2a31d685 100644 --- a/packages/page-staking-legacy/src/Bags/useBonded.ts +++ b/packages/page-staking-legacy/src/Bags/useBonded.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Bags/useQueryModule.ts b/packages/page-staking-legacy/src/Bags/useQueryModule.ts index cddccaac41c..e35c179714a 100644 --- a/packages/page-staking-legacy/src/Bags/useQueryModule.ts +++ b/packages/page-staking-legacy/src/Bags/useQueryModule.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AugmentedQueries } from '@polkadot/api-base/types'; diff --git a/packages/page-staking-legacy/src/ElectionBanner.tsx b/packages/page-staking-legacy/src/ElectionBanner.tsx index 21e37980c0b..5e05dcc3792 100644 --- a/packages/page-staking-legacy/src/ElectionBanner.tsx +++ b/packages/page-staking-legacy/src/ElectionBanner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking-legacy/src/Filtering.tsx b/packages/page-staking-legacy/src/Filtering.tsx index 39b190a30c6..df04498344d 100644 --- a/packages/page-staking-legacy/src/Filtering.tsx +++ b/packages/page-staking-legacy/src/Filtering.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import queryString from 'query-string'; diff --git a/packages/page-staking-legacy/src/MaxBadge.tsx b/packages/page-staking-legacy/src/MaxBadge.tsx index e0a846f8d08..7a25ae265da 100644 --- a/packages/page-staking-legacy/src/MaxBadge.tsx +++ b/packages/page-staking-legacy/src/MaxBadge.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Payouts/PayButton.tsx b/packages/page-staking-legacy/src/Payouts/PayButton.tsx index 1a483812a59..c3423d551ab 100644 --- a/packages/page-staking-legacy/src/Payouts/PayButton.tsx +++ b/packages/page-staking-legacy/src/Payouts/PayButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Payouts/Stash.tsx b/packages/page-staking-legacy/src/Payouts/Stash.tsx index 16902f7794f..fe2877f88d4 100644 --- a/packages/page-staking-legacy/src/Payouts/Stash.tsx +++ b/packages/page-staking-legacy/src/Payouts/Stash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Payouts/Validator.tsx b/packages/page-staking-legacy/src/Payouts/Validator.tsx index 729000dcdfa..eaf400ddeea 100644 --- a/packages/page-staking-legacy/src/Payouts/Validator.tsx +++ b/packages/page-staking-legacy/src/Payouts/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Payouts/index.tsx b/packages/page-staking-legacy/src/Payouts/index.tsx index 760ad72844e..802dea5f9cf 100644 --- a/packages/page-staking-legacy/src/Payouts/index.tsx +++ b/packages/page-staking-legacy/src/Payouts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerReward } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Payouts/types.ts b/packages/page-staking-legacy/src/Payouts/types.ts index caaf4461275..357589fcdf7 100644 --- a/packages/page-staking-legacy/src/Payouts/types.ts +++ b/packages/page-staking-legacy/src/Payouts/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerReward } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Payouts/useEraBlocks.ts b/packages/page-staking-legacy/src/Payouts/useEraBlocks.ts index 7a97830bcf9..ee3fd7563bb 100644 --- a/packages/page-staking-legacy/src/Payouts/useEraBlocks.ts +++ b/packages/page-staking-legacy/src/Payouts/useEraBlocks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Payouts/util.tsx b/packages/page-staking-legacy/src/Payouts/util.tsx index e6db76769ea..2d8c9468c17 100644 --- a/packages/page-staking-legacy/src/Payouts/util.tsx +++ b/packages/page-staking-legacy/src/Payouts/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Query/Chart.tsx b/packages/page-staking-legacy/src/Query/Chart.tsx index afd550cad8f..65693436557 100644 --- a/packages/page-staking-legacy/src/Query/Chart.tsx +++ b/packages/page-staking-legacy/src/Query/Chart.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LineData } from './types.js'; diff --git a/packages/page-staking-legacy/src/Query/ChartPoints.tsx b/packages/page-staking-legacy/src/Query/ChartPoints.tsx index 390fba16106..43c3620700e 100644 --- a/packages/page-staking-legacy/src/Query/ChartPoints.tsx +++ b/packages/page-staking-legacy/src/Query/ChartPoints.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerPoints } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Query/ChartPrefs.tsx b/packages/page-staking-legacy/src/Query/ChartPrefs.tsx index 9c30f7bc6be..d0c41c33e68 100644 --- a/packages/page-staking-legacy/src/Query/ChartPrefs.tsx +++ b/packages/page-staking-legacy/src/Query/ChartPrefs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerPrefs } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Query/ChartRewards.tsx b/packages/page-staking-legacy/src/Query/ChartRewards.tsx index f43eaf6928a..af73c7ac3d7 100644 --- a/packages/page-staking-legacy/src/Query/ChartRewards.tsx +++ b/packages/page-staking-legacy/src/Query/ChartRewards.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveEraRewards, DeriveOwnSlashes, DeriveStakerPoints } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Query/ChartStake.tsx b/packages/page-staking-legacy/src/Query/ChartStake.tsx index 393215ba024..c583c2e049f 100644 --- a/packages/page-staking-legacy/src/Query/ChartStake.tsx +++ b/packages/page-staking-legacy/src/Query/ChartStake.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveOwnExposure } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Query/Validator.tsx b/packages/page-staking-legacy/src/Query/Validator.tsx index 32a616872da..68be40034a2 100644 --- a/packages/page-staking-legacy/src/Query/Validator.tsx +++ b/packages/page-staking-legacy/src/Query/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from './types.js'; diff --git a/packages/page-staking-legacy/src/Query/index.tsx b/packages/page-staking-legacy/src/Query/index.tsx index 3040c1cee22..a9182bc274d 100644 --- a/packages/page-staking-legacy/src/Query/index.tsx +++ b/packages/page-staking-legacy/src/Query/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { INumber } from '@polkadot/types/types'; diff --git a/packages/page-staking-legacy/src/Query/types.ts b/packages/page-staking-legacy/src/Query/types.ts index a35bc163c9d..d2304eb0d6b 100644 --- a/packages/page-staking-legacy/src/Query/types.ts +++ b/packages/page-staking-legacy/src/Query/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Query/useBlockCounts.tsx b/packages/page-staking-legacy/src/Query/useBlockCounts.tsx index daefe2fa4a9..ae44836ba62 100644 --- a/packages/page-staking-legacy/src/Query/useBlockCounts.tsx +++ b/packages/page-staking-legacy/src/Query/useBlockCounts.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionIndexes } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Query/util.ts b/packages/page-staking-legacy/src/Query/util.ts index 280b6cd3312..0174dd40c87 100644 --- a/packages/page-staking-legacy/src/Query/util.ts +++ b/packages/page-staking-legacy/src/Query/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Slashes/Era.tsx b/packages/page-staking-legacy/src/Slashes/Era.tsx index 8928e404c8b..144815e0697 100644 --- a/packages/page-staking-legacy/src/Slashes/Era.tsx +++ b/packages/page-staking-legacy/src/Slashes/Era.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking-legacy/src/Slashes/Row.tsx b/packages/page-staking-legacy/src/Slashes/Row.tsx index 767362af861..fb48c9d39e7 100644 --- a/packages/page-staking-legacy/src/Slashes/Row.tsx +++ b/packages/page-staking-legacy/src/Slashes/Row.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Slash } from './types.js'; diff --git a/packages/page-staking-legacy/src/Slashes/Summary.tsx b/packages/page-staking-legacy/src/Slashes/Summary.tsx index e6050f0755e..9b02f73cc62 100644 --- a/packages/page-staking-legacy/src/Slashes/Summary.tsx +++ b/packages/page-staking-legacy/src/Slashes/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Slashes/index.tsx b/packages/page-staking-legacy/src/Slashes/index.tsx index 89141ace4d4..d6c911510e2 100644 --- a/packages/page-staking-legacy/src/Slashes/index.tsx +++ b/packages/page-staking-legacy/src/Slashes/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/Slashes/types.ts b/packages/page-staking-legacy/src/Slashes/types.ts index 74bc3e3fa4d..6b1359964b4 100644 --- a/packages/page-staking-legacy/src/Slashes/types.ts +++ b/packages/page-staking-legacy/src/Slashes/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UnappliedSlash } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking-legacy/src/Targets/Nominate.tsx b/packages/page-staking-legacy/src/Targets/Nominate.tsx index d5f589878c7..5c502ddd55b 100644 --- a/packages/page-staking-legacy/src/Targets/Nominate.tsx +++ b/packages/page-staking-legacy/src/Targets/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/Targets/Summary.tsx b/packages/page-staking-legacy/src/Targets/Summary.tsx index 7eb94df624b..45552d9825a 100644 --- a/packages/page-staking-legacy/src/Targets/Summary.tsx +++ b/packages/page-staking-legacy/src/Targets/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Targets/Validator.tsx b/packages/page-staking-legacy/src/Targets/Validator.tsx index 3186c7877f2..b0e5652aae7 100644 --- a/packages/page-staking-legacy/src/Targets/Validator.tsx +++ b/packages/page-staking-legacy/src/Targets/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UnappliedSlash } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking-legacy/src/Targets/index.tsx b/packages/page-staking-legacy/src/Targets/index.tsx index 4de3db8f373..622fd4f8e05 100644 --- a/packages/page-staking-legacy/src/Targets/index.tsx +++ b/packages/page-staking-legacy/src/Targets/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHasIdentity, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Targets/useOwnNominators.ts b/packages/page-staking-legacy/src/Targets/useOwnNominators.ts index 1082217b718..cf1b9112609 100644 --- a/packages/page-staking-legacy/src/Targets/useOwnNominators.ts +++ b/packages/page-staking-legacy/src/Targets/useOwnNominators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/Validators/ActionsBanner.tsx b/packages/page-staking-legacy/src/Validators/ActionsBanner.tsx index a51e6d7a383..c1cc7df100c 100644 --- a/packages/page-staking-legacy/src/Validators/ActionsBanner.tsx +++ b/packages/page-staking-legacy/src/Validators/ActionsBanner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking-legacy/src/Validators/Address/NominatedBy.tsx b/packages/page-staking-legacy/src/Validators/Address/NominatedBy.tsx index ef8b2cde5e6..97a974d0b9e 100644 --- a/packages/page-staking-legacy/src/Validators/Address/NominatedBy.tsx +++ b/packages/page-staking-legacy/src/Validators/Address/NominatedBy.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Validators/Address/StakeOther.tsx b/packages/page-staking-legacy/src/Validators/Address/StakeOther.tsx index 8a87eabe8d1..bee38255996 100644 --- a/packages/page-staking-legacy/src/Validators/Address/StakeOther.tsx +++ b/packages/page-staking-legacy/src/Validators/Address/StakeOther.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/Validators/Address/Status.tsx b/packages/page-staking-legacy/src/Validators/Address/Status.tsx index c636d0da2a2..11308ed1cf4 100644 --- a/packages/page-staking-legacy/src/Validators/Address/Status.tsx +++ b/packages/page-staking-legacy/src/Validators/Address/Status.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking-legacy/src/Validators/Address/index.tsx b/packages/page-staking-legacy/src/Validators/Address/index.tsx index 691f31398a5..f413b7fb771 100644 --- a/packages/page-staking-legacy/src/Validators/Address/index.tsx +++ b/packages/page-staking-legacy/src/Validators/Address/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking-legacy/src/Validators/Address/types.ts b/packages/page-staking-legacy/src/Validators/Address/types.ts index 50469c300ec..07bd8becd13 100644 --- a/packages/page-staking-legacy/src/Validators/Address/types.ts +++ b/packages/page-staking-legacy/src/Validators/Address/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Balance } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking-legacy/src/Validators/CurrentList.tsx b/packages/page-staking-legacy/src/Validators/CurrentList.tsx index cec49ad014c..25101c08dd6 100644 --- a/packages/page-staking-legacy/src/Validators/CurrentList.tsx +++ b/packages/page-staking-legacy/src/Validators/CurrentList.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHeartbeats, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Validators/Summary.tsx b/packages/page-staking-legacy/src/Validators/Summary.tsx index 0ac8762664c..1313b1f73de 100644 --- a/packages/page-staking-legacy/src/Validators/Summary.tsx +++ b/packages/page-staking-legacy/src/Validators/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Validators/index.tsx b/packages/page-staking-legacy/src/Validators/index.tsx index 20c7fd86d0a..6eab5746dcf 100644 --- a/packages/page-staking-legacy/src/Validators/index.tsx +++ b/packages/page-staking-legacy/src/Validators/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHeartbeats, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/Validators/types.ts b/packages/page-staking-legacy/src/Validators/types.ts index 96fc625a0d7..7ea578a1004 100644 --- a/packages/page-staking-legacy/src/Validators/types.ts +++ b/packages/page-staking-legacy/src/Validators/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export interface AddressDetails { diff --git a/packages/page-staking-legacy/src/constants.ts b/packages/page-staking-legacy/src/constants.ts index d7a7eb5e3f8..39c5c016057 100644 --- a/packages/page-staking-legacy/src/constants.ts +++ b/packages/page-staking-legacy/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export const MAX_NOMINATIONS = 16; diff --git a/packages/page-staking-legacy/src/index.tsx b/packages/page-staking-legacy/src/index.tsx index 1d8454adf07..df25c9fcc5a 100644 --- a/packages/page-staking-legacy/src/index.tsx +++ b/packages/page-staking-legacy/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/translate.ts b/packages/page-staking-legacy/src/translate.ts index d0b6d4925f3..337aa62a236 100644 --- a/packages/page-staking-legacy/src/translate.ts +++ b/packages/page-staking-legacy/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-staking-legacy/src/types.ts b/packages/page-staking-legacy/src/types.ts index 5cef2746826..b959312c3ee 100644 --- a/packages/page-staking-legacy/src/types.ts +++ b/packages/page-staking-legacy/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Inflation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking-legacy/src/useIdentities.ts b/packages/page-staking-legacy/src/useIdentities.ts index 342be563d91..8d2a60bd57b 100644 --- a/packages/page-staking-legacy/src/useIdentities.ts +++ b/packages/page-staking-legacy/src/useIdentities.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHasIdentity } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking-legacy/src/useNominations.ts b/packages/page-staking-legacy/src/useNominations.ts index f4e6b3cce8a..4b618137e56 100644 --- a/packages/page-staking-legacy/src/useNominations.ts +++ b/packages/page-staking-legacy/src/useNominations.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-staking-legacy/src/useSortedTargets.ts b/packages/page-staking-legacy/src/useSortedTargets.ts index 6ae55f163e9..55fa3abcd14 100644 --- a/packages/page-staking-legacy/src/useSortedTargets.ts +++ b/packages/page-staking-legacy/src/useSortedTargets.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Actions/Account/BondExtra.tsx b/packages/page-staking/src/Actions/Account/BondExtra.tsx index c0402da054b..cc1fe119224 100644 --- a/packages/page-staking/src/Actions/Account/BondExtra.tsx +++ b/packages/page-staking/src/Actions/Account/BondExtra.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Actions/Account/InjectKeys.tsx b/packages/page-staking/src/Actions/Account/InjectKeys.tsx index a1c2dc42b41..87fa30be2ad 100644 --- a/packages/page-staking/src/Actions/Account/InjectKeys.tsx +++ b/packages/page-staking/src/Actions/Account/InjectKeys.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeypairType } from '@polkadot/util-crypto/types'; diff --git a/packages/page-staking/src/Actions/Account/InputValidateAmount.tsx b/packages/page-staking/src/Actions/Account/InputValidateAmount.tsx index 86602466b66..3d23507a88b 100644 --- a/packages/page-staking/src/Actions/Account/InputValidateAmount.tsx +++ b/packages/page-staking/src/Actions/Account/InputValidateAmount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/InputValidationController.tsx b/packages/page-staking/src/Actions/Account/InputValidationController.tsx index d1e596e6b96..7a4d99cbcc3 100644 --- a/packages/page-staking/src/Actions/Account/InputValidationController.tsx +++ b/packages/page-staking/src/Actions/Account/InputValidationController.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/InputValidationSessionKey.tsx b/packages/page-staking/src/Actions/Account/InputValidationSessionKey.tsx index d3773c37bca..f98d487694a 100644 --- a/packages/page-staking/src/Actions/Account/InputValidationSessionKey.tsx +++ b/packages/page-staking/src/Actions/Account/InputValidationSessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { I18nProps } from '@polkadot/react-components/types'; diff --git a/packages/page-staking/src/Actions/Account/InputValidationUnstakeThreshold.tsx b/packages/page-staking/src/Actions/Account/InputValidationUnstakeThreshold.tsx index 99688d58f54..e6e84e98a4a 100644 --- a/packages/page-staking/src/Actions/Account/InputValidationUnstakeThreshold.tsx +++ b/packages/page-staking/src/Actions/Account/InputValidationUnstakeThreshold.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Account/KickNominees.tsx b/packages/page-staking/src/Actions/Account/KickNominees.tsx index 543c65cb19d..807ae962c7d 100644 --- a/packages/page-staking/src/Actions/Account/KickNominees.tsx +++ b/packages/page-staking/src/Actions/Account/KickNominees.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking/src/Actions/Account/ListNominees.tsx b/packages/page-staking/src/Actions/Account/ListNominees.tsx index 762336c739b..3fc3fd1d750 100644 --- a/packages/page-staking/src/Actions/Account/ListNominees.tsx +++ b/packages/page-staking/src/Actions/Account/ListNominees.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveEraExposure, DeriveSessionIndexes } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/Nominate.tsx b/packages/page-staking/src/Actions/Account/Nominate.tsx index 83e1710267f..2515247b6e5 100644 --- a/packages/page-staking/src/Actions/Account/Nominate.tsx +++ b/packages/page-staking/src/Actions/Account/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Account/Rebond.tsx b/packages/page-staking/src/Actions/Account/Rebond.tsx index bcfcbe0763d..46a5ad14298 100644 --- a/packages/page-staking/src/Actions/Account/Rebond.tsx +++ b/packages/page-staking/src/Actions/Account/Rebond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/SetControllerAccount.tsx b/packages/page-staking/src/Actions/Account/SetControllerAccount.tsx index 12022b4e7ad..6f2642a5b14 100644 --- a/packages/page-staking/src/Actions/Account/SetControllerAccount.tsx +++ b/packages/page-staking/src/Actions/Account/SetControllerAccount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo, useState } from 'react'; diff --git a/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx b/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx index 02aa33ffb09..41ced2c70a4 100644 --- a/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx +++ b/packages/page-staking/src/Actions/Account/SetRewardDestination.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/SetSessionKey.tsx b/packages/page-staking/src/Actions/Account/SetSessionKey.tsx index 240dec0d0ba..060c1074763 100644 --- a/packages/page-staking/src/Actions/Account/SetSessionKey.tsx +++ b/packages/page-staking/src/Actions/Account/SetSessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo } from '../partials/types.js'; diff --git a/packages/page-staking/src/Actions/Account/Unbond.tsx b/packages/page-staking/src/Actions/Account/Unbond.tsx index fb219493eee..388e43a5517 100644 --- a/packages/page-staking/src/Actions/Account/Unbond.tsx +++ b/packages/page-staking/src/Actions/Account/Unbond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletStakingStakingLedger } from '@polkadot/types/lookup'; diff --git a/packages/page-staking/src/Actions/Account/Validate.tsx b/packages/page-staking/src/Actions/Account/Validate.tsx index e6a2b150fe3..81703f92c3d 100644 --- a/packages/page-staking/src/Actions/Account/Validate.tsx +++ b/packages/page-staking/src/Actions/Account/Validate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Account/WarnBond.tsx b/packages/page-staking/src/Actions/Account/WarnBond.tsx index 105c677ef64..12c7b71ae5d 100644 --- a/packages/page-staking/src/Actions/Account/WarnBond.tsx +++ b/packages/page-staking/src/Actions/Account/WarnBond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Account/index.tsx b/packages/page-staking/src/Actions/Account/index.tsx index 90124c43186..984983b7b1b 100644 --- a/packages/page-staking/src/Actions/Account/index.tsx +++ b/packages/page-staking/src/Actions/Account/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Actions/Accounts.tsx b/packages/page-staking/src/Actions/Accounts.tsx index 2027b27b0e9..2022c4e71ae 100644 --- a/packages/page-staking/src/Actions/Accounts.tsx +++ b/packages/page-staking/src/Actions/Accounts.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/Actions/NewNominator.tsx b/packages/page-staking/src/Actions/NewNominator.tsx index 94e210c352b..507c2bcaffb 100644 --- a/packages/page-staking/src/Actions/NewNominator.tsx +++ b/packages/page-staking/src/Actions/NewNominator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SortedTargets } from '../types.js'; diff --git a/packages/page-staking/src/Actions/NewStash.tsx b/packages/page-staking/src/Actions/NewStash.tsx index 2ce64539b1f..53caae09e6c 100644 --- a/packages/page-staking/src/Actions/NewStash.tsx +++ b/packages/page-staking/src/Actions/NewStash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BondInfo } from './partials/types.js'; diff --git a/packages/page-staking/src/Actions/NewValidator.tsx b/packages/page-staking/src/Actions/NewValidator.tsx index 7af6ebd785c..279f24a4665 100644 --- a/packages/page-staking/src/Actions/NewValidator.tsx +++ b/packages/page-staking/src/Actions/NewValidator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Pool/Account.tsx b/packages/page-staking/src/Actions/Pool/Account.tsx index 885663b4e86..b36bef51cd3 100644 --- a/packages/page-staking/src/Actions/Pool/Account.tsx +++ b/packages/page-staking/src/Actions/Pool/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress, DeriveUnlocking } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Pool/BondExtra.tsx b/packages/page-staking/src/Actions/Pool/BondExtra.tsx index 2310be6529d..708e98a3538 100644 --- a/packages/page-staking/src/Actions/Pool/BondExtra.tsx +++ b/packages/page-staking/src/Actions/Pool/BondExtra.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Pool/Unbond.tsx b/packages/page-staking/src/Actions/Pool/Unbond.tsx index 2c12e3261d3..49243a034e2 100644 --- a/packages/page-staking/src/Actions/Pool/Unbond.tsx +++ b/packages/page-staking/src/Actions/Pool/Unbond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/Pool/index.tsx b/packages/page-staking/src/Actions/Pool/index.tsx index 4e03f9b2e7b..8e05946532d 100644 --- a/packages/page-staking/src/Actions/Pool/index.tsx +++ b/packages/page-staking/src/Actions/Pool/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/Pool/types.ts b/packages/page-staking/src/Actions/Pool/types.ts index 5402ccab713..06316f43396 100644 --- a/packages/page-staking/src/Actions/Pool/types.ts +++ b/packages/page-staking/src/Actions/Pool/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletNominationPoolsPoolMember } from '@polkadot/types/lookup'; diff --git a/packages/page-staking/src/Actions/Pool/useAccountInfo.ts b/packages/page-staking/src/Actions/Pool/useAccountInfo.ts index b38149096ca..8c62829cb01 100644 --- a/packages/page-staking/src/Actions/Pool/useAccountInfo.ts +++ b/packages/page-staking/src/Actions/Pool/useAccountInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking/src/Actions/Pools.tsx b/packages/page-staking/src/Actions/Pools.tsx index 8e7478078c8..345fbda329d 100644 --- a/packages/page-staking/src/Actions/Pools.tsx +++ b/packages/page-staking/src/Actions/Pools.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/destOptions.tsx b/packages/page-staking/src/Actions/destOptions.tsx index 8f9820c8233..e1616644c89 100644 --- a/packages/page-staking/src/Actions/destOptions.tsx +++ b/packages/page-staking/src/Actions/destOptions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 interface Option { diff --git a/packages/page-staking/src/Actions/index.tsx b/packages/page-staking/src/Actions/index.tsx index b4c8a2bda3f..389580f9b85 100644 --- a/packages/page-staking/src/Actions/index.tsx +++ b/packages/page-staking/src/Actions/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/api-augment'; diff --git a/packages/page-staking/src/Actions/partials/Bond.tsx b/packages/page-staking/src/Actions/partials/Bond.tsx index f4816b17406..4f8c93abd92 100644 --- a/packages/page-staking/src/Actions/partials/Bond.tsx +++ b/packages/page-staking/src/Actions/partials/Bond.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Actions/partials/Nominate.tsx b/packages/page-staking/src/Actions/partials/Nominate.tsx index 599641292ac..35c931e2742 100644 --- a/packages/page-staking/src/Actions/partials/Nominate.tsx +++ b/packages/page-staking/src/Actions/partials/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking/src/Actions/partials/PoolInfo.tsx b/packages/page-staking/src/Actions/partials/PoolInfo.tsx index ab555f1a689..34d8704809e 100644 --- a/packages/page-staking/src/Actions/partials/PoolInfo.tsx +++ b/packages/page-staking/src/Actions/partials/PoolInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Actions/partials/SenderInfo.tsx b/packages/page-staking/src/Actions/partials/SenderInfo.tsx index e8edca9ba4b..995bb9d620d 100644 --- a/packages/page-staking/src/Actions/partials/SenderInfo.tsx +++ b/packages/page-staking/src/Actions/partials/SenderInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking/src/Actions/partials/SessionKey.tsx b/packages/page-staking/src/Actions/partials/SessionKey.tsx index c23f0b7ff3f..f1cfcefe885 100644 --- a/packages/page-staking/src/Actions/partials/SessionKey.tsx +++ b/packages/page-staking/src/Actions/partials/SessionKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo } from './types.js'; diff --git a/packages/page-staking/src/Actions/partials/Validate.tsx b/packages/page-staking/src/Actions/partials/Validate.tsx index 9bfadded37d..2184671e752 100644 --- a/packages/page-staking/src/Actions/partials/Validate.tsx +++ b/packages/page-staking/src/Actions/partials/Validate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ValidateInfo } from './types.js'; diff --git a/packages/page-staking/src/Actions/partials/types.ts b/packages/page-staking/src/Actions/partials/types.ts index cbef096c95a..6e454a85f7a 100644 --- a/packages/page-staking/src/Actions/partials/types.ts +++ b/packages/page-staking/src/Actions/partials/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking/src/Actions/types.ts b/packages/page-staking/src/Actions/types.ts index 30e535f9c60..3b75d493c7e 100644 --- a/packages/page-staking/src/Actions/types.ts +++ b/packages/page-staking/src/Actions/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance, UnappliedSlashOther } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking/src/Actions/useInactives.ts b/packages/page-staking/src/Actions/useInactives.ts index 7b351eade8f..b799d8769f6 100644 --- a/packages/page-staking/src/Actions/useInactives.ts +++ b/packages/page-staking/src/Actions/useInactives.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Actions/useSlashingSpans.ts b/packages/page-staking/src/Actions/useSlashingSpans.ts index 74e9577f3e1..df11b62e699 100644 --- a/packages/page-staking/src/Actions/useSlashingSpans.ts +++ b/packages/page-staking/src/Actions/useSlashingSpans.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking/src/Actions/useUnbondDuration.ts b/packages/page-staking/src/Actions/useUnbondDuration.ts index 1c12688168b..066ae0ed1cd 100644 --- a/packages/page-staking/src/Actions/useUnbondDuration.ts +++ b/packages/page-staking/src/Actions/useUnbondDuration.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionInfo } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Bags/Bag.tsx b/packages/page-staking/src/Bags/Bag.tsx index fcf09ad6408..d1728604fa2 100644 --- a/packages/page-staking/src/Bags/Bag.tsx +++ b/packages/page-staking/src/Bags/Bag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId32 } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking/src/Bags/Rebag.tsx b/packages/page-staking/src/Bags/Rebag.tsx index 6d9b79d6d5f..e25ebb75c3b 100644 --- a/packages/page-staking/src/Bags/Rebag.tsx +++ b/packages/page-staking/src/Bags/Rebag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Bags/Stash.tsx b/packages/page-staking/src/Bags/Stash.tsx index 5119ee9a608..d2aa038f756 100644 --- a/packages/page-staking/src/Bags/Stash.tsx +++ b/packages/page-staking/src/Bags/Stash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Bags/Summary.tsx b/packages/page-staking/src/Bags/Summary.tsx index 7810da9372b..82b0eeaf418 100644 --- a/packages/page-staking/src/Bags/Summary.tsx +++ b/packages/page-staking/src/Bags/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Bags/index.tsx b/packages/page-staking/src/Bags/index.tsx index 3b66bc294ff..bb176bcaf4b 100644 --- a/packages/page-staking/src/Bags/index.tsx +++ b/packages/page-staking/src/Bags/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/Bags/types.ts b/packages/page-staking/src/Bags/types.ts index e317f91e6e1..09c9d81cd50 100644 --- a/packages/page-staking/src/Bags/types.ts +++ b/packages/page-staking/src/Bags/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletBagsListListBag, PalletBagsListListNode } from '@polkadot/types/lookup'; diff --git a/packages/page-staking/src/Bags/useBagEntries.tsx b/packages/page-staking/src/Bags/useBagEntries.tsx index 794893a2d1a..3151a5e3e0c 100644 --- a/packages/page-staking/src/Bags/useBagEntries.tsx +++ b/packages/page-staking/src/Bags/useBagEntries.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking/src/Bags/useBagsList.ts b/packages/page-staking/src/Bags/useBagsList.ts index e75bc2eb5e6..95db6871d08 100644 --- a/packages/page-staking/src/Bags/useBagsList.ts +++ b/packages/page-staking/src/Bags/useBagsList.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey, u64 } from '@polkadot/types'; diff --git a/packages/page-staking/src/Bags/useBagsNodes.tsx b/packages/page-staking/src/Bags/useBagsNodes.tsx index 4a73827e2fe..9941e9d5153 100644 --- a/packages/page-staking/src/Bags/useBagsNodes.tsx +++ b/packages/page-staking/src/Bags/useBagsNodes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking/src/Bags/useBonded.ts b/packages/page-staking/src/Bags/useBonded.ts index c75346e5c8a..20c2a31d685 100644 --- a/packages/page-staking/src/Bags/useBonded.ts +++ b/packages/page-staking/src/Bags/useBonded.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Bags/useQueryModule.ts b/packages/page-staking/src/Bags/useQueryModule.ts index cddccaac41c..e35c179714a 100644 --- a/packages/page-staking/src/Bags/useQueryModule.ts +++ b/packages/page-staking/src/Bags/useQueryModule.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AugmentedQueries } from '@polkadot/api-base/types'; diff --git a/packages/page-staking/src/ElectionBanner.tsx b/packages/page-staking/src/ElectionBanner.tsx index 21e37980c0b..5e05dcc3792 100644 --- a/packages/page-staking/src/ElectionBanner.tsx +++ b/packages/page-staking/src/ElectionBanner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking/src/Filtering.tsx b/packages/page-staking/src/Filtering.tsx index 39b190a30c6..df04498344d 100644 --- a/packages/page-staking/src/Filtering.tsx +++ b/packages/page-staking/src/Filtering.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import queryString from 'query-string'; diff --git a/packages/page-staking/src/MarkPoolsWarning.tsx b/packages/page-staking/src/MarkPoolsWarning.tsx index 4dec85b15ab..41257e220a4 100644 --- a/packages/page-staking/src/MarkPoolsWarning.tsx +++ b/packages/page-staking/src/MarkPoolsWarning.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking/src/MaxBadge.tsx b/packages/page-staking/src/MaxBadge.tsx index e0a846f8d08..7a25ae265da 100644 --- a/packages/page-staking/src/MaxBadge.tsx +++ b/packages/page-staking/src/MaxBadge.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking/src/Payouts/PayButton.tsx b/packages/page-staking/src/Payouts/PayButton.tsx index 8f305caaf33..015f1abb981 100644 --- a/packages/page-staking/src/Payouts/PayButton.tsx +++ b/packages/page-staking/src/Payouts/PayButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Payouts/Stash.tsx b/packages/page-staking/src/Payouts/Stash.tsx index 724c1aa3da8..f866fe29a18 100644 --- a/packages/page-staking/src/Payouts/Stash.tsx +++ b/packages/page-staking/src/Payouts/Stash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Payouts/Validator.tsx b/packages/page-staking/src/Payouts/Validator.tsx index 5849bc53717..c9adea05a71 100644 --- a/packages/page-staking/src/Payouts/Validator.tsx +++ b/packages/page-staking/src/Payouts/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Payouts/index.tsx b/packages/page-staking/src/Payouts/index.tsx index 83efa05e49c..526ae7b0eec 100644 --- a/packages/page-staking/src/Payouts/index.tsx +++ b/packages/page-staking/src/Payouts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerReward } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Payouts/types.ts b/packages/page-staking/src/Payouts/types.ts index e0e704ca3c6..b3a8477c6e4 100644 --- a/packages/page-staking/src/Payouts/types.ts +++ b/packages/page-staking/src/Payouts/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerReward } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Payouts/useEraBlocks.ts b/packages/page-staking/src/Payouts/useEraBlocks.ts index 7a97830bcf9..ee3fd7563bb 100644 --- a/packages/page-staking/src/Payouts/useEraBlocks.ts +++ b/packages/page-staking/src/Payouts/useEraBlocks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Payouts/util.tsx b/packages/page-staking/src/Payouts/util.tsx index e6db76769ea..2d8c9468c17 100644 --- a/packages/page-staking/src/Payouts/util.tsx +++ b/packages/page-staking/src/Payouts/util.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Query/Chart.tsx b/packages/page-staking/src/Query/Chart.tsx index afd550cad8f..65693436557 100644 --- a/packages/page-staking/src/Query/Chart.tsx +++ b/packages/page-staking/src/Query/Chart.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LineData } from './types.js'; diff --git a/packages/page-staking/src/Query/ChartPoints.tsx b/packages/page-staking/src/Query/ChartPoints.tsx index 390fba16106..43c3620700e 100644 --- a/packages/page-staking/src/Query/ChartPoints.tsx +++ b/packages/page-staking/src/Query/ChartPoints.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerPoints } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Query/ChartPrefs.tsx b/packages/page-staking/src/Query/ChartPrefs.tsx index 9c30f7bc6be..d0c41c33e68 100644 --- a/packages/page-staking/src/Query/ChartPrefs.tsx +++ b/packages/page-staking/src/Query/ChartPrefs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakerPrefs } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Query/ChartRewards.tsx b/packages/page-staking/src/Query/ChartRewards.tsx index f43eaf6928a..af73c7ac3d7 100644 --- a/packages/page-staking/src/Query/ChartRewards.tsx +++ b/packages/page-staking/src/Query/ChartRewards.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveEraRewards, DeriveOwnSlashes, DeriveStakerPoints } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Query/ChartStake.tsx b/packages/page-staking/src/Query/ChartStake.tsx index 44bf5ad61a8..dac7d824553 100644 --- a/packages/page-staking/src/Query/ChartStake.tsx +++ b/packages/page-staking/src/Query/ChartStake.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveOwnExposure } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Query/Validator.tsx b/packages/page-staking/src/Query/Validator.tsx index 32a616872da..68be40034a2 100644 --- a/packages/page-staking/src/Query/Validator.tsx +++ b/packages/page-staking/src/Query/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from './types.js'; diff --git a/packages/page-staking/src/Query/index.tsx b/packages/page-staking/src/Query/index.tsx index 3040c1cee22..a9182bc274d 100644 --- a/packages/page-staking/src/Query/index.tsx +++ b/packages/page-staking/src/Query/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { INumber } from '@polkadot/types/types'; diff --git a/packages/page-staking/src/Query/types.ts b/packages/page-staking/src/Query/types.ts index a35bc163c9d..d2304eb0d6b 100644 --- a/packages/page-staking/src/Query/types.ts +++ b/packages/page-staking/src/Query/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Query/useBlockCounts.tsx b/packages/page-staking/src/Query/useBlockCounts.tsx index daefe2fa4a9..ae44836ba62 100644 --- a/packages/page-staking/src/Query/useBlockCounts.tsx +++ b/packages/page-staking/src/Query/useBlockCounts.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionIndexes } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Query/util.ts b/packages/page-staking/src/Query/util.ts index 280b6cd3312..0174dd40c87 100644 --- a/packages/page-staking/src/Query/util.ts +++ b/packages/page-staking/src/Query/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Slashes/Era.tsx b/packages/page-staking/src/Slashes/Era.tsx index 8928e404c8b..144815e0697 100644 --- a/packages/page-staking/src/Slashes/Era.tsx +++ b/packages/page-staking/src/Slashes/Era.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-staking/src/Slashes/Row.tsx b/packages/page-staking/src/Slashes/Row.tsx index 767362af861..fb48c9d39e7 100644 --- a/packages/page-staking/src/Slashes/Row.tsx +++ b/packages/page-staking/src/Slashes/Row.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Slash } from './types.js'; diff --git a/packages/page-staking/src/Slashes/Summary.tsx b/packages/page-staking/src/Slashes/Summary.tsx index e6050f0755e..9b02f73cc62 100644 --- a/packages/page-staking/src/Slashes/Summary.tsx +++ b/packages/page-staking/src/Slashes/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Slashes/index.tsx b/packages/page-staking/src/Slashes/index.tsx index 89141ace4d4..d6c911510e2 100644 --- a/packages/page-staking/src/Slashes/index.tsx +++ b/packages/page-staking/src/Slashes/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/Slashes/types.ts b/packages/page-staking/src/Slashes/types.ts index 74bc3e3fa4d..6b1359964b4 100644 --- a/packages/page-staking/src/Slashes/types.ts +++ b/packages/page-staking/src/Slashes/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UnappliedSlash } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking/src/Targets/Nominate.tsx b/packages/page-staking/src/Targets/Nominate.tsx index d5f589878c7..5c502ddd55b 100644 --- a/packages/page-staking/src/Targets/Nominate.tsx +++ b/packages/page-staking/src/Targets/Nominate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/Targets/Summary.tsx b/packages/page-staking/src/Targets/Summary.tsx index 7eb94df624b..45552d9825a 100644 --- a/packages/page-staking/src/Targets/Summary.tsx +++ b/packages/page-staking/src/Targets/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking/src/Targets/Validator.tsx b/packages/page-staking/src/Targets/Validator.tsx index 657221a4b65..4e275ff8fef 100644 --- a/packages/page-staking/src/Targets/Validator.tsx +++ b/packages/page-staking/src/Targets/Validator.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UnappliedSlash } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking/src/Targets/index.tsx b/packages/page-staking/src/Targets/index.tsx index 4de3db8f373..622fd4f8e05 100644 --- a/packages/page-staking/src/Targets/index.tsx +++ b/packages/page-staking/src/Targets/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHasIdentity, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Targets/useOwnNominators.ts b/packages/page-staking/src/Targets/useOwnNominators.ts index 1082217b718..cf1b9112609 100644 --- a/packages/page-staking/src/Targets/useOwnNominators.ts +++ b/packages/page-staking/src/Targets/useOwnNominators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StakerState } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/Validators/ActionsBanner.tsx b/packages/page-staking/src/Validators/ActionsBanner.tsx index a51e6d7a383..c1cc7df100c 100644 --- a/packages/page-staking/src/Validators/ActionsBanner.tsx +++ b/packages/page-staking/src/Validators/ActionsBanner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking/src/Validators/Address/NominatedBy.tsx b/packages/page-staking/src/Validators/Address/NominatedBy.tsx index ef8b2cde5e6..97a974d0b9e 100644 --- a/packages/page-staking/src/Validators/Address/NominatedBy.tsx +++ b/packages/page-staking/src/Validators/Address/NominatedBy.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Validators/Address/StakeOther.tsx b/packages/page-staking/src/Validators/Address/StakeOther.tsx index 8a87eabe8d1..bee38255996 100644 --- a/packages/page-staking/src/Validators/Address/StakeOther.tsx +++ b/packages/page-staking/src/Validators/Address/StakeOther.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking/src/Validators/Address/Status.tsx b/packages/page-staking/src/Validators/Address/Status.tsx index c636d0da2a2..11308ed1cf4 100644 --- a/packages/page-staking/src/Validators/Address/Status.tsx +++ b/packages/page-staking/src/Validators/Address/Status.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking/src/Validators/Address/index.tsx b/packages/page-staking/src/Validators/Address/index.tsx index 469c44b537e..e4f5e69ceba 100644 --- a/packages/page-staking/src/Validators/Address/index.tsx +++ b/packages/page-staking/src/Validators/Address/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking/src/Validators/Address/types.ts b/packages/page-staking/src/Validators/Address/types.ts index 50469c300ec..07bd8becd13 100644 --- a/packages/page-staking/src/Validators/Address/types.ts +++ b/packages/page-staking/src/Validators/Address/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Balance } from '@polkadot/types/interfaces'; diff --git a/packages/page-staking/src/Validators/CurrentList.tsx b/packages/page-staking/src/Validators/CurrentList.tsx index cec49ad014c..25101c08dd6 100644 --- a/packages/page-staking/src/Validators/CurrentList.tsx +++ b/packages/page-staking/src/Validators/CurrentList.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHeartbeats, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Validators/Summary.tsx b/packages/page-staking/src/Validators/Summary.tsx index 0ac8762664c..1313b1f73de 100644 --- a/packages/page-staking/src/Validators/Summary.tsx +++ b/packages/page-staking/src/Validators/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Validators/index.tsx b/packages/page-staking/src/Validators/index.tsx index 20c7fd86d0a..6eab5746dcf 100644 --- a/packages/page-staking/src/Validators/index.tsx +++ b/packages/page-staking/src/Validators/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHeartbeats, DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/Validators/types.ts b/packages/page-staking/src/Validators/types.ts index 96fc625a0d7..7ea578a1004 100644 --- a/packages/page-staking/src/Validators/types.ts +++ b/packages/page-staking/src/Validators/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export interface AddressDetails { diff --git a/packages/page-staking/src/constants.ts b/packages/page-staking/src/constants.ts index d7a7eb5e3f8..39c5c016057 100644 --- a/packages/page-staking/src/constants.ts +++ b/packages/page-staking/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export const MAX_NOMINATIONS = 16; diff --git a/packages/page-staking/src/index.tsx b/packages/page-staking/src/index.tsx index be401a1a643..32994f220d8 100644 --- a/packages/page-staking/src/index.tsx +++ b/packages/page-staking/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingOverview } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/translate.ts b/packages/page-staking/src/translate.ts index 94b515d8b4e..0dce40a779d 100644 --- a/packages/page-staking/src/translate.ts +++ b/packages/page-staking/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-staking/src/types.ts b/packages/page-staking/src/types.ts index 5deb93ccf84..3814460ea72 100644 --- a/packages/page-staking/src/types.ts +++ b/packages/page-staking/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Inflation } from '@polkadot/react-hooks/types'; diff --git a/packages/page-staking/src/useIdentities.ts b/packages/page-staking/src/useIdentities.ts index 342be563d91..8d2a60bd57b 100644 --- a/packages/page-staking/src/useIdentities.ts +++ b/packages/page-staking/src/useIdentities.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveHasIdentity } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking/src/useNominations.ts b/packages/page-staking/src/useNominations.ts index f4e6b3cce8a..4b618137e56 100644 --- a/packages/page-staking/src/useNominations.ts +++ b/packages/page-staking/src/useNominations.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, StorageKey } from '@polkadot/types'; diff --git a/packages/page-staking/src/useSortedTargets.ts b/packages/page-staking/src/useSortedTargets.ts index 3fab17413d7..75b62464a9c 100644 --- a/packages/page-staking/src/useSortedTargets.ts +++ b/packages/page-staking/src/useSortedTargets.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking2/src/Legend.tsx b/packages/page-staking2/src/Legend.tsx index 740b11d6ebb..6a2b005bb70 100644 --- a/packages/page-staking2/src/Legend.tsx +++ b/packages/page-staking2/src/Legend.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Pools/Create.tsx b/packages/page-staking2/src/Pools/Create.tsx index 446ba2ca2dd..15aee6d3e6f 100644 --- a/packages/page-staking2/src/Pools/Create.tsx +++ b/packages/page-staking2/src/Pools/Create.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Pools/Join.tsx b/packages/page-staking2/src/Pools/Join.tsx index cc274b70235..2335c302916 100644 --- a/packages/page-staking2/src/Pools/Join.tsx +++ b/packages/page-staking2/src/Pools/Join.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Pools/Pool.tsx b/packages/page-staking2/src/Pools/Pool.tsx index 765dd07f066..89db5a3feaa 100644 --- a/packages/page-staking2/src/Pools/Pool.tsx +++ b/packages/page-staking2/src/Pools/Pool.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Pools/Pools.tsx b/packages/page-staking2/src/Pools/Pools.tsx index 83c2257b30c..56b06835fd7 100644 --- a/packages/page-staking2/src/Pools/Pools.tsx +++ b/packages/page-staking2/src/Pools/Pools.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Pools/Summary.tsx b/packages/page-staking2/src/Pools/Summary.tsx index 1f66f5943e3..bb5a6e9ce36 100644 --- a/packages/page-staking2/src/Pools/Summary.tsx +++ b/packages/page-staking2/src/Pools/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Params } from './types.js'; diff --git a/packages/page-staking2/src/Pools/index.tsx b/packages/page-staking2/src/Pools/index.tsx index 9242e69d775..8fdad3dccd2 100644 --- a/packages/page-staking2/src/Pools/index.tsx +++ b/packages/page-staking2/src/Pools/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OwnPool } from './types.js'; diff --git a/packages/page-staking2/src/Pools/types.ts b/packages/page-staking2/src/Pools/types.ts index 1e4facaa19f..35e49057f4e 100644 --- a/packages/page-staking2/src/Pools/types.ts +++ b/packages/page-staking2/src/Pools/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/Pools/useAmountError.ts b/packages/page-staking2/src/Pools/useAmountError.ts index 94082c647f8..fb913661712 100644 --- a/packages/page-staking2/src/Pools/useAmountError.ts +++ b/packages/page-staking2/src/Pools/useAmountError.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-staking2/src/Pools/useMembers.ts b/packages/page-staking2/src/Pools/useMembers.ts index 2ba267b07e8..bcc737b19cc 100644 --- a/packages/page-staking2/src/Pools/useMembers.ts +++ b/packages/page-staking2/src/Pools/useMembers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-staking2/src/Pools/useOwnPools.ts b/packages/page-staking2/src/Pools/useOwnPools.ts index fe7fe6dce7f..06876b292c6 100644 --- a/packages/page-staking2/src/Pools/useOwnPools.ts +++ b/packages/page-staking2/src/Pools/useOwnPools.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-staking2/src/Pools/useParams.ts b/packages/page-staking2/src/Pools/useParams.ts index 2127942a297..d0c520bb28e 100644 --- a/packages/page-staking2/src/Pools/useParams.ts +++ b/packages/page-staking2/src/Pools/useParams.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/Pools/usePoolAccounts.ts b/packages/page-staking2/src/Pools/usePoolAccounts.ts index 4ecb15af381..9fd54ac2772 100644 --- a/packages/page-staking2/src/Pools/usePoolAccounts.ts +++ b/packages/page-staking2/src/Pools/usePoolAccounts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-staking2/src/Pools/usePoolIds.ts b/packages/page-staking2/src/Pools/usePoolIds.ts index 3c797d73355..0794ef4c59c 100644 --- a/packages/page-staking2/src/Pools/usePoolIds.ts +++ b/packages/page-staking2/src/Pools/usePoolIds.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-staking2/src/Pools/usePoolInfo.ts b/packages/page-staking2/src/Pools/usePoolInfo.ts index c58713b0a85..167e827be5c 100644 --- a/packages/page-staking2/src/Pools/usePoolInfo.ts +++ b/packages/page-staking2/src/Pools/usePoolInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@polkadot/types'; diff --git a/packages/page-staking2/src/Validators/Active/Entry.tsx b/packages/page-staking2/src/Validators/Active/Entry.tsx index 16d05349498..813f7308013 100644 --- a/packages/page-staking2/src/Validators/Active/Entry.tsx +++ b/packages/page-staking2/src/Validators/Active/Entry.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo, Validator } from '../../types.js'; diff --git a/packages/page-staking2/src/Validators/Active/Row/Bottom.tsx b/packages/page-staking2/src/Validators/Active/Row/Bottom.tsx index 2c821e4c686..cf85c24bb89 100644 --- a/packages/page-staking2/src/Validators/Active/Row/Bottom.tsx +++ b/packages/page-staking2/src/Validators/Active/Row/Bottom.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking2/src/Validators/Active/Row/Middle.tsx b/packages/page-staking2/src/Validators/Active/Row/Middle.tsx index 8d8ac676bfb..e114ccb4c92 100644 --- a/packages/page-staking2/src/Validators/Active/Row/Middle.tsx +++ b/packages/page-staking2/src/Validators/Active/Row/Middle.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-staking2/src/Validators/Active/Row/Top.tsx b/packages/page-staking2/src/Validators/Active/Row/Top.tsx index d8771442bd7..ca12ac326ce 100644 --- a/packages/page-staking2/src/Validators/Active/Row/Top.tsx +++ b/packages/page-staking2/src/Validators/Active/Row/Top.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Validator } from '../../../types.js'; diff --git a/packages/page-staking2/src/Validators/Active/Status.tsx b/packages/page-staking2/src/Validators/Active/Status.tsx index ad5eb26a748..c5561e8a6f6 100644 --- a/packages/page-staking2/src/Validators/Active/Status.tsx +++ b/packages/page-staking2/src/Validators/Active/Status.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Validator } from '../../types.js'; diff --git a/packages/page-staking2/src/Validators/Active/index.tsx b/packages/page-staking2/src/Validators/Active/index.tsx index be3c1edac82..103ab2ff359 100644 --- a/packages/page-staking2/src/Validators/Active/index.tsx +++ b/packages/page-staking2/src/Validators/Active/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo, Validator } from '../../types.js'; diff --git a/packages/page-staking2/src/Validators/Waiting/Entry.tsx b/packages/page-staking2/src/Validators/Waiting/Entry.tsx index 8662234ce80..2d851269c4d 100644 --- a/packages/page-staking2/src/Validators/Waiting/Entry.tsx +++ b/packages/page-staking2/src/Validators/Waiting/Entry.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Validator } from '../../types.js'; diff --git a/packages/page-staking2/src/Validators/Waiting/index.tsx b/packages/page-staking2/src/Validators/Waiting/index.tsx index 3e76a2e850e..d2b4a7d6269 100644 --- a/packages/page-staking2/src/Validators/Waiting/index.tsx +++ b/packages/page-staking2/src/Validators/Waiting/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo, Validator } from '../../types.js'; diff --git a/packages/page-staking2/src/Validators/index.tsx b/packages/page-staking2/src/Validators/index.tsx index 0bc4ed9eb77..e5517e12d44 100644 --- a/packages/page-staking2/src/Validators/index.tsx +++ b/packages/page-staking2/src/Validators/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo } from '../types.js'; diff --git a/packages/page-staking2/src/Validators/types.ts b/packages/page-staking2/src/Validators/types.ts index 34875efa899..62b5b55954f 100644 --- a/packages/page-staking2/src/Validators/types.ts +++ b/packages/page-staking2/src/Validators/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/Validators/useExposure.ts b/packages/page-staking2/src/Validators/useExposure.ts index a0623d33aa8..ad25bb1b096 100644 --- a/packages/page-staking2/src/Validators/useExposure.ts +++ b/packages/page-staking2/src/Validators/useExposure.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SpStakingExposure } from '@polkadot/types/lookup'; diff --git a/packages/page-staking2/src/Validators/useHeartbeat.ts b/packages/page-staking2/src/Validators/useHeartbeat.ts index 3aed6492d8d..f766a20992e 100644 --- a/packages/page-staking2/src/Validators/useHeartbeat.ts +++ b/packages/page-staking2/src/Validators/useHeartbeat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/Validators/usePoints.ts b/packages/page-staking2/src/Validators/usePoints.ts index 35c0afe5d56..7b36f8321b1 100644 --- a/packages/page-staking2/src/Validators/usePoints.ts +++ b/packages/page-staking2/src/Validators/usePoints.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletStakingEraRewardPoints } from '@polkadot/types/lookup'; diff --git a/packages/page-staking2/src/constants.ts b/packages/page-staking2/src/constants.ts index d7a7eb5e3f8..39c5c016057 100644 --- a/packages/page-staking2/src/constants.ts +++ b/packages/page-staking2/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export const MAX_NOMINATIONS = 16; diff --git a/packages/page-staking2/src/index.tsx b/packages/page-staking2/src/index.tsx index e3e43689a52..a0299ace6d8 100644 --- a/packages/page-staking2/src/index.tsx +++ b/packages/page-staking2/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-staking2/src/translate.ts b/packages/page-staking2/src/translate.ts index 94b515d8b4e..0dce40a779d 100644 --- a/packages/page-staking2/src/translate.ts +++ b/packages/page-staking2/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-staking2/src/types.ts b/packages/page-staking2/src/types.ts index 4f48ba51cbd..f29ea0695e4 100644 --- a/packages/page-staking2/src/types.ts +++ b/packages/page-staking2/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-staking2/src/useCache.ts b/packages/page-staking2/src/useCache.ts index 8caac556c1b..b46e248ee9e 100644 --- a/packages/page-staking2/src/useCache.ts +++ b/packages/page-staking2/src/useCache.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect } from 'react'; diff --git a/packages/page-staking2/src/useElectedValidators.ts b/packages/page-staking2/src/useElectedValidators.ts index b54c16a8d42..c17dd5512d0 100644 --- a/packages/page-staking2/src/useElectedValidators.ts +++ b/packages/page-staking2/src/useElectedValidators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageKey, u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/useSessionInfo.ts b/packages/page-staking2/src/useSessionInfo.ts index 6ae17a64295..ad5c0477681 100644 --- a/packages/page-staking2/src/useSessionInfo.ts +++ b/packages/page-staking2/src/useSessionInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/useTaggedValidators.ts b/packages/page-staking2/src/useTaggedValidators.ts index 6419531fd46..577d3fed267 100644 --- a/packages/page-staking2/src/useTaggedValidators.ts +++ b/packages/page-staking2/src/useTaggedValidators.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo, Validator } from './types.js'; diff --git a/packages/page-staking2/src/useValidatorsActive.ts b/packages/page-staking2/src/useValidatorsActive.ts index 6e0f2d1f4d4..226ec8b441b 100644 --- a/packages/page-staking2/src/useValidatorsActive.ts +++ b/packages/page-staking2/src/useValidatorsActive.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-staking2/src/useValidatorsAll.ts b/packages/page-staking2/src/useValidatorsAll.ts index 2b7405056e0..5a468baa38c 100644 --- a/packages/page-staking2/src/useValidatorsAll.ts +++ b/packages/page-staking2/src/useValidatorsAll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/page-staking2/src/useValidatorsWaiting.ts b/packages/page-staking2/src/useValidatorsWaiting.ts index 39b3f33f09a..6af0a1c40e8 100644 --- a/packages/page-staking2/src/useValidatorsWaiting.ts +++ b/packages/page-staking2/src/useValidatorsWaiting.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SessionInfo, Validator } from './types.js'; diff --git a/packages/page-storage/src/Queries.tsx b/packages/page-storage/src/Queries.tsx index 0242cbaae7b..75c11316a85 100644 --- a/packages/page-storage/src/Queries.tsx +++ b/packages/page-storage/src/Queries.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryTypes } from './types.js'; diff --git a/packages/page-storage/src/Query.tsx b/packages/page-storage/src/Query.tsx index e7fa700ac05..047ba97b6e1 100644 --- a/packages/page-storage/src/Query.tsx +++ b/packages/page-storage/src/Query.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/page-storage/src/Selection/Consts.tsx b/packages/page-storage/src/Selection/Consts.tsx index 1c07d3c17f1..ead5bba0691 100644 --- a/packages/page-storage/src/Selection/Consts.tsx +++ b/packages/page-storage/src/Selection/Consts.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ConstValue } from '@polkadot/react-components/InputConsts/types'; diff --git a/packages/page-storage/src/Selection/Modules.tsx b/packages/page-storage/src/Selection/Modules.tsx index 24cf4a6226d..58274cbc2f4 100644 --- a/packages/page-storage/src/Selection/Modules.tsx +++ b/packages/page-storage/src/Selection/Modules.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/page-storage/src/Selection/Raw.tsx b/packages/page-storage/src/Selection/Raw.tsx index 22dbf6b7eef..2801472a27e 100644 --- a/packages/page-storage/src/Selection/Raw.tsx +++ b/packages/page-storage/src/Selection/Raw.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ComponentProps as Props } from '../types.js'; diff --git a/packages/page-storage/src/Selection/index.tsx b/packages/page-storage/src/Selection/index.tsx index 1c1ab849fca..a65813f0831 100644 --- a/packages/page-storage/src/Selection/index.tsx +++ b/packages/page-storage/src/Selection/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParitalQueryTypes, QueryTypes } from '../types.js'; diff --git a/packages/page-storage/src/index.tsx b/packages/page-storage/src/index.tsx index 4934de75033..7f3f1eb7046 100644 --- a/packages/page-storage/src/index.tsx +++ b/packages/page-storage/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-storage/src/translate.ts b/packages/page-storage/src/translate.ts index 019bb505530..4c7601b7043 100644 --- a/packages/page-storage/src/translate.ts +++ b/packages/page-storage/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-storage/src/types.ts b/packages/page-storage/src/types.ts index 3026cccb9c0..0f899f88467 100644 --- a/packages/page-storage/src/types.ts +++ b/packages/page-storage/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-storage authors & contributors +// Copyright 2017-2025 @polkadot/app-storage authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/page-sudo/src/SetKey.tsx b/packages/page-sudo/src/SetKey.tsx index 4cc23c0b9a3..3076b6803e5 100644 --- a/packages/page-sudo/src/SetKey.tsx +++ b/packages/page-sudo/src/SetKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/page-sudo/src/Sudo.tsx b/packages/page-sudo/src/Sudo.tsx index 9dc57c3503f..a8ccc3e8026 100644 --- a/packages/page-sudo/src/Sudo.tsx +++ b/packages/page-sudo/src/Sudo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-sudo/src/index.tsx b/packages/page-sudo/src/index.tsx index 0eca3fc9cc0..a0d62a65705 100644 --- a/packages/page-sudo/src/index.tsx +++ b/packages/page-sudo/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-js authors & contributors +// Copyright 2017-2025 @polkadot/app-js authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AppProps as Props } from '@polkadot/react-components/types'; diff --git a/packages/page-sudo/src/translate.ts b/packages/page-sudo/src/translate.ts index 9fac01d24e4..5d4d207d879 100644 --- a/packages/page-sudo/src/translate.ts +++ b/packages/page-sudo/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-sudo authors & contributors +// Copyright 2017-2025 @polkadot/app-sudo authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-sudo/src/types.ts b/packages/page-sudo/src/types.ts index d3f30c827f9..1c121a0e1a2 100644 --- a/packages/page-sudo/src/types.ts +++ b/packages/page-sudo/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 export interface ComponentProps { diff --git a/packages/page-tech-comm/src/App.tsx b/packages/page-tech-comm/src/App.tsx index 7c7e5239c98..552d7b3d8dc 100644 --- a/packages/page-tech-comm/src/App.tsx +++ b/packages/page-tech-comm/src/App.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectiveType } from '@polkadot/react-hooks/types'; diff --git a/packages/page-tech-comm/src/Overview/Members.tsx b/packages/page-tech-comm/src/Overview/Members.tsx index 86a558e3205..8c140058ff3 100644 --- a/packages/page-tech-comm/src/Overview/Members.tsx +++ b/packages/page-tech-comm/src/Overview/Members.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-tech-comm/src/Overview/Summary.tsx b/packages/page-tech-comm/src/Overview/Summary.tsx index 67a20793551..493430f54d4 100644 --- a/packages/page-tech-comm/src/Overview/Summary.tsx +++ b/packages/page-tech-comm/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { u32 } from '@polkadot/types'; diff --git a/packages/page-tech-comm/src/Overview/index.tsx b/packages/page-tech-comm/src/Overview/index.tsx index 697195738ff..6922a97400b 100644 --- a/packages/page-tech-comm/src/Overview/index.tsx +++ b/packages/page-tech-comm/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ComponentProps as Props } from '../types.js'; diff --git a/packages/page-tech-comm/src/Proposals/Close.tsx b/packages/page-tech-comm/src/Proposals/Close.tsx index c12f2ca4254..0a13923a973 100644 --- a/packages/page-tech-comm/src/Proposals/Close.tsx +++ b/packages/page-tech-comm/src/Proposals/Close.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectiveType } from '@polkadot/react-hooks/types'; diff --git a/packages/page-tech-comm/src/Proposals/Proposal.tsx b/packages/page-tech-comm/src/Proposals/Proposal.tsx index ba856ee45e1..eb82cb4e6af 100644 --- a/packages/page-tech-comm/src/Proposals/Proposal.tsx +++ b/packages/page-tech-comm/src/Proposals/Proposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCollectiveProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-tech-comm/src/Proposals/Propose.tsx b/packages/page-tech-comm/src/Proposals/Propose.tsx index 48eaa57f0f4..7efd9798546 100644 --- a/packages/page-tech-comm/src/Proposals/Propose.tsx +++ b/packages/page-tech-comm/src/Proposals/Propose.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-tech-comm/src/Proposals/Voting.tsx b/packages/page-tech-comm/src/Proposals/Voting.tsx index f47609f7eb9..734ab4fba85 100644 --- a/packages/page-tech-comm/src/Proposals/Voting.tsx +++ b/packages/page-tech-comm/src/Proposals/Voting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectiveType } from '@polkadot/react-hooks/types'; diff --git a/packages/page-tech-comm/src/Proposals/index.tsx b/packages/page-tech-comm/src/Proposals/index.tsx index 4215f9de24d..555392365f6 100644 --- a/packages/page-tech-comm/src/Proposals/index.tsx +++ b/packages/page-tech-comm/src/Proposals/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-tech-comm/src/index.tsx b/packages/page-tech-comm/src/index.tsx index 09a84e9de16..e2e50b80067 100644 --- a/packages/page-tech-comm/src/index.tsx +++ b/packages/page-tech-comm/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-tech-comm/src/translate.ts b/packages/page-tech-comm/src/translate.ts index cc1128ba1a0..6b7e1bf420b 100644 --- a/packages/page-tech-comm/src/translate.ts +++ b/packages/page-tech-comm/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-tech-comm/src/types.ts b/packages/page-tech-comm/src/types.ts index a8b34e7b445..97e4e2425a5 100644 --- a/packages/page-tech-comm/src/types.ts +++ b/packages/page-tech-comm/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectiveType } from '@polkadot/react-hooks/types'; diff --git a/packages/page-tech-comm/src/useCounter.ts b/packages/page-tech-comm/src/useCounter.ts index 9b841978c8c..baaad09b75b 100644 --- a/packages/page-tech-comm/src/useCounter.ts +++ b/packages/page-tech-comm/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-tech-comm authors & contributors +// Copyright 2017-2025 @polkadot/app-tech-comm authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/page-treasury/src/Overview/Council.tsx b/packages/page-treasury/src/Overview/Council.tsx index 2c45785e413..6fb98a29901 100644 --- a/packages/page-treasury/src/Overview/Council.tsx +++ b/packages/page-treasury/src/Overview/Council.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-treasury/src/Overview/Proposal.tsx b/packages/page-treasury/src/Overview/Proposal.tsx index 5e4b8ad13e0..45056c5a558 100644 --- a/packages/page-treasury/src/Overview/Proposal.tsx +++ b/packages/page-treasury/src/Overview/Proposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveTreasuryProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-treasury/src/Overview/ProposalCreate.tsx b/packages/page-treasury/src/Overview/ProposalCreate.tsx index 562a364d972..7bd0125573d 100644 --- a/packages/page-treasury/src/Overview/ProposalCreate.tsx +++ b/packages/page-treasury/src/Overview/ProposalCreate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option, u128 } from '@polkadot/types'; diff --git a/packages/page-treasury/src/Overview/Proposals.tsx b/packages/page-treasury/src/Overview/Proposals.tsx index af7ce258282..678e4ce2b99 100644 --- a/packages/page-treasury/src/Overview/Proposals.tsx +++ b/packages/page-treasury/src/Overview/Proposals.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveTreasuryProposal } from '@polkadot/api-derive/types'; diff --git a/packages/page-treasury/src/Overview/Summary.tsx b/packages/page-treasury/src/Overview/Summary.tsx index b56d6fbae08..85ff0cd02ca 100644 --- a/packages/page-treasury/src/Overview/Summary.tsx +++ b/packages/page-treasury/src/Overview/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-treasury/src/Overview/index.tsx b/packages/page-treasury/src/Overview/index.tsx index 52dfc0fbe26..e29b66a0d9a 100644 --- a/packages/page-treasury/src/Overview/index.tsx +++ b/packages/page-treasury/src/Overview/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveTreasuryProposals } from '@polkadot/api-derive/types'; diff --git a/packages/page-treasury/src/Tips/Tip.tsx b/packages/page-treasury/src/Tips/Tip.tsx index bde6bf34c13..119406d2c79 100644 --- a/packages/page-treasury/src/Tips/Tip.tsx +++ b/packages/page-treasury/src/Tips/Tip.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Balance, BlockNumber, OpenTipTo225 } from '@polkadot/types/interfaces'; diff --git a/packages/page-treasury/src/Tips/TipCreate.tsx b/packages/page-treasury/src/Tips/TipCreate.tsx index 5eb049a565f..b2a255cee2f 100644 --- a/packages/page-treasury/src/Tips/TipCreate.tsx +++ b/packages/page-treasury/src/Tips/TipCreate.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/page-treasury/src/Tips/TipEndorse.tsx b/packages/page-treasury/src/Tips/TipEndorse.tsx index 1c368719b7a..b32635b32f4 100644 --- a/packages/page-treasury/src/Tips/TipEndorse.tsx +++ b/packages/page-treasury/src/Tips/TipEndorse.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/page-treasury/src/Tips/TipReason.tsx b/packages/page-treasury/src/Tips/TipReason.tsx index e806086f1e3..f725a6cb565 100644 --- a/packages/page-treasury/src/Tips/TipReason.tsx +++ b/packages/page-treasury/src/Tips/TipReason.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@polkadot/types'; diff --git a/packages/page-treasury/src/Tips/Tips.tsx b/packages/page-treasury/src/Tips/Tips.tsx index 30380e18bb7..053c730cd2b 100644 --- a/packages/page-treasury/src/Tips/Tips.tsx +++ b/packages/page-treasury/src/Tips/Tips.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/page-treasury/src/Tips/index.tsx b/packages/page-treasury/src/Tips/index.tsx index f48ab46212f..fe65ec04427 100644 --- a/packages/page-treasury/src/Tips/index.tsx +++ b/packages/page-treasury/src/Tips/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/page-treasury/src/index.tsx b/packages/page-treasury/src/index.tsx index 87ecab4d10e..30891d57623 100644 --- a/packages/page-treasury/src/index.tsx +++ b/packages/page-treasury/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/page-treasury/src/translate.ts b/packages/page-treasury/src/translate.ts index ab2a068296c..ccac199e706 100644 --- a/packages/page-treasury/src/translate.ts +++ b/packages/page-treasury/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-explorer authors & contributors +// Copyright 2017-2025 @polkadot/app-explorer authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-treasury/src/useCounter.ts b/packages/page-treasury/src/useCounter.ts index 51ee1a39cef..1e105cc0e4f 100644 --- a/packages/page-treasury/src/useCounter.ts +++ b/packages/page-treasury/src/useCounter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveTreasuryProposals } from '@polkadot/api-derive/types'; diff --git a/packages/page-treasury/src/useTipHashes.ts b/packages/page-treasury/src/useTipHashes.ts index 88ecc0e8bfb..d44bf252401 100644 --- a/packages/page-treasury/src/useTipHashes.ts +++ b/packages/page-treasury/src/useTipHashes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-treasury authors & contributors +// Copyright 2017-2025 @polkadot/app-treasury authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageKey } from '@polkadot/types'; diff --git a/packages/page-utilities/src/Convert.tsx b/packages/page-utilities/src/Convert.tsx index 3db0db9789d..9d1a4105d99 100644 --- a/packages/page-utilities/src/Convert.tsx +++ b/packages/page-utilities/src/Convert.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-utilities authors & contributors +// Copyright 2017-2025 @polkadot/app-utilities authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/page-utilities/src/Hash.tsx b/packages/page-utilities/src/Hash.tsx index a3c41bffa02..4508aeb484e 100644 --- a/packages/page-utilities/src/Hash.tsx +++ b/packages/page-utilities/src/Hash.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-utilities authors & contributors +// Copyright 2017-2025 @polkadot/app-utilities authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/page-utilities/src/Xcm.tsx b/packages/page-utilities/src/Xcm.tsx index 84d8553f788..fce49068a2f 100644 --- a/packages/page-utilities/src/Xcm.tsx +++ b/packages/page-utilities/src/Xcm.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-utilities authors & contributors +// Copyright 2017-2025 @polkadot/app-utilities authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RawParamOnChangeValue } from '@polkadot/react-params/types'; diff --git a/packages/page-utilities/src/index.tsx b/packages/page-utilities/src/index.tsx index c6774b24461..c1d4e358e36 100644 --- a/packages/page-utilities/src/index.tsx +++ b/packages/page-utilities/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-utilities authors & contributors +// Copyright 2017-2025 @polkadot/app-utilities authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-utilities/src/translate.ts b/packages/page-utilities/src/translate.ts index 59ed88a207f..c325a36f49b 100644 --- a/packages/page-utilities/src/translate.ts +++ b/packages/page-utilities/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-utilities authors & contributors +// Copyright 2017-2025 @polkadot/app-utilities authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-whitelist/src/Hashes/Details.tsx b/packages/page-whitelist/src/Hashes/Details.tsx index b576c69239d..89292fb4716 100644 --- a/packages/page-whitelist/src/Hashes/Details.tsx +++ b/packages/page-whitelist/src/Hashes/Details.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-whitelist authors & contributors +// Copyright 2017-2025 @polkadot/app-whitelist authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/page-whitelist/src/Hashes/Summary.tsx b/packages/page-whitelist/src/Hashes/Summary.tsx index 2ee63ad22b3..677553b3f17 100644 --- a/packages/page-whitelist/src/Hashes/Summary.tsx +++ b/packages/page-whitelist/src/Hashes/Summary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-whitelist authors & contributors +// Copyright 2017-2025 @polkadot/app-whitelist authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/page-whitelist/src/Hashes/index.tsx b/packages/page-whitelist/src/Hashes/index.tsx index 073ea893896..8cf4fc92a49 100644 --- a/packages/page-whitelist/src/Hashes/index.tsx +++ b/packages/page-whitelist/src/Hashes/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-whitelist authors & contributors +// Copyright 2017-2025 @polkadot/app-whitelist authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/page-whitelist/src/index.tsx b/packages/page-whitelist/src/index.tsx index bdccd15b2b7..461027fb822 100644 --- a/packages/page-whitelist/src/index.tsx +++ b/packages/page-whitelist/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-whitelist authors & contributors +// Copyright 2017-2025 @polkadot/app-whitelist authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/page-whitelist/src/translate.ts b/packages/page-whitelist/src/translate.ts index 47256fc3591..8cf9718a0dd 100644 --- a/packages/page-whitelist/src/translate.ts +++ b/packages/page-whitelist/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-whitelist authors & contributors +// Copyright 2017-2025 @polkadot/app-whitelist authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/page-whitelist/src/useHashes.ts b/packages/page-whitelist/src/useHashes.ts index 7da63891746..9460b367292 100644 --- a/packages/page-whitelist/src/useHashes.ts +++ b/packages/page-whitelist/src/useHashes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-preimages authors & contributors +// Copyright 2017-2025 @polkadot/app-preimages authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Changes } from '@polkadot/react-hooks/useEventChanges'; diff --git a/packages/react-api/src/Api.tsx b/packages/react-api/src/Api.tsx index d945096431d..6460f68d28d 100644 --- a/packages/react-api/src/Api.tsx +++ b/packages/react-api/src/Api.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Blockchain } from '@acala-network/chopsticks-core'; diff --git a/packages/react-api/src/hoc/api.tsx b/packages/react-api/src/hoc/api.tsx index 32d78ce94c6..3b111197914 100644 --- a/packages/react-api/src/hoc/api.tsx +++ b/packages/react-api/src/hoc/api.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiProps, SubtractProps } from '../types.js'; diff --git a/packages/react-api/src/hoc/call.tsx b/packages/react-api/src/hoc/call.tsx index 0b0df66df98..6cc738bfea8 100644 --- a/packages/react-api/src/hoc/call.tsx +++ b/packages/react-api/src/hoc/call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 // SInce this file is deemed deprecated (and awaiting removal), we just don't care diff --git a/packages/react-api/src/hoc/callDiv.tsx b/packages/react-api/src/hoc/callDiv.tsx index e549e9f8a26..e1e774a2b0c 100644 --- a/packages/react-api/src/hoc/callDiv.tsx +++ b/packages/react-api/src/hoc/callDiv.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BaseProps } from '../types.js'; diff --git a/packages/react-api/src/hoc/calls.ts b/packages/react-api/src/hoc/calls.ts index 25365159e6f..20ebd49c0e8 100644 --- a/packages/react-api/src/hoc/calls.ts +++ b/packages/react-api/src/hoc/calls.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-api/src/hoc/index.ts b/packages/react-api/src/hoc/index.ts index 80952787ee4..f523a56e454 100644 --- a/packages/react-api/src/hoc/index.ts +++ b/packages/react-api/src/hoc/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 export { default as withApi } from './api.js'; diff --git a/packages/react-api/src/hoc/multi.ts b/packages/react-api/src/hoc/multi.ts index 9758defcf92..6cecdf2d706 100644 --- a/packages/react-api/src/hoc/multi.ts +++ b/packages/react-api/src/hoc/multi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-api/src/hoc/observable.tsx b/packages/react-api/src/hoc/observable.tsx index dd6a75264a2..ca9a06154b7 100644 --- a/packages/react-api/src/hoc/observable.tsx +++ b/packages/react-api/src/hoc/observable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 // TODO: Lots of duplicated code between this and withObservable, surely there is a better way of doing this? diff --git a/packages/react-api/src/hoc/onlyOn.tsx b/packages/react-api/src/hoc/onlyOn.tsx index 59607e93ab0..87f735631ae 100644 --- a/packages/react-api/src/hoc/onlyOn.tsx +++ b/packages/react-api/src/hoc/onlyOn.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ComponentType } from 'react'; diff --git a/packages/react-api/src/hoc/types.ts b/packages/react-api/src/hoc/types.ts index 0e7bbf64ff6..0d47942211e 100644 --- a/packages/react-api/src/hoc/types.ts +++ b/packages/react-api/src/hoc/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-api/src/index.ts b/packages/react-api/src/index.ts index 173e83628b4..10fe0ab94d1 100644 --- a/packages/react-api/src/index.ts +++ b/packages/react-api/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 export { ApiCtxRoot, DEFAULT_DECIMALS, DEFAULT_SS58 } from './Api.js'; diff --git a/packages/react-api/src/light.spec.ts b/packages/react-api/src/light.spec.ts index 041a9077cd5..7d10f36ec98 100644 --- a/packages/react-api/src/light.spec.ts +++ b/packages/react-api/src/light.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/react-api/src/light/index.ts b/packages/react-api/src/light/index.ts index d335024f12e..3bb77583f8b 100644 --- a/packages/react-api/src/light/index.ts +++ b/packages/react-api/src/light/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import { WellKnownChain } from '@substrate/connect'; diff --git a/packages/react-api/src/light/kusama/index.ts b/packages/react-api/src/light/kusama/index.ts index 8fe7b1ffd43..0b161395246 100644 --- a/packages/react-api/src/light/kusama/index.ts +++ b/packages/react-api/src/light/kusama/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 // Add your imported spec here in alphabetical order. diff --git a/packages/react-api/src/light/polkadot/index.ts b/packages/react-api/src/light/polkadot/index.ts index ab584464280..28beb31a38c 100644 --- a/packages/react-api/src/light/polkadot/index.ts +++ b/packages/react-api/src/light/polkadot/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 // Add your imported spec here in alphabetical order. diff --git a/packages/react-api/src/statics.ts b/packages/react-api/src/statics.ts index 7a12e5c42c9..14340768ea1 100644 --- a/packages/react-api/src/statics.ts +++ b/packages/react-api/src/statics.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-api/src/transform/echo.ts b/packages/react-api/src/transform/echo.ts index 702fad1563f..db45da4013c 100644 --- a/packages/react-api/src/transform/echo.ts +++ b/packages/react-api/src/transform/echo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 export default function echoTransform (x: T, _index: number): T { diff --git a/packages/react-api/src/types.ts b/packages/react-api/src/types.ts index e86868034e8..1b89b069551 100644 --- a/packages/react-api/src/types.ts +++ b/packages/react-api/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Blockchain } from '@acala-network/chopsticks-core'; diff --git a/packages/react-api/src/urlTypes.ts b/packages/react-api/src/urlTypes.ts index 07f0e1c600d..cb1e3565ee9 100644 --- a/packages/react-api/src/urlTypes.ts +++ b/packages/react-api/src/urlTypes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import { unzlibSync, zlibSync } from 'fflate'; diff --git a/packages/react-api/src/util/getEnvironment.ts b/packages/react-api/src/util/getEnvironment.ts index 326ed8c60c3..0056f78f942 100644 --- a/packages/react-api/src/util/getEnvironment.ts +++ b/packages/react-api/src/util/getEnvironment.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-accounts authors & contributors +// Copyright 2017-2025 @polkadot/app-accounts authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Environment } from '../types.js'; diff --git a/packages/react-api/src/util/historic.ts b/packages/react-api/src/util/historic.ts index 5cccd903abf..9318745339f 100644 --- a/packages/react-api/src/util/historic.ts +++ b/packages/react-api/src/util/historic.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/react-api/src/util/index.ts b/packages/react-api/src/util/index.ts index 462b15e2525..8106c4dc919 100644 --- a/packages/react-api/src/util/index.ts +++ b/packages/react-api/src/util/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 export { getEnvironment } from './getEnvironment.js'; diff --git a/packages/react-api/src/util/intervalObservable.ts b/packages/react-api/src/util/intervalObservable.ts index affe9ec8abd..116112ecb7d 100644 --- a/packages/react-api/src/util/intervalObservable.ts +++ b/packages/react-api/src/util/intervalObservable.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-api/src/util/isEqual.ts b/packages/react-api/src/util/isEqual.ts index c34cc0a949c..864f1160ede 100644 --- a/packages/react-api/src/util/isEqual.ts +++ b/packages/react-api/src/util/isEqual.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 function flatten (_key: string | null, value?: unknown): unknown { diff --git a/packages/react-api/src/util/triggerChange.ts b/packages/react-api/src/util/triggerChange.ts index d85e8562621..701751ff7e3 100644 --- a/packages/react-api/src/util/triggerChange.ts +++ b/packages/react-api/src/util/triggerChange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-api authors & contributors +// Copyright 2017-2025 @polkadot/react-api authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OnChangeCb } from '../types.js'; diff --git a/packages/react-components/src/AccountIndex.tsx b/packages/react-components/src/AccountIndex.tsx index eec0ab6873a..73079e7453a 100644 --- a/packages/react-components/src/AccountIndex.tsx +++ b/packages/react-components/src/AccountIndex.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveAccountInfo } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/AccountName.tsx b/packages/react-components/src/AccountName.tsx index 94874cfaf66..127e1146cb4 100644 --- a/packages/react-components/src/AccountName.tsx +++ b/packages/react-components/src/AccountName.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/AccountSidebar/AccountMenuButtons.tsx b/packages/react-components/src/AccountSidebar/AccountMenuButtons.tsx index 13f99798ec4..d7adb2659f0 100644 --- a/packages/react-components/src/AccountSidebar/AccountMenuButtons.tsx +++ b/packages/react-components/src/AccountSidebar/AccountMenuButtons.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AddressFlags } from '@polkadot/react-hooks/types'; diff --git a/packages/react-components/src/AccountSidebar/AddressSection.tsx b/packages/react-components/src/AccountSidebar/AddressSection.tsx index 571ba16a6b5..11e3e46b5c9 100644 --- a/packages/react-components/src/AccountSidebar/AddressSection.tsx +++ b/packages/react-components/src/AccountSidebar/AddressSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AddressFlags } from '@polkadot/react-hooks/types'; diff --git a/packages/react-components/src/AccountSidebar/Balances.tsx b/packages/react-components/src/AccountSidebar/Balances.tsx index afa1c79c1d2..7d715ba1490 100644 --- a/packages/react-components/src/AccountSidebar/Balances.tsx +++ b/packages/react-components/src/AccountSidebar/Balances.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/AccountSidebar/Flags.tsx b/packages/react-components/src/AccountSidebar/Flags.tsx index 4fc996a2d01..a917daaebd1 100644 --- a/packages/react-components/src/AccountSidebar/Flags.tsx +++ b/packages/react-components/src/AccountSidebar/Flags.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AddressFlags } from '@polkadot/react-hooks/types'; diff --git a/packages/react-components/src/AccountSidebar/Identity.tsx b/packages/react-components/src/AccountSidebar/Identity.tsx index fe83a885040..33f15169c60 100644 --- a/packages/react-components/src/AccountSidebar/Identity.tsx +++ b/packages/react-components/src/AccountSidebar/Identity.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useMemo } from 'react'; diff --git a/packages/react-components/src/AccountSidebar/JudgementTag.tsx b/packages/react-components/src/AccountSidebar/JudgementTag.tsx index f86653318fc..8852ad6c2a9 100644 --- a/packages/react-components/src/AccountSidebar/JudgementTag.tsx +++ b/packages/react-components/src/AccountSidebar/JudgementTag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Judgement } from '@polkadot/react-hooks/types'; diff --git a/packages/react-components/src/AccountSidebar/Judgements.tsx b/packages/react-components/src/AccountSidebar/Judgements.tsx index b3755ee0a84..5ba1b8997f7 100644 --- a/packages/react-components/src/AccountSidebar/Judgements.tsx +++ b/packages/react-components/src/AccountSidebar/Judgements.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/AccountSidebar/Multisig.tsx b/packages/react-components/src/AccountSidebar/Multisig.tsx index 145fd0574d4..1c99eae5e89 100644 --- a/packages/react-components/src/AccountSidebar/Multisig.tsx +++ b/packages/react-components/src/AccountSidebar/Multisig.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringJson$Meta } from '@polkadot/ui-keyring/types'; diff --git a/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx b/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx index 7166c703be2..cd10bab50de 100644 --- a/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx +++ b/packages/react-components/src/AccountSidebar/RegistrarJudgement.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes, Option } from '@polkadot/types'; diff --git a/packages/react-components/src/AccountSidebar/Sidebar.spec.tsx b/packages/react-components/src/AccountSidebar/Sidebar.spec.tsx index 79f19ec8f9e..445edf6276c 100644 --- a/packages/react-components/src/AccountSidebar/Sidebar.spec.tsx +++ b/packages/react-components/src/AccountSidebar/Sidebar.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/react-components/src/AccountSidebar/Sidebar.tsx b/packages/react-components/src/AccountSidebar/Sidebar.tsx index 363e6762819..4b5d5f7b0d6 100644 --- a/packages/react-components/src/AccountSidebar/Sidebar.tsx +++ b/packages/react-components/src/AccountSidebar/Sidebar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef, useState } from 'react'; diff --git a/packages/react-components/src/AccountSidebar/SidebarEditableSection.tsx b/packages/react-components/src/AccountSidebar/SidebarEditableSection.tsx index efd42edbecd..a64c28cad72 100644 --- a/packages/react-components/src/AccountSidebar/SidebarEditableSection.tsx +++ b/packages/react-components/src/AccountSidebar/SidebarEditableSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useEffect, useMemo } from 'react'; diff --git a/packages/react-components/src/AccountSidebar/UserIcon.tsx b/packages/react-components/src/AccountSidebar/UserIcon.tsx index fd746dae5d0..df83966774c 100644 --- a/packages/react-components/src/AccountSidebar/UserIcon.tsx +++ b/packages/react-components/src/AccountSidebar/UserIcon.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/AccountSidebar/index.tsx b/packages/react-components/src/AccountSidebar/index.tsx index 61156de4403..b73c1c6499e 100644 --- a/packages/react-components/src/AccountSidebar/index.tsx +++ b/packages/react-components/src/AccountSidebar/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/react-components/src/AddressInfo.tsx b/packages/react-components/src/AddressInfo.tsx index 571346054b4..096bec428e5 100644 --- a/packages/react-components/src/AddressInfo.tsx +++ b/packages/react-components/src/AddressInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAccountData, DeriveBalancesAll, DeriveDemocracyLock, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/AddressMini.tsx b/packages/react-components/src/AddressMini.tsx index 2e5eb899035..68988d05746 100644 --- a/packages/react-components/src/AddressMini.tsx +++ b/packages/react-components/src/AddressMini.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/AddressRow.tsx b/packages/react-components/src/AddressRow.tsx index 2e666040ddd..5609ea7f7e3 100644 --- a/packages/react-components/src/AddressRow.tsx +++ b/packages/react-components/src/AddressRow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/AddressSmall.tsx b/packages/react-components/src/AddressSmall.tsx index 3d16eb48aa5..12a6f3a23e8 100644 --- a/packages/react-components/src/AddressSmall.tsx +++ b/packages/react-components/src/AddressSmall.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/AddressToggle.tsx b/packages/react-components/src/AddressToggle.tsx index 881eac3b687..012f0ef11b1 100644 --- a/packages/react-components/src/AddressToggle.tsx +++ b/packages/react-components/src/AddressToggle.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo } from 'react'; diff --git a/packages/react-components/src/Available.tsx b/packages/react-components/src/Available.tsx index f031ceed88b..17612824978 100644 --- a/packages/react-components/src/Available.tsx +++ b/packages/react-components/src/Available.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/AvatarItem.tsx b/packages/react-components/src/AvatarItem.tsx index 45270502021..d48d470d456 100644 --- a/packages/react-components/src/AvatarItem.tsx +++ b/packages/react-components/src/AvatarItem.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Badge.tsx b/packages/react-components/src/Badge.tsx index 30b43f0fce6..83c2fb60acf 100644 --- a/packages/react-components/src/Badge.tsx +++ b/packages/react-components/src/Badge.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Balance.tsx b/packages/react-components/src/Balance.tsx index 42ac2d068d1..2752edc5f5f 100644 --- a/packages/react-components/src/Balance.tsx +++ b/packages/react-components/src/Balance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/BatchWarning.tsx b/packages/react-components/src/BatchWarning.tsx index 21043886838..169bba9b65f 100644 --- a/packages/react-components/src/BatchWarning.tsx +++ b/packages/react-components/src/BatchWarning.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Bonded.tsx b/packages/react-components/src/Bonded.tsx index 567496504bb..e09051a05a8 100644 --- a/packages/react-components/src/Bonded.tsx +++ b/packages/react-components/src/Bonded.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/Button/Group.tsx b/packages/react-components/src/Button/Group.tsx index 404bf58181a..d7e084b89bc 100644 --- a/packages/react-components/src/Button/Group.tsx +++ b/packages/react-components/src/Button/Group.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Button/index.tsx b/packages/react-components/src/Button/index.tsx index 4db56abbcce..29d46131ca8 100644 --- a/packages/react-components/src/Button/index.tsx +++ b/packages/react-components/src/Button/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ButtonProps as Props } from './types.js'; diff --git a/packages/react-components/src/Button/types.ts b/packages/react-components/src/Button/types.ts index 296f139fab6..8cb450ffd0d 100644 --- a/packages/react-components/src/Button/types.ts +++ b/packages/react-components/src/Button/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/ButtonCancel.tsx b/packages/react-components/src/ButtonCancel.tsx index 8c0eae22375..87acfbfc600 100644 --- a/packages/react-components/src/ButtonCancel.tsx +++ b/packages/react-components/src/ButtonCancel.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Card.tsx b/packages/react-components/src/Card.tsx index 8499df8540d..9855e74e146 100644 --- a/packages/react-components/src/Card.tsx +++ b/packages/react-components/src/Card.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/CardSummary.tsx b/packages/react-components/src/CardSummary.tsx index ec37d819820..e2ecacc0eb3 100644 --- a/packages/react-components/src/CardSummary.tsx +++ b/packages/react-components/src/CardSummary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UInt } from '@polkadot/types'; diff --git a/packages/react-components/src/ChainImg.tsx b/packages/react-components/src/ChainImg.tsx index cbb290771f4..c6227a25b7c 100644 --- a/packages/react-components/src/ChainImg.tsx +++ b/packages/react-components/src/ChainImg.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/ChainLock.tsx b/packages/react-components/src/ChainLock.tsx index 282c8684981..f26f4f6d6f1 100644 --- a/packages/react-components/src/ChainLock.tsx +++ b/packages/react-components/src/ChainLock.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HexString } from '@polkadot/util/types'; diff --git a/packages/react-components/src/Chart/Base.tsx b/packages/react-components/src/Chart/Base.tsx index 51e2c523881..af6c777671d 100644 --- a/packages/react-components/src/Chart/Base.tsx +++ b/packages/react-components/src/Chart/Base.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Chart/Doughnut.tsx b/packages/react-components/src/Chart/Doughnut.tsx index 229908f87c5..439fb5f803b 100644 --- a/packages/react-components/src/Chart/Doughnut.tsx +++ b/packages/react-components/src/Chart/Doughnut.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-components/src/Chart/HorizBar.tsx b/packages/react-components/src/Chart/HorizBar.tsx index 58ba970c384..c00bba369d7 100644 --- a/packages/react-components/src/Chart/HorizBar.tsx +++ b/packages/react-components/src/Chart/HorizBar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartData, ChartOptions, TooltipItem } from 'chart.js'; diff --git a/packages/react-components/src/Chart/Line.tsx b/packages/react-components/src/Chart/Line.tsx index f410756189d..a56280de78a 100644 --- a/packages/react-components/src/Chart/Line.tsx +++ b/packages/react-components/src/Chart/Line.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartData, ChartDataset, ChartOptions, DatasetChartOptions } from 'chart.js'; diff --git a/packages/react-components/src/Chart/chart-js-crosshair.d.ts b/packages/react-components/src/Chart/chart-js-crosshair.d.ts index 08f68311703..13218f27c6e 100644 --- a/packages/react-components/src/Chart/chart-js-crosshair.d.ts +++ b/packages/react-components/src/Chart/chart-js-crosshair.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChartType } from 'chart.js'; diff --git a/packages/react-components/src/Chart/chart-js-helpers.d.ts b/packages/react-components/src/Chart/chart-js-helpers.d.ts index b8ba12598a4..5c63c8c9fd2 100644 --- a/packages/react-components/src/Chart/chart-js-helpers.d.ts +++ b/packages/react-components/src/Chart/chart-js-helpers.d.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 declare module 'chart.js/helpers' { diff --git a/packages/react-components/src/Chart/index.ts b/packages/react-components/src/Chart/index.ts index 0d919695202..987fbee1ab7 100644 --- a/packages/react-components/src/Chart/index.ts +++ b/packages/react-components/src/Chart/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import { CategoryScale, Chart, LinearScale, LineElement, PointElement, Title, Tooltip } from 'chart.js'; diff --git a/packages/react-components/src/Chart/utils.ts b/packages/react-components/src/Chart/utils.ts index 95bdec883dd..8c2d1672ebf 100644 --- a/packages/react-components/src/Chart/utils.ts +++ b/packages/react-components/src/Chart/utils.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import * as helpers from 'chart.js/helpers'; diff --git a/packages/react-components/src/Checkbox.tsx b/packages/react-components/src/Checkbox.tsx index 7d9da7c0251..ab273c94c82 100644 --- a/packages/react-components/src/Checkbox.tsx +++ b/packages/react-components/src/Checkbox.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/Columar.tsx b/packages/react-components/src/Columar.tsx index 99e23dbb877..b85f52292fa 100644 --- a/packages/react-components/src/Columar.tsx +++ b/packages/react-components/src/Columar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/ConvictionDropdown.tsx b/packages/react-components/src/ConvictionDropdown.tsx index f6944eecdb0..3a6f7ac9167 100644 --- a/packages/react-components/src/ConvictionDropdown.tsx +++ b/packages/react-components/src/ConvictionDropdown.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useRef } from 'react'; diff --git a/packages/react-components/src/CopyButton.tsx b/packages/react-components/src/CopyButton.tsx index 38c89d92216..a09c5e7e302 100644 --- a/packages/react-components/src/CopyButton.tsx +++ b/packages/react-components/src/CopyButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/CryptoType.tsx b/packages/react-components/src/CryptoType.tsx index 60a5b19bc41..9241050809a 100644 --- a/packages/react-components/src/CryptoType.tsx +++ b/packages/react-components/src/CryptoType.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountIdIsh } from './types.js'; diff --git a/packages/react-components/src/DemocracyLocks.tsx b/packages/react-components/src/DemocracyLocks.tsx index f0ef71af63f..e27d44ab1b4 100644 --- a/packages/react-components/src/DemocracyLocks.tsx +++ b/packages/react-components/src/DemocracyLocks.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveDemocracyLock } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/Dropdown.tsx b/packages/react-components/src/Dropdown.tsx index a2ee31ff4ee..b04c4e9dd9f 100644 --- a/packages/react-components/src/Dropdown.tsx +++ b/packages/react-components/src/Dropdown.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps, DropdownProps, StrictDropdownProps } from 'semantic-ui-react'; diff --git a/packages/react-components/src/EditButton.tsx b/packages/react-components/src/EditButton.tsx index 9ff5c0e5854..baec542486b 100644 --- a/packages/react-components/src/EditButton.tsx +++ b/packages/react-components/src/EditButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Editor.tsx b/packages/react-components/src/Editor.tsx index d35a2e37acf..5718541c323 100644 --- a/packages/react-components/src/Editor.tsx +++ b/packages/react-components/src/Editor.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Something is seriously going wrong here... diff --git a/packages/react-components/src/ErrorBoundary.tsx b/packages/react-components/src/ErrorBoundary.tsx index 11eab4570cc..2bc28f5f5a4 100644 --- a/packages/react-components/src/ErrorBoundary.tsx +++ b/packages/react-components/src/ErrorBoundary.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { I18nProps } from './types.js'; diff --git a/packages/react-components/src/ExpandButton.tsx b/packages/react-components/src/ExpandButton.tsx index dd6006818e5..d16a7ec2e8d 100644 --- a/packages/react-components/src/ExpandButton.tsx +++ b/packages/react-components/src/ExpandButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Expander.tsx b/packages/react-components/src/Expander.tsx index b7d3df4fb30..a82e602ad09 100644 --- a/packages/react-components/src/Expander.tsx +++ b/packages/react-components/src/Expander.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Text } from '@polkadot/types'; diff --git a/packages/react-components/src/ExpanderScroll.tsx b/packages/react-components/src/ExpanderScroll.tsx index d8572b46e3c..447098d9f3a 100644 --- a/packages/react-components/src/ExpanderScroll.tsx +++ b/packages/react-components/src/ExpanderScroll.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props as ExpanderProps } from './Expander.js'; diff --git a/packages/react-components/src/FilterInput.tsx b/packages/react-components/src/FilterInput.tsx index 192a885340d..fb9150a3c57 100644 --- a/packages/react-components/src/FilterInput.tsx +++ b/packages/react-components/src/FilterInput.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/FilterOverlay.tsx b/packages/react-components/src/FilterOverlay.tsx index 95fc7a9fb50..9efed48311e 100644 --- a/packages/react-components/src/FilterOverlay.tsx +++ b/packages/react-components/src/FilterOverlay.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Flag.tsx b/packages/react-components/src/Flag.tsx index af5a7bc0fa7..2db7b4d0169 100644 --- a/packages/react-components/src/Flag.tsx +++ b/packages/react-components/src/Flag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FlagColor } from './types.js'; diff --git a/packages/react-components/src/Forget.tsx b/packages/react-components/src/Forget.tsx index 049ab920bdf..aa215dc92c7 100644 --- a/packages/react-components/src/Forget.tsx +++ b/packages/react-components/src/Forget.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/HelpOverlay.tsx b/packages/react-components/src/HelpOverlay.tsx index b47e64cf4fd..534e7a9ed37 100644 --- a/packages/react-components/src/HelpOverlay.tsx +++ b/packages/react-components/src/HelpOverlay.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Icon.tsx b/packages/react-components/src/Icon.tsx index 8e3de698c64..0d64b24cffd 100644 --- a/packages/react-components/src/Icon.tsx +++ b/packages/react-components/src/Icon.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/IconLink.tsx b/packages/react-components/src/IconLink.tsx index a4d6f242385..351f1d9a9e1 100644 --- a/packages/react-components/src/IconLink.tsx +++ b/packages/react-components/src/IconLink.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/000-robotBG-11.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/000-robotBG-11.ts index 53495bf8201..d9485062c8a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/000-robotBG-11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/000-robotBG-11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/001-robotBG-12.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/001-robotBG-12.ts index 01774ff6247..a43c16e951a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/001-robotBG-12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/001-robotBG-12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/002-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/002-final3.ts index 486eb5c7232..33d5ea927ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/002-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/002-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/003-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/003-final2.ts index f095d8d27ab..fa5d45596d0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/003-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/003-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/004-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/004-final4.ts index d57d1866286..57822eac5b1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/004-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/004-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/005-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/005-final5.ts index 7c11db5eb85..892322733db 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/005-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/005-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/006-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/006-final9.ts index fe6af865356..696903c8066 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/006-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/006-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/007-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/007-final7.ts index 85a58894639..e1dd68dee35 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/007-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/007-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/008-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/008-final10.ts index 6368e9310e8..c56be862d30 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/008-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/008-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/009-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/009-final6.ts index de7a99d3e6a..7ce384cc2b7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/009-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/009-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/010-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/010-final8.ts index 0d80fbda9eb..4e3262d6b6c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/010-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/010-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/011-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/011-final1.ts index 35e1fc4bef7..1d3de7a217b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/011-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/011-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/012-robotBG-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/012-robotBG-10.ts index 015beb2ff38..ffb0ff8203b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/012-robotBG-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg1/generated/012-robotBG-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/000-robotBG-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/000-robotBG-06.ts index d3fa87fa985..9311135caab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/000-robotBG-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/000-robotBG-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/001-robotBG-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/001-robotBG-08.ts index bd5d08d3711..60d70bbdf7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/001-robotBG-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/001-robotBG-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/002-robotBG-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/002-robotBG-04.ts index b611588d359..a0908b6af35 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/002-robotBG-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/002-robotBG-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/003-robotBG-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/003-robotBG-03.ts index c66d07d8560..803cbf6290a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/003-robotBG-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/003-robotBG-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/004-robotBG-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/004-robotBG-01.ts index 8103e411ee4..4163b82f138 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/004-robotBG-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/004-robotBG-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/005-robotBG-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/005-robotBG-02.ts index d3bf3a535ac..bbf73b5af7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/005-robotBG-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/005-robotBG-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/006-robotBG-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/006-robotBG-07.ts index 5eeac69cfbc..ec5167ae201 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/006-robotBG-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/bg2/generated/006-robotBG-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/index.ts b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/index.ts index 15388a52c77..2c70341f331 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/index.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/backgrounds/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/index.tsx b/packages/react-components/src/IdentityIcon/RoboHash/index.tsx index c577bee072f..34f90abaf5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/index.tsx +++ b/packages/react-components/src/IdentityIcon/RoboHash/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Robots lovingly delivered by Robohash.org diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/index.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/index.ts index 67164660992..5c1d23b6b54 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/index.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/000-blue_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/000-blue_mouth-10.ts index c95031f5ddc..eeb8d698642 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/000-blue_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/000-blue_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/001-blue_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/001-blue_mouth-07.ts index d3fef89dfb2..59b67d33408 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/001-blue_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/001-blue_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/002-blue_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/002-blue_mouth-04.ts index 426bea12e85..15d75123250 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/002-blue_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/002-blue_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/003-blue_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/003-blue_mouth-05.ts index ba8b3be5ee8..8603da929fb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/003-blue_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/003-blue_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/004-blue_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/004-blue_mouth-01.ts index 675d8d21582..4eb74c8b891 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/004-blue_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/004-blue_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/005-blue_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/005-blue_mouth-02.ts index 6ae51b8b228..b41846f29e3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/005-blue_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/005-blue_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/006-blue_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/006-blue_mouth-06.ts index 86d40dc9250..3fef53da978 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/006-blue_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/006-blue_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/007-blue_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/007-blue_mouth-08.ts index aafee9a4032..73727f160a8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/007-blue_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/007-blue_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/008-blue_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/008-blue_mouth-09.ts index 0e2cf224f0e..5cdf48c36d8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/008-blue_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/008-blue_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/009-blue_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/009-blue_mouth-03.ts index 37a4eb3e190..0374c9db961 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/009-blue_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/000-Mouth/generated/009-blue_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/000-blue_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/000-blue_eyes-07.ts index f8e578ecf5b..84b8b544e54 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/000-blue_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/000-blue_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/001-blue_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/001-blue_eyes-09.ts index 8b97f26c96e..ffafce2dc39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/001-blue_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/001-blue_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/002-blue_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/002-blue_eyes-10.ts index 7eb448154d9..2191f16c8e3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/002-blue_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/002-blue_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/003-blue_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/003-blue_eyes-02.ts index 67e3500b977..94a1d4640df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/003-blue_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/003-blue_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/004-blue_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/004-blue_eyes-03.ts index 26d2065b8aa..0342b9f9fd2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/004-blue_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/004-blue_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/005-blue_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/005-blue_eyes-05.ts index e163fcecf92..1791c11b146 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/005-blue_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/005-blue_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/006-blue_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/006-blue_eyes-06.ts index e08eff66f6a..f7c7a19b313 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/006-blue_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/006-blue_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/007-blue_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/007-blue_eyes-01.ts index 02dccd07c76..5aa76136fa3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/007-blue_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/007-blue_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/008-blue_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/008-blue_eyes-08.ts index 0a6aa9db361..01c4dff7608 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/008-blue_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/008-blue_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/009-blue_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/009-blue_eyes-04.ts index ff9accd2efb..4352466b077 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/009-blue_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/001-Eyes/generated/009-blue_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/000-blue_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/000-blue_accessory-02.ts index 49acd1dc324..53c585e217c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/000-blue_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/000-blue_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/001-blue_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/001-blue_accessory-01.ts index 5106c49cda0..507303bad1a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/001-blue_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/001-blue_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/002-blue_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/002-blue_accessory-07.ts index 3f61470fcc3..2c1b930ab20 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/002-blue_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/002-blue_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/003-blue_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/003-blue_accessory-03.ts index d6fbbd51353..9b4e5c2b7cd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/003-blue_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/003-blue_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/004-blue_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/004-blue_accessory-05.ts index bdf12fb90ff..132597df5ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/004-blue_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/004-blue_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/005-blue_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/005-blue_accessory-09.ts index f3926a5e083..a6c7eea23f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/005-blue_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/005-blue_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/006-blue_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/006-blue_accessory-04.ts index 96ec94b120d..4d275eb6254 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/006-blue_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/006-blue_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/007-blue_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/007-blue_accessory-10.ts index 316f71b373a..f641994665e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/007-blue_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/007-blue_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/008-blue_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/008-blue_accessory-06.ts index c9bf801e37c..f92e1833b72 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/008-blue_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/008-blue_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/009-blue_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/009-blue_accessory-08.ts index 9a87fda42de..97fc46b102d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/009-blue_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/002-Accessory/generated/009-blue_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/000-blue_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/000-blue_body-10.ts index f23e040bb35..cd0761ff202 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/000-blue_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/000-blue_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/001-blue_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/001-blue_body-09.ts index 4252e0b0646..0ad2f9802f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/001-blue_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/001-blue_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/002-blue_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/002-blue_body-03.ts index 2643bcb11ba..bf12a00a4ec 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/002-blue_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/002-blue_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/003-blue_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/003-blue_body-07.ts index 5bd8b7fdc28..671f56d6c25 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/003-blue_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/003-blue_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/004-blue_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/004-blue_body-04.ts index 239ed1ae758..35cbf78baf6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/004-blue_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/004-blue_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/005-blue_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/005-blue_body-05.ts index 9153f74e301..a3de2dd6207 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/005-blue_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/005-blue_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/006-blue_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/006-blue_body-01.ts index 635d47c5cfa..9031d4413c7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/006-blue_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/006-blue_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/007-blue_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/007-blue_body-06.ts index 0f159ce4d9e..28d75545e2c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/007-blue_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/007-blue_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/008-blue_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/008-blue_body-08.ts index 4ad69e3d281..f90187e5c7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/008-blue_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/008-blue_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/009-blue_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/009-blue_body-02.ts index e6f194313c7..8c1baada09b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/009-blue_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/003-01Body/generated/009-blue_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/000-blue_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/000-blue_face-07.ts index 681bf41d2b8..f1152556fdf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/000-blue_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/000-blue_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/001-blue_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/001-blue_face-03.ts index c2fe8e75b6e..31d3ebd3f76 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/001-blue_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/001-blue_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/002-blue_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/002-blue_face-08.ts index e7021090cfe..e03d602c438 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/002-blue_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/002-blue_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/003-blue_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/003-blue_face-01.ts index 5a00ac7fbff..77cc586cf08 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/003-blue_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/003-blue_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/004-blue_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/004-blue_face-05.ts index 5c1f75f0224..23841e8fba8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/004-blue_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/004-blue_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/005-blue_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/005-blue_face-10.ts index 7d1eb47dd81..017ac638ef8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/005-blue_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/005-blue_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/006-blue_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/006-blue_face-02.ts index 814b155f777..61bb843a7c9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/006-blue_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/006-blue_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/007-blue_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/007-blue_face-09.ts index 267af8175f6..c8e8c84cfbb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/007-blue_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/007-blue_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/008-blue_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/008-blue_face-04.ts index e0d00546de0..a4839359012 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/008-blue_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/008-blue_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/009-blue_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/009-blue_face-06.ts index 31ba8c48f77..f87e321cc2e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/009-blue_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-blue/004-02Face/generated/009-blue_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/000-brown_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/000-brown_mouth-02.ts index 393f82d3d38..917deb3998b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/000-brown_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/000-brown_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/001-brown_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/001-brown_mouth-01.ts index e506bf5883a..eba76ccfbdc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/001-brown_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/001-brown_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/002-brown_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/002-brown_mouth-07.ts index 2b4dad94a2c..b4ee8827359 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/002-brown_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/002-brown_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/003-brown_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/003-brown_mouth-05.ts index 304f3b7f126..03f61ba6171 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/003-brown_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/003-brown_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/004-brown_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/004-brown_mouth-04.ts index 9e93eda5bd0..82d6b1a4eef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/004-brown_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/004-brown_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/005-brown_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/005-brown_mouth-06.ts index 882899ac455..7f2eec41bc8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/005-brown_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/005-brown_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/006-brown_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/006-brown_mouth-08.ts index 65151aff8d7..69f3043cdaa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/006-brown_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/006-brown_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/007-brown_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/007-brown_mouth-09.ts index 6e0c1579cc0..cd07ee72021 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/007-brown_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/007-brown_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/008-brown_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/008-brown_mouth-10.ts index 2e39b40569d..315f844371c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/008-brown_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/008-brown_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/009-brown_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/009-brown_mouth-03.ts index 3568b9fe187..fda986bca04 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/009-brown_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/000-Mouth/generated/009-brown_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/000-brown_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/000-brown_eyes-05.ts index 6006e4863a7..8f5c0c56252 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/000-brown_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/000-brown_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/001-brown_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/001-brown_eyes-06.ts index 6df2ad2b2d4..c29093bacf1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/001-brown_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/001-brown_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/002-brown_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/002-brown_eyes-04.ts index 97cb0c1688b..2e5b28a882d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/002-brown_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/002-brown_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/003-brown_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/003-brown_eyes-03.ts index 3c6f3dec930..d4a76817493 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/003-brown_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/003-brown_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/004-brown_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/004-brown_eyes-09.ts index d957e76b46f..9ef11cbf19d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/004-brown_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/004-brown_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/005-brown_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/005-brown_eyes-07.ts index 3dc3cde9129..4a300bc5f88 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/005-brown_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/005-brown_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/006-brown_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/006-brown_eyes-08.ts index c10f538efdb..641a2c10e81 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/006-brown_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/006-brown_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/007-brown_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/007-brown_eyes-01.ts index 55eb7c601a7..e43786bf6b9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/007-brown_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/007-brown_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/008-brown_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/008-brown_eyes-02.ts index 4b531ba5e78..b0087d065b7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/008-brown_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/008-brown_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/009-brown_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/009-brown_eyes-10.ts index d94e6b36b5a..8379d0a0e6f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/009-brown_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/001-Eyes/generated/009-brown_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/000-brown_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/000-brown_accessory-07.ts index dea6e06689b..9249954e8ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/000-brown_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/000-brown_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/001-brown_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/001-brown_accessory-08.ts index aac4058e656..c55dd04748e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/001-brown_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/001-brown_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/002-brown_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/002-brown_accessory-03.ts index b67f0562294..82554871ef5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/002-brown_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/002-brown_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/003-brown_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/003-brown_accessory-06.ts index b496689ed26..bab3c46360c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/003-brown_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/003-brown_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/004-brown_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/004-brown_accessory-01.ts index de71b17178a..f574b913688 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/004-brown_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/004-brown_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/005-brown_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/005-brown_accessory-09.ts index 6bd5bf2fe20..4189eb213a6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/005-brown_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/005-brown_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/006-brown_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/006-brown_accessory-02.ts index 0ad948daf1c..b6459487eea 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/006-brown_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/006-brown_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/007-brown_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/007-brown_accessory-05.ts index 63ced86e9c2..dd985cc3d44 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/007-brown_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/007-brown_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/008-brown_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/008-brown_accessory-10.ts index 41659a36e0c..f3a76958f3a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/008-brown_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/008-brown_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/009-brown_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/009-brown_accessory-04.ts index 3bf8091a676..5cf91793f73 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/009-brown_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/002-Accessory/generated/009-brown_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/000-brown_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/000-brown_body-06.ts index 09a93b4f5a8..c5c06117551 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/000-brown_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/000-brown_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/001-brown_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/001-brown_body-08.ts index cc8c4276c43..b9d41ea199e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/001-brown_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/001-brown_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/002-brown_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/002-brown_body-03.ts index ffbbf4feb40..738c62e3690 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/002-brown_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/002-brown_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/003-brown_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/003-brown_body-01.ts index 4eac3ef0e2e..3182ff651e1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/003-brown_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/003-brown_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/004-brown_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/004-brown_body-07.ts index 3418c1c638f..e2611af429b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/004-brown_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/004-brown_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/005-brown_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/005-brown_body-04.ts index d8f9d51047a..3c42481989e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/005-brown_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/005-brown_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/006-brown_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/006-brown_body-10.ts index 21961418799..a5428461ab0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/006-brown_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/006-brown_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/007-brown_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/007-brown_body-09.ts index 9e8e2d094aa..6ef408ccd53 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/007-brown_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/007-brown_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/008-brown_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/008-brown_body-02.ts index 899247cc422..6422ba6441f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/008-brown_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/008-brown_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/009-brown_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/009-brown_body-05.ts index 5698c54148d..7ef1ee69a43 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/009-brown_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/003-01Body/generated/009-brown_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/000-brown_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/000-brown_face-09.ts index c2cedc329d0..8ef465de85e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/000-brown_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/000-brown_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/001-brown_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/001-brown_face-02.ts index dda3746704a..684f941bded 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/001-brown_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/001-brown_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/002-brown_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/002-brown_face-08.ts index 98f3f512fcb..ba0c05609b3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/002-brown_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/002-brown_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/003-brown_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/003-brown_face-07.ts index e606ac0e38b..e8d3011eedb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/003-brown_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/003-brown_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/004-brown_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/004-brown_face-06.ts index 0a041c31654..c3e03580d50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/004-brown_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/004-brown_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/005-brown_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/005-brown_face-05.ts index adec4a197bd..58b9e20439e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/005-brown_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/005-brown_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/006-brown_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/006-brown_face-03.ts index 74f20ed8fd3..5b3c67bd263 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/006-brown_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/006-brown_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/007-brown_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/007-brown_face-10.ts index 1501ac8a9c8..46d7521e6c6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/007-brown_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/007-brown_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/008-brown_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/008-brown_face-01.ts index 0ad77b69f04..0ee6b6fa622 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/008-brown_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/008-brown_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/009-brown_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/009-brown_face-04.ts index f4656d286ae..77ababe61f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/009-brown_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-brown/004-02Face/generated/009-brown_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/000-green_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/000-green_mouth-08.ts index 4e32a1a4d06..7093054efa3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/000-green_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/000-green_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/001-green_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/001-green_mouth-04.ts index 4a742734522..c5f14791c6d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/001-green_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/001-green_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/002-green_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/002-green_mouth-06.ts index 55ca53f2a96..0a9de25c6ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/002-green_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/002-green_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/003-green_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/003-green_mouth-02.ts index 9dedbddd103..4dff9f701ba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/003-green_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/003-green_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/004-green_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/004-green_mouth-03.ts index a9f7d1de6a9..f54ada463b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/004-green_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/004-green_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/005-green_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/005-green_mouth-01.ts index 851de228372..f91c3b0def1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/005-green_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/005-green_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/006-green_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/006-green_mouth-07.ts index 5a8e4e2d816..15c3dd768f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/006-green_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/006-green_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/007-green_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/007-green_mouth-10.ts index 90e4fa17ae4..fb93af0056a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/007-green_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/007-green_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/008-green_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/008-green_mouth-05.ts index 616db839744..7628ba816fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/008-green_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/008-green_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/009-green_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/009-green_mouth-09.ts index de5e46a5b88..b80fd4e36c1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/009-green_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/000-Mouth/generated/009-green_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/000-green_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/000-green_eyes-05.ts index 41aaa5fc963..419e00aec45 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/000-green_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/000-green_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/001-green_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/001-green_eyes-07.ts index 86a3339e956..2d291a48b15 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/001-green_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/001-green_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/002-green_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/002-green_eyes-02.ts index 4d8b14aa740..b3fc646d7dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/002-green_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/002-green_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/003-green_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/003-green_eyes-01.ts index 6a8f1002fee..35f600e6a23 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/003-green_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/003-green_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/004-green_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/004-green_eyes-09.ts index 3937c0ef5c7..04f01787071 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/004-green_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/004-green_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/005-green_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/005-green_eyes-04.ts index 58097580811..f9fbad1fb95 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/005-green_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/005-green_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/006-green_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/006-green_eyes-10.ts index eb169e8da5a..143bff23ca3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/006-green_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/006-green_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/007-green_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/007-green_eyes-08.ts index 116aecbffe8..b1b3fe6bd90 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/007-green_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/007-green_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/008-green_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/008-green_eyes-06.ts index f803fe3fa05..c3a87ec2458 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/008-green_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/008-green_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/009-green_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/009-green_eyes-03.ts index 2695ffbc143..ce04b2f0d09 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/009-green_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/001-Eyes/generated/009-green_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/000-green_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/000-green_accessory-07.ts index c30dd715186..84903bec6ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/000-green_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/000-green_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/001-green_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/001-green_accessory-03.ts index c494651a6a5..895002f0f8c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/001-green_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/001-green_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/002-green_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/002-green_accessory-08.ts index f5068bc1fdd..dc83450f23c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/002-green_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/002-green_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/003-green_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/003-green_accessory-05.ts index 374942dd9c0..d0d0932c5e2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/003-green_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/003-green_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/004-green_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/004-green_accessory-01.ts index 8e27f015b12..5f7458ff3d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/004-green_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/004-green_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/005-green_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/005-green_accessory-04.ts index 3a12b0beaad..fb9a61400bc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/005-green_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/005-green_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/006-green_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/006-green_accessory-06.ts index 7c68fb2a4da..fa80b18f56c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/006-green_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/006-green_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/007-green_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/007-green_accessory-10.ts index 16f70b8d651..88247350922 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/007-green_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/007-green_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/008-green_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/008-green_accessory-02.ts index 67407f05cff..e85e712ef5b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/008-green_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/008-green_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/009-green_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/009-green_accessory-09.ts index a0acff6b94f..e7e026bce48 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/009-green_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/002-Accessory/generated/009-green_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/000-green_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/000-green_body-08.ts index 00cb6f4ff9c..13b3e6ad00c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/000-green_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/000-green_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/001-green_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/001-green_body-01.ts index 125b4548489..5079bba58e3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/001-green_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/001-green_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/002-green_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/002-green_body-02.ts index f3b53e7f048..13b8d9579d7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/002-green_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/002-green_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/003-green_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/003-green_body-06.ts index 29b732ab20c..f1774f373fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/003-green_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/003-green_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/004-green_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/004-green_body-04.ts index e2634ab7255..f2e644b7959 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/004-green_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/004-green_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/005-green_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/005-green_body-07.ts index 237bf3873a4..2997336bc6e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/005-green_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/005-green_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/006-green_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/006-green_body-03.ts index 7b843d42f64..7f608dc0a95 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/006-green_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/006-green_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/007-green_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/007-green_body-10.ts index bb6d50b9bb1..d62a9b44bcb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/007-green_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/007-green_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/008-green_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/008-green_body-05.ts index b455155b2a3..f5c2ad6d40d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/008-green_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/008-green_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/009-green_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/009-green_body-09.ts index 05b168732c3..3518d0bc261 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/009-green_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/003-01Body/generated/009-green_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/000-green_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/000-green_face-10.ts index 1e742cb86fb..cc20a39b260 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/000-green_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/000-green_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/001-green_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/001-green_face-09.ts index 3b89057902f..80257bdcbc1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/001-green_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/001-green_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/002-green_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/002-green_face-03.ts index fd71dc06949..066f656ea61 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/002-green_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/002-green_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/003-green_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/003-green_face-06.ts index 349a94f1fb1..7f7b4f734e6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/003-green_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/003-green_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/004-green_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/004-green_face-07.ts index c09e742c492..f00dc418465 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/004-green_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/004-green_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/005-green_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/005-green_face-08.ts index 1b4cc2b09ed..32a7427d40f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/005-green_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/005-green_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/006-green_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/006-green_face-04.ts index b7505e84c76..19b1b30ecc7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/006-green_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/006-green_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/007-green_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/007-green_face-02.ts index 42e57efd698..7c4f59e05f3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/007-green_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/007-green_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/008-green_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/008-green_face-01.ts index 4301d02b212..758114a1150 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/008-green_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/008-green_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/009-green_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/009-green_face-05.ts index 65f10f298e5..6cde5cf790c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/009-green_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-green/004-02Face/generated/009-green_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/000-grey_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/000-grey_mouth-08.ts index 075ba11b86f..c4d0459d5b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/000-grey_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/000-grey_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/001-grey_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/001-grey_mouth-03.ts index 64f3d87d283..392af3b0edd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/001-grey_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/001-grey_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/002-grey_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/002-grey_mouth-01.ts index c2e6159b145..d30d757f33e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/002-grey_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/002-grey_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/003-grey_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/003-grey_mouth-07.ts index f54308daff4..d815cfa483f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/003-grey_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/003-grey_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/004-grey_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/004-grey_mouth-02.ts index 5a50edb97d8..8c13a3c7031 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/004-grey_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/004-grey_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/005-grey_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/005-grey_mouth-09.ts index b8ec17a1441..cebf7500d0b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/005-grey_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/005-grey_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/006-grey_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/006-grey_mouth-04.ts index 6ec2a1010c8..c813938f979 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/006-grey_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/006-grey_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/007-grey_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/007-grey_mouth-05.ts index 66086bc6ac9..d853e0dcd4b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/007-grey_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/007-grey_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/008-grey_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/008-grey_mouth-06.ts index dddf20f5912..16da356ebf3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/008-grey_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/008-grey_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/009-grey_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/009-grey_mouth-10.ts index d1d4b760556..e3d70ed38a3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/009-grey_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/000-Mouth/generated/009-grey_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/000-grey_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/000-grey_eyes-06.ts index 0bdf0944924..f3360c41cf1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/000-grey_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/000-grey_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/001-grey_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/001-grey_eyes-05.ts index f69938c6f4e..4eee9c59cdb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/001-grey_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/001-grey_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/002-grey_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/002-grey_eyes-04.ts index 2418f967b32..9fb7a7d9126 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/002-grey_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/002-grey_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/003-grey_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/003-grey_eyes-08.ts index 464a5fdce27..5edaafb60b7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/003-grey_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/003-grey_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/004-grey_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/004-grey_eyes-03.ts index c297a7ae938..fca018e72c0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/004-grey_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/004-grey_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/005-grey_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/005-grey_eyes-10.ts index 4a2602d7690..d0189012f5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/005-grey_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/005-grey_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/006-grey_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/006-grey_eyes-07.ts index bf9f727e9a3..d489b349f19 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/006-grey_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/006-grey_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/007-grey_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/007-grey_eyes-09.ts index 37e0a450474..13786c65579 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/007-grey_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/007-grey_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/008-grey_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/008-grey_eyes-01.ts index 3a0792c2519..46eb781c174 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/008-grey_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/008-grey_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/009-grey_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/009-grey_eyes-02.ts index 215cdbb2de4..141c9566244 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/009-grey_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/001-Eyes/generated/009-grey_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/000-grey_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/000-grey_accessory-01.ts index d445f2b8cc8..bed769f5c39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/000-grey_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/000-grey_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/001-grey_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/001-grey_accessory-03.ts index 14e5fde5739..8afdd57267c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/001-grey_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/001-grey_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/002-grey_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/002-grey_accessory-07.ts index 5ac2a40fb57..773ebe0299e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/002-grey_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/002-grey_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/003-grey_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/003-grey_accessory-09.ts index 1081519db1a..74f5c05cc2e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/003-grey_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/003-grey_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/004-grey_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/004-grey_accessory-05.ts index 331ceeca424..cd2d6152b21 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/004-grey_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/004-grey_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/005-grey_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/005-grey_accessory-10.ts index f3a1c165cbb..08986e24899 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/005-grey_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/005-grey_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/006-grey_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/006-grey_accessory-06.ts index b38012f9304..5672a9db01d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/006-grey_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/006-grey_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/007-grey_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/007-grey_accessory-02.ts index 0a72ca84685..b448e15d2b8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/007-grey_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/007-grey_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/008-grey_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/008-grey_accessory-08.ts index 6b95eb9e333..8b233ab4b3e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/008-grey_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/008-grey_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/009-grey_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/009-grey_accessory-04.ts index 7ce16fe1e7a..92df6796137 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/009-grey_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/002-Accessory/generated/009-grey_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/000-grey_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/000-grey_body-03.ts index 9d156c8da12..62795b7babf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/000-grey_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/000-grey_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/001-grey_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/001-grey_body-09.ts index 76c3923c3e1..76406c80ff3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/001-grey_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/001-grey_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/002-grey_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/002-grey_body-04.ts index 2a6d4bf636c..0d09aa538ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/002-grey_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/002-grey_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/003-grey_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/003-grey_body-01.ts index 6eefbc4799d..98d9d71ce55 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/003-grey_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/003-grey_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/004-grey_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/004-grey_body-10.ts index c86f7ffe7dc..3fb75a66d4c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/004-grey_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/004-grey_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/005-grey_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/005-grey_body-05.ts index ee19e09b138..f8e185a3539 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/005-grey_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/005-grey_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/006-grey_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/006-grey_body-06.ts index 1310a8c90c6..533c22f7ab6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/006-grey_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/006-grey_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/007-grey_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/007-grey_body-07.ts index c867a8701a1..9631d466b25 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/007-grey_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/007-grey_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/008-grey_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/008-grey_body-08.ts index b36d18e25e8..0a0a296e3c0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/008-grey_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/008-grey_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/009-grey_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/009-grey_body-02.ts index 9c8e87847f2..aff36229397 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/009-grey_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/003-01Body/generated/009-grey_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/000-grey_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/000-grey_face-10.ts index c4272d4b094..ddcf9a8b719 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/000-grey_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/000-grey_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/001-grey_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/001-grey_face-03.ts index 3d606d76258..524246611e1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/001-grey_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/001-grey_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/002-grey_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/002-grey_face-01.ts index 644cb01a839..7c640ab3e72 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/002-grey_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/002-grey_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/003-grey_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/003-grey_face-08.ts index 6f1c1c71cef..891f3b8bf81 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/003-grey_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/003-grey_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/004-grey_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/004-grey_face-06.ts index 541ece0eb62..b761aed501d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/004-grey_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/004-grey_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/005-grey_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/005-grey_face-04.ts index f7b25806fe1..e54acf01d03 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/005-grey_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/005-grey_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/006-grey_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/006-grey_face-07.ts index c8b39480ba8..9cf3d366225 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/006-grey_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/006-grey_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/007-grey_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/007-grey_face-05.ts index a9a92497440..d7e7791f014 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/007-grey_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/007-grey_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/008-grey_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/008-grey_face-09.ts index b8b66ae16df..0b9aa528824 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/008-grey_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/008-grey_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/009-grey_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/009-grey_face-02.ts index 4338bd3095f..cd639bb32a7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/009-grey_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-grey/004-02Face/generated/009-grey_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/000-orange_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/000-orange_mouth-07.ts index b1eef83d2dc..65cd92e6e55 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/000-orange_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/000-orange_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/001-orange_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/001-orange_mouth-01.ts index 45240b2cb25..684078fe655 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/001-orange_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/001-orange_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/002-orange_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/002-orange_mouth-08.ts index 9ba67d80e6f..fc0870b5c2b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/002-orange_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/002-orange_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/003-orange_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/003-orange_mouth-05.ts index d75e840d2e7..f5f1ecd33dc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/003-orange_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/003-orange_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/004-orange_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/004-orange_mouth-10.ts index 37ddbd44d22..c68943ffbd9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/004-orange_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/004-orange_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/005-orange_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/005-orange_mouth-02.ts index 056164831a6..55e143c13c8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/005-orange_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/005-orange_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/006-orange_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/006-orange_mouth-06.ts index a66c130e498..64c3750bea2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/006-orange_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/006-orange_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/007-orange_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/007-orange_mouth-09.ts index 05d72ba3338..418739c8411 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/007-orange_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/007-orange_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/008-orange_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/008-orange_mouth-03.ts index 5b4b12640c0..e322d4c210a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/008-orange_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/008-orange_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/009-orange_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/009-orange_mouth-04.ts index c0e1656475d..91efe5d132a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/009-orange_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/000-Mouth/generated/009-orange_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/000-orange_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/000-orange_eyes-05.ts index a14cadb82c6..547de602e41 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/000-orange_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/000-orange_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/001-orange_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/001-orange_eyes-01.ts index 6848e0706cd..1ee0b348d08 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/001-orange_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/001-orange_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/002-orange_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/002-orange_eyes-09.ts index ae7238e6fde..d9a8a5c82d1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/002-orange_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/002-orange_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/003-orange_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/003-orange_eyes-06.ts index 211363423c7..f33b5b5bd7a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/003-orange_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/003-orange_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/004-orange_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/004-orange_eyes-02.ts index 1cde10d9d19..e7a3e017ddb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/004-orange_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/004-orange_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/005-orange_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/005-orange_eyes-10.ts index ef6d7dc282d..f803d9dcf24 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/005-orange_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/005-orange_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/006-orange_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/006-orange_eyes-04.ts index e541090c86f..6ea3c2566c3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/006-orange_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/006-orange_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/007-orange_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/007-orange_eyes-07.ts index 8a43295be13..8ae36ce40ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/007-orange_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/007-orange_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/008-orange_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/008-orange_eyes-08.ts index 5e2e4539aca..3795bcf753a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/008-orange_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/008-orange_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/009-orange_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/009-orange_eyes-03.ts index f44927585fb..4db8e82c31b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/009-orange_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/001-Eyes/generated/009-orange_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/000-orange_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/000-orange_accessory-05.ts index 1d740aa157b..73922f6fbad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/000-orange_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/000-orange_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/001-orange_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/001-orange_accessory-03.ts index 0ebbf0b89a2..fba3dd339e9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/001-orange_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/001-orange_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/002-orange_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/002-orange_accessory-10.ts index 906ed1c6453..4b6246cdc04 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/002-orange_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/002-orange_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/003-orange_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/003-orange_accessory-08.ts index 629bde8c41d..2f5e151283a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/003-orange_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/003-orange_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/004-orange_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/004-orange_accessory-09.ts index 71112ceb493..bdd793824db 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/004-orange_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/004-orange_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/005-orange_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/005-orange_accessory-01.ts index 2418996b595..e2f6697e338 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/005-orange_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/005-orange_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/006-orange_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/006-orange_accessory-02.ts index 90210a1485d..4db26f3f7f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/006-orange_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/006-orange_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/007-orange_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/007-orange_accessory-06.ts index da862e351bd..98042e72cc3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/007-orange_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/007-orange_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/008-orange_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/008-orange_accessory-04.ts index 04dec0b75aa..ac4daa6da92 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/008-orange_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/008-orange_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/009-orange_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/009-orange_accessory-07.ts index de4e2811f30..2745603b4fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/009-orange_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/002-Accessory/generated/009-orange_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/000-orange_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/000-orange_body-07.ts index e6f01e37894..aaa57474c78 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/000-orange_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/000-orange_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/001-orange_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/001-orange_body-05.ts index 5d33dd3eca3..f215f10581a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/001-orange_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/001-orange_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/002-orange_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/002-orange_body-03.ts index c084e576c0c..7dd0cdec0f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/002-orange_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/002-orange_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/003-orange_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/003-orange_body-06.ts index 61081862a80..d49f15cd3a5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/003-orange_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/003-orange_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/004-orange_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/004-orange_body-10.ts index c7dd1fac7ce..d72b1864999 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/004-orange_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/004-orange_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/005-orange_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/005-orange_body-08.ts index f907619d015..8dcf8abe81c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/005-orange_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/005-orange_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/006-orange_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/006-orange_body-09.ts index 3fa07447a87..96b85e0e0e8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/006-orange_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/006-orange_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/007-orange_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/007-orange_body-02.ts index e33ddc800a8..d76fef4ffaf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/007-orange_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/007-orange_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/008-orange_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/008-orange_body-04.ts index a6b2783e9a7..ce4c8bd6a3c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/008-orange_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/008-orange_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/009-orange_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/009-orange_body-01.ts index b263e4ca0e3..7b88ba4f429 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/009-orange_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/003-01Body/generated/009-orange_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/000-orange_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/000-orange_face-01.ts index aa2cb3bd2d6..44ba5372d61 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/000-orange_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/000-orange_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/001-orange_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/001-orange_face-03.ts index c19014017bb..4eeeb9c0246 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/001-orange_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/001-orange_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/002-orange_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/002-orange_face-05.ts index 7095328432a..14302339f7f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/002-orange_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/002-orange_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/003-orange_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/003-orange_face-08.ts index 2632bdb9d90..969a918e966 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/003-orange_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/003-orange_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/004-orange_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/004-orange_face-09.ts index 64c35a2556f..d81fa30e3e6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/004-orange_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/004-orange_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/005-orange_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/005-orange_face-07.ts index 2dd4ada35e7..8554c2bc9fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/005-orange_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/005-orange_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/006-orange_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/006-orange_face-06.ts index f2504fe8bef..e6156d38506 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/006-orange_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/006-orange_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/007-orange_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/007-orange_face-10.ts index 3a0b7666cec..3e5eca8837d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/007-orange_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/007-orange_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/008-orange_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/008-orange_face-04.ts index 3ea2043c561..65a022d47e8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/008-orange_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/008-orange_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/009-orange_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/009-orange_face-02.ts index f1b7735a4fd..521e384788e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/009-orange_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-orange/004-02Face/generated/009-orange_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/000-pink_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/000-pink_mouth-03.ts index b5ec67d5fd8..2161bd38a5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/000-pink_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/000-pink_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/001-pink_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/001-pink_mouth-02.ts index 10bfabbbf3d..ba461718114 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/001-pink_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/001-pink_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/002-pink_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/002-pink_mouth-08.ts index d86f970f12c..e738a673121 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/002-pink_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/002-pink_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/003-pink_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/003-pink_mouth-01.ts index bd6aae5cb75..b46738ade49 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/003-pink_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/003-pink_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/004-pink_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/004-pink_mouth-07.ts index 4278c89dcc5..aa3be7f2e8f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/004-pink_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/004-pink_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/005-pink_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/005-pink_mouth-04.ts index 6dbaf2b2868..965506cbb5a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/005-pink_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/005-pink_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/006-pink_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/006-pink_mouth-05.ts index 6817103244e..42e858d6a87 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/006-pink_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/006-pink_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/007-pink_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/007-pink_mouth-06.ts index 5eabe26d09e..0aeb3e3a522 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/007-pink_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/007-pink_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/008-pink_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/008-pink_mouth-10.ts index 47378589707..fc04ab96ce1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/008-pink_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/008-pink_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/009-pink_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/009-pink_mouth-09.ts index 890f9a2057d..37f2c9e9aa7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/009-pink_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/000-Mouth/generated/009-pink_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/000-pink_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/000-pink_eyes-05.ts index aa8569eb569..5f6ea4272ab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/000-pink_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/000-pink_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/001-pink_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/001-pink_eyes-01.ts index 88cabe779f0..da2fed1db3a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/001-pink_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/001-pink_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/002-pink_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/002-pink_eyes-02.ts index 903ef78d3ff..ab9383d85fd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/002-pink_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/002-pink_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/003-pink_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/003-pink_eyes-06.ts index 470ea71a5bd..01525784777 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/003-pink_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/003-pink_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/004-pink_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/004-pink_eyes-10.ts index 4ed432107cc..588387a7983 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/004-pink_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/004-pink_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/005-pink_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/005-pink_eyes-04.ts index 65ec0ad6e9d..0d22586c458 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/005-pink_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/005-pink_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/006-pink_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/006-pink_eyes-09.ts index f099526d99d..2ce38a4bc95 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/006-pink_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/006-pink_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/007-pink_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/007-pink_eyes-07.ts index 5ae132b1326..c480259547b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/007-pink_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/007-pink_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/008-pink_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/008-pink_eyes-08.ts index 3d87c5735e4..bf62ef735bd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/008-pink_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/008-pink_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/009-pink_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/009-pink_eyes-03.ts index cb7d42e8bee..9228210f817 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/009-pink_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/001-Eyes/generated/009-pink_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/000-pink_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/000-pink_accessory-07.ts index aa10d73e714..37d9d33202c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/000-pink_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/000-pink_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/001-pink_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/001-pink_accessory-02.ts index 94bc0b30df2..7a25db8a25b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/001-pink_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/001-pink_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/002-pink_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/002-pink_accessory-01.ts index a93b7d82e57..a1ff156d1bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/002-pink_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/002-pink_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/003-pink_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/003-pink_accessory-06.ts index f1ad91768ce..c75f2f17645 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/003-pink_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/003-pink_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/004-pink_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/004-pink_accessory-10.ts index 9c16b8cd949..d6c2779c76d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/004-pink_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/004-pink_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/005-pink_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/005-pink_accessory-08.ts index b8ac75bea35..474c3c443d3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/005-pink_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/005-pink_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/006-pink_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/006-pink_accessory-03.ts index e1d37118c9d..fdede1f5b8e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/006-pink_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/006-pink_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/007-pink_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/007-pink_accessory-09.ts index beeeee69323..0aa449c9cb8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/007-pink_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/007-pink_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/008-pink_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/008-pink_accessory-05.ts index 669a156d801..25e86537ed6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/008-pink_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/008-pink_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/009-pink_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/009-pink_accessory-04.ts index b3d415c3145..862d9a5a301 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/009-pink_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/002-Accessory/generated/009-pink_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/000-pink_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/000-pink_body-01.ts index 852a905f3d0..8bdc134c4a2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/000-pink_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/000-pink_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/001-pink_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/001-pink_body-03.ts index 56ac583c20b..3107470a353 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/001-pink_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/001-pink_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/002-pink_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/002-pink_body-05.ts index 4b8a84208b7..1a909049762 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/002-pink_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/002-pink_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/003-pink_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/003-pink_body-08.ts index 4a9ede7de3d..9d4f1e59678 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/003-pink_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/003-pink_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/004-pink_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/004-pink_body-09.ts index 4c009349062..94fe9d90d49 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/004-pink_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/004-pink_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/005-pink_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/005-pink_body-06.ts index 5982a32e22b..3b832484e12 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/005-pink_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/005-pink_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/006-pink_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/006-pink_body-07.ts index a28765dd6af..f9815c139d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/006-pink_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/006-pink_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/007-pink_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/007-pink_body-10.ts index 528468b9ca7..fe6b0a15d83 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/007-pink_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/007-pink_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/008-pink_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/008-pink_body-02.ts index 983dad658bb..0756627c72c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/008-pink_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/008-pink_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/009-pink_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/009-pink_body-04.ts index 83cf3acd7a9..45bd4f70fb7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/009-pink_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/003-01Body/generated/009-pink_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/000-pink_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/000-pink_face-07.ts index d306f5acddb..9d3e11d24b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/000-pink_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/000-pink_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/001-pink_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/001-pink_face-02.ts index 450b4a5be50..a1bc2aa4b0f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/001-pink_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/001-pink_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/002-pink_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/002-pink_face-03.ts index 88441df455e..09352aef4ae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/002-pink_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/002-pink_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/003-pink_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/003-pink_face-10.ts index 2a87ea8d4b0..f4a30d83dd9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/003-pink_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/003-pink_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/004-pink_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/004-pink_face-01.ts index ed56bc70e30..7fab5c750dc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/004-pink_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/004-pink_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/005-pink_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/005-pink_face-04.ts index ab2d15d1dd9..a7ac09e4ea3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/005-pink_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/005-pink_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/006-pink_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/006-pink_face-06.ts index 3518fc54772..c12372c7ff1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/006-pink_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/006-pink_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/007-pink_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/007-pink_face-05.ts index b8c668fa2d9..df8cefda714 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/007-pink_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/007-pink_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/008-pink_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/008-pink_face-09.ts index d1fe7ff11f2..fba947d92e0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/008-pink_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/008-pink_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/009-pink_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/009-pink_face-08.ts index a407e535948..51b496d5d77 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/009-pink_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-pink/004-02Face/generated/009-pink_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/000-purple_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/000-purple_mouth-01.ts index 175cb2aca26..4c4e0f32748 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/000-purple_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/000-purple_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/001-purple_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/001-purple_mouth-10.ts index 3bdbff64f3a..9b9298e7fe2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/001-purple_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/001-purple_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/002-purple_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/002-purple_mouth-05.ts index eea4884caa1..27178591037 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/002-purple_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/002-purple_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/003-purple_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/003-purple_mouth-07.ts index 1f8015cd859..4bc40b6b793 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/003-purple_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/003-purple_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/004-purple_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/004-purple_mouth-04.ts index a198a14ae92..e7b169be8bd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/004-purple_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/004-purple_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/005-purple_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/005-purple_mouth-09.ts index ae141e5bd07..fa12edb3784 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/005-purple_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/005-purple_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/006-purple_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/006-purple_mouth-03.ts index b19ed044cc4..04d62d11335 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/006-purple_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/006-purple_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/007-purple_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/007-purple_mouth-02.ts index 4cf3db501bc..abb41c93412 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/007-purple_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/007-purple_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/008-purple_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/008-purple_mouth-08.ts index 7b33ff5ff83..0b62a9cbdbe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/008-purple_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/008-purple_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/009-purple_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/009-purple_mouth-06.ts index 49b2e7f80bb..ffd7fe23121 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/009-purple_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/000-Mouth/generated/009-purple_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/000-purple_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/000-purple_eyes-09.ts index 288d952683c..065751fc8a9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/000-purple_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/000-purple_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/001-purple_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/001-purple_eyes-08.ts index 7114c12a286..c3978020506 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/001-purple_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/001-purple_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/002-purple_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/002-purple_eyes-06.ts index 3525fcaed38..a077af54f12 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/002-purple_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/002-purple_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/003-purple_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/003-purple_eyes-10.ts index 750f47bbde8..da04864ad56 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/003-purple_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/003-purple_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/004-purple_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/004-purple_eyes-03.ts index 83e61e6c352..c846a069563 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/004-purple_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/004-purple_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/005-purple_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/005-purple_eyes-01.ts index 0286d32a8eb..6e5cf70c5d1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/005-purple_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/005-purple_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/006-purple_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/006-purple_eyes-07.ts index 78b8ca02d2d..a168e1ee5a6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/006-purple_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/006-purple_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/007-purple_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/007-purple_eyes-02.ts index db0ca106da7..1ccfb02007b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/007-purple_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/007-purple_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/008-purple_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/008-purple_eyes-04.ts index 0df236a5f68..8a5c50b2539 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/008-purple_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/008-purple_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/009-purple_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/009-purple_eyes-05.ts index d7004a834a7..0f20b99f891 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/009-purple_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/001-Eyes/generated/009-purple_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/000-purple_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/000-purple_accessory-04.ts index b19ad7c0c4d..b83cd82a693 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/000-purple_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/000-purple_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/001-purple_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/001-purple_accessory-02.ts index 3877d1f68a8..2570ffcee09 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/001-purple_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/001-purple_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/002-purple_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/002-purple_accessory-06.ts index ddc3588fac7..da02b025679 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/002-purple_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/002-purple_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/003-purple_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/003-purple_accessory-10.ts index a1c38d5a1e4..2cccd911146 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/003-purple_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/003-purple_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/004-purple_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/004-purple_accessory-01.ts index 1af8513b685..6935c48b5b9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/004-purple_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/004-purple_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/005-purple_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/005-purple_accessory-09.ts index 868b64c629c..07b8cc25184 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/005-purple_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/005-purple_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/006-purple_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/006-purple_accessory-08.ts index 83b8c81bdd5..33d25179c50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/006-purple_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/006-purple_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/007-purple_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/007-purple_accessory-03.ts index 34c24bc3662..c681e4e3608 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/007-purple_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/007-purple_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/008-purple_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/008-purple_accessory-05.ts index 7edeac4bced..df23a4b8007 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/008-purple_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/008-purple_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/009-purple_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/009-purple_accessory-07.ts index fa49e4ceb0f..834d81eb73d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/009-purple_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/002-Accessory/generated/009-purple_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/000-purple_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/000-purple_body-10.ts index e5ba91c1033..0ee884542b9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/000-purple_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/000-purple_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/001-purple_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/001-purple_body-04.ts index 5910e4a458b..b44dda71757 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/001-purple_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/001-purple_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/002-purple_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/002-purple_body-05.ts index faedc006edd..3443b014223 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/002-purple_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/002-purple_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/003-purple_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/003-purple_body-07.ts index df3ebd89321..540a0e166e2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/003-purple_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/003-purple_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/004-purple_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/004-purple_body-03.ts index 845bc3f4439..553e9d41396 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/004-purple_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/004-purple_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/005-purple_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/005-purple_body-02.ts index 525ed8432e4..307f21c080d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/005-purple_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/005-purple_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/006-purple_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/006-purple_body-09.ts index 772665aa449..c5ad671019a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/006-purple_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/006-purple_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/007-purple_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/007-purple_body-06.ts index 35bce289ab9..fdccee7756a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/007-purple_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/007-purple_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/008-purple_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/008-purple_body-08.ts index 865a9352211..313278c949f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/008-purple_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/008-purple_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/009-purple_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/009-purple_body-01.ts index 279606c6f41..286c2b71af4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/009-purple_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/003-01Body/generated/009-purple_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/000-purple_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/000-purple_face-05.ts index 5f800d6c150..9495d81f3ec 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/000-purple_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/000-purple_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/001-purple_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/001-purple_face-01.ts index 9f4728ead17..a31e3f5b7f9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/001-purple_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/001-purple_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/002-purple_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/002-purple_face-08.ts index 6af7fd633d3..9d1c39f2623 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/002-purple_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/002-purple_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/003-purple_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/003-purple_face-04.ts index 6b4385cd05a..7260969ccb8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/003-purple_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/003-purple_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/004-purple_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/004-purple_face-06.ts index e53b9814b72..c3fb53817eb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/004-purple_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/004-purple_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/005-purple_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/005-purple_face-03.ts index 7683a28d6de..44a2595a98e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/005-purple_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/005-purple_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/006-purple_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/006-purple_face-10.ts index 6b9ccc1a654..6a0980e5de2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/006-purple_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/006-purple_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/007-purple_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/007-purple_face-07.ts index dcb2475b770..871040601ab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/007-purple_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/007-purple_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/008-purple_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/008-purple_face-02.ts index 8739450144d..38d0b9d33dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/008-purple_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/008-purple_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/009-purple_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/009-purple_face-09.ts index 777630bdc07..782cc58d690 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/009-purple_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-purple/004-02Face/generated/009-purple_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/000-red_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/000-red_mouth-07.ts index bc3ef5c6e3d..f019a1977cc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/000-red_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/000-red_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/001-red_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/001-red_mouth-05.ts index 5e322d5aade..f69244a5551 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/001-red_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/001-red_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/002-red_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/002-red_mouth-08.ts index f7c7e0f25c1..51374bc90d3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/002-red_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/002-red_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/003-red_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/003-red_mouth-01.ts index 0d2eb0f5c74..0ca4f7dd1b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/003-red_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/003-red_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/004-red_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/004-red_mouth-03.ts index 04ccca05a33..48e61651e8c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/004-red_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/004-red_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/005-red_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/005-red_mouth-02.ts index d5fd4b9d8cb..51a8f6b619a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/005-red_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/005-red_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/006-red_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/006-red_mouth-04.ts index 8bd261d21f4..05e6d76c0a2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/006-red_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/006-red_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/007-red_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/007-red_mouth-09.ts index 267c3e5243c..289417c3d12 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/007-red_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/007-red_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/008-red_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/008-red_mouth-06.ts index c029cbd7b21..b216e60a56b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/008-red_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/008-red_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/009-red_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/009-red_mouth-10.ts index 5d26068da89..ab33e9c5754 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/009-red_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/000-Mouth/generated/009-red_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/000-red_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/000-red_eyes-07.ts index 36aa65f88f3..1989864e6ba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/000-red_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/000-red_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/001-red_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/001-red_eyes-02.ts index 16d5951e401..8325640b9df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/001-red_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/001-red_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/002-red_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/002-red_eyes-06.ts index 34fb45b275f..0271a897ae8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/002-red_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/002-red_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/003-red_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/003-red_eyes-09.ts index 967e46f4336..0f8b4068d92 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/003-red_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/003-red_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/004-red_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/004-red_eyes-04.ts index 9d912bf479e..b1e84361743 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/004-red_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/004-red_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/005-red_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/005-red_eyes-05.ts index 69f558d9138..2142b564bc9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/005-red_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/005-red_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/006-red_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/006-red_eyes-01.ts index c1bd48ebfee..b45011a759f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/006-red_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/006-red_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/007-red_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/007-red_eyes-10.ts index 0bc8aa89e35..6dec16e35e9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/007-red_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/007-red_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/008-red_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/008-red_eyes-03.ts index ecc89c48125..0af125d54db 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/008-red_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/008-red_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/009-red_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/009-red_eyes-08.ts index db999ea05f5..44dc9e50e2c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/009-red_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/001-Eyes/generated/009-red_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/000-red_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/000-red_accessory-03.ts index 05cfe262550..3172bf91d49 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/000-red_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/000-red_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/001-red_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/001-red_accessory-09.ts index 4f055fb229f..b96e5a95320 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/001-red_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/001-red_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/002-red_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/002-red_accessory-07.ts index 7b2e199090e..192bcd4aa4a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/002-red_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/002-red_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/003-red_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/003-red_accessory-08.ts index 68a28fd8207..d33097cee70 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/003-red_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/003-red_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/004-red_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/004-red_accessory-10.ts index 7b11b6d75a8..39524fdd254 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/004-red_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/004-red_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/005-red_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/005-red_accessory-05.ts index 180af1778ad..e563f341322 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/005-red_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/005-red_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/006-red_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/006-red_accessory-02.ts index c9ab7186951..61f11bc0907 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/006-red_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/006-red_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/007-red_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/007-red_accessory-01.ts index c96d7540817..9ca503ff472 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/007-red_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/007-red_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/008-red_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/008-red_accessory-04.ts index c2bb1daa0dc..97ff68832da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/008-red_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/008-red_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/009-red_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/009-red_accessory-06.ts index ee879d1b1a9..52b55abf7f0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/009-red_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/002-Accessory/generated/009-red_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/000-red_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/000-red_body-09.ts index 3ecb6f02e12..ce9ee5b944b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/000-red_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/000-red_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/001-red_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/001-red_body-01.ts index 9060c32e064..eeaf7e25279 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/001-red_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/001-red_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/002-red_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/002-red_body-08.ts index f3b69bc84be..a640c24eb39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/002-red_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/002-red_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/003-red_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/003-red_body-05.ts index 1d0a10a7d32..b7133f33499 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/003-red_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/003-red_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/004-red_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/004-red_body-10.ts index 1d4d0d220d8..d1489128f7f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/004-red_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/004-red_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/005-red_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/005-red_body-04.ts index 7b470d0883f..76f5593917c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/005-red_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/005-red_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/006-red_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/006-red_body-07.ts index 3ff3b1bbc65..6c70cf76518 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/006-red_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/006-red_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/007-red_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/007-red_body-06.ts index 34d8ae82431..89b5ce6f1c0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/007-red_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/007-red_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/008-red_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/008-red_body-02.ts index 8cb5351ae46..acd35f478dc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/008-red_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/008-red_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/009-red_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/009-red_body-03.ts index 1ed11b057ae..e7d628efa13 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/009-red_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/003-01Body/generated/009-red_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/000-red_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/000-red_face-08.ts index e9d214da33b..f4606d34d06 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/000-red_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/000-red_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/001-red_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/001-red_face-06.ts index b7169fd86e8..59e417db400 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/001-red_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/001-red_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/002-red_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/002-red_face-02.ts index 6de9fa36701..1e16fd586c5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/002-red_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/002-red_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/003-red_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/003-red_face-05.ts index 528466b65ba..21a075633d7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/003-red_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/003-red_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/004-red_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/004-red_face-03.ts index 06502ac3d42..d67667f4097 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/004-red_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/004-red_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/005-red_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/005-red_face-10.ts index 39301b45455..d6ddf94aebe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/005-red_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/005-red_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/006-red_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/006-red_face-04.ts index d22e135af1c..92a4e647887 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/006-red_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/006-red_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/007-red_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/007-red_face-01.ts index b68fcaf7efc..49647a4816a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/007-red_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/007-red_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/008-red_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/008-red_face-07.ts index 2f517319706..ffbe66364e1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/008-red_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/008-red_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/009-red_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/009-red_face-09.ts index 5cda6f18ab6..381478eb820 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/009-red_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-red/004-02Face/generated/009-red_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/000-white_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/000-white_mouth-04.ts index 48c88fc48c2..5225143d7f8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/000-white_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/000-white_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/001-white_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/001-white_mouth-08.ts index 67a26f6e99d..ce1c5c96068 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/001-white_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/001-white_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/002-white_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/002-white_mouth-05.ts index 81aabae5f8f..86cbbd99e73 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/002-white_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/002-white_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/003-white_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/003-white_mouth-03.ts index 2ace8ed11dd..07439e5c886 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/003-white_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/003-white_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/004-white_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/004-white_mouth-10.ts index b3ccd5b5b43..7299bdd9a96 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/004-white_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/004-white_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/005-white_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/005-white_mouth-07.ts index 5b86e9078bb..a96448b82d8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/005-white_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/005-white_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/006-white_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/006-white_mouth-06.ts index 6e9104864f9..ce8c459e9aa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/006-white_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/006-white_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/007-white_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/007-white_mouth-09.ts index 768f70d8b03..e2f7dfbeae0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/007-white_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/007-white_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/008-white_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/008-white_mouth-02.ts index c56f4525766..528fdebc53a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/008-white_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/008-white_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/009-white_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/009-white_mouth-01.ts index 0eb249d6cc0..c46671eddfb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/009-white_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/000-Mouth/generated/009-white_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/000-white_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/000-white_eyes-07.ts index 09efbd5c393..58892c6f743 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/000-white_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/000-white_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/001-white_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/001-white_eyes-10.ts index 9f86f8dba35..2ec2d5cdeff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/001-white_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/001-white_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/002-white_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/002-white_eyes-03.ts index 3869d2ef170..8217e95e985 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/002-white_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/002-white_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/003-white_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/003-white_eyes-06.ts index 27e6164f26c..ba32c737275 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/003-white_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/003-white_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/004-white_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/004-white_eyes-04.ts index bfcc6013bda..296010065f1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/004-white_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/004-white_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/005-white_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/005-white_eyes-05.ts index 1cdee7dcefc..1e32265581d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/005-white_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/005-white_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/006-white_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/006-white_eyes-02.ts index 2dd3a90fef7..cda762d5989 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/006-white_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/006-white_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/007-white_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/007-white_eyes-09.ts index c88ff7031ef..54f7a561daa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/007-white_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/007-white_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/008-white_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/008-white_eyes-08.ts index a9a79a5143d..525d543a5a7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/008-white_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/008-white_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/009-white_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/009-white_eyes-01.ts index 0250a6f13ba..bad202164b9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/009-white_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/001-Eyes/generated/009-white_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/000-white_accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/000-white_accessory-04.ts index f565ba36fd6..eec55dd3fd8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/000-white_accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/000-white_accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/001-white_accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/001-white_accessory-06.ts index 7bb7e71ff16..6866450dab0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/001-white_accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/001-white_accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/002-white_accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/002-white_accessory-07.ts index 38e613a6005..f228ffae21c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/002-white_accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/002-white_accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/003-white_accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/003-white_accessory-09.ts index b8b8925ac84..8310013d99d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/003-white_accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/003-white_accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/004-white_accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/004-white_accessory-08.ts index c023be71350..5eb85887af4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/004-white_accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/004-white_accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/005-white_accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/005-white_accessory-05.ts index 3835534e32c..6d0799d1ed9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/005-white_accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/005-white_accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/006-white_accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/006-white_accessory-10.ts index b082e4c1bb0..619c0c67623 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/006-white_accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/006-white_accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/007-white_accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/007-white_accessory-01.ts index c4f047a727d..4cfbd85ab7a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/007-white_accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/007-white_accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/008-white_accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/008-white_accessory-03.ts index 46fdc7eac4f..95db163e5d6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/008-white_accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/008-white_accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/009-white_accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/009-white_accessory-02.ts index e89922e63d2..d0af1f48397 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/009-white_accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/002-Accessory/generated/009-white_accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/000-white_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/000-white_body-01.ts index 4d9dbd5d8c0..3541c993ae0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/000-white_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/000-white_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/001-white_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/001-white_body-08.ts index 36d7ad50e69..f40e877ebf2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/001-white_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/001-white_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/002-white_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/002-white_body-06.ts index af1b9de4bd1..b73986c2cd9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/002-white_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/002-white_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/003-white_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/003-white_body-04.ts index 3f60d8dc4ab..8f90d6a0381 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/003-white_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/003-white_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/004-white_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/004-white_body-07.ts index d21d9d00891..331216f3d56 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/004-white_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/004-white_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/005-white_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/005-white_body-02.ts index 5beabae83b3..7eee32e4cfa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/005-white_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/005-white_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/006-white_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/006-white_body-05.ts index 5f7ec1efd34..056a289f989 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/006-white_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/006-white_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/007-white_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/007-white_body-09.ts index 718f9b773f5..541f5fa89b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/007-white_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/007-white_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/008-white_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/008-white_body-03.ts index 0dc5fafeb50..9fb274e4865 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/008-white_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/008-white_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/009-white_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/009-white_body-10.ts index 0551bdc9296..49436797c29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/009-white_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/003-01Body/generated/009-white_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/000-white_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/000-white_face-01.ts index 665b55ebca1..de2a16200e7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/000-white_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/000-white_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/001-white_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/001-white_face-07.ts index 5d929e38761..ddbff99f5bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/001-white_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/001-white_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/002-white_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/002-white_face-06.ts index cc19fff8b92..dce4005dbc4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/002-white_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/002-white_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/003-white_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/003-white_face-08.ts index 80f3bb13c92..f01587c17cc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/003-white_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/003-white_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/004-white_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/004-white_face-10.ts index b7095c06fb7..32989f5bdb9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/004-white_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/004-white_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/005-white_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/005-white_face-09.ts index 308016d8909..165b04f6a01 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/005-white_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/005-white_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/006-white_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/006-white_face-05.ts index 9caba326679..e67321407f9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/006-white_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/006-white_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/007-white_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/007-white_face-04.ts index 27b229d7edc..823fa668147 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/007-white_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/007-white_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/008-white_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/008-white_face-03.ts index 899e77a357d..98536fe4ab1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/008-white_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/008-white_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/009-white_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/009-white_face-02.ts index 560316ed4d4..4113fb1017b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/009-white_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-white/004-02Face/generated/009-white_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/000-yellow_mouth-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/000-yellow_mouth-03.ts index 795c14c3dbb..e59d36ad1f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/000-yellow_mouth-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/000-yellow_mouth-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/001-yellow_mouth-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/001-yellow_mouth-02.ts index 4bd7ff774f4..4a3914eee62 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/001-yellow_mouth-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/001-yellow_mouth-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/002-yellow_mouth-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/002-yellow_mouth-06.ts index 61d3af3697b..7c04581f7be 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/002-yellow_mouth-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/002-yellow_mouth-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/003-yellow_mouth-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/003-yellow_mouth-01.ts index 721e796cae6..2b80f719c7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/003-yellow_mouth-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/003-yellow_mouth-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/004-yellow_mouth-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/004-yellow_mouth-09.ts index 4848d6995ee..3ce60788aac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/004-yellow_mouth-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/004-yellow_mouth-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/005-yellow_mouth-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/005-yellow_mouth-04.ts index 63fff78754f..91be1c6555c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/005-yellow_mouth-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/005-yellow_mouth-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/006-yellow_mouth-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/006-yellow_mouth-08.ts index ccb0a7e84cb..39aa5ed4e98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/006-yellow_mouth-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/006-yellow_mouth-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/007-yellow_mouth-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/007-yellow_mouth-05.ts index 64fdcf6348c..8a57d8d189f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/007-yellow_mouth-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/007-yellow_mouth-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/008-yellow_mouth-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/008-yellow_mouth-10.ts index a709509e4c0..4aa0c55abf2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/008-yellow_mouth-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/008-yellow_mouth-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/009-yellow_mouth-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/009-yellow_mouth-07.ts index 92f9b9a2ddd..44b1d659060 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/009-yellow_mouth-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/000-Mouth/generated/009-yellow_mouth-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/000-yellow_eyes-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/000-yellow_eyes-10.ts index 038e15d1d8c..c481126690e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/000-yellow_eyes-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/000-yellow_eyes-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/001-yellow_eyes-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/001-yellow_eyes-09.ts index 3a0369c6541..6c35a4f2c4c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/001-yellow_eyes-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/001-yellow_eyes-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/002-yellow_eyes-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/002-yellow_eyes-02.ts index 8579b22b150..47aaca2089b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/002-yellow_eyes-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/002-yellow_eyes-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/003-yellow_eyes-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/003-yellow_eyes-03.ts index 98a08676508..59757bc27ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/003-yellow_eyes-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/003-yellow_eyes-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/004-yellow_eyes-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/004-yellow_eyes-07.ts index 95582d2c103..91ded949239 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/004-yellow_eyes-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/004-yellow_eyes-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/005-yellow_eyes-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/005-yellow_eyes-01.ts index 522306b6682..e3ab5cb913a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/005-yellow_eyes-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/005-yellow_eyes-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/006-yellow_eyes-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/006-yellow_eyes-05.ts index 1ff0ea0569c..ae825efa6d5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/006-yellow_eyes-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/006-yellow_eyes-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/007-yellow_eyes-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/007-yellow_eyes-08.ts index c0f6a9e945f..bb00a55bad0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/007-yellow_eyes-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/007-yellow_eyes-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/008-yellow_eyes-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/008-yellow_eyes-04.ts index e7de2080c9d..1c936b1de99 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/008-yellow_eyes-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/008-yellow_eyes-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/009-yellow_eyes-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/009-yellow_eyes-06.ts index 41ee3df7d94..bb902a34833 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/009-yellow_eyes-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/001-Eyes/generated/009-yellow_eyes-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/000-yellow__accessory-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/000-yellow__accessory-07.ts index b365d2cf8ac..d5f18e5e9a4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/000-yellow__accessory-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/000-yellow__accessory-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/001-yellow__accessory-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/001-yellow__accessory-09.ts index 9d379c05a29..8c42d20aaff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/001-yellow__accessory-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/001-yellow__accessory-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/002-yellow__accessory-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/002-yellow__accessory-10.ts index 89b503a0611..30bd313b6c1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/002-yellow__accessory-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/002-yellow__accessory-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/003-yellow__accessory-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/003-yellow__accessory-05.ts index 64d2b76db9a..32ce1e35ec5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/003-yellow__accessory-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/003-yellow__accessory-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/004-yellow__accessory-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/004-yellow__accessory-06.ts index 21d8032312d..6c04670b2dc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/004-yellow__accessory-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/004-yellow__accessory-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/005-yellow__accessory-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/005-yellow__accessory-03.ts index 90cfa32ef64..2eea3698f05 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/005-yellow__accessory-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/005-yellow__accessory-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/006-yellow__accessory-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/006-yellow__accessory-04.ts index dfe292bee5b..9ccf4e7e628 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/006-yellow__accessory-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/006-yellow__accessory-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/007-yellow__accessory-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/007-yellow__accessory-02.ts index 566a98fd592..bcc54415026 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/007-yellow__accessory-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/007-yellow__accessory-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/008-yellow__accessory-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/008-yellow__accessory-01.ts index 1a327fa2ab1..a51a831a1df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/008-yellow__accessory-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/008-yellow__accessory-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/009-yellow__accessory-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/009-yellow__accessory-08.ts index d728a7b704f..3ccaa71ba97 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/009-yellow__accessory-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/002-Accessory/generated/009-yellow__accessory-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/000-yellow_body-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/000-yellow_body-04.ts index 415fb938c7a..96c2915ce17 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/000-yellow_body-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/000-yellow_body-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/001-yellow_body-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/001-yellow_body-06.ts index 022c711432e..58787376000 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/001-yellow_body-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/001-yellow_body-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/002-yellow_body-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/002-yellow_body-09.ts index b0fc1a40149..52751c07264 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/002-yellow_body-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/002-yellow_body-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/003-yellow_body-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/003-yellow_body-07.ts index 57377e5f02b..00f117732cd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/003-yellow_body-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/003-yellow_body-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/004-yellow_body-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/004-yellow_body-02.ts index 4909b14cecc..63f0be0ca17 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/004-yellow_body-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/004-yellow_body-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/005-yellow_body-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/005-yellow_body-10.ts index 5d4054d532c..18b4a5e3174 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/005-yellow_body-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/005-yellow_body-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/006-yellow_body-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/006-yellow_body-05.ts index 1b7e5375fdf..0900a474581 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/006-yellow_body-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/006-yellow_body-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/007-yellow_body-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/007-yellow_body-03.ts index ce551651c78..09e8ad2658a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/007-yellow_body-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/007-yellow_body-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/008-yellow_body-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/008-yellow_body-08.ts index 383e6513bf5..ef26b9808ad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/008-yellow_body-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/008-yellow_body-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/009-yellow_body-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/009-yellow_body-01.ts index 650c63a8753..96f4e5bc256 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/009-yellow_body-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/003-01Body/generated/009-yellow_body-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/000-yellow_face-02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/000-yellow_face-02.ts index dec4478376d..e09d5cc4109 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/000-yellow_face-02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/000-yellow_face-02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/001-yellow_face-08.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/001-yellow_face-08.ts index d73d546d17f..2520d8ccd56 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/001-yellow_face-08.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/001-yellow_face-08.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/002-yellow_face-05.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/002-yellow_face-05.ts index 540573b6d09..ce95adfd736 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/002-yellow_face-05.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/002-yellow_face-05.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/003-yellow_face-04.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/003-yellow_face-04.ts index da2fced03a4..a52fb39c73f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/003-yellow_face-04.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/003-yellow_face-04.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/004-yellow_face-10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/004-yellow_face-10.ts index 6f7cd52e229..4f5b1ef6d4e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/004-yellow_face-10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/004-yellow_face-10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/005-yellow_face-06.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/005-yellow_face-06.ts index ee834de4876..22cab2620ce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/005-yellow_face-06.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/005-yellow_face-06.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/006-yellow_face-01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/006-yellow_face-01.ts index 2f6d4434947..b4ae5d95e92 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/006-yellow_face-01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/006-yellow_face-01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/007-yellow_face-09.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/007-yellow_face-09.ts index 64dbbccb87d..560c764cca3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/007-yellow_face-09.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/007-yellow_face-09.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/008-yellow_face-03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/008-yellow_face-03.ts index 9aded28b0af..28cd97e007c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/008-yellow_face-03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/008-yellow_face-03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/009-yellow_face-07.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/009-yellow_face-07.ts index 90fd87acf9c..39c7262a686 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/009-yellow_face-07.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set1-yellow/004-02Face/generated/009-yellow_face-07.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/000-final3.ts index 6ab4b47551b..6deb306a8da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/001-final2.ts index da3c218e057..edf36f5a8db 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/002-final4.ts index 4ebeaff1250..8c3bdf3d185 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/003-final5.ts index 2fe109d2ac8..5ef6cece694 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/004-final9.ts index 36f2fdf5305..01d79d5412c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/005-final7.ts index 613edbce368..f53e8a85ce2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/006-final10.ts index 12c06e5fa29..bac249166c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/007-final6.ts index 3bf885969a1..46195b0727e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/008-final8.ts index f266b4393eb..a518b98061b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/009-final1.ts index b68c2b1b34a..55ed634a1df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/000-04Body/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/000-final3.ts index 3c6b25a0b66..126f983bb9c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/001-final2.ts index d5f12bb6627..78f10322db8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/002-final4.ts index 7c535ed0c64..55e35e4863f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/003-final5.ts index d05b31177ea..d78a756fc0f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/004-final9.ts index f4795289b26..940355dcf00 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/005-final7.ts index 12bbfebab3a..2ff9e9606da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/006-final10.ts index ce8eb3d6fa3..dd1bcd4eb8e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/007-final6.ts index 8e7bd6bd583..4c8c1ae4ac1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/008-final8.ts index 19d725e1f1a..7b16969d59e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/009-final1.ts index e88d73850cd..f2bb3e2b280 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/001-Mouth/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/000-final3.ts index e4e8e90776c..9377b46fe51 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/001-final2.ts index 786ff82e841..3bbe8130eff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/002-final4.ts index 42be2371805..dba051e8b54 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/003-final5.ts index 46d6b9c16ff..36c906efbbd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/004-final9.ts index 7c096b28a7e..b3ace49bfe0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/005-final7.ts index 545cd1a3a33..8ae528c564b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/006-final10.ts index ea0b861c661..253af2bf2fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/007-final6.ts index f960d1a0083..4db613ca72b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/008-final8.ts index bf673fd0d61..86403adbefa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/009-final1.ts index 9d13516df74..be34582e2dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/002-Eyes/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/000-final3.ts index a0b658f8a47..bf70974797a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/001-final2.ts index 495316c7975..d490e3d23e5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/002-final4.ts index b07a59d7a75..20ce201a982 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/003-final5.ts index ada89de2a9f..67439f546be 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/004-final9.ts index 53255476339..6e00e6eeb39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/005-final7.ts index bbf9b81015d..31766e67bf7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/006-final10.ts index 07317b6d0bf..9b019e13c20 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/007-final6.ts index 44d7310e521..1a681169a6c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/008-final8.ts index 4a8afcd3e40..f37958c7fc5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/009-final1.ts index 37b265e1bb0..bc0a88953da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/003-02BodyColors/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/000-final3.ts index 3012b010fae..6c79ec8ed89 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/001-final2.ts index f664cf798ea..dec016014f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/002-final4.ts index 8b35029d33c..6a4040bd5e6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/003-final5.ts index ed36e1a6bc8..169ba8269a1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/004-final9.ts index 129273ecd2a..adb51be797f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/005-final7.ts index cae9d57319e..201bb58107e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/006-final10.ts index 80df1439fb8..16aa291b137 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/007-final6.ts index 262bd5a4f5c..51008428f94 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/008-final8.ts index 2058faa4978..0ee926b2137 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/009-final1.ts index db206c023b7..51708aa8b19 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/004-01FaceColors/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/000-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/000-final3.ts index c23794f0cf1..48667c6dfbe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/000-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/000-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/001-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/001-final2.ts index 9271544adb1..9febcd42a8b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/001-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/001-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/002-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/002-final4.ts index 691745ac587..0f7f0005f65 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/002-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/002-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/003-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/003-final5.ts index 0b1206c1ec8..18dab80b23a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/003-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/003-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/004-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/004-final9.ts index 6c38d3b22fe..61ef1435aef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/004-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/004-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/005-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/005-final7.ts index 072fa5f2604..88e65fb4202 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/005-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/005-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/006-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/006-final10.ts index fc1a4c70769..41d36af86b0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/006-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/006-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/007-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/007-final6.ts index 87ed924f7a3..3a32f34dfb7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/007-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/007-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/008-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/008-final8.ts index 373f0f021ee..ba6c4edbe16 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/008-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/008-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/009-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/009-final1.ts index a8c5b8c3ebe..bce89978925 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/009-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/005-Nose/generated/009-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/000-final16.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/000-final16.ts index 72717415dca..30d8a0a98dc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/000-final16.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/000-final16.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/001-final12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/001-final12.ts index 0ec5989cd01..afffba50ea7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/001-final12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/001-final12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/002-final13.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/002-final13.ts index 3b8cc89986a..9e19276252c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/002-final13.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/002-final13.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/003-final11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/003-final11.ts index e8cc51f560d..05ead9cdf52 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/003-final11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/003-final11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/004-final3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/004-final3.ts index f2604241dbf..3d9458567f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/004-final3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/004-final3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/005-final15.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/005-final15.ts index 95474588a07..bff958a8e39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/005-final15.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/005-final15.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/006-final2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/006-final2.ts index b77b5ecbd28..df7e09b3288 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/006-final2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/006-final2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/007-final4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/007-final4.ts index 1f6cccbe134..c85f8d08134 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/007-final4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/007-final4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/008-final5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/008-final5.ts index f425af6e998..c3031cd48fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/008-final5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/008-final5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/009-final14.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/009-final14.ts index 92db03aac9d..a97468945a0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/009-final14.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/009-final14.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/010-final9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/010-final9.ts index cab109235eb..dc00e420e29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/010-final9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/010-final9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/011-final7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/011-final7.ts index 025c441f122..9a2bcd9081f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/011-final7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/011-final7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/012-final10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/012-final10.ts index 9ff9c5b5274..d23ca35c0b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/012-final10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/012-final10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/013-final6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/013-final6.ts index d43abca9a43..8c537647d12 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/013-final6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/013-final6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/014-final8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/014-final8.ts index bdc57a449b3..1fa9eb2b3ee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/014-final8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/014-final8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/015-final1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/015-final1.ts index 82820f35cc0..12a7e6f10ed 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/015-final1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set2/006-03Faces/generated/015-final1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/000-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/000-Robot-Design9.ts index bf0f00a50eb..c64d4f3eba9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/000-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/000-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/001-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/001-Robot-Design7.ts index 98c1f914363..e7e833af761 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/001-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/001-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/002-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/002-Robot-Design1.ts index 4e627aae7b8..ffe06ea1274 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/002-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/002-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/003-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/003-Robot-Design5.ts index 2edb4388447..b602c42cdc6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/003-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/003-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/004-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/004-Robot-Design2.ts index c88144d665f..fcc04fc14b0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/004-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/004-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/005-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/005-Robot-Design6.ts index 040ee6a312c..10dbc0fbcb0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/005-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/005-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/006-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/006-Robot-Design3.ts index 1283aa87014..36fbecc993f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/006-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/006-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/007-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/007-Robot-Design8.ts index e44bb4c3027..c6bf161fd96 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/007-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/007-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/008-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/008-Robot-Design4.ts index c632e4a30a5..03acc9024b2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/008-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/000-07Mouth/generated/008-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/001-02Wave/generated/000-wave1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/001-02Wave/generated/000-wave1.ts index f1eefa135db..84cfd3b6294 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/001-02Wave/generated/000-wave1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/001-02Wave/generated/000-wave1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/000-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/000-Robot-Design9.ts index e65b8cbbb10..64779663e66 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/000-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/000-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/001-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/001-Robot-Design7.ts index f2ebca9ccfa..2b18acad574 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/001-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/001-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/002-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/002-Robot-Design1.ts index a77a883eb13..cf21c64704b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/002-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/002-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/003-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/003-Robot-Design5.ts index a2b5dc77715..511dba8af54 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/003-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/003-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/004-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/004-Robot-Design2.ts index 9c81f69a4c1..49e8fa78e5a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/004-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/004-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/005-Robot-Design11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/005-Robot-Design11.ts index 6e0d4815cbe..d701e5ed232 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/005-Robot-Design11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/005-Robot-Design11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/006-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/006-Robot-Design6.ts index 6a7f01d7d12..3d10ce7d829 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/006-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/006-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/007-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/007-Robot-Design3.ts index 0f691fe974a..acc22bf864a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/007-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/007-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/008-Robot-Design12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/008-Robot-Design12.ts index 9192960965f..a1b7cd21d5f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/008-Robot-Design12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/008-Robot-Design12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/009-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/009-Robot-Design8.ts index 76bbb20a14c..98c95c19ac6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/009-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/009-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/010-Robot-Design10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/010-Robot-Design10.ts index b85f42a6e78..52c7f3aff5a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/010-Robot-Design10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/010-Robot-Design10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/011-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/011-Robot-Design4.ts index 72e4db9e105..0458834258b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/011-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/002-05Eyebrows/generated/011-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/000-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/000-Robot-Design9.ts index 37b052ec88f..979656f5b81 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/000-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/000-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/001-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/001-Robot-Design7.ts index 4b99f6f0b7b..f0ed9f86a3e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/001-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/001-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/002-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/002-Robot-Design1.ts index b443239c596..7f8f03c1174 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/002-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/002-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/003-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/003-Robot-Design5.ts index de1d63a004e..114a3ae3a29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/003-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/003-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/004-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/004-Robot-Design2.ts index 97c853d85bb..e6b10fb1b5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/004-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/004-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/005-Robot-Design11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/005-Robot-Design11.ts index 167ca002f4c..9ce3db000c6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/005-Robot-Design11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/005-Robot-Design11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/006-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/006-Robot-Design6.ts index f219211f416..ec3dedfbb08 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/006-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/006-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/007-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/007-Robot-Design3.ts index 4a354e5eeae..97d412f949b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/007-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/007-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/008-Robot-Design12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/008-Robot-Design12.ts index 22285b41875..8c641947089 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/008-Robot-Design12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/008-Robot-Design12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/009-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/009-Robot-Design8.ts index 03be9800d94..d2e969119ce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/009-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/009-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/010-Robot-Design10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/010-Robot-Design10.ts index bab74f87260..423901cb444 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/010-Robot-Design10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/010-Robot-Design10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/011-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/011-Robot-Design4.ts index 3d03d75e415..9cbec8d6802 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/011-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/003-04Eyes/generated/011-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/000-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/000-Robot-Design9.ts index 10add85fced..54bb345e4b8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/000-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/000-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/001-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/001-Robot-Design7.ts index ddaadb099ef..3a49172b39f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/001-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/001-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/002-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/002-Robot-Design1.ts index 56eed7fb439..40a610f4cb1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/002-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/002-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/003-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/003-Robot-Design5.ts index c7583840ce9..46f20d3cc19 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/003-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/003-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/004-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/004-Robot-Design2.ts index ee77d61dc8f..7ce56ac9746 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/004-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/004-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/005-Robot-Design11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/005-Robot-Design11.ts index e7642f7093b..a98558724ab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/005-Robot-Design11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/005-Robot-Design11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/006-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/006-Robot-Design6.ts index bf402588ff0..19273f7c5b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/006-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/006-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/007-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/007-Robot-Design3.ts index cf7c5cc960e..0d4b955a52a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/007-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/007-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/008-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/008-Robot-Design8.ts index ee1c671874b..81c4d5ad597 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/008-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/008-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/009-Robot-Design10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/009-Robot-Design10.ts index e94832b96ee..01aa0fff70e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/009-Robot-Design10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/009-Robot-Design10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/010-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/010-Robot-Design4.ts index 1aa0323ac21..2fbe598b5c4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/010-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/004-06Nose/generated/010-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/000-Robot-Design71.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/000-Robot-Design71.ts index b906d381594..07b816a2409 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/000-Robot-Design71.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/000-Robot-Design71.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/001-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/001-Robot-Design9.ts index 1b6bd72916e..860b4afd988 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/001-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/001-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/002-Robot-Design43.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/002-Robot-Design43.ts index 9e7afd25ead..9fd61624631 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/002-Robot-Design43.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/002-Robot-Design43.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/003-Robot-Design32.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/003-Robot-Design32.ts index 6a797b94e5f..b831f792193 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/003-Robot-Design32.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/003-Robot-Design32.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/004-Robot-Design75.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/004-Robot-Design75.ts index 04fe37f9662..42f1cc8ea6d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/004-Robot-Design75.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/004-Robot-Design75.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/005-Robot-Design40.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/005-Robot-Design40.ts index 777eab4e487..270c71695bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/005-Robot-Design40.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/005-Robot-Design40.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/006-Robot-Design37.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/006-Robot-Design37.ts index e19c3a0f509..91dd267a466 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/006-Robot-Design37.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/006-Robot-Design37.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/007-Robot-Design60.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/007-Robot-Design60.ts index 7c02505d091..69f53812f67 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/007-Robot-Design60.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/007-Robot-Design60.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/008-Robot-Design64.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/008-Robot-Design64.ts index 359dc425fe2..00eea422f98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/008-Robot-Design64.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/008-Robot-Design64.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/009-Robot-Design48.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/009-Robot-Design48.ts index 6dbf5c090f5..693025189b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/009-Robot-Design48.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/009-Robot-Design48.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/010-Robot-Design24.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/010-Robot-Design24.ts index 8c0093dd861..e8a6e30246e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/010-Robot-Design24.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/010-Robot-Design24.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/011-Robot-Design13.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/011-Robot-Design13.ts index b816190e25d..c622f8cee33 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/011-Robot-Design13.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/011-Robot-Design13.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/012-Robot-Design21.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/012-Robot-Design21.ts index 254efcd63e2..fb6b5e8a8d0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/012-Robot-Design21.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/012-Robot-Design21.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/013-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/013-Robot-Design7.ts index 80eceabdbf0..682c2a0ee48 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/013-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/013-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/014-Robot-Design36.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/014-Robot-Design36.ts index ae3f9f5a659..73cee013668 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/014-Robot-Design36.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/014-Robot-Design36.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/015-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/015-Robot-Design1.ts index 5c758199a57..0aae0462158 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/015-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/015-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/016-Robot-Design81.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/016-Robot-Design81.ts index a7af90c2579..a4ddabe5866 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/016-Robot-Design81.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/016-Robot-Design81.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/017-Robot-Design58.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/017-Robot-Design58.ts index ab763113c1a..aecfe48a117 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/017-Robot-Design58.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/017-Robot-Design58.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/018-Robot-Design83.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/018-Robot-Design83.ts index bcb8b3e4525..83278d4c5fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/018-Robot-Design83.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/018-Robot-Design83.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/019-Robot-Design86.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/019-Robot-Design86.ts index d2b237b3fe6..c45db2b487e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/019-Robot-Design86.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/019-Robot-Design86.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/020-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/020-Robot-Design5.ts index a1f88808e23..567a048b9b1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/020-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/020-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/021-Robot-Design20.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/021-Robot-Design20.ts index 11cd322d36e..75619ef8bed 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/021-Robot-Design20.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/021-Robot-Design20.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/022-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/022-Robot-Design2.ts index 6669a559407..a3ddf08ae09 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/022-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/022-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/023-Robot-Design88.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/023-Robot-Design88.ts index d1f2fb97956..9faf806b7ce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/023-Robot-Design88.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/023-Robot-Design88.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/024-Robot-Design25.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/024-Robot-Design25.ts index f5e93e82c6c..a5d3edd5dfc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/024-Robot-Design25.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/024-Robot-Design25.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/025-Robot-Design42.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/025-Robot-Design42.ts index e64baff9310..bb2c51dcf29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/025-Robot-Design42.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/025-Robot-Design42.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/026-Robot-Design27.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/026-Robot-Design27.ts index 3c65804fd64..6666a5fa040 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/026-Robot-Design27.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/026-Robot-Design27.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/027-Robot-Design63.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/027-Robot-Design63.ts index 26de7ee40f2..0b49661aee2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/027-Robot-Design63.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/027-Robot-Design63.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/028-Robot-Design30.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/028-Robot-Design30.ts index 5288e0da896..d67c3470728 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/028-Robot-Design30.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/028-Robot-Design30.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/029-Robot-Design80.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/029-Robot-Design80.ts index 021b5ed4f84..b1c06736c5f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/029-Robot-Design80.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/029-Robot-Design80.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/030-Robot-Design28.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/030-Robot-Design28.ts index 0fbba74f02e..f5e810ea962 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/030-Robot-Design28.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/030-Robot-Design28.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/031-Robot-Design59.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/031-Robot-Design59.ts index d69eea427db..b130c389c73 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/031-Robot-Design59.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/031-Robot-Design59.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/032-Robot-Design35.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/032-Robot-Design35.ts index ca0911a9b4d..b0611e37f7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/032-Robot-Design35.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/032-Robot-Design35.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/033-Robot-Design46.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/033-Robot-Design46.ts index 94a01f1347c..b978e634b61 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/033-Robot-Design46.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/033-Robot-Design46.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/034-Robot-Design17.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/034-Robot-Design17.ts index 05962690fe1..f8f9840016d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/034-Robot-Design17.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/034-Robot-Design17.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/035-Robot-Design51.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/035-Robot-Design51.ts index 95609ba28ef..6e908ddac67 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/035-Robot-Design51.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/035-Robot-Design51.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/036-Robot-Design57.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/036-Robot-Design57.ts index fc7cd727f28..65bd2aa3a0a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/036-Robot-Design57.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/036-Robot-Design57.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/037-Robot-Design15.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/037-Robot-Design15.ts index ac2f1bd840f..d3ccb039e15 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/037-Robot-Design15.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/037-Robot-Design15.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/038-Robot-Design62.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/038-Robot-Design62.ts index beab0e9887a..38b64b9fad3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/038-Robot-Design62.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/038-Robot-Design62.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/039-Robot-Design49.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/039-Robot-Design49.ts index bec69e032f6..5189c748f86 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/039-Robot-Design49.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/039-Robot-Design49.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/040-Robot-Design72.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/040-Robot-Design72.ts index 946e7abe875..e0679ab9369 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/040-Robot-Design72.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/040-Robot-Design72.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/041-Robot-Design54.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/041-Robot-Design54.ts index 4363b374e22..7b250b66c7a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/041-Robot-Design54.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/041-Robot-Design54.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/042-Robot-Design90.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/042-Robot-Design90.ts index 9b8873d96ef..b0ea88c7d87 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/042-Robot-Design90.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/042-Robot-Design90.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/043-Robot-Design82.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/043-Robot-Design82.ts index 3bd484ef2e9..ea415fa5062 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/043-Robot-Design82.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/043-Robot-Design82.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/044-Robot-Design31.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/044-Robot-Design31.ts index a7f22adabff..737f0881a50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/044-Robot-Design31.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/044-Robot-Design31.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/045-Robot-Design84.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/045-Robot-Design84.ts index f3ddf9475ca..b708401ae5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/045-Robot-Design84.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/045-Robot-Design84.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/046-Robot-Design74.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/046-Robot-Design74.ts index 213a8318dbe..982945f2fa7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/046-Robot-Design74.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/046-Robot-Design74.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/047-Robot-Design11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/047-Robot-Design11.ts index 2c073eb7a85..339ab2c5de0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/047-Robot-Design11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/047-Robot-Design11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/048-Robot-Design69.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/048-Robot-Design69.ts index f629401f8cf..70634681a65 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/048-Robot-Design69.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/048-Robot-Design69.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/049-Robot-Design53.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/049-Robot-Design53.ts index 89f6f3e0947..d2f2caf1de9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/049-Robot-Design53.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/049-Robot-Design53.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/050-Robot-Design78.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/050-Robot-Design78.ts index 3e7e3db03e1..df4a30a6ef4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/050-Robot-Design78.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/050-Robot-Design78.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/051-Robot-Design16.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/051-Robot-Design16.ts index 7c2a5f54d9e..619ca67babc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/051-Robot-Design16.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/051-Robot-Design16.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/052-Robot-Design87.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/052-Robot-Design87.ts index 3e1b57f1387..df0130dde86 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/052-Robot-Design87.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/052-Robot-Design87.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/053-Robot-Design14.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/053-Robot-Design14.ts index 50aefedda48..90be84d7aaa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/053-Robot-Design14.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/053-Robot-Design14.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/054-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/054-Robot-Design6.ts index 087974ad7bd..df5f9f93b4b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/054-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/054-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/055-Robot-Design73.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/055-Robot-Design73.ts index 24a32bd496a..99394cd15fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/055-Robot-Design73.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/055-Robot-Design73.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/056-Robot-Design47.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/056-Robot-Design47.ts index 06600b46578..0d04b32662f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/056-Robot-Design47.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/056-Robot-Design47.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/057-Robot-Design23.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/057-Robot-Design23.ts index 17da3839c72..2cf6f36e889 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/057-Robot-Design23.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/057-Robot-Design23.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/058-Robot-Design50.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/058-Robot-Design50.ts index e6c0c78659f..3dd39adc48a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/058-Robot-Design50.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/058-Robot-Design50.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/059-Robot-Design65.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/059-Robot-Design65.ts index ac9b9b46476..50433c0c4ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/059-Robot-Design65.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/059-Robot-Design65.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/060-Robot-Design19.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/060-Robot-Design19.ts index 3840579a965..19a350f1d06 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/060-Robot-Design19.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/060-Robot-Design19.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/061-Robot-Design66.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/061-Robot-Design66.ts index d059a84b022..9e2c8972545 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/061-Robot-Design66.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/061-Robot-Design66.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/062-Robot-Design76.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/062-Robot-Design76.ts index cbdacbda53d..8f1c5d6d6cc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/062-Robot-Design76.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/062-Robot-Design76.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/063-Robot-Design77.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/063-Robot-Design77.ts index dd0ec65907b..c5803541270 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/063-Robot-Design77.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/063-Robot-Design77.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/064-Robot-Design38.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/064-Robot-Design38.ts index cd2e78fdbd0..f5137d21761 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/064-Robot-Design38.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/064-Robot-Design38.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/065-Robot-Design85.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/065-Robot-Design85.ts index 4b72e7b0f2a..c554988e727 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/065-Robot-Design85.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/065-Robot-Design85.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/066-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/066-Robot-Design3.ts index 6665c9fbf49..a9648092ec8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/066-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/066-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/067-Robot-Design67.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/067-Robot-Design67.ts index 4977092fe6a..f3d83a2018c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/067-Robot-Design67.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/067-Robot-Design67.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/068-Robot-Design12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/068-Robot-Design12.ts index e267cb74d42..9da9b07c11b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/068-Robot-Design12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/068-Robot-Design12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/069-Robot-Design18.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/069-Robot-Design18.ts index cfd0adf6a29..e958b20ec98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/069-Robot-Design18.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/069-Robot-Design18.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/070-Robot-Design56.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/070-Robot-Design56.ts index 4403f7a654e..8f4d1f4132f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/070-Robot-Design56.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/070-Robot-Design56.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/071-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/071-Robot-Design8.ts index 3bd9f3729eb..e7150b68485 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/071-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/071-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/072-Robot-Design55.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/072-Robot-Design55.ts index a58735fddc8..afe69d1877d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/072-Robot-Design55.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/072-Robot-Design55.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/073-Robot-Design89.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/073-Robot-Design89.ts index fba79e6dd37..3cea629c4ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/073-Robot-Design89.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/073-Robot-Design89.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/074-Robot-Design61.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/074-Robot-Design61.ts index 25cae7ac21b..28e00f46b68 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/074-Robot-Design61.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/074-Robot-Design61.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/075-Robot-Design52.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/075-Robot-Design52.ts index 7580d185c8b..749c68c4bba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/075-Robot-Design52.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/075-Robot-Design52.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/076-Robot-Design70.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/076-Robot-Design70.ts index f2caec7c406..d4c96fb16f9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/076-Robot-Design70.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/076-Robot-Design70.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/077-Robot-Design45.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/077-Robot-Design45.ts index 1d6270585c9..ec48b08c825 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/077-Robot-Design45.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/077-Robot-Design45.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/078-Robot-Design34.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/078-Robot-Design34.ts index 0063aea61fd..d5828802f39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/078-Robot-Design34.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/078-Robot-Design34.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/079-Robot-Design41.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/079-Robot-Design41.ts index 38fd6db26eb..612d89c8881 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/079-Robot-Design41.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/079-Robot-Design41.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/080-Robot-Design33.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/080-Robot-Design33.ts index 1233f28a09b..7174ba6ce71 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/080-Robot-Design33.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/080-Robot-Design33.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/081-Robot-Design29.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/081-Robot-Design29.ts index d865cf18b87..c565ec3f87f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/081-Robot-Design29.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/081-Robot-Design29.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/082-Robot-Design22.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/082-Robot-Design22.ts index 78895f21e07..70d4b7a88f3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/082-Robot-Design22.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/082-Robot-Design22.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/083-Robot-Design10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/083-Robot-Design10.ts index 3c5d5190715..09a3e10a9e6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/083-Robot-Design10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/083-Robot-Design10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/084-Robot-Design26.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/084-Robot-Design26.ts index 52898f38be9..fd0cef399de 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/084-Robot-Design26.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/084-Robot-Design26.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/085-Robot-Design68.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/085-Robot-Design68.ts index 30b25ad0393..4c4e4de1a3c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/085-Robot-Design68.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/085-Robot-Design68.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/086-Robot-Design39.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/086-Robot-Design39.ts index bb1da3e8deb..4184ead3068 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/086-Robot-Design39.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/086-Robot-Design39.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/087-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/087-Robot-Design4.ts index 0f238313a08..10cd3c2fd60 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/087-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/087-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/088-Robot-Design79.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/088-Robot-Design79.ts index a2bf4269639..0774f3de5c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/088-Robot-Design79.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/088-Robot-Design79.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/089-Robot-Design44.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/089-Robot-Design44.ts index 3908cf72aaa..6681af174c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/089-Robot-Design44.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/005-01BaseFace/generated/089-Robot-Design44.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/000-Robot-Design9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/000-Robot-Design9.ts index e8b4719bcfd..b5504f10602 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/000-Robot-Design9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/000-Robot-Design9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/001-Robot-Design7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/001-Robot-Design7.ts index 4163e095fae..8f96465873b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/001-Robot-Design7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/001-Robot-Design7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/002-Robot-Design1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/002-Robot-Design1.ts index 8e85db5a6d0..f24ce494a84 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/002-Robot-Design1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/002-Robot-Design1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/003-Robot-Design5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/003-Robot-Design5.ts index 8af08bd27f8..af6eadef535 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/003-Robot-Design5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/003-Robot-Design5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/004-Robot-Design2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/004-Robot-Design2.ts index 3fb304f1ef1..30005b2e25e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/004-Robot-Design2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/004-Robot-Design2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/005-Robot-Design6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/005-Robot-Design6.ts index 36673586ca5..5602501477f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/005-Robot-Design6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/005-Robot-Design6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/006-Robot-Design3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/006-Robot-Design3.ts index e29da267d3b..d377491bf83 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/006-Robot-Design3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/006-Robot-Design3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/007-Robot-Design8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/007-Robot-Design8.ts index f3bd8d64084..7c8aff0ebe0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/007-Robot-Design8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/007-Robot-Design8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/008-Robot-Design10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/008-Robot-Design10.ts index 3ed40f5f9cb..b61127bb815 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/008-Robot-Design10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/008-Robot-Design10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/009-Robot-Design4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/009-Robot-Design4.ts index ad4f00b60cb..04eca038cc0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/009-Robot-Design4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set3/006-03Antenna/generated/009-Robot-Design4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/000-body0.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/000-body0.ts index a754fdc7dfc..0b79318b629 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/000-body0.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/000-body0.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/001-body1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/001-body1.ts index 1586cfdfa68..01ba80d2672 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/001-body1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/001-body1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/002-body2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/002-body2.ts index b90f65471ec..86e3993c55c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/002-body2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/002-body2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/003-body3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/003-body3.ts index c9be129047b..b5f0a5b506c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/003-body3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/003-body3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/004-body4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/004-body4.ts index 2af14182f85..5be430136ea 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/004-body4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/004-body4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/005-body5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/005-body5.ts index c57390ea059..f1d5cf425f0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/005-body5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/005-body5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/006-body6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/006-body6.ts index da94e304ca2..03029ee6ace 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/006-body6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/006-body6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/007-body7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/007-body7.ts index adb936f8c99..94ce475bd9a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/007-body7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/007-body7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/008-body8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/008-body8.ts index a46ca299ef8..961fbec5c5f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/008-body8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/008-body8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/009-body9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/009-body9.ts index 13b8a83fb64..a974326883c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/009-body9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/009-body9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/010-body10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/010-body10.ts index 8071e6f61b7..b9db399c421 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/010-body10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/010-body10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/011-body11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/011-body11.ts index 12eb9e100dc..eb18e3719ec 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/011-body11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/011-body11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/012-body12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/012-body12.ts index 2a03b7a6226..bb5e913a3ed 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/012-body12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/012-body12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/013-body13.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/013-body13.ts index 7ae2948efc0..ef27376e251 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/013-body13.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/013-body13.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/014-body14.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/014-body14.ts index 112b1274eaa..60c06788451 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/014-body14.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/000-00body/generated/014-body14.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/000-fur0.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/000-fur0.ts index 7ca66cc62df..ca4ab6762ba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/000-fur0.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/000-fur0.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/001-fur1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/001-fur1.ts index 059d6b8b7d3..dc6c4efedd0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/001-fur1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/001-fur1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/002-fur2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/002-fur2.ts index 31cdb2a762f..4a53f352249 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/002-fur2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/002-fur2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/003-fur3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/003-fur3.ts index e81183a4e29..56a3c860d9e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/003-fur3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/003-fur3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/004-fur4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/004-fur4.ts index cd79485af20..228b019d002 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/004-fur4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/004-fur4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/005-fur5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/005-fur5.ts index 4ecc299a958..7d3c8a29468 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/005-fur5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/005-fur5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/006-fur6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/006-fur6.ts index 31cdb2a762f..4a53f352249 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/006-fur6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/006-fur6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/007-fur7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/007-fur7.ts index c2d9471657a..3a644ea14ae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/007-fur7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/007-fur7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/008-fur8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/008-fur8.ts index 5fdb2f0fe5a..31efb7baed7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/008-fur8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/008-fur8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/009-fur9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/009-fur9.ts index 18da9d59cc3..4a525437dde 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/009-fur9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/001-01fur/generated/009-fur9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/000-eyes0.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/000-eyes0.ts index 57efa0f8217..a9bf67a068d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/000-eyes0.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/000-eyes0.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/001-eyes1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/001-eyes1.ts index 4d671bc9847..ae06a741599 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/001-eyes1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/001-eyes1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/002-eyes2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/002-eyes2.ts index 0bd9e3fc04c..b44bf8ec5e3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/002-eyes2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/002-eyes2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/003-eyes3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/003-eyes3.ts index 317a99fd5b2..3a9ac051153 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/003-eyes3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/003-eyes3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/004-eyes4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/004-eyes4.ts index 49c51fab551..458d17e5895 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/004-eyes4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/004-eyes4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/005-eyes5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/005-eyes5.ts index ab45815a413..d24352b1286 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/005-eyes5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/005-eyes5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/006-eyes6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/006-eyes6.ts index d5b6a3a860d..4ecd84f2bb3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/006-eyes6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/006-eyes6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/007-eyes7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/007-eyes7.ts index 03dde405ce8..024dd83f0e9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/007-eyes7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/007-eyes7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/008-eyes8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/008-eyes8.ts index 9f3af430ea3..ce7b35656f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/008-eyes8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/008-eyes8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/009-eyes9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/009-eyes9.ts index f32f2ac1b2c..aafa70e8f1c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/009-eyes9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/009-eyes9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/010-eyes10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/010-eyes10.ts index 63b82ccbbe1..0ee495ee1ab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/010-eyes10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/010-eyes10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/011-eyes11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/011-eyes11.ts index 58768904e02..6c852d9bd40 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/011-eyes11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/011-eyes11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/012-eyes12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/012-eyes12.ts index edc0f460fb5..10b2975a24f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/012-eyes12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/012-eyes12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/013-eyes13.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/013-eyes13.ts index 796f5e73fa5..e0940579ec2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/013-eyes13.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/013-eyes13.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/014-eyes14.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/014-eyes14.ts index d51303be584..6f1b925b771 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/014-eyes14.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/002-02eyes/generated/014-eyes14.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/000-mouth0.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/000-mouth0.ts index 2a90d062343..3b131567db5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/000-mouth0.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/000-mouth0.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/001-mouth1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/001-mouth1.ts index fa7d4e7374f..71795763aca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/001-mouth1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/001-mouth1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/002-mouth2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/002-mouth2.ts index 1cc53c13163..bdb28a14af5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/002-mouth2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/002-mouth2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/003-mouth3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/003-mouth3.ts index cc100280351..94748e14770 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/003-mouth3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/003-mouth3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/004-mouth4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/004-mouth4.ts index 73317795ac2..1791f978898 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/004-mouth4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/004-mouth4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/005-mouth5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/005-mouth5.ts index 0235a1f71fe..a2eaf3b2b93 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/005-mouth5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/005-mouth5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/006-mouth6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/006-mouth6.ts index b952f0a8deb..ac52322795c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/006-mouth6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/006-mouth6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/007-mouth7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/007-mouth7.ts index 692dc65a6b9..5dc1ba67329 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/007-mouth7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/007-mouth7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/008-mouth8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/008-mouth8.ts index 7675e9fc3e8..e3cc37d8d98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/008-mouth8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/008-mouth8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/009-mouth9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/009-mouth9.ts index 54b6296799d..ee8ebf72bf4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/009-mouth9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/003-03mouth/generated/009-mouth9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/000-accessory0.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/000-accessory0.ts index ca5e5fb7553..b3f40d3b140 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/000-accessory0.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/000-accessory0.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/001-accessory1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/001-accessory1.ts index aa5b69c0432..7e17c13b285 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/001-accessory1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/001-accessory1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/002-accessory2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/002-accessory2.ts index b1e3a9b4efe..c5ddcebad2e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/002-accessory2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/002-accessory2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/003-accessory3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/003-accessory3.ts index 6169196ec90..975250a4ddc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/003-accessory3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/003-accessory3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/004-accessory4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/004-accessory4.ts index bdfd035bde7..f0dd3ea8293 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/004-accessory4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/004-accessory4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/005-accessory5.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/005-accessory5.ts index 068c489f369..f31ef4c2904 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/005-accessory5.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/005-accessory5.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/006-accessory6.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/006-accessory6.ts index 69b0672f700..6778a8aa058 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/006-accessory6.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/006-accessory6.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/007-accessory7.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/007-accessory7.ts index b13de8c72f1..ed4059b7e8a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/007-accessory7.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/007-accessory7.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/008-accessory8.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/008-accessory8.ts index 7f0d2fa3115..89ff526992a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/008-accessory8.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/008-accessory8.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/009-accessory9.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/009-accessory9.ts index 63bdbb399c1..762085e5b38 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/009-accessory9.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/009-accessory9.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/010-accessory10.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/010-accessory10.ts index 4a76c62cee9..89196d3306f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/010-accessory10.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/010-accessory10.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/011-accessory11.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/011-accessory11.ts index 3b7c76f85a9..abb629d9f24 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/011-accessory11.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/011-accessory11.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/012-accessory12.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/012-accessory12.ts index bc1affb551f..d7fbd0edf5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/012-accessory12.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/012-accessory12.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/013-accessory13.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/013-accessory13.ts index 20f8b83a503..44b1ad68536 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/013-accessory13.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/013-accessory13.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/014-accessory14.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/014-accessory14.ts index df13d7b0404..2607890b9a8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/014-accessory14.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/014-accessory14.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/015-accessory15.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/015-accessory15.ts index 31cdb2a762f..4a53f352249 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/015-accessory15.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set4/004-04accessories/generated/015-accessory15.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Black.ts index 36095858b1d..17d9eb33050 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Brown.ts index 5a8bbe28d98..d575c11cd6a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/DarkBrown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/DarkBrown.ts index c099650e181..b73cda64fcc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/DarkBrown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/DarkBrown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Light.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Light.ts index 928d9c157cd..a1fe0c12d6e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Light.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Light.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Pale.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Pale.ts index e6d1a6797fb..08f5b498a9b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Pale.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Pale.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Tanned.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Tanned.ts index 880693fec7a..b0a1ded2fcb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Tanned.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Tanned.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Yellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Yellow.ts index c59cf22b236..34de079e0fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Yellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/000-Body/generated/Yellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Close.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Close.ts index 5f74f31beab..0af3b63a705 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Close.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Close.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Cry.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Cry.ts index d2159a425c3..ed6d5e4f49c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Cry.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Cry.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Default.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Default.ts index b088160f8e7..c10d6177bef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Default.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Default.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Dizzy.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Dizzy.ts index e6e10a2eb31..a44feb197be 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Dizzy.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Dizzy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/EyeRoll.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/EyeRoll.ts index 309b5e331b5..c11e42d032b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/EyeRoll.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/EyeRoll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Happy.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Happy.ts index 9bbe44d81d2..98cebc6511c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Happy.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Happy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Hearts.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Hearts.ts index 5b3fb58ae2c..ab375914193 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Hearts.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Hearts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Side.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Side.ts index faad8122179..4df365ca974 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Side.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Side.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Squint.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Squint.ts index f3cc2398b02..6db42c604ce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Squint.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Squint.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Surprised.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Surprised.ts index 8d4cd4b47e5..616a7eb4ebe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Surprised.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Surprised.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Wink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Wink.ts index 670a07dd5aa..dbe6188e0fd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Wink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/Wink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/WinkWacky.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/WinkWacky.ts index 22b02a83d37..a5a785adeb5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/WinkWacky.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/001-Eye/generated/WinkWacky.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Angry.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Angry.ts index d806e628e0b..8689df4cb9c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Angry.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Angry.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/AngryNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/AngryNatural.ts index 784b6933e4e..65fe52e1b2c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/AngryNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/AngryNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Default.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Default.ts index c97dfe36725..fde6dae8452 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Default.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/Default.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/DefaultNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/DefaultNatural.ts index 41a18f2f6be..668922b1e3a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/DefaultNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/DefaultNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/FlatNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/FlatNatural.ts index 08ac0dfa974..ad87268b311 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/FlatNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/FlatNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcited.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcited.ts index 3708c85305f..0c6acb0fd8e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcited.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcited.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcitedNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcitedNatural.ts index 654cb7e8730..34bd32052a6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcitedNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/RaisedExcitedNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcerned.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcerned.ts index bcf52e87f03..a5d47278d64 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcerned.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcerned.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcernedNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcernedNatural.ts index e59e8025844..e783c91e2bb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcernedNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/SadConcernedNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UnibrowNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UnibrowNatural.ts index ea0e17d5016..c79fdc2d6a7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UnibrowNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UnibrowNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDown.ts index f2204f1356e..b95b9c99839 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDownNatural.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDownNatural.ts index 53943453e7b..8d7478d4fb2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDownNatural.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/002-Eyebrow/generated/UpDownNatural.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Concerned.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Concerned.ts index bce9a84207c..6c106775b15 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Concerned.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Concerned.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Default.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Default.ts index 49b49965d15..e412fc0c9f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Default.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Default.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Disbelief.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Disbelief.ts index 51d567131c8..f66694bc4c3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Disbelief.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Disbelief.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Eating.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Eating.ts index 6029131724b..016288e8606 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Eating.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Eating.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Grimace.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Grimace.ts index f8c15e7d365..74cb072c7c1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Grimace.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Grimace.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Sad.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Sad.ts index 50f7b7e469a..cae988db41c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Sad.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Sad.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/ScreamOpen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/ScreamOpen.ts index ef341effd7a..e4862d6820a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/ScreamOpen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/ScreamOpen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Serious.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Serious.ts index 13b5916c9db..f55703f87c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Serious.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Serious.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Smile.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Smile.ts index a33bc82b967..57e5543eede 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Smile.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Smile.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Tongue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Tongue.ts index 90860e9e9ae..bbb37fbb354 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Tongue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Tongue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Twinkle.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Twinkle.ts index 38ab093c4fe..2eaba219ac6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Twinkle.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Twinkle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Vomit.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Vomit.ts index b0374da7471..a7b50f33c2b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Vomit.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/003-Mouth/generated/Vomit.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerShirt.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerShirt.ts index 2d95cab0b2f..dd25b6e4a92 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerShirt.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerShirt.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerSweater.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerSweater.ts index 6a51aec35a2..39474bbc2c9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerSweater.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/BlazerSweater.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Black.ts index 29366832549..399b3de6ba6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue01.ts index 3bb5b7cf13f..e7882dc6bbb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue02.ts index 1083cd19a7d..1ab19703574 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue03.ts index dbbc928bbfd..16e09f85fc9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Gray02.ts index 025a78fd564..88d1ada9161 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Heather.ts index db3b174eda9..1a8861be0f1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelBlue.ts index 7492cdd6f7d..249e577c7fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelGreen.ts index 98e678ba533..85ec1bd294a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelOrange.ts index 839b14fc534..66015f49b8f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelRed.ts index 72bd65cadfc..d0c29aa3203 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelYellow.ts index 9737a503beb..8c6418424d6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Pink.ts index e98809d9e9b..9a8c1fade22 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Red.ts index d69e49c042b..54f368d5dee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-White.ts index d5b62b92f81..5cae6b05315 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater.ts index e401388da60..9dda6dec159 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/CollarSweater.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bat.ts index cb5610d3b03..836c3541a4c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bear.ts index b825d3c24d2..cb65f0dbc63 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Cumbia.ts index ad60174b7fb..1f209810378 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Deer.ts index 7d06a4fe58c..42fb7f18e50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Diamond.ts index 083ac1c16cd..4296c0117ac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Hola.ts index 6efcb526775..b0bc13dd533 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Pizza.ts index 970ededacf6..5f5b62f35c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Resist.ts index bda5d555171..5e621bc46d7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Selena.ts index fc2f4ca2386..a0fd2a28d6a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--SkullOutline.ts index db0a9d6edb0..92325412ccf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt--SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bat.ts index aef5a0ecfaa..a6f0f8ad2b3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bear.ts index 4da43253330..5ea447f5342 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Cumbia.ts index 7832a5e1729..a08ede2ae02 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Deer.ts index 21c195204f5..e8608a80789 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Diamond.ts index bde0536d9b3..b5aac3f3cf5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Hola.ts index 9d11e57898f..b438c55bec4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Pizza.ts index 560ecca0d93..0994c7b3620 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Resist.ts index 4072ab2da8b..45a0f6308a3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Selena.ts index 0fd6f738edf..36ded3bad38 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-SkullOutline.ts index b6c2133658b..7b68e5f6f1c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black.ts index 48a47d9dd3f..aa728ba9ed0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bat.ts index a4186be66e1..1ed9d1d0e1d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bear.ts index 44477271f5d..fe9f16a6f86 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Cumbia.ts index f40e738adbc..deb47df5d3c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Deer.ts index 8df86f2c8e2..6512203214e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Diamond.ts index cd64d288961..b8507360c98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Hola.ts index a3f141e06de..1fbf9e681b1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Pizza.ts index dd37c6c32e9..4f554223205 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Resist.ts index 003670dc832..acd13b64b36 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Selena.ts index 7fcaa36ef7f..a4dec3cf5a8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-SkullOutline.ts index a579729562e..e5ec8031809 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01.ts index 6fcb402ab5f..2ddc2401654 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bat.ts index 04573342103..062421ab77c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bear.ts index 80b36988683..40f0e5b93c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Cumbia.ts index 148e4dca32f..832e7949608 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Deer.ts index 4c9d38e63a5..25f854df31c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Diamond.ts index a27343768d6..c53735a0812 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Hola.ts index 87bc0e19f51..090e0fd61c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Pizza.ts index a3a06ca686e..ef2af64c1ea 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Resist.ts index 9cab2e0b57e..4efe65b3db7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Selena.ts index 37d5f11b8ce..2a58630f005 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-SkullOutline.ts index 89aaab60c9a..d3fec5b1796 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02.ts index 9438cf32bd1..f4a476c510b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bat.ts index 148e3054414..c4352d3874c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bear.ts index 2cc277a12bf..0cdbc5bfc90 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Cumbia.ts index 836f882060b..e8636598baa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Deer.ts index d394f4bcf0d..11681e240e1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Diamond.ts index 4ecb9fdce0c..a771460d690 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Hola.ts index a1be7c9ab55..71fe8df7e5a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Pizza.ts index 313286361a9..510ce7b1316 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Resist.ts index 1a99e67edcb..b74aa851c87 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Selena.ts index 63d71b6fc90..d4495e95ad8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-SkullOutline.ts index a94c93b0793..53aebf4beed 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03.ts index b9d9bd2b807..3268f16d804 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bat.ts index 8a2b320cec6..5e1687bdc71 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bear.ts index c9d4848f0c6..fcdd0ea1637 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Cumbia.ts index 7593042eff8..54296b430a4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Deer.ts index c8977a16cdc..3d17a9f48eb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Diamond.ts index 21f41a681eb..89d05b83766 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Hola.ts index 0dc4d9d5a06..f6603b91503 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Pizza.ts index dceecb68f42..d84cbf5f42e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Resist.ts index 8afb252587c..64efb45ac9f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Selena.ts index 332db5a23c1..5ad73aa5d09 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-SkullOutline.ts index 81d4b955a54..c49c6a66c69 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02.ts index 45b2b29caca..741f5cc092d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bat.ts index 8b20717d399..4ce67596ebc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bear.ts index bded784deba..76ef8ca5359 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Cumbia.ts index 626b213ad1d..b5fbc72ed3f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Deer.ts index 23e6177f8fd..7d42c4a979f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Diamond.ts index 90711f107b1..d690b90fa81 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Hola.ts index 51617626298..1dd65d0df39 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Pizza.ts index 7411235e9e7..f6d494f908b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Resist.ts index e46e3162ec7..8785f01a7ce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Selena.ts index b5d29835303..39a13a7761c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-SkullOutline.ts index 4e872e9337f..2909ebcfcb5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather.ts index 89574f9b503..7dfafa21931 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bat.ts index b107bca8076..b3661dba7b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bear.ts index 21349d4c460..a506043ea91 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Cumbia.ts index 5c09592b587..720c9f59f01 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Deer.ts index c04421b0a11..8f75f37caf6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Diamond.ts index 46cc6c4eaa4..44b74c37ea4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Hola.ts index b2cc05afed7..004ecef46d5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Pizza.ts index 810510b8fde..28463bf9ad3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Resist.ts index cedccaf1fb0..d1499306cae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Selena.ts index ca02d56261d..17a4763fdd3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-SkullOutline.ts index 4810252c13f..c6156f523cb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue.ts index 1131b199e42..7c784cb16e8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bat.ts index 77096687d7a..7370030475c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bear.ts index d3484690c61..48d90204bb6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Cumbia.ts index 7432c149a5b..7c44b3ffb76 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Deer.ts index 2da95ba4293..9ea8bf15163 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Diamond.ts index 1c1eb088d39..7d452e8d4d5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Hola.ts index a4e0f95aa14..b7aa2656147 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Pizza.ts index babebae2c2a..cb7d6c0381d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Resist.ts index 3f6b2be80ca..67d20c8a8c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Selena.ts index 196adc9c71a..4f86de7a531 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-SkullOutline.ts index 50d5da66763..cf0d830b2fc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen.ts index 38642547787..dfd455676ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bat.ts index b2b9e5f221b..e4df4c03ced 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bear.ts index eee74cdcb83..ed6f4f23716 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Cumbia.ts index 78004921441..79f55196a0e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Deer.ts index c675abf1fdc..4e11eb582e6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Diamond.ts index e4629f2000d..d8cb7b60d9e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Hola.ts index 8b14fece070..15ff25ccbf2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Pizza.ts index 47dcbe00cd2..cecd4fbd3cd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Resist.ts index 65d3b155d7a..058580cbe58 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Selena.ts index c52397b7e77..5bdc53c234f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-SkullOutline.ts index e9931cb7b99..6f611e88099 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange.ts index 97556623a1e..4f75f4880da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bat.ts index b30942d87a0..313b69e543a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bear.ts index 5e4b53827dc..a6e0cf4f98b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Cumbia.ts index bb4cb5e2d49..42b1948e3f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Deer.ts index f95e64665c2..31c6f25061c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Diamond.ts index 8eaea3403df..0f979b40f29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Hola.ts index 8798b64c5e0..f77d372984e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Pizza.ts index 43c995b9822..8d5c215b7ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Resist.ts index 394f9f991e2..b3f196eef12 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Selena.ts index d400847c264..e6b239b2c2c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-SkullOutline.ts index b443fab9947..f01183d2b50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed.ts index 67e40bd07a7..3cc3f81cece 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bat.ts index b725831b50f..bd3332b44e5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bear.ts index 61aeca2a64c..1ac0ece9787 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Cumbia.ts index fcdb00df2e0..0b538775152 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Deer.ts index 07cd157925d..f839cb43784 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Diamond.ts index 1d068fcb6b5..32e6b5e6d90 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Hola.ts index e0b39096ce2..e597df584fd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Pizza.ts index d240ce22900..7fd29741e9b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Resist.ts index feef64958e0..e5d88343ccc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Selena.ts index 9b446fac83e..bdd94284bdb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-SkullOutline.ts index 7649f7edfdf..4e82367d697 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow.ts index 5e954abc761..c6324ecd5dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bat.ts index d7b8d3a48a0..9f8fd2dd107 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bear.ts index c85c1b14bd0..0050bc12d96 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Cumbia.ts index c2632c3a413..2fdaf4a8e31 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Deer.ts index 837d291b1bf..d253334dcb8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Diamond.ts index 418c2ba609b..47af797814b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Hola.ts index f42952f250d..1ce90ec89ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Pizza.ts index 7b018e65f09..1bc455a95ea 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Resist.ts index 4bfedb508e3..331f7043b32 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Selena.ts index 1f1c3cf9842..df39a5947ae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-SkullOutline.ts index 119d6e21063..aa8f89cde9f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink.ts index f01c632409f..ebe8cd651cc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bat.ts index 0bd1bec199f..76307dbed0e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bear.ts index cec86b935d0..ce3ac34291f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Cumbia.ts index 03064362a1e..a12b285514e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Deer.ts index c2e0d046355..a276ea8b297 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Diamond.ts index 422940f2768..4217c0c3454 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Hola.ts index 579df85c8be..2574a65d385 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Pizza.ts index 1129e54ae63..7e335be5cda 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Resist.ts index b5a7e93a97e..d68d22814d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Selena.ts index 623a899593a..da836387d5c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-SkullOutline.ts index 1e6ff2826f1..d3859cd22bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red.ts index 7bcf58c315a..8841e9b4a64 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bat.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bear.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bear.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bear.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Bear.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Cumbia.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Cumbia.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Cumbia.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Cumbia.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Deer.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Deer.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Deer.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Deer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Diamond.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Diamond.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Diamond.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Diamond.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Hola.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Hola.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Hola.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Hola.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Pizza.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Pizza.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Pizza.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Pizza.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Resist.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Resist.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Resist.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Resist.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Selena.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Selena.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Selena.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-Selena.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-SkullOutline.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-SkullOutline.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-SkullOutline.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White-SkullOutline.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White.ts index 96ca11641b7..1d556efd89a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt.ts index 74b07bd7004..d588a7fb24f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/GraphicShirt.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Black.ts index 6016d3fe621..4566a15ea9c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue01.ts index 4466e6926a5..29e7127b8e2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue02.ts index 456fb41f39f..345ecbd81ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue03.ts index 65a6b0b8dd9..e028c708299 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Gray02.ts index 06d7d5c041d..b1fc6870500 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Heather.ts index 812e44f2293..67139a7f77e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelBlue.ts index c33e5a1753f..09b5ad7addc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelGreen.ts index 221e9060be7..2d52fd47dd3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelOrange.ts index 57f18087606..6740d9b4d47 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelRed.ts index 037997c57e2..7d48c37b5c6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelYellow.ts index 304d6cdb0e3..80756e1e2ac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Pink.ts index 80f29cf0502..0992bc748a4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Red.ts index 8eef90367db..a766bdfecbb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-White.ts index 9eedd134d3f..86549f2ee2a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie.ts index 9fa7e61684e..58730a824f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Hoodie.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Black.ts index 86e29af9365..c985f9b1457 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue01.ts index 2e751825cdd..58044d18c00 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue02.ts index f61d055df29..dcf8d44568d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue03.ts index 64e7ac907b2..f916d105f53 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Gray02.ts index 1c66e35d5cc..4c9cb522dd0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Heather.ts index 776004b56d6..0f88aee2c86 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelBlue.ts index 014c8f5ed1f..4090e15e368 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelGreen.ts index 3e8ad3248e1..43168e68e9a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelOrange.ts index 55393b7735f..5f879189e0b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelRed.ts index a779d0a1ce6..6e776df9428 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelYellow.ts index 26a88732bd5..10bc719a9df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Pink.ts index 51731e249ff..0706f5fdb75 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Red.ts index 192d03c74b4..bf645e26225 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-White.ts index 3530822650a..38b6f2b8dda 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall.ts index 284f37a60dd..c7cb2cd4b86 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/Overall.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Black.ts index 093593d4fb6..e7a32c1181c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue01.ts index 15d8f1a31b5..c710edfdfae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue02.ts index 7102e060e09..f4990df0292 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue03.ts index 2b01b554d1a..fe0aee447cd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Gray02.ts index 4e0220ac7ef..1ffa898c967 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Heather.ts index 6557c3d96a1..1c6cbbc6c18 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelBlue.ts index 06c5881ff63..0fb0afa01a1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelGreen.ts index 01e2f548ce5..0cf4e66def5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelOrange.ts index 9df0e0125b0..347f85d2342 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelRed.ts index 558ac737062..684dee55951 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelYellow.ts index 9430cbd213a..6a63417eec2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Pink.ts index 0b0b565dabf..452a069c187 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Red.ts index 9e0dbcc3d74..0413d69ee0a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-White.ts index 19343d17937..0c11e921852 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck.ts index e93143bca67..5413d266f13 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtCrewNeck.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Black.ts index e44cb7e4ab8..78ae2a25531 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue01.ts index e5f4685681d..6300fb28628 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue02.ts index 47b8e241b91..80a9338604c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue03.ts index 6b184ee21f0..f0720b32b4b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Gray02.ts index edcb6df4b7b..bd4594420ad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Heather.ts index 3b01d28e59e..94e7dc995d2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelBlue.ts index 64646952a23..6afb2174dbd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelGreen.ts index 637ab03fd43..087d62ad78c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelOrange.ts index 62e06d9706f..02eac617ce0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelRed.ts index e29221983b0..6841b522f61 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelYellow.ts index 36b26e1d722..39034ee7866 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Pink.ts index d30ee1e95fd..af2fcbbdc1d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Red.ts index ab0bbc69bfa..0122cff254b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-White.ts index f40a719fcdd..c71c098542b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck.ts index 38d89e35ddc..30915d78a73 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtScoopNeck.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtVNeck.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtVNeck.ts index 6e1f6095a4f..62531700552 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtVNeck.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/004-Cloth/generated/ShirtVNeck.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Auburn.ts index 4cde6eed004..99e6af9ce6c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Black.ts index ebf50b80c8e..b0586025339 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Blonde.ts index ac95b047361..afbc13731d3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BlondeGolden.ts index bc648ded370..3e9215115c0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Brown.ts index 4eafbd33a7d..f042d2437d2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BrownDark.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BrownDark.ts index 2897dae778e..8fb0013f5ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BrownDark.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-BrownDark.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Platinum.ts index 9badaa8ed63..16db15bd9fa 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Red.ts index 39ad9e68159..033370939fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight.ts index 2897dae778e..8fb0013f5ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardLight.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Auburn.ts index ddf3089cb96..e80eced649b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Black.ts index fae86ec4653..220bc223b5a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Blonde.ts index 5717297e098..3d51e7e9b7c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BlondeGolden.ts index ed475025551..82c697d7009 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Brown.ts index 8e5f5fb5b4d..c90b5a4bf0e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BrownDark.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BrownDark.ts index d9693e9bb44..69330f3ed2b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BrownDark.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-BrownDark.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Platinum.ts index 56f2ef32c33..dabe15cfca8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Red.ts index 99be6af3850..1a76a282bfb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic.ts index ca6cb80fdb1..8faae594528 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMagestic.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Auburn.ts index 0b0239db977..1f10bf0bf52 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Black.ts index 3fd892d914a..4ef4c242467 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Blonde.ts index e50ddcab130..ee151f057dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BlondeGolden.ts index 3f04c3cf4d7..9985356d590 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Brown.ts index 3959114e5c8..b42ae2d116e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BrownDark.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BrownDark.ts index 96b4484128b..6ca1dbb46f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BrownDark.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-BrownDark.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Platinum.ts index 8e34129f966..cc08b838751 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Red.ts index 580c7b6b6a5..f0d26e4b111 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium.ts index 96b4484128b..6ca1dbb46f6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/BeardMedium.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Blush.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Blush.ts index 04abe8bf402..e37e0b65c95 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Blush.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Blush.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesHeavy001.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesHeavy001.ts index 004f9180c2c..98ac0372303 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesHeavy001.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesHeavy001.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight001.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight001.ts index e3c2a18c369..5997c0b1f70 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight001.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight001.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight002.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight002.ts index 0ff448cd853..8115f087275 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight002.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight002.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight003.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight003.ts index 8b1ce13b3f7..875d03b18d2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight003.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight003.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight004.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight004.ts index fe1023e7075..27193e3eb25 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight004.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight004.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight005.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight005.ts index 96e7cde8b95..9cc865eb0b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight005.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight005.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight006.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight006.ts index 4eeca1a4da3..7475f92ed5b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight006.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/FrecklesLight006.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Auburn.ts index 21f0da18f09..7ff9e7e8e03 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Black.ts index 80b33da8505..162532e0b0e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Blonde.ts index b19d4915d1f..2672ef863b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BlondeGolden.ts index 8089799e311..89412838fba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Brown.ts index 8ff621a4932..032f509f9e5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BrownDark.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BrownDark.ts index 3f4ecdb3a80..622d6ea4c6c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BrownDark.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-BrownDark.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Platinum.ts index 590f2c72d9a..c3375066ce2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Red.ts index 0d58ff546ae..ea3f37f325f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy.ts index 3f4ecdb3a80..622d6ea4c6c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheFancy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Auburn.ts index 47c42bf398f..b2f892bb36d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Black.ts index a6df9b26026..f8bc34ec4ee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Blonde.ts index f26ecc0c8cd..b492c0b8d06 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BlondeGolden.ts index ed81764301f..7d3b4e879d2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Brown.ts index 462bcaff16a..33db0284374 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BrownDark.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BrownDark.ts index b2730ce99ee..450e8dbbfe8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BrownDark.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-BrownDark.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Platinum.ts index 30a85bc6d48..0ae67ef33dd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Red.ts index a9c3dfb0a1a..436e174725c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum.ts index 2a03da7deb6..c7033284050 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/MoustacheMagnum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/RedDot.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/RedDot.ts index 066000ca69e..4b193dfaa1f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/RedDot.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/RedDot.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Wrinkle.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Wrinkle.ts index 58670a28215..072bceac2d0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Wrinkle.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/Wrinkle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/WrinkleTop.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/WrinkleTop.ts index ad92eaaa5ab..cbacb5ccdd2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/WrinkleTop.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/005-FacialHair/generated/WrinkleTop.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Blank.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Blank.ts index 31cdb2a762f..4a53f352249 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Blank.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Blank.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Eyepatch.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Eyepatch.ts index 0dc2b1b73d8..c8d64bf306d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Eyepatch.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Eyepatch.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hat.ts index e474f95aaad..40a8a920801 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Black.ts index 8d9f803d651..e02b3bc7251 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue01.ts index 69bbdf18f6f..10f5775dfd4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue02.ts index 830ff7cdac9..1e4ba38734d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Brown.ts index 171c594afb8..f1aa48477d8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray01.ts index baa7aecb243..9cf1fda899c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray02.ts index 4dd40b440e1..ff53cce194a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Heather.ts index 81b0dd6a6b3..c096f23c9bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelBlue.ts index 9e0a9349d52..c1f152f4ec2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelGreen.ts index 86c2da7221f..362c2137699 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelOrange.ts index a9402ff2ed2..ccba57fd8ad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelRed.ts index f05b1970c02..a7bdd857c7d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelYellow.ts index a0b87b46e38..1d6a251d9d7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Pink.ts index 8d6910af08c..a767b92afac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Red.ts index 96eecd7e92e..c5a0fcaf3ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-White.ts index e5db37d83a6..324924ed1a7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab.ts index 114100b0e15..7adce0be0bc 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Hijab.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Auburn.ts index c70646a962a..9cd61149251 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Black.ts index 5037a825fa3..26569debad7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Blonde.ts index 7a10fbc5fdd..b0616d62431 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-BlondeGolden.ts index 4140c5612a2..23bfbd0088a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Brown.ts index 3df0d18c59c..f0257ec5a03 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-PastelPink.ts index d95a18dae40..26f8de5de73 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Pink.ts index d1d1c6cd1fb..6cd9c3a8585 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Platinum.ts index bc0e12794f1..5e187c9445f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Red.ts index 9fe6b959a7f..c74e5d1c0f8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-SilverGray.ts index baab9892c29..e4556301b00 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair.ts index 132debf7cfb..d8f405ccc7d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBigHair.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Auburn.ts index 3deb0651a8a..5f3921a4616 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Black.ts index ba150dc43ef..3f2edabb1f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Blonde.ts index 4b7e5701b5a..3da46c3f165 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-BlondeGolden.ts index f80c351987c..6330d7657ba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Brown.ts index d23ecbb3e6e..147d94142d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-PastelPink.ts index 47f536759c9..28d67e035f4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Pink.ts index f17e3e68538..037e31f8e3a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Platinum.ts index 17742104b78..f46e5c742d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Red.ts index 9f1568fd00e..43f86291a4e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-SilverGray.ts index 67a9d6de3a1..eb52fc6577f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob.ts index 6f93f12559a..b25a2ea0fae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBob.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Auburn.ts index 34fcd3a63df..763ca404d53 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Black.ts index f4d7b9390c0..c86ace47c17 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Blonde.ts index 323c4f65475..959118f74b3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-BlondeGolden.ts index dcf29146c69..24d445ff2f9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Brown.ts index a145d500e0e..da4012ff52e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-PastelPink.ts index c12441dc7a2..5fa6e995d01 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Pink.ts index 831fc4f6515..303fd494b4c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Platinum.ts index 5e47f0dcf29..93117f93947 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Red.ts index 6ca83e85cc6..c214c4fe72c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-SilverGray.ts index fca4469c987..3481b25e27d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun.ts index d45179f20f6..c0060e83933 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairBun.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Auburn.ts index affee79fcd5..d5d67a1dbac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Black.ts index f0c7cc7a1e0..a3705dbe742 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Blonde.ts index 555da0bd571..7be44bc1f75 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-BlondeGolden.ts index 9fba9816139..0e22790a95a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Brown.ts index f0a2b2bea64..a7a51a4a38e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-PastelPink.ts index 549c5fb4983..a9dacb4be8b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Pink.ts index bf21724f3d7..0c5c8c0e98f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Platinum.ts index 851459e6800..ab17c219525 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Red.ts index 1494a684aab..f4194b56d3d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-SilverGray.ts index d9b1e55a85b..3adda26850a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly.ts index bdf9a1a01e8..989bfdea5c4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurly.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Auburn.ts index 816eb422986..b674e0778c9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Black.ts index 4d3fa86a1e1..1d744718fad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Blonde.ts index 31e37c2e281..1c188c44a2b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-BlondeGolden.ts index f4d8503b71a..bbb7653dea0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Brown.ts index 38a76f87bda..11268d9fb6b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-PastelPink.ts index 83ddfe07bff..6409fb0fe15 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Pink.ts index 7ca22a54cfa..2a18e676e27 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Platinum.ts index 01b7e5eb888..885c1d2ee46 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Red.ts index 7bf97d3709e..6c22d86006a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-SilverGray.ts index 93758a916d7..183060b6271 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy.ts index c286d08fb32..4e36947815e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairCurvy.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Auburn.ts index 29a72dc25b0..01048f485ad 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Black.ts index 523e5cdc8de..2bacf9e46a6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Blonde.ts index 428d251a924..ae91cce46a5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-BlondeGolden.ts index 339ed88927b..9bb8e11486a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Brown.ts index c18f9450a16..d77bea448d2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-PastelPink.ts index 5bacb46d532..25507a94091 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Pink.ts index 183a169ee94..eb1e1c9fb9f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Platinum.ts index bbccb45d19c..52f7e78b2a1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Red.ts index c2011d5e677..3074f6bf1e4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-SilverGray.ts index 58062de3c5c..96c56a1137d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads.ts index 6b14ec10737..54712326844 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairDreads.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFrida.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFrida.ts index 0b7d54a7582..03f9fa77f75 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFrida.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFrida.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Auburn.ts index a41bfe093a7..c6cc8889f49 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Black.ts index 63ee4b6144b..f6d8de4de21 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Blonde.ts index 9c3fbe768d7..b0a59ca9552 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-BlondeGolden.ts index 78d01f242c8..47aed110805 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Brown.ts index 8897fdf6a0a..dfc864004ff 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-PastelPink.ts index 78800d2d3ae..c85e1f75dcb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Pink.ts index cb39672afa2..fd272079810 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Platinum.ts index 458e1ba90fb..724ac10e90c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Red.ts index 2c73557ec46..95e4b0ead71 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-SilverGray.ts index e55c7c8d4b6..576ed315541 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro.ts index ad73816cef6..a2f24822099 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFro.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Auburn.ts index 3ab460c8f28..35d8e3005fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Black.ts index c7e212c0248..4ded0908ab3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Blonde.ts index 45b9660bb2f..910c0797c35 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-BlondeGolden.ts index 99bd7ca26b4..f4883adf2e4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Brown.ts index 7797072e6f5..0170f7e12c7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-PastelPink.ts index fa6c746d164..5db451037ab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Pink.ts index d77b0ba46d6..2f4e054ec72 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Platinum.ts index b3c818380f7..62e0f9396c5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Red.ts index 4fa74f9f08a..70aa6d69a0e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-SilverGray.ts index 30850582653..23a9ef1f78d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand.ts index 2b534331711..19612a1c08b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairFroBand.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Auburn.ts index 92cc9b54912..a0ab5f6ac52 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Black.ts index 305d202bb7f..1ac758055bf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Blonde.ts index ae43c11d3a3..657091dd30b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-BlondeGolden.ts index 2672e88a388..639234e8aa5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Brown.ts index 3e265a90076..fe64c08ef97 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-PastelPink.ts index d88111831c1..878352a9d31 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Pink.ts index 1d0a1b39efe..7d1fa202714 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Platinum.ts index 5460c5a77ef..aaf8d2ed34f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Red.ts index dcf1b5edceb..a5b39eb81f8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-SilverGray.ts index 5977c904009..5204c8e95da 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace.ts index b74200ed4b8..8d861d0010b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairMiaWallace.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Auburn.ts index f3b66667fda..9b77b50a820 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Black.ts index 0548392abb6..4a44f85cee2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Blonde.ts index b05ddc3ed4c..3ddc602c14d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-BlondeGolden.ts index 5125860f477..4f5849832ec 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Brown.ts index b5690526f21..28d747626d1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-PastelPink.ts index 13f11430b8e..68edee17a02 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Pink.ts index 9fff17e3ae4..359a4a672b5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Platinum.ts index c4cbf19f319..9fba50ba8a0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Red.ts index 9935d312185..cc9c6962f13 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-SilverGray.ts index 74b37b1f0f3..1ed3f80e53a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong.ts index 068fabaed74..4a7567b3711 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairNotTooLong.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairShavedSides.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairShavedSides.ts index aaff94b51f3..409991e4ec2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairShavedSides.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairShavedSides.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Auburn.ts index bbbeabd8817..20646fecaee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Black.ts index 9d593126100..d09eec598df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Blonde.ts index 13903c3159b..c5437d52017 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-BlondeGolden.ts index c58277dfad1..2bb5ec43e0b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Brown.ts index d746e165561..6f558859ad8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-PastelPink.ts index 6bdc51527b8..952ef584133 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Pink.ts index d3e9287befa..359092f2f92 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Platinum.ts index 05a92b63496..2c94078d5d8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Red.ts index cd38b018a92..25e35cc0e76 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-SilverGray.ts index f4b72cc4552..cbdc0eca719 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight.ts index f57a388b332..c33ddaa07ae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Auburn.ts index 0c5ad8e2d2e..37076e6ea1d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Black.ts index 78375431d37..598a44cc9cf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Blonde.ts index 765f492207f..f14fa7d965b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-BlondeGolden.ts index 1f5bd5ef766..3cba0cfc34c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Brown.ts index 60f58eadee5..ac0bd428bf6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-PastelPink.ts index 0d16d4b1880..4160f0fb833 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Pink.ts index bb38ff55b3d..673894890c2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Platinum.ts index cb4baf72b3e..440eb0bdfe0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Red.ts index 5167e8a6470..e0386b0e719 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-SilverGray.ts index 0b217a473fe..0bfc795aaab 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2.ts index ca85ff38faf..052ee53216d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraight2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Auburn.ts index 47b7a33a6a1..ab630770b98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Black.ts index d64aa468200..833ad81606d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Blonde.ts index a49b16d94e9..111589563c1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-BlondeGolden.ts index a6d9929673c..338c6b71367 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Brown.ts index 7073587f407..ba363bbe21b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-PastelPink.ts index d8c4d712617..97a78dd1831 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Pink.ts index 23513547b5c..53779f16a64 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Platinum.ts index 3eae2781d11..3fc16bd03d4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Red.ts index ffe0e1df566..dff39857357 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-SilverGray.ts index 5539f1eac30..b1b27dd4530 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand.ts index 396b576be0e..e7c722f8eb6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/LongHairStraightStrand.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Auburn.ts index ab156414594..ee5a2158503 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Black.ts index 0fb1d6bd381..9919c80cc81 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Blonde.ts index 38cc44c6921..394923c7fac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-BlondeGolden.ts index f30e4049e70..b9a7a00ffca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Brown.ts index 711a4f3350a..c55bd437077 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-PastelPink.ts index f1c7d3413fc..e0ac17eead5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Pink.ts index 78353385477..454ca7754c0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Platinum.ts index 10f4d4a33a7..56311b5d762 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Red.ts index eb427df54c3..b7fd04a7066 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-SilverGray.ts index d9402452c18..87748d82f5d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01.ts index 25c1052bd29..0923803caf2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Auburn.ts index bab3f2f9232..c7c3de8bdf8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Black.ts index de84711c30e..1d9e5fc4d25 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Blonde.ts index daae1527310..affe0df430a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-BlondeGolden.ts index ad949c4d03c..a2b3f3d111f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Brown.ts index 4e69dacb27e..54061c0ca23 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-PastelPink.ts index ab3fc3b6ada..7d4b6f32586 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Pink.ts index 340d1a697e5..8417e572587 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Platinum.ts index ae33b585c6d..dda2e87cb8f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Red.ts index a5d43d9635a..8d48ca75ed7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-SilverGray.ts index b32b52bd68e..81460b36c8d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02.ts index 5aacf69ba57..d05dfef8eb2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairDreads02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Auburn.ts index e5246152984..ed552286561 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Black.ts index ee9093e9556..e55c877ae0f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Blonde.ts index f021d5da059..2c5c2d22d83 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-BlondeGolden.ts index 1e1f88920c8..b71e2748be1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Brown.ts index 28baf5c5aa0..ce9bdfb2892 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-PastelPink.ts index d33ca500eb3..b8de7983bcb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Pink.ts index c380f5d162a..f765b2c151f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Platinum.ts index 656fbac2fa2..555c4282c91 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Red.ts index ab987170bd0..95112469496 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-SilverGray.ts index 3de62c1089e..f448fa78770 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle.ts index b99a5c87fe2..f9fe07402df 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairFrizzle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Auburn.ts index 9a637638ea6..5b5624d7ff8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Black.ts index d9f89e30196..efe0e28dc25 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Blonde.ts index 924806eeed9..472524b0cc8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-BlondeGolden.ts index 6f1bc732340..c212eaa35eb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Brown.ts index e1c99c0eb87..85244e031ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-PastelPink.ts index 315278b710d..3845dbfa8b6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Pink.ts index 3254e3e124c..c0a9d6d827a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Platinum.ts index 5798378b561..2805599d49c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Red.ts index 8872ab5ed02..b792b8d63f1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-SilverGray.ts index 7cad5383f5d..386b91c87ee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet.ts index 9acf6f646ca..b6bf563e498 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShaggyMullet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Auburn.ts index aa63de5b268..22794e9d0a1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Black.ts index d0def363839..29c9af4307b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Blonde.ts index 51d877a1b9c..49d8ba34aa2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-BlondeGolden.ts index 01bb27206e5..185c5fc7fb2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Brown.ts index c446608985e..c04c74fcad4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-PastelPink.ts index 8ec0828cd08..2cb9cb21cd0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Pink.ts index aa2082f8b19..2fa78139ce9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Platinum.ts index 9c35b96aa5b..65e12b93b36 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Red.ts index fd05d7a54c1..df89537766c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-SilverGray.ts index cc202c8d6ea..1855bb7b52d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly.ts index 9ae3547e824..309c275186b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortCurly.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Auburn.ts index d7a08135059..d9b881307fd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Black.ts index 5588f86ba32..86ec9d170fe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Blonde.ts index 82b68a1f15c..3726966affb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-BlondeGolden.ts index e3f4cd04ef3..d6152638e4d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Brown.ts index a2802f4b16d..6c10c51992a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-PastelPink.ts index ed4ec8e0d06..41b25792fdf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Pink.ts index 3d34551e1a1..8166057efd1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Platinum.ts index 66e42761b33..8388a719cfb 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Red.ts index fdc5acff7af..be41f4b5bb4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-SilverGray.ts index d6fb13d7fd2..21abf4b878b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat.ts index 7ca4091a220..cb925391f72 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortFlat.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Auburn.ts index bf168e7f9db..912cf5e2153 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Black.ts index 5f6bf95ffa7..c40c95935ae 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Blonde.ts index 0f0e93a1b77..d51318e4814 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-BlondeGolden.ts index 0200cccc86d..aea8f6d3fe8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Brown.ts index e26bdc62074..92e32ef2c87 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-PastelPink.ts index 6bd88325167..6ef1e72c501 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Pink.ts index b22b056eeec..db7346509a9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Platinum.ts index c6447c9109b..b8c4533c4d5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Red.ts index 2290a2246ad..46e4cee704f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-SilverGray.ts index e8ea10ef3ef..4ff0245c902 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound.ts index 07523ed0fa7..c397b1bd4be 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortRound.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Auburn.ts index 3d3ad00eee7..d87df69834b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Black.ts index 1c4c0def215..b922468a075 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Blonde.ts index a01a563f754..15d9e3ef03b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-BlondeGolden.ts index 71b5539e6c1..060075c053a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Brown.ts index 68297b6dafa..ec980ac6eec 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-PastelPink.ts index 0c68e1c8c38..22b2081a327 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Pink.ts index e335d0fa630..187a5d4eda9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Platinum.ts index a3efc78b35a..f1d002b0820 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Red.ts index 4c3e91f875d..59bdaa9016a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-SilverGray.ts index cfad3f1b985..3cf4fa436f7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved.ts index b65992774f0..746e2841519 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairShortWaved.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Auburn.ts index ebbf3e10dd6..c01eabb95ca 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Black.ts index 19ef8ec6879..aee5184768d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Blonde.ts index 80e9ad0dbfb..461b4038853 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-BlondeGolden.ts index 803cf0b4250..d9bec59a92c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Brown.ts index 8cdf9bcc8dd..36f5654c6ef 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-PastelPink.ts index c6b4132269d..79dd7da3e45 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Pink.ts index abeb384808f..b0d8cd51650 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Platinum.ts index c88d33e6ecd..80b6b5e1f9b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Red.ts index 01407dfe157..d02cc7d0b55 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-SilverGray.ts index 0eb4df8a832..8d1672d217d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides.ts index 34c674fb377..09fb7e6f3a7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairSides.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Auburn.ts index 23363c49794..efb3def295c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Black.ts index 6520f3c8936..4c9e26b6290 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Blonde.ts index 5e263f5cc33..09796ebbe1f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-BlondeGolden.ts index aa3bf36bd6c..b0ddc73ec0b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Brown.ts index 51b8b114368..86dc052ef4e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-PastelPink.ts index 273f5bc810a..0c2bd7453f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Pink.ts index 62855feba98..86a0d480bc5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Platinum.ts index 5837dfe684a..cc953c67d30 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Red.ts index 7bef89a28cf..4faf38ad19f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-SilverGray.ts index 4692df5e83b..a1de093f959 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar.ts index 8ed3badf38b..0238267c735 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesar.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Auburn.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Auburn.ts index 60822a4ab45..6c0fac4410d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Auburn.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Auburn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Black.ts index d961fe11bfd..763b0659490 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Blonde.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Blonde.ts index 845764c8a07..40bfcd107c6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Blonde.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Blonde.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-BlondeGolden.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-BlondeGolden.ts index d9a69db7abc..41390850bac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-BlondeGolden.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-BlondeGolden.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Brown.ts index d8b02f187a9..fe432194a1e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-PastelPink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-PastelPink.ts index 959de17171f..526fcc56e71 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-PastelPink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-PastelPink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Pink.ts index 9abcdcbbd62..27b89a33b19 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Platinum.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Platinum.ts index c375120ecbe..f352ed67901 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Platinum.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Platinum.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Red.ts index 26914973800..a7bcf4d7d3e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-SilverGray.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-SilverGray.ts index 9446468f02d..04fd9063b85 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-SilverGray.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart-SilverGray.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart.ts index ed1231b286e..e468c8d0ed6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/ShortHairTheCaesarSidePart.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Black.ts index f369c60ac67..954d9c3d554 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue01.ts index 586c2b32b03..a011b099626 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue02.ts index c274b8f7e8f..dc273ab8351 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Brown.ts index eadb90c62a3..7fd777df603 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray01.ts index 0747ed71ddb..1714b33495b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray02.ts index 94756754ff9..e54962d799a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Heather.ts index 1099b73a7d5..542a69a7419 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelBlue.ts index 0b71c514a95..00d28069b91 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelGreen.ts index 9e475764479..096473efc28 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelOrange.ts index dbd9e30e33f..f85b619e0b0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelRed.ts index 60f79596083..5dcf7ef5e48 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelYellow.ts index ff3c0783c32..e75371648b4 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Pink.ts index 7becd43774e..e91752c35d9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Red.ts index 48a25bf7418..1060dc4bde7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-White.ts index 2a0cdaf4e69..95ed5a2d679 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban.ts index 9a2798ca20c..c103ef06272 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/Turban.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Black.ts index 2e5c9fc97e3..11b5726a546 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue01.ts index 1f577363e8a..273e6a66abe 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue02.ts index 7d839f0603a..2fef4eac000 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue03.ts index 0bcf6859ba1..5a10c0176a6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Brown.ts index 9e097de414d..1299aa2960e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray01.ts index d1796cdee98..dc8f36675f5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray02.ts index 0d74be43030..3dfd97083be 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Heather.ts index d1f8ec15bd0..c8cdc904578 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelBlue.ts index 942e728110c..bb5fbbbfbce 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelGreen.ts index 9d0de671e57..63dc2366089 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelOrange.ts index 98b5eafeb42..3ba2f1d0501 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelRed.ts index e42fa7fe929..3f1e7d7f969 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelYellow.ts index 3e3a0b1fd23..aa74acf0176 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Pink.ts index e3fa4fe71a0..92c3f0b5a0a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-White.ts index ff82ee6f57e..0d8568f98d5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1.ts index 3f121ad8a38..9f2ba97eb29 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat1.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Black.ts index e08f0a612c4..bed1af9d0cd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue02.ts index 099d6da1ca8..5b663c28889 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue03.ts index dd0acf15397..ab7e919098a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Brown.ts index 2e89d7545da..62767c87bb9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray01.ts index f0b31d3c7ad..6f4439e4e6a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray02.ts index 188dbcf7cc5..072973b88d6 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Heather.ts index 385a917d6d4..a4417b19c21 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelBlue.ts index 50acbec1561..f2073f9cfb7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelGreen.ts index 3ceed7a01ce..6a493136b98 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelOrange.ts index 4a4576564cc..af3f93024d7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelRed.ts index 03154b73797..e739d9e344c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelYellow.ts index 1d5e6234d03..08025ddc4f3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Pink.ts index 024cb451c66..a434035e433 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Red.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Red.ts index 8f52ae6e40b..a47e4eeaaf3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Red.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-Red.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-White.ts index d85414130d8..ac0774fa986 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2.ts index cf3eb22b4ee..2f54e5c2dbd 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat2.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Black.ts index 73dbc9c3a2c..d63db93eac5 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue01.ts index 57c47cfc34d..94329929bf2 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue02.ts index 274c5e42f0c..fa9e89a207f 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue03.ts index 70c29b8eedf..514fc395b2e 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Brown.ts index fb063827c21..d387b6d55e1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray01.ts index 98fdd4ad8b8..770f2cb17ee 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray02.ts index c2c0a70249a..9a8250a2dc3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Heather.ts index 2f0b033f78a..61caf8a81e3 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelBlue.ts index ea36a820abb..0dfebf0a35b 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelGreen.ts index eb59b2bc733..8b8f99faf96 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelOrange.ts index b9f5b04711b..b2774c050e8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelRed.ts index 9a812d1dc88..d1e60743fe1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelYellow.ts index 2280f652621..8dd76ed0f8a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Pink.ts index 8a29d5b375a..ea20bb7305a 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-White.ts index 10f63551dfb..f18fa835b89 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3.ts index 025cd7ddd7d..23868c125a8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat3.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Black.ts index ea31c62b32d..3ea78faca1c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue01.ts index 22f72fb1921..4fbf2de6071 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue02.ts index be7ef0734cb..c7ca1b70334 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue03.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue03.ts index b9e4f5302f5..2c63e0aa4a1 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue03.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Blue03.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Brown.ts index 6404b9e5479..df201dbbeac 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray01.ts index 233465312c8..235f9be0c50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray02.ts index 195eb93ca95..3a6b4ced529 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Gray02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Heather.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Heather.ts index 673da005cc9..e47571bc904 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Heather.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Heather.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelBlue.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelBlue.ts index c664901e144..e3c2f253e58 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelBlue.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelBlue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelGreen.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelGreen.ts index 28c7de577e0..a91b08983d0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelGreen.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelGreen.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelOrange.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelOrange.ts index 25f38173418..fc0abe6fead 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelOrange.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelOrange.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelRed.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelRed.ts index 0877c86623a..12c1e1d6ce0 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelRed.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelRed.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelYellow.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelYellow.ts index ef13808ca68..5f029a28990 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelYellow.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-PastelYellow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Pink.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Pink.ts index 2ec797d1072..87ec2c50203 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Pink.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-Pink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-White.ts index c1657756726..99d975e4d18 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4.ts index 504918f9a0d..85eda8d9c23 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/006-Top/generated/WinterHat4.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Blank.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Blank.ts index 31cdb2a762f..4a53f352249 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Blank.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Blank.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Black.ts index aecf7ce3ada..db76d1bae50 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Brown.ts index 805a7ddc994..1d94e9a8da7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-White.ts index a398632e6b8..d9cfc7e045c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt.ts index 16f20bca5c2..d9208ad61f9 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Kurt.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Black.ts index e4709671ae8..80af05f0428 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Brown.ts index 19fab5fa539..7401672f165 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-White.ts index efe7d094447..7263c833586 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01.ts index 45650722362..ad692853d8d 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription01.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Black.ts index ad66664738c..4e076c84c32 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Brown.ts index 3cf9cb25a5b..a9cb0e625c7 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-White.ts index 3095965296a..642fb724722 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02.ts index 6240d8dbbc5..4979b6062ba 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Prescription02.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Black.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Black.ts index 7062c6bc83c..bc1b05a8247 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Black.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Black.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Brown.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Brown.ts index ed4fd38a029..f7344270d76 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Brown.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-Brown.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-White.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-White.ts index a1f613dc0c3..4f02321baaf 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-White.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round-White.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round.ts index 88347b6dce8..ba6b7674a8c 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Round.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Sunglasses.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Sunglasses.ts index 175f06c3293..c0f05f148a8 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Sunglasses.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Sunglasses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Wayfarers.ts b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Wayfarers.ts index 7d3f818d54b..c99d6441837 100644 --- a/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Wayfarers.ts +++ b/packages/react-components/src/IdentityIcon/RoboHash/sets/set5/007-Accessories/generated/Wayfarers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // Automatically generated, do not edit diff --git a/packages/react-components/src/IdentityIcon/index.tsx b/packages/react-components/src/IdentityIcon/index.tsx index ca9f5c4a955..d6662733172 100644 --- a/packages/react-components/src/IdentityIcon/index.tsx +++ b/packages/react-components/src/IdentityIcon/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-components/src/InfoForInput.tsx b/packages/react-components/src/InfoForInput.tsx index 798013b3fad..d58768817c3 100644 --- a/packages/react-components/src/InfoForInput.tsx +++ b/packages/react-components/src/InfoForInput.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Input.tsx b/packages/react-components/src/Input.tsx index d2f9000aa67..d73067e1e1b 100644 --- a/packages/react-components/src/Input.tsx +++ b/packages/react-components/src/Input.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useEffect, useState } from 'react'; diff --git a/packages/react-components/src/InputAddress/KeyPair.tsx b/packages/react-components/src/InputAddress/KeyPair.tsx index 39a8769c627..289f79a322d 100644 --- a/packages/react-components/src/InputAddress/KeyPair.tsx +++ b/packages/react-components/src/InputAddress/KeyPair.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/InputAddress/createHeader.tsx b/packages/react-components/src/InputAddress/createHeader.tsx index be9d4a53014..d9528639f0a 100644 --- a/packages/react-components/src/InputAddress/createHeader.tsx +++ b/packages/react-components/src/InputAddress/createHeader.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringSectionOption } from '@polkadot/ui-keyring/options/types'; diff --git a/packages/react-components/src/InputAddress/createItem.tsx b/packages/react-components/src/InputAddress/createItem.tsx index dbfd94194ed..c7f9234b7ae 100644 --- a/packages/react-components/src/InputAddress/createItem.tsx +++ b/packages/react-components/src/InputAddress/createItem.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringSectionOption } from '@polkadot/ui-keyring/options/types'; diff --git a/packages/react-components/src/InputAddress/index.tsx b/packages/react-components/src/InputAddress/index.tsx index 17ec25220cc..2b871d0c5fb 100644 --- a/packages/react-components/src/InputAddress/index.tsx +++ b/packages/react-components/src/InputAddress/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps } from 'semantic-ui-react'; diff --git a/packages/react-components/src/InputAddress/types.ts b/packages/react-components/src/InputAddress/types.ts index 75553d7b389..09d7da93fae 100644 --- a/packages/react-components/src/InputAddress/types.ts +++ b/packages/react-components/src/InputAddress/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-components/src/InputAddressMulti/Available.tsx b/packages/react-components/src/InputAddressMulti/Available.tsx index f480ffaa3f7..4976fd197c7 100644 --- a/packages/react-components/src/InputAddressMulti/Available.tsx +++ b/packages/react-components/src/InputAddressMulti/Available.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/InputAddressMulti/Selected.tsx b/packages/react-components/src/InputAddressMulti/Selected.tsx index 21f7e893e9d..aa7476b7c32 100644 --- a/packages/react-components/src/InputAddressMulti/Selected.tsx +++ b/packages/react-components/src/InputAddressMulti/Selected.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/InputAddressMulti/index.tsx b/packages/react-components/src/InputAddressMulti/index.tsx index 9fac79586e5..a8f512cc015 100644 --- a/packages/react-components/src/InputAddressMulti/index.tsx +++ b/packages/react-components/src/InputAddressMulti/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useEffect, useState } from 'react'; diff --git a/packages/react-components/src/InputAddressSimple.tsx b/packages/react-components/src/InputAddressSimple.tsx index 7959adce0b0..e7979ce01eb 100644 --- a/packages/react-components/src/InputAddressSimple.tsx +++ b/packages/react-components/src/InputAddressSimple.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/react-components/src/InputBalance.tsx b/packages/react-components/src/InputBalance.tsx index aa9285f6666..c15ca8af8a2 100644 --- a/packages/react-components/src/InputBalance.tsx +++ b/packages/react-components/src/InputBalance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-components/src/InputCalls/SelectMethod.tsx b/packages/react-components/src/InputCalls/SelectMethod.tsx index 2a09c1efbee..87e7e76e88d 100644 --- a/packages/react-components/src/InputCalls/SelectMethod.tsx +++ b/packages/react-components/src/InputCalls/SelectMethod.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionCallNamed } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputCalls/SelectSection.tsx b/packages/react-components/src/InputCalls/SelectSection.tsx index 7dbc0f381b7..7488f994c5e 100644 --- a/packages/react-components/src/InputCalls/SelectSection.tsx +++ b/packages/react-components/src/InputCalls/SelectSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionCallNamed } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputCalls/index.tsx b/packages/react-components/src/InputCalls/index.tsx index 53fc1da0125..f2637108058 100644 --- a/packages/react-components/src/InputCalls/index.tsx +++ b/packages/react-components/src/InputCalls/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // TODO: We have a lot shared between this and InputExtrinsic & InputStorage diff --git a/packages/react-components/src/InputCalls/options/method.tsx b/packages/react-components/src/InputCalls/options/method.tsx index 80ad58decaf..87b1c3dc85a 100644 --- a/packages/react-components/src/InputCalls/options/method.tsx +++ b/packages/react-components/src/InputCalls/options/method.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionCallNamed } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputCalls/options/section.ts b/packages/react-components/src/InputCalls/options/section.ts index cf258a90f0b..5f0bc6d75d5 100644 --- a/packages/react-components/src/InputCalls/options/section.ts +++ b/packages/react-components/src/InputCalls/options/section.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionCallNamed } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputCalls/useRuntime.ts b/packages/react-components/src/InputCalls/useRuntime.ts index b8f2af8b8fe..cc8ed5901aa 100644 --- a/packages/react-components/src/InputCalls/useRuntime.ts +++ b/packages/react-components/src/InputCalls/useRuntime.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputConsts/SelectKey.tsx b/packages/react-components/src/InputConsts/SelectKey.tsx index 2d87a2e4b27..9e08b06b1e7 100644 --- a/packages/react-components/src/InputConsts/SelectKey.tsx +++ b/packages/react-components/src/InputConsts/SelectKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownOptions } from '../util/types.js'; diff --git a/packages/react-components/src/InputConsts/SelectSection.tsx b/packages/react-components/src/InputConsts/SelectSection.tsx index 984e80acd95..2ce78e15039 100644 --- a/packages/react-components/src/InputConsts/SelectSection.tsx +++ b/packages/react-components/src/InputConsts/SelectSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownOptions } from '../util/types.js'; diff --git a/packages/react-components/src/InputConsts/index.tsx b/packages/react-components/src/InputConsts/index.tsx index bd3ebe8b0fc..af68e8a9918 100644 --- a/packages/react-components/src/InputConsts/index.tsx +++ b/packages/react-components/src/InputConsts/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputConsts/options/key.tsx b/packages/react-components/src/InputConsts/options/key.tsx index d572fe443cc..18129f81c62 100644 --- a/packages/react-components/src/InputConsts/options/key.tsx +++ b/packages/react-components/src/InputConsts/options/key.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputConsts/options/section.ts b/packages/react-components/src/InputConsts/options/section.ts index 44620d8e893..d0d2b12fd78 100644 --- a/packages/react-components/src/InputConsts/options/section.ts +++ b/packages/react-components/src/InputConsts/options/section.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputConsts/types.ts b/packages/react-components/src/InputConsts/types.ts index 306bd48ac92..65da1902361 100644 --- a/packages/react-components/src/InputConsts/types.ts +++ b/packages/react-components/src/InputConsts/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { StorageEntryBase } from '@polkadot/api/types'; diff --git a/packages/react-components/src/InputConsts/units.ts b/packages/react-components/src/InputConsts/units.ts index 1d70ef467c2..37a33d1c429 100644 --- a/packages/react-components/src/InputConsts/units.ts +++ b/packages/react-components/src/InputConsts/units.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export class TokenUnit { diff --git a/packages/react-components/src/InputExtrinsic/LinkedWrapper.tsx b/packages/react-components/src/InputExtrinsic/LinkedWrapper.tsx index 3bbc6c1f111..41bd3466d24 100644 --- a/packages/react-components/src/InputExtrinsic/LinkedWrapper.tsx +++ b/packages/react-components/src/InputExtrinsic/LinkedWrapper.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/InputExtrinsic/SelectMethod.tsx b/packages/react-components/src/InputExtrinsic/SelectMethod.tsx index b866b456b27..aedcb9fee84 100644 --- a/packages/react-components/src/InputExtrinsic/SelectMethod.tsx +++ b/packages/react-components/src/InputExtrinsic/SelectMethod.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputExtrinsic/SelectSection.tsx b/packages/react-components/src/InputExtrinsic/SelectSection.tsx index 82a9bcd8061..6ecd3a58c4b 100644 --- a/packages/react-components/src/InputExtrinsic/SelectSection.tsx +++ b/packages/react-components/src/InputExtrinsic/SelectSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/react-components/src/InputExtrinsic/index.tsx b/packages/react-components/src/InputExtrinsic/index.tsx index 12c953e7bd0..fd86fa7a48e 100644 --- a/packages/react-components/src/InputExtrinsic/index.tsx +++ b/packages/react-components/src/InputExtrinsic/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/react-components/src/InputExtrinsic/options/method.tsx b/packages/react-components/src/InputExtrinsic/options/method.tsx index 2c990311570..7c22d50e148 100644 --- a/packages/react-components/src/InputExtrinsic/options/method.tsx +++ b/packages/react-components/src/InputExtrinsic/options/method.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputExtrinsic/options/section.ts b/packages/react-components/src/InputExtrinsic/options/section.ts index 721d97ee96a..6a68d3a9567 100644 --- a/packages/react-components/src/InputExtrinsic/options/section.ts +++ b/packages/react-components/src/InputExtrinsic/options/section.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputFile.tsx b/packages/react-components/src/InputFile.tsx index c7bece37090..a7bf4e82229 100644 --- a/packages/react-components/src/InputFile.tsx +++ b/packages/react-components/src/InputFile.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropzoneRef } from 'react-dropzone'; diff --git a/packages/react-components/src/InputNumber.tsx b/packages/react-components/src/InputNumber.tsx index f0e1f0cd336..7d3ea5621f3 100644 --- a/packages/react-components/src/InputNumber.tsx +++ b/packages/react-components/src/InputNumber.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputRpc/SelectMethod.tsx b/packages/react-components/src/InputRpc/SelectMethod.tsx index eaa26b26b9c..b39e885863c 100644 --- a/packages/react-components/src/InputRpc/SelectMethod.tsx +++ b/packages/react-components/src/InputRpc/SelectMethod.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionRpcExt } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputRpc/SelectSection.tsx b/packages/react-components/src/InputRpc/SelectSection.tsx index 0061a521b9c..90d3336a975 100644 --- a/packages/react-components/src/InputRpc/SelectSection.tsx +++ b/packages/react-components/src/InputRpc/SelectSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionRpcExt } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputRpc/index.tsx b/packages/react-components/src/InputRpc/index.tsx index 392a860a95f..194213fb51a 100644 --- a/packages/react-components/src/InputRpc/index.tsx +++ b/packages/react-components/src/InputRpc/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // TODO: We have a lot shared between this and InputExtrinsic & InputStorage diff --git a/packages/react-components/src/InputRpc/options/method.tsx b/packages/react-components/src/InputRpc/options/method.tsx index d2012fdb53d..66b86c8d479 100644 --- a/packages/react-components/src/InputRpc/options/method.tsx +++ b/packages/react-components/src/InputRpc/options/method.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputRpc/options/section.ts b/packages/react-components/src/InputRpc/options/section.ts index 51d26a042f6..64a0bb84957 100644 --- a/packages/react-components/src/InputRpc/options/section.ts +++ b/packages/react-components/src/InputRpc/options/section.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputRpc/rpcs.ts b/packages/react-components/src/InputRpc/rpcs.ts index 562c60f9d83..894087bbe25 100644 --- a/packages/react-components/src/InputRpc/rpcs.ts +++ b/packages/react-components/src/InputRpc/rpcs.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Text } from '@polkadot/types'; diff --git a/packages/react-components/src/InputRpc/useRpcs.ts b/packages/react-components/src/InputRpc/useRpcs.ts index 116d72b6ab8..cb87d45f3c1 100644 --- a/packages/react-components/src/InputRpc/useRpcs.ts +++ b/packages/react-components/src/InputRpc/useRpcs.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DefinitionRpcExt } from '@polkadot/types/types'; diff --git a/packages/react-components/src/InputStorage/SelectKey.tsx b/packages/react-components/src/InputStorage/SelectKey.tsx index 8d359ade365..48c2c27b3ac 100644 --- a/packages/react-components/src/InputStorage/SelectKey.tsx +++ b/packages/react-components/src/InputStorage/SelectKey.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputStorage/SelectSection.tsx b/packages/react-components/src/InputStorage/SelectSection.tsx index c981e377756..824582f7395 100644 --- a/packages/react-components/src/InputStorage/SelectSection.tsx +++ b/packages/react-components/src/InputStorage/SelectSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/react-components/src/InputStorage/index.tsx b/packages/react-components/src/InputStorage/index.tsx index 130174d3955..c9df4abeca5 100644 --- a/packages/react-components/src/InputStorage/index.tsx +++ b/packages/react-components/src/InputStorage/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // TODO: We have a lot shared between this and InputExtrinsic diff --git a/packages/react-components/src/InputStorage/options/index.ts b/packages/react-components/src/InputStorage/options/index.ts index 377af7f29a4..5bd8e8ca3f6 100644 --- a/packages/react-components/src/InputStorage/options/index.ts +++ b/packages/react-components/src/InputStorage/options/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export { keyOptions } from './key.js'; diff --git a/packages/react-components/src/InputStorage/options/key.tsx b/packages/react-components/src/InputStorage/options/key.tsx index afa2449ceb8..5b1cfb23245 100644 --- a/packages/react-components/src/InputStorage/options/key.tsx +++ b/packages/react-components/src/InputStorage/options/key.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputStorage/options/section.ts b/packages/react-components/src/InputStorage/options/section.ts index e4f2d502611..535d50aa5c2 100644 --- a/packages/react-components/src/InputStorage/options/section.ts +++ b/packages/react-components/src/InputStorage/options/section.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/InputTags.tsx b/packages/react-components/src/InputTags.tsx index fa3f3a0ea07..7bac2b23915 100644 --- a/packages/react-components/src/InputTags.tsx +++ b/packages/react-components/src/InputTags.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/InputWasm.tsx b/packages/react-components/src/InputWasm.tsx index 4b36cbcf4af..6eea78ac919 100644 --- a/packages/react-components/src/InputWasm.tsx +++ b/packages/react-components/src/InputWasm.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { InputFilePropsBase } from './InputFile.js'; diff --git a/packages/react-components/src/Inspect.tsx b/packages/react-components/src/Inspect.tsx index bd8d7ede789..9f20a5118c1 100644 --- a/packages/react-components/src/Inspect.tsx +++ b/packages/react-components/src/Inspect.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Inspect } from '@polkadot/types/types'; diff --git a/packages/react-components/src/Label.tsx b/packages/react-components/src/Label.tsx index 75b8437b170..4cb7e540de5 100644 --- a/packages/react-components/src/Label.tsx +++ b/packages/react-components/src/Label.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/LabelHelp.tsx b/packages/react-components/src/LabelHelp.tsx index 51a8d6f3d8d..92d19421b30 100644 --- a/packages/react-components/src/LabelHelp.tsx +++ b/packages/react-components/src/LabelHelp.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Labelled.tsx b/packages/react-components/src/Labelled.tsx index 897d70e67b7..ce75ebaa418 100644 --- a/packages/react-components/src/Labelled.tsx +++ b/packages/react-components/src/Labelled.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/LinkExternal.tsx b/packages/react-components/src/LinkExternal.tsx index 65be8d77799..033c0a7317b 100644 --- a/packages/react-components/src/LinkExternal.tsx +++ b/packages/react-components/src/LinkExternal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkTypes } from '@polkadot/apps-config/links/types'; diff --git a/packages/react-components/src/LockedVote.tsx b/packages/react-components/src/LockedVote.tsx index d90db30e131..fe256186aa6 100644 --- a/packages/react-components/src/LockedVote.tsx +++ b/packages/react-components/src/LockedVote.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/MarkError.tsx b/packages/react-components/src/MarkError.tsx index 29e72d94cbd..13b0a3f9dec 100644 --- a/packages/react-components/src/MarkError.tsx +++ b/packages/react-components/src/MarkError.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/MarkWarning.tsx b/packages/react-components/src/MarkWarning.tsx index 924ef4b0a38..a766ab6c907 100644 --- a/packages/react-components/src/MarkWarning.tsx +++ b/packages/react-components/src/MarkWarning.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Menu/Divider.tsx b/packages/react-components/src/Menu/Divider.tsx index 98743b07712..8781ec026d1 100644 --- a/packages/react-components/src/Menu/Divider.tsx +++ b/packages/react-components/src/Menu/Divider.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DividerProps } from './types.js'; diff --git a/packages/react-components/src/Menu/Header.tsx b/packages/react-components/src/Menu/Header.tsx index be712ffb331..29a4acd96dc 100644 --- a/packages/react-components/src/Menu/Header.tsx +++ b/packages/react-components/src/Menu/Header.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderProps } from './types.js'; diff --git a/packages/react-components/src/Menu/Item.tsx b/packages/react-components/src/Menu/Item.tsx index e1c0aced28e..07497005e42 100644 --- a/packages/react-components/src/Menu/Item.tsx +++ b/packages/react-components/src/Menu/Item.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ItemProps } from './types.js'; diff --git a/packages/react-components/src/Menu/index.tsx b/packages/react-components/src/Menu/index.tsx index 463373840a1..5d67f2fa355 100644 --- a/packages/react-components/src/Menu/index.tsx +++ b/packages/react-components/src/Menu/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BaseProps, MenuType } from './types.js'; diff --git a/packages/react-components/src/Menu/types.ts b/packages/react-components/src/Menu/types.ts index 9f921b9b3e1..077ab9775ff 100644 --- a/packages/react-components/src/Menu/types.ts +++ b/packages/react-components/src/Menu/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Modal/Actions.tsx b/packages/react-components/src/Modal/Actions.tsx index 53a41b4baa5..79b074c00f1 100644 --- a/packages/react-components/src/Modal/Actions.tsx +++ b/packages/react-components/src/Modal/Actions.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Modal/Columns.tsx b/packages/react-components/src/Modal/Columns.tsx index 63c2bb1bbbb..4adbfdbab1b 100644 --- a/packages/react-components/src/Modal/Columns.tsx +++ b/packages/react-components/src/Modal/Columns.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Modal/Content.tsx b/packages/react-components/src/Modal/Content.tsx index b955cc683ba..9f68a1d8823 100644 --- a/packages/react-components/src/Modal/Content.tsx +++ b/packages/react-components/src/Modal/Content.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Modal/Header.tsx b/packages/react-components/src/Modal/Header.tsx index f2ac6f7dbbc..551c77838c9 100644 --- a/packages/react-components/src/Modal/Header.tsx +++ b/packages/react-components/src/Modal/Header.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Modal/Modal.spec.tsx b/packages/react-components/src/Modal/Modal.spec.tsx index 320ddef00a7..95482d73538 100644 --- a/packages/react-components/src/Modal/Modal.spec.tsx +++ b/packages/react-components/src/Modal/Modal.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/react-components/src/Modal/index.tsx b/packages/react-components/src/Modal/index.tsx index e8b0117c0aa..3615763519e 100644 --- a/packages/react-components/src/Modal/index.tsx +++ b/packages/react-components/src/Modal/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useEffect } from 'react'; diff --git a/packages/react-components/src/NextTick.tsx b/packages/react-components/src/NextTick.tsx index 4e383c076bf..a6b968ec40d 100644 --- a/packages/react-components/src/NextTick.tsx +++ b/packages/react-components/src/NextTick.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/react-components/src/Nonce.tsx b/packages/react-components/src/Nonce.tsx index 14958b38e3e..f72d97165ae 100644 --- a/packages/react-components/src/Nonce.tsx +++ b/packages/react-components/src/Nonce.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/Output.tsx b/packages/react-components/src/Output.tsx index c33535cdb10..292ad365fae 100644 --- a/packages/react-components/src/Output.tsx +++ b/packages/react-components/src/Output.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/ParaLink.tsx b/packages/react-components/src/ParaLink.tsx index 75f23e7fef1..b78f1fd3f45 100644 --- a/packages/react-components/src/ParaLink.tsx +++ b/packages/react-components/src/ParaLink.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-components/src/ParentAccount.tsx b/packages/react-components/src/ParentAccount.tsx index da2971b9256..29899cac744 100644 --- a/packages/react-components/src/ParentAccount.tsx +++ b/packages/react-components/src/ParentAccount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Password.tsx b/packages/react-components/src/Password.tsx index 6b75a342a19..cd61dad1273 100644 --- a/packages/react-components/src/Password.tsx +++ b/packages/react-components/src/Password.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/PasswordStrength.tsx b/packages/react-components/src/PasswordStrength.tsx index 9ea890bb962..c8c9063c339 100644 --- a/packages/react-components/src/PasswordStrength.tsx +++ b/packages/react-components/src/PasswordStrength.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import strengthTester from 'owasp-password-strength-test'; diff --git a/packages/react-components/src/Popup/Popup.spec.tsx b/packages/react-components/src/Popup/Popup.spec.tsx index 877e7acaa83..eb4b81f03e8 100644 --- a/packages/react-components/src/Popup/Popup.spec.tsx +++ b/packages/react-components/src/Popup/Popup.spec.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/react-components/src/Popup/PopupWindow.tsx b/packages/react-components/src/Popup/PopupWindow.tsx index e44826549b8..128766862e5 100644 --- a/packages/react-components/src/Popup/PopupWindow.tsx +++ b/packages/react-components/src/Popup/PopupWindow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PopupWindowProps as Props } from './types.js'; diff --git a/packages/react-components/src/Popup/index.tsx b/packages/react-components/src/Popup/index.tsx index e57a70be827..4cbacb14982 100644 --- a/packages/react-components/src/Popup/index.tsx +++ b/packages/react-components/src/Popup/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PopupProps } from './types.js'; diff --git a/packages/react-components/src/Popup/types.ts b/packages/react-components/src/Popup/types.ts index d1eb47e3ecd..0b144413a6f 100644 --- a/packages/react-components/src/Popup/types.ts +++ b/packages/react-components/src/Popup/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-components/src/Popup/utils.ts b/packages/react-components/src/Popup/utils.ts index 64376bef267..2287bed048d 100644 --- a/packages/react-components/src/Popup/utils.ts +++ b/packages/react-components/src/Popup/utils.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WindowSize } from '@polkadot/react-hooks/ctx/types'; diff --git a/packages/react-components/src/Progress.tsx b/packages/react-components/src/Progress.tsx index 4d70c95e817..3055971cbd6 100644 --- a/packages/react-components/src/Progress.tsx +++ b/packages/react-components/src/Progress.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UInt } from '@polkadot/types'; diff --git a/packages/react-components/src/ProgressBar.tsx b/packages/react-components/src/ProgressBar.tsx index a102066349f..234ee4c5afa 100644 --- a/packages/react-components/src/ProgressBar.tsx +++ b/packages/react-components/src/ProgressBar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ProgressBarSection } from './types.js'; diff --git a/packages/react-components/src/Row.tsx b/packages/react-components/src/Row.tsx index 0d9e53a58b0..0d78ef1965f 100644 --- a/packages/react-components/src/Row.tsx +++ b/packages/react-components/src/Row.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/Sidebar.tsx b/packages/react-components/src/Sidebar.tsx index 6b146eb4766..e30c404116e 100644 --- a/packages/react-components/src/Sidebar.tsx +++ b/packages/react-components/src/Sidebar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/SortDropdown.tsx b/packages/react-components/src/SortDropdown.tsx index c0f94fb5abc..4a987856c7d 100644 --- a/packages/react-components/src/SortDropdown.tsx +++ b/packages/react-components/src/SortDropdown.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps } from 'semantic-ui-react'; diff --git a/packages/react-components/src/Spinner.png.ts b/packages/react-components/src/Spinner.png.ts index c7cf3eef57d..e55032f81e9 100644 --- a/packages/react-components/src/Spinner.png.ts +++ b/packages/react-components/src/Spinner.png.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export default 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAACGFjVEwAAAAfAAAAAGv9wEMAAAAaZmNUTAAAAAAAAAAcAAAAHAAAAAAAAAAAACED6AAAv2jyggAAAQdJREFUSEvtlj0SwUAYhp80KioVB6BSqXQOQOUOzuEc7qDiADqVSsUBqFRUmph3JjGZtdmE7OzEjK/Nbp793u83iuN4QUCL/kDfatdW0gbQA1pAG+gmnp+BK3ADTsCjSJEyHnaAcQJz/U/QLXBxHXIB5dUQGBS92vh+AHZ5d1zA0RewlJMLzQNKxumHnpnH1zZ5bUBJOSsRs6L3KKYrM5FsQMVMcvowxVLyvswGVEaqBHzYWyxtwEmmzqpCVaebIg/nVSnG/WXtgMEl9Zk06q9qd84sDV4WwQtf7gdtbaneQZu3oFXG0z5vGNdqAGezWd72k/WiaawY92TNOPpaMbx2ujKS/jbwCfQCksl5///YAAAAGmZjVEwAAAABAAAAHAAAABwAAAAAAAAAAAAhA+gAACQbGFYAAAFOZmRBVAAAAAJIS92WoVIDUQxFT00HAaoOhQKDQ+Gq+IEqHIrv4G9QYIpCoagqBoeqAgMKBGCWucyr6Db7ktfd6Ux7Z9Zlc/bm5SXbq6rqijWqt2nAHeC7pEBtHa4dWGLuPzbq8BA4APrAfqK8AjPgBfiNkj2gIKfAXibhTwI/AZ8eOAccAnIWlcB3wEfuhSZgKWzOEPQ6V2ILeALoWVXvyal5rhbw3DmzyIc8pGZaiq0D1SRnkYxOjFzeWjF1oGCCdqEbq4HqwMsuSCnHFNCzoK0CToBnz+FFGl9dVHYMvHnAVS+89YEaAEujrn6GA2DUgT0N9fvItVCMgAK3kVlOJbQmTVuXGt66g6aahre2hM6zVILJXeN+zK2nUqgW8aO3jL0FrMV7DBxlros6URNFQFcecJ5Avxaasfq92AW+UsurhOrIsKLAcEIvcPuBf1pIl8mD6RT1AAAAGmZjVEwAAAADAAAAHAAAABwAAAAAAAAAAAAhA+gAAMmNy78AAAE0ZmRBVAAAAARIS+2WIW8CQRCFvzNUNSEB06oqXBMSFAqHquMP9Q+1qqoKVwMKhwIDBhIS6o880eSyvd2dvU0ugTDJqtvZLzP73uwVZVm+02IU1wjsAwdrk3Ir7AJDYAH8WqC5QDEEPVlg2mMBvgBPQK9y6BnYAFsr6G9fCPgITIDnwKECfwNHK9gHHAFa1lgCWtGoA74C42jm/w0r4CeW5wJ1T2/AQyzR8/0j1l4XOHPEkcqVHz9DSVWgqhMwNyQiKbg2qsBUofjOXANzC1B3F7KAtfId8HUHqgPynjyYG+Y7bF2lqixXOJqpMr83XONrYMuLnYZ9TZ404jT1o2mA+14LiUdga6UmmKqJvYfTyGyVyfVCZL+H1SuUegcOWIB9aGZaJk1DnaSlWf5p0k6M7L594AXOiI/Jnr/nvwAAABpmY1RMAAAABQAAABwAAAAcAAAAAAAAAAAAIQPoAAAkR7nFAAABbmZkQVQAAAAGSEvtlqFOA0EQhr8mBExRIKBpAgoFCgwOhSoKVYfiOXgOHAqFAoVCIggGBQoFCKqooE2TI3+yl2wudzezV3IJCZOc6ezMd//Mzlw7WZad0aJ1/iJwAVgDPoCZVazfULgNrAJj4KEN4B7QBb6B+3mBy8AGsBkSTYER8Aa8h99U0j7wGVTWMqtKugLsA72a6GfgEfiyVMX+MqBgA2DJkWgC3ATVjuNQBK4Dh05YDkiCFoFDQH1LNZX10hMUA3cBPU3tOrpIlTli4DGg/jW1F+DOCo6Bp9Zhw69eXlg5cqCUSeG8dm4lyIG6nUfWYYffDVSuE2DRkbTqiDbQlRUf9/AA2LICavyvwK0VHwO1LzX0TU1zaK654uA3HQ3XSEhJEage6vKkzKN6p6HXl8S0suWdAlXfNOwuWJnC+A13wqoru7lS9QSolEnm+YuhGdVC1yMlUmVejqq38ACTFFiH/4FWhZL9rZf0Bx7WlMmFw2vxAAAAGmZjVEwAAAAHAAAAHAAAABwAAAAAAAAAAAAhA+gAAMnRaiwAAAFiZmRBVAAAAAhIS+2VsS6GMRSGnz8RDCQSBkwmsUgkLDaTC2ByA67DdbgB038DJpuFRGITg0FYmBhEJJ+8cpo0n379T+sLIU7SdDlvn563Pe2gaZoDvjEGvxU4BswAz8BLzrA+KpwENgBB34CzHLQP4AowH1V1C1x3VZkDLgCLgOZZ4BG4B+5sDmsuARohbgCNZKSA48BWa5G2WAueAK9m5RowZWd4Yda6gNPADjDh6JQn4NgqV3oAZqXtCnfNPgfvI0XQI2+y8mLgJrBaIrbcc0DDFTFwD5ClNXHoFQWgQALWhmyVvSMjAJftZo4UdCTo8nS2QqwJQPXRdi3NWuTKo/8xS7W5fc8OEzlFrRHf0nVAozQugVOvqN34pa2h93XohSmvDdQjrcvj6Ue9o4K52iFs6iuPt2wsgqUqjN2Jv6c54MG+Jdno6rmU1X18wCVH+OkMi8Q1yf8V1riW1fx9S98BLkKVyeDqVfIAAAAaZmNUTAAAAAkAAAAcAAAAHAAAAAAAAAAAACED6AAAJKJbcAAAAVxmZEFUAAAACkhL7ZW9SgNREEZPwMJGELRQsbCyihBIZWdlpZWVb+PbWGmjVao8gEXAVGJhpRYKghYqwsoH9+J1vbmZSRYhkIFtlpk5O3/ftqqqOuEfrTXrwEXgvdSwpircBLaAhQC8Ar5yYAtwCXgtfLVAelJ7AwT9Y6OA60AX2EgiPoAhcA18Ju87wHImt4AC/7IccA/YLlQkcA94CD5tYDXjPwBexgH3M+3JsQW9BJ5DdarS3VJVpeqsprmeBue18KHa0kfg1rI0B7WZWcB94MbiGH3iDFeAI09g8L0PrTWHRqC28tAc9eP4BJx74qYFamnOJgFO2tK7cCJmZnqHx4BUxWMXyT2a4lKg5El3aLX0LKwx1JVmnMrExJI2VacZuiwnbbvATiGLKpO0uWHKOUq8NUuJd6qpAunI6+I9dYWuBF5ny//Qm7PoPwc22s7SljYOignnM2y8td/hDZXJ+O7TKAAAABpmY1RMAAAACwAAABwAAAAcAAAAAAAAAAAAIQPoAADJNIiZAAABXGZkQVQAAAAMSEvtlTEvBVEQhb+XCAovkVDgB6i8REmiUKmoVDqV3+HfqF6lU+k0JBIqUSgkFFQUiGTlJPPkuu7u3LsvUchOss3ec+fMOTOz26uq6pA/jF5HmOn2BLAAzAOfwBPwmLrbZOkcsAhMWYIH4CORZAZYBUQaxh2g50ekCEW0DixF2HfgAriO3q8B04lCpPQceAvPYkIp2nFsVNUnhpGqjQb8L5Uh4SSwZxZ6rZNSPYrNtoSyceAx2bnsPbKeqn+zNfdugfs6S3cB9S83jgENkvqnPsbxClza1H6fhZYe5DIZLrRV6zBaCxFJlbsW+4D6mBtnwFUueIQLFW4nVqEp3xB4Hodw2Zm4MPeLDU0pH/Ee5qpspU7VxYTq4ZZj7SlwUyzNLtR9S7WPK0A/SCwSTabsbB05/0ORjkVSt/itqy65mKOwJJ+L7Qhdi0oBnaWljrn4/2/pF+D1lMkDwUxEAAAAGmZjVEwAAAANAAAAHAAAABwAAAAAAAAAAAAhA+gAACT++uMAAAFRZmRBVAAAAA5IS+2VMUoEQRBF34KogcGCiYqBgcgmwoKJZh5AD2DmUbyKiRfwAhsaaKSBLBtsIGigIGiiCCNfqodm7J7pHsGoC4pmpn/1p379nhlUVXXGP8agEGaqPTT8a6wuJuk6sAWsWuEbcAe8RA4SdhNYsP0v4AGYN/Ehwj1AGYobQOnHtpGF8E/Avb/RJGwjc3UTYGoPy8B+h+zXwLvD+ISLwAmw1HHAB3BuGEmpbAvJWkvrE2pux4kmuQQejaw34S5wkEjoZF0DRh01MzPQD8zvcAc4TCR0HcqVmqFzZ7Ncbr0CtP4i1AxPEwg/gQtAq0J3bxyoE4m6k1PraLpUkkratghdDblV12PFun02GWt3hjp0746AjQijroPm1ztiXxrNU+mIZWu58rY3U2CGfz0rqb78npJkygEVSXPUSsIWSZNkygEVSXPUSsJ+AxAwkclMg/ONAAAAGmZjVEwAAAAPAAAAHAAAABwAAAAAAAAAAAAhA+gAAMloKQoAAAFLZmRBVAAAABBIS+3UwSpFURQG4O+WMDBQDCgDIxlQygQZeAczT+NpeAAvYKCYKMVAMjBQTJRiQupqae9b9zjnnnNzMuD+tVqDvfb6z/7Xv06n2+3u+0V0/j3hfFL7oS3VqyRdxwomEtEbrnBeQTyFBUym81c8InIfygh3sFTR+BKnhbNFRJThDhE9FAlnsFsj3yFeUs0clmvqb3Gfa4qEIWXEIISsWdptjNXUf+AMkf2EcDbNuYmfLvBcRriKzZoOx7hBEzlzq56sxReOYw+Ry/COA0SexlqT5+E6ufabpHE/HLpVQXqEvJMxu40GM4yeJ1UzzB8cbg15w+6xg09pHbI7c92glcg14dCQ9Att/EtjLWKeZYjlDzl7aIMwmsVfJmYazg2EI4Msog9tETb0TjuSNiZra4YjwpFphvLA0MWjPRxasroLf1/ST/OwkcnZW5muAAAAGmZjVEwAAAARAAAAHAAAABwAAAAAAAAAAAAhA+gAACVpnhoAAAFbZmRBVAAAABJIS+2VvUoDQRRGT0CChUJACwsLK7ERBC0U8go+QN7G57CyS5XOB7BIkcLCIoVYWaSwEQQtoggbPpmRyXJ3Z4dZbNwL02R+ztwz9256RVFc8YfR+9fAQ+AA6APPwBPwlWu/SukpoBHGJ3ALvBrQDWAAbAHfwBvwYV3OAm4Do4pM3oFxaU4W9gFBwxD0EViGP1pAK7twz41TK8ARsBvRfB9mawEvgOOaQ67dnDLTiIUUz5xqLKBgglqhwrlz+s4NjVVwFZ2GCVRVXgI7pd2q0Amgd1SBnMRSC+ZVQFJrAv06tYWyFdi3xc8tncomOsM7yUwtsC6Bpu/nz9A7TnOA6rezBKVqkYccoPYOE4pG/fiSC2xaOL/Z5QK1f881f5Vdwea+B9sA6oxNV7WC+9DnbOHG2mXa/j8UfO3bWU69bWC0cDtgVFHqgk5pqrHo+k5pVFHqghVrSZPJKF5DUgAAABpmY1RMAAAAEwAAABwAAAAcAAAAAAAAAAAAIQPoAADI/03zAAABOWZkQVQAAAAUSEvtlbFqAkEURY8gYqEQ0CKCtaRIkSJFEH/BKj+Uf4qVX2BhIIVFCClShMTCQjBFrFYuzMDsrrvOzEpIYC8Muww7c+bd9+ZtI0mSB35Rjb8I7AK7c5lQFmELuAcE3ANPwKoquAwoWC8DEFSjSG3gp+xQRUCBBMzqE5g5k01gaIberbbAO6BnSkXAATA9AtQmczPfB64AF5RdsgZe3MlQSx+BL6AD3JyAWc7Gzf2pohkDI1Olyt2r2WXiCbNQFZvAxNzDS2NlSMEql8+xQFl5EUIz3y6B75gIb00OQ5mKcPsvgNeArkSooi0VTNAQqfssYotG6+4AtTFfVboWgoRc/FS3iSkaG5UP9AN4821tPnbZ5q1m4FqsqNR3c3+OKhH6HCj3TQ2Msq1sUW1pbWmwAweHyo/J5a+DkwAAABpmY1RMAAAAFQAAABwAAAAcAAAAAAAAAAAAIQPoAAAlNT+JAAABTmZkQVQAAAAWSEvtlbFKxEAURc+CqIWCqIWFhYUsFnZaWPoDNn6RX2TjD1hYWGhnsYiFhaDFCoIWqwiRs2QgIOvkTVwR8cIrQmZy8u7cl/SqqjriB9X7jcBFYBm4B966mpHrUNghMAe8AsfAcxdoDrgP9BuAa+B0msAdwEq6BKykJSDVAvACPDXq07vlOpwFDoAV4BE4qc9xBtgCVr/odggMgPfmmhwwrU1Ar+1kG5hvYa2wC2CU1rYFNp+91xKW9miz0LGiwA3AiuoOuCkBmtoSael5FOjZ7ZbQ6j0CRxFLTaRhKZWJfYgA1+pRKAVeAcMI0DEwoaUKWyooOhLp5ZzHs2hoXL8JrBe0eAtY4Tl0j0k1sW3VafCFeJZC/Z7m5PwZFqFjRULTfLhQ7Z3ax3tSJwK111/Ut/yecpaF75daGgZ1PcN/4EQH/v4ZfgCnE5bJGGzaHwAAABpmY1RMAAAAFwAAABwAAAAcAAAAAAAAAAAAIQPoAADIo+xgAAABUWZkQVQAAAAYSEvtlbFKA0EQQF9AxCKCoIVFCiuxsEhhYWHhP1j5N/6QP5DKwsLCQtBCgoWlhYJFChHh5B2XcFySu51TTwsHtspe3r7ZmdlelmVndBi9vwpcBXaBMfD+lYSkGp4Am8AjMOoCeAqsAy/AeRdA7XaA21JKNwBXH1gpDvEMuN6WHSo1peXv1wr4do3pK/AATKp7okBthiWjuux+ADdVaAQYgU0PIvQO0DiPCPAQMJ3R8D6vosAtYD9KKu23nVzJhntAXZE0ncXiuY4AjxILpQ58EQEeNykk/K7hJLVoOgceFBMlQWThFtvjMpJSK9RKbRtPwH0EaNNr2TacOHnzp96he9u2xqwlokBfBOeotqkhTDvvMI+IofuFep8+S00xB2sDnEKcOoMlttr4NFkocxE1rP6Bw9zq1dwh7Zq9DD8BbErrtxv+A38/pZ8vU5TJO67YgwAAABpmY1RMAAAAGQAAABwAAAAcAAAAAAAAAAAAIQPoAAAl0N08AAABK2ZkQVQAAAAaSEvtlSEOwkAQRR8OgSABgUAgEAgEgptwIe7ENRAIBAKBIAEBCQKBICn5DSULbdrZbtMQwiTrOvs6M3/+NqIomlNjNL4dOAB2IQ3xqbADzIAFcCgL9QGKIei5LEx5vsCE1QV0mg78ClyAU94P+QJbwPgD9Hm/oBvglgX2AUowOtaQuFICswKHQN9Kcr7bAns3zwJUG6clYEq5AytA843DAhRM0LIh2NIKlBIlktAQMK6yqMIR0AulPcUTC6gIOAHaFQC1KprlH0jtM6xdpZpz6B6+BGMRjb4JdRrt4MvIi9Yi2Qhf407yUgZuBeoCH6g8VLA347a21N17tVcvR54ZyMLWVbyHLljqFdQ1dYGO7suQ5VA+La3A4YqtrRKIe8nvV/gAlB2SyVuvvicAAAAaZmNUTAAAABsAAAAcAAAAHAAAAAAAAAAAACED6AAAyEYO1QAAAUZmZEFUAAAAHEhL5ZYhTwMxGIafJQgESxAIJAKBQExM8PP4aRMIBAKBQCARiIklIBAkR56lWy63W9v1mssIb3Lqrn36fu339iZN09wzoiZ/ATgFPkuLUuJwdGCpufW4Qx2eAJfABXAeyCvgB1gCH6nV5AJPgasAErpP38BbgPd+kwM8A2ZADNSd/D2Ad6ApoM7mB8I2EMv72iXGgDrSmQ5LZXl1u1UM6OG4KSWFce7pYy7QUg5xt+G8tA/RPoeCBNaQ7SI02oe2gE8N2aMPYwJlLY4OaGzZEjWUVVIb/q4GLeTrNgBifXgbsnMo9wn4Su2h72uUVZDArKTxoyHN7949t905YSq8h+Sp+7ZzP6aALkrodbh4c/ezF5bjsA0wzE0fT3CfLKGOvB0M7V7lOOwO9PfCrBXs4+T+ZpiZQqMqAabm/OfAX+09kcnrFVoXAAAAGmZjVEwAAAAdAAAAHAAAABwAAAAAAAAAAAAhA+gAACWMfK8AAAEHZmRBVAAAAB5IS+2WrQ7CMBRGzxIEAoFEIBAIJIIH4NF4NB4AgUQgEAgkAoEgKfmSlSyl7QZtmpFw7dae3u/+VsaYDQWt+gNzq91bSQfABBgCI2Bce34FbsAduACPNkW6eKjLFzUsdp+gB0CPCFoMKK9mwLTt1c73M3AMnYkB51/ALCcIDQEl4/JDz9zf9z55fUBJueoQs7b3KKY7N5F8QMVMcuYwxVLyvswHVEaqBHLYWyx9QMXO1lkqVCWiWEY9XKdSnPPb3gGLS5ozadRf1e6iMSxeFsULX+4XbW1W76LNW9CU8XQKDeNeDeBmNtsVQ+uF1ozmiqGpoDUj24qRtdN1kfS3gU86tpLJwbIt6wAAABpmY1RMAAAAHwAAABwAAAAcAAAAAAAAAAAAIQPoAADIGq9GAAABRmZkQVQAAAAgSEvdli1PA0EQhp8mCAQkCAQCgUAgkIgKBD+Nn4dAVFQgEAgEAkECAtHkyEO2gru93bmPNKGTrGmm8+w7Ox+3aJrmnh3a4r8Bj4HPIQmaqnDnwCHifn2jCs+AU+AAOEmUD+AdeAM2UXINKOQSOCwEFCb4BfiugUvAK0BlURO8Ar5Kf+gDDoVtGUIfSinOAS8Az1hToUqz75oDLitvFrnIUyqmjm8baJFcRyJWfFT5mPNpA4UJncMEdgqoDbybg5Ri2CaeP7ZXwGfgtabwNo2vOTJrazj+iikd2/C5CzoAOqOu/YZHwM0M8pyt60hb6CNQ8BTLptOAuUkzVWVv0/cB/d0t4XsOteIcLQHHQF3EtkJxGdcWsIv3PCl22+fMSnSiCKxaDbgNIMwZ6+eFlxDiMYVWZNiiwHDAmuP+A38AqS2XyWIgHogAAAAaZmNUTAAAACEAAAAcAAAAHAAAAAAAAAAAACED6AAAJv4UzgAAASdmZEFUAAAAIkhL7ZYhjgJBEEXfJAgEAoHYTRAIBAKxgmvsnbjQ3gSBQCAQCBIQbLICgRvyyYjOZJr+QyeTLKGSVtNdL9X9f9UUZVku6TCK/wicAHv3knIr/AS+gR/g14HmAsUQ9OjAtMcBjoAhMAiSXoFztVzWfd8jYB+YVbBYUoE3wMWlxoASgpYbEo0lnCbgGJi6pGDfAdilztWBeqcvoJc6GPm+Sl1vHbioiaMtV28paDRCoKoTMDckIim4MUJgW6HEcp6ArQPU28lvufEHrN9A3YC8Jw/mhv2GnatUleUKp5UPBVTDlhc76zSCPutHq4HHpoXEI7BbqQVTNal5OE/0VplcEyJ7HobWkHo/amABBIv2TKfT5PrPOu/801iJ3E2vD7wBMKCPydWAdMEAAAAaZmNUTAAAACMAAAAcAAAAHAAAAAAAAAAAACED6AAAy2jHJwAAAWJmZEFUAAAAJEhL7ZavSgVBFIe/CyIGg6DBYDCIGBQMBoPB5Av4Qr6NzWcwGAyGGwxiMhgMCoIGEWHlg10YlnXPzK4sCB6YcufPN79z5nf2zqqqOmPCmP1F4CKwDdwDn1GyfkPhCbAJPAMXUwBPgVXgDTgfC1wC1urhWV/AO/BaD38zpXvAA/AyFLgMbAErPQc81ZCPCJLOd9VQ2D6wkHGQiue16ozl0AaqaDcT1gCKoG3gIWDdSsO0XudsSoE+bcfQMLU+pt5IgQeA9RsaPqK7aHMKPI4WB/PW8io6owGqTIVj4zI6oAH6OrXC2MgGCjoqtEP7cnagm+jGaQ13gPVoQ8+8zfs22p8C7Zmafmjow7DNtY0/1BpZllBJG2j/9PGU+NHaaXptEUZX8y6BWjfNngXrUpjecKNudV1fDVU9AqayKHL+YuhRG7pDJaoKH8dPt8gBFimIFv8DowwVz0+e0m+Zx5TJuoME3gAAABpmY1RMAAAAJQAAABwAAAAcAAAAAAAAAAAAIQPoAAAmorVdAAABUmZkQVQAAAAmSEvt1b8uBVEQx/HPTQQFiYSCRKEQUegolF5A44k8kcYL6CioKBQKhUKBSCgQyZVJ7kk2a/+cXTeE+CXTzex353dmzhkMh8N936jBbwVOYgkPeGoybBwdzmIPU3jFQRN0HMAdrBW6OsdxXZdNwDmkmMEzHguRvrmJiKQzRFSqCjiBdSw0nMUdLvGOOL9dzOMeh3jLBU5jCwFt0wsuRp1HbgI21pU7DFjYl6uAnuQmR14RuIrlLsWj3GtEZKkI3EZY2kdHuUUJGKAA9lXYGva2KgEXR5PZWlCTEMMTk9uqBIwV2GjNrk+IFbnNqf8xS+Pn4orqo06rUZzSFUR01Q2ucovKi991NeJ+Pc2FRV4ZGLdMDE/OPsY9GrCsdUg/9ZXLO2zsBKvqsOhO3fMUNmbtXJXV43iAuxzhpzPsVNwn+b/DPq411vx9Sz8AxMuVydtsQOQAAAAaZmNUTAAAACcAAAAcAAAAHAAAAAAAAAAAACED6AAAyzRmtAAAAVRmZEFUAAAAKEhL7ZUxSwNBEIW/VFpEsLBQsbAQsVAQtfAXpNL/5B8yjf9BUlhYWIi1YIoIghYigQsPdmFZN7szIoqSB8eF3My+ezPz5npd113wg+j9dcIV4LVWsO9SeAAcAUuB8BL4KBFbCJeB98pbHwO6UkyAoYdwFdgGdI+YAo/h0u+IM2CzcLhUPuf/lxTuAesVRSK7A15CzCC8XJ5yBTy1CPeBNYNLRHoLvAEbwHmWI2VS+AmpQqmSOivU11EI3g191JQ+ANeWoTnMemYhvgfGlsAYExX2gRNPYohVH1VaMyKhplEKvVAPbzxJv0b41ZLK4LKIGemUngLaKh6of9GPpryUUP6TD61IbWHNId80rS0TD06NbyZTYGm17QBblVOkTH3ThLox72uhXmp5pztVRDK5Fni6vF2kls+T68BW8IKwVSH380VJ3SVrJfz/ks4AlT2VyRWi+ZYAAAAaZmNUTAAAACkAAAAcAAAAHAAAAAAAAAAAACED6AAAJkdX6AAAAV1mZEFUAAAAKkhL7ZW/LkRREMZ/mwgKEolGRKEQ2UKhUCgUHsAL6FSewxNpPAQFySYUIgqFQkEioUAkVz6ZZRzn7hnXjULuJKfYzJ9vvm9m9vaqqtrjD63XAQbVHgeWgUXgBbgCLnK5oySdAmaAMeARuAdeM0VmgS1gIvGdAHpfLAcooCUD88ECU+fXSY1tYDrTyDOwDzx4XwooRqsFGW+BM4uRlDsj4r+x9ICSbt0kLI1OTPVku00BJeNCCcn8kvfIZqr5zdfkHQKndZKuAZpf1Aa2SJqf5pjaHXBgW/vh85JuRpEszsuqcxiehYDEqngWG8H5Dfu6zGxssWfPUNupLY3asd1nNP49zgPOAf1g9pMtTTD8Myy9wyjLRuxShvqtW1wpSHsO3PyYmiXU/ZfqHvUmXWGBaDMlZ2OLfA8F+isQ310EsDGbXGIH2KqcubNoHSAt2M2wdYn/v6Rvs/GUyT5AreQAAAAaZmNUTAAAACsAAAAcAAAAHAAAAAAAAAAAACED6AAAy9GEAQAAAUJmZEFUAAAALEhL7dXBKgVxFMfxzy2xoRQLysJCsqCUDWXhBTwAT+Np7DyEEjZKscDKQrGgLCyQujr6j6bpP/fOvbcsNL/692/mf878mu85Z6bT7XYP/KE6reGAtOdT/GNdXh3SacxiMiW+4wFvNQ/awCom0vkHrnFRjc8ZLiJWTveIVdYW1mrib3FcPqsa9jIr8m7wlC6msNcH+xFeipiy4Rg2EXsvfeEkBQTKWL0UWH/Rlg2jbusNm+QSr8lsaMMFLDU0LLAuY6dPzhmuckjnsNLQsHjDcewj9pw+cYjYf1St4XYDw6jhOWIPxeztZvLC5BR35bNqlwbSQNtLudGIbo3xmEmzGDGB8bc7c29Y3IvGiQbKKcYh6je06r40Uc9YhfFz6sr42oyk9m8xEr5ccou0RTowgbZpBkbWL+H/I/0GANyRycrkVyMAAAAaZmNUTAAAAC0AAAAcAAAAHAAAAAAAAAAAACED6AAAJhv2ewAAAVBmZEFUAAAALkhL7ZSxSgNBFEVPIFgpBLRQsEghYqGVFpZWdv6AlZ+ST7HLB/gDdtoIgo2IhYUkNoKFhYqwcuW9JRl3M7NksNC9MEwxb97due/e7RRFMeAX0fn3hD1T+yWX6nWS9oF1oGtEn8Aj8FBDvAxsA0t2/gzcAdqnUEW4BazWNBbpfXC2C2hV4QrQKhESLgJ7EfkugTer2QQOIvUXwI3XhISSUmsWJKtLewIsROrfgSHwobp5CPVhh4lmOgPGVYQyykakyS3wBKTI6a1KWcMXypX7E+4MueVWzVD7GnCU+MJzc+0PSXVfDtUrPRKTPa8Bz6Rmd5wwQ90/rZuhN5dbJe+KvebV4uDu9LpZkfAaOVSSfiPHv1Sx0DyroPBLzhI5CNVsx2bqkRrZzEQ4hVyEid7JI2kyWa4ZtoStaRp5oHFxm8PGksUu/H1JvwAC/5HJqA1GLgAAABpmY1RMAAAALwAAABwAAAAcAAAAAAAAAAAAIQPoAADLjSWSAAABWmZkQVQAAAAwSEvtlbFKA0EURU9AjIVWWkRIYSFWFoKNpT+QKpWdn+J3pEqXSisrKwULCwVBC/EDTIqk0kJDYOXCrEyWN5kNs6bQPBgWdmb2vHvnvdlalmVnLDBq/xrYALaAFWAIDIBJqvshS3cADT8EewQ+DOgqsO0S/AL6wMhKzgKuAUcBJZ/AXWHuENgH6oX3b8AN8O6/t4CWOn/PrbNWqo4NJ4q5nvtqLeAu0JxxVtduTso0YiGLe8BYCy2gYIJaocJ5AaTuxLAxBH8ANEygqvIAWDeK5h7QOapAWjFp3ryq/CIEzNepLaRW4Lwt9FSUtdPPqRMDzhIwL1Dn100BbgLtOSxVi1ymALX31BVPGa4q+zUVWLZwftSlArV/zzV/SKVgV3kPVgHUNzZc1Qqeh66zZ+CpmEnV/0PBp+7O3wZGC6hqhUugeXlHbUlZsDzDFPfMvX/f0m+YZZPJwK6giQAAABpmY1RMAAAAMQAAABwAAAAcAAAAAAAAAAAAIQPoAAAnjJKCAAABRmZkQVQAAAAySEvtlT1LA0EQhp+AmBQGhDQhVYpgZcDC3lRWsUpll5+Sf5PKylSpTJVKELTRykI0RQJCmhTChTfswbHm7nb3RBRu4Iqb7OTZeefjKlEUjfhFq/xFYA3Y/JQIWRkeAOeAgF/AK/BWFJwFFOzIAgiqJ83qwDrrUmlAgQS07RN4SDgPgS5wClQT/nfgHviw/yANeAyc7QEugSfjbwMXFsgOeQZmSaevpMpOWTaAfg4s5qgE0/glr2k6QNN0qQIXJnAISE5XE3BX+5A5PAF6riRzTjWdhAIlZcsTqOM3wCokw4GpoS/zVl37L4CXgEbC14IlFUxQH9P2GYc2jeKuAa0xVys0FoJo8K8cZ/EFuHMZ/Lzbu0AfgbnrassD6vd4eWsZJCVWVlre374cIWPhcpHUMyWwkHz7gktJS0m9FdgC08KPyUWYUhIAAAAaZmNUTAAAADMAAAAcAAAAHAAAAAAAAAAAACED6AAAyhpBawAAAWFmZEFUAAAANEhL7ZUxSsVAEIa/ByIWWmmhVlZiIwja2Fl5ASsv4Dk8ip2VHsDKzkZBsBErK7VQEJ6FihD5HrsQIo9kNigiDiwhZCbfzj8zu4Oqqvb5QRv8RuAUMA08Ax99xWjLUNgGMJFg58BrH2gbcAWYrwEegOvvBC4Brmy3gCvbArAI+JwFnoB74C49v+ytLUOlXEs1fAEuk7STwFZjM82fu7FT4L3+oQ2YfW0agZqZbAMzHaR9A46BYfbtCqz/e7cjLMc8JujoPQpcB1xRuwLOSoB7UVLyV9LDKNDa7RQCDRM4jEjqeNgspWbH3kSAy2kUSoEnznAE6BjYoaUWllRQdCTy5hz+g2jT6L8JrBakeAG4wnNojJ1qx3Y1z9ej7BypYY6xlkI9T9vM+bNZhI6sBGicUOWt3yRNeK/De1wmApXX62kO8NzsdT21SRb+XippGNS3hv/AsQr8/Rp+AhBylsksbT/iAAAAGmZjVEwAAAA1AAAAHAAAABwAAAAAAAAAAAAhA+gAACfQMxEAAAFRZmRBVAAAADZIS+2Vr09CURiGHzYHBkkQ0GTSRHEEI8mEiWQz+Xfwd5hsJCmYTCYs2kgk3RwYIEHBuV32Mi47A5HzHeRq8NtuuTvfnvO+34+TiqKoRoKR+qvAHaAAvAOfmxjiq7AE7AF9oJ0E8BTYBUbAUxJAqcsDb46l+8ABkAPSs0u8AK/AcNWlfC1187PACXD8jdIu8AgMFs9YgVJTATIeto6Bu0WoBWiBxfcR9B7oxT8swAtAdlpD9axbgYfAmZXknH8G9OGrsAwcbQDU/DYswEun9UO51xbgVSjFybtVx/pamjiwOtsooUI/gBuLpepQdWpodIAHC1BDL5Wh0YyH37eGAoWOhvapGmYaFqBehHNjLQWTOtXQDFSCoKqnnqV1sQSzKnQB2jrFFWqlpgWoUZbCYulX+Vrm6l4p15LWN38ZtgFcZ+uPK/wH/r6lE7RLlMlljEz2AAAAGmZjVEwAAAA3AAAAHAAAABwAAAAAAAAAAAAhA+gAAMpG4PgAAAEyZmRBVAAAADhIS+2VLW9CQRBFD76oYlpDFa6qNbiqKhx/iD9UFKquqqoJSV0dBlUSktaAeeQSliyvhJ39yAshnWTdmz1vZu7cbVVVNaLBaJ07sAN85zQkpsIr4BGYAstUaAxQDEF/U2HKiwU61h3QBdoefAHMgdmpH4oFXgPPNVD9fkHfgJ9j4BjgA6BjjQ9A5yCswD5wbyV5370Dn36eBag2DhNgSlkBE0Dz3YYFKJigqaG9HVuBUqNEkhsvrspQhU9AL5e2E89WQCHgALgtANSqaJb/QBqfYeMq1Zxz93AvGIto9E2O06wB7eDeyENr4TYi1rhd3h8DtwJ1QQxUlQl2YNzWlvp7r/bq5ThlBjLq1xLvoQ+Wem9qpi7Ql/8yHHOomJYWcLiwtRWB+JdcfoUbMhSSyUMtkHIAAAAaZmNUTAAAADkAAAAcAAAAHAAAAAAAAAAAACED6AAAJzXRpAAAAVFmZEFUAAAAOkhL5ZaxMgUxFIa/26CgoqFSeQA6lUpFQ+VtPIeKSqXSqa7KA9BQqXQqCjRrPhN3dvauJDe7s8M4M1ttki//OSd/Mqqq6pgBY/QXgAvAW2lSShQODiwV9zVvVoVzwAawDqwF8hPwATwCD6nd5AKXgM0Amo8s+gLcBHjrsBzgMrAHxEDNxW8DeAqaAqrsYEbYN+QeuG4SY0DrpbKVVF0i/02vaicRA9ocOx1gTrWm57nAQ8D6dY2rehP9pFCQwD7C4yI0eg63AL8+4h04GxIo6+TXAVeB/T7yGWzvNKXQA3/UE1B/HaeA/t8N3tmVewE85wD7SKsggZNIeWmXw++VdVlXJzUF1E9tnhLHsW5T92MK6KaEboeLN7eerbAchXWAZq772MFtYQq9ku6CabcOylHYnOjzwhQLXgReAZ8ZeqbQaJQAU2v+c+AnnkSRySARYEAAAAAaZmNUTAAAADsAAAAcAAAAHAAAAAAAAAAAACED6AAAyqMCTQAAAQtmZEFUAAAAPEhL7ZY9EsFAGIafNCoqFQegUql0DkDlDs7hHO6g4gA6lUrFAahUVJqYdyYxmbXZhOzsxIyvzW6e/d7vN4rjeEFAi/5A32rXVtIG0ANaQBvoJp6fgStwA07Ao0iRMh52gHECc/1P0C1wcR1yAeXVEBgUvdr4fgB2eXdcwNEXsJSTC80DSsbph56Zx9c2eW1ASTkrEbOi9yimKzORbEDFTHL6MMVS8r7MBlRGqgR82FssbcBJps6qQlWnmyIP51Upxv1l7YDBJfWZNOqvanfOLA1eFsELX+4HbW2p3kGbt6BVxtM+bxjXagBns1ne9pP1ommsGPdkzTj6WjG8droykv428An0ApLJQN0ShwAAAABJRU5ErkJggg=='; diff --git a/packages/react-components/src/Spinner.tsx b/packages/react-components/src/Spinner.tsx index dc91234eeab..040e5b60b09 100644 --- a/packages/react-components/src/Spinner.tsx +++ b/packages/react-components/src/Spinner.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/StakingBonded.tsx b/packages/react-components/src/StakingBonded.tsx index 52ee39fa4fe..b1550006ad8 100644 --- a/packages/react-components/src/StakingBonded.tsx +++ b/packages/react-components/src/StakingBonded.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/StakingRedeemable.tsx b/packages/react-components/src/StakingRedeemable.tsx index 61d8705b16b..06a937b233b 100644 --- a/packages/react-components/src/StakingRedeemable.tsx +++ b/packages/react-components/src/StakingRedeemable.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/StakingUnbonding.tsx b/packages/react-components/src/StakingUnbonding.tsx index f2f41d212a5..889be1b79a3 100644 --- a/packages/react-components/src/StakingUnbonding.tsx +++ b/packages/react-components/src/StakingUnbonding.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/Static.tsx b/packages/react-components/src/Static.tsx index 12b5dd960d7..e2c27865efd 100644 --- a/packages/react-components/src/Static.tsx +++ b/packages/react-components/src/Static.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Status/checks.ts b/packages/react-components/src/Status/checks.ts index edf10a5124b..68275cfaa48 100644 --- a/packages/react-components/src/Status/checks.ts +++ b/packages/react-components/src/Status/checks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // we use augmented types in this tsconfig diff --git a/packages/react-components/src/Status/constants.ts b/packages/react-components/src/Status/constants.ts index 117646444ba..5e740efa87e 100644 --- a/packages/react-components/src/Status/constants.ts +++ b/packages/react-components/src/Status/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTxStatus } from './types.js'; diff --git a/packages/react-components/src/Status/index.tsx b/packages/react-components/src/Status/index.tsx index bc55ad75d34..4925957a678 100644 --- a/packages/react-components/src/Status/index.tsx +++ b/packages/react-components/src/Status/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Status/types.ts b/packages/react-components/src/Status/types.ts index d41c69aa161..39972117127 100644 --- a/packages/react-components/src/Status/types.ts +++ b/packages/react-components/src/Status/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableResult } from '@polkadot/api'; diff --git a/packages/react-components/src/SummaryBox.tsx b/packages/react-components/src/SummaryBox.tsx index b5419072c68..19120edcc9a 100644 --- a/packages/react-components/src/SummaryBox.tsx +++ b/packages/react-components/src/SummaryBox.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Body.tsx b/packages/react-components/src/Table/Body.tsx index 301c23c6aa3..efbeaca0776 100644 --- a/packages/react-components/src/Table/Body.tsx +++ b/packages/react-components/src/Table/Body.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Column/Balance.tsx b/packages/react-components/src/Table/Column/Balance.tsx index 7114005c5b8..58e25460360 100644 --- a/packages/react-components/src/Table/Column/Balance.tsx +++ b/packages/react-components/src/Table/Column/Balance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-components/src/Table/Column/Expand.tsx b/packages/react-components/src/Table/Column/Expand.tsx index 71be0df042e..47b10f812bb 100644 --- a/packages/react-components/src/Table/Column/Expand.tsx +++ b/packages/react-components/src/Table/Column/Expand.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Column/Favorite.tsx b/packages/react-components/src/Table/Column/Favorite.tsx index 19bc6fea315..517b387b08b 100644 --- a/packages/react-components/src/Table/Column/Favorite.tsx +++ b/packages/react-components/src/Table/Column/Favorite.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/Table/Column/Id.tsx b/packages/react-components/src/Table/Column/Id.tsx index 312400ab5a6..eaee7fc99b9 100644 --- a/packages/react-components/src/Table/Column/Id.tsx +++ b/packages/react-components/src/Table/Column/Id.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-components/src/Table/Column/index.tsx b/packages/react-components/src/Table/Column/index.tsx index 9a77fc0ef17..c6a2d3ec487 100644 --- a/packages/react-components/src/Table/Column/index.tsx +++ b/packages/react-components/src/Table/Column/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Foot.tsx b/packages/react-components/src/Table/Foot.tsx index 4a16379c26a..9950dff469c 100644 --- a/packages/react-components/src/Table/Foot.tsx +++ b/packages/react-components/src/Table/Foot.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Head.tsx b/packages/react-components/src/Table/Head.tsx index cc0b15945a7..f531a6ab753 100644 --- a/packages/react-components/src/Table/Head.tsx +++ b/packages/react-components/src/Table/Head.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/Row/index.tsx b/packages/react-components/src/Table/Row/index.tsx index c32f4831a79..cdda1232ec1 100644 --- a/packages/react-components/src/Table/Row/index.tsx +++ b/packages/react-components/src/Table/Row/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Table/index.tsx b/packages/react-components/src/Table/index.tsx index fbb9207baf8..77763e597a5 100644 --- a/packages/react-components/src/Table/index.tsx +++ b/packages/react-components/src/Table/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Tabs/CurrentSection.tsx b/packages/react-components/src/Tabs/CurrentSection.tsx index 1c6e20c7143..41d94e32c2c 100644 --- a/packages/react-components/src/Tabs/CurrentSection.tsx +++ b/packages/react-components/src/Tabs/CurrentSection.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/Tabs/Tab.tsx b/packages/react-components/src/Tabs/Tab.tsx index eb4617e8ce6..f530faf69cd 100644 --- a/packages/react-components/src/Tabs/Tab.tsx +++ b/packages/react-components/src/Tabs/Tab.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { TabItem } from '../types.js'; diff --git a/packages/react-components/src/Tabs/TabsSectionDelimiter.tsx b/packages/react-components/src/Tabs/TabsSectionDelimiter.tsx index 0db031717e7..053b5e76692 100644 --- a/packages/react-components/src/Tabs/TabsSectionDelimiter.tsx +++ b/packages/react-components/src/Tabs/TabsSectionDelimiter.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/Tabs/index.tsx b/packages/react-components/src/Tabs/index.tsx index 4bc2a257d1f..023b8b0d1e3 100644 --- a/packages/react-components/src/Tabs/index.tsx +++ b/packages/react-components/src/Tabs/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Location } from 'history'; diff --git a/packages/react-components/src/Tag.tsx b/packages/react-components/src/Tag.tsx index afeb883e19c..c34f3fc5f90 100644 --- a/packages/react-components/src/Tag.tsx +++ b/packages/react-components/src/Tag.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FlagColor as TagColor } from './types.js'; diff --git a/packages/react-components/src/Tags.tsx b/packages/react-components/src/Tags.tsx index beff41f8aa8..91340d5720d 100644 --- a/packages/react-components/src/Tags.tsx +++ b/packages/react-components/src/Tags.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo } from 'react'; diff --git a/packages/react-components/src/TextArea.tsx b/packages/react-components/src/TextArea.tsx index 190231a85b6..2b432a5e213 100644 --- a/packages/react-components/src/TextArea.tsx +++ b/packages/react-components/src/TextArea.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/Toggle.tsx b/packages/react-components/src/Toggle.tsx index d02ad03e691..1cc395a88cb 100644 --- a/packages/react-components/src/Toggle.tsx +++ b/packages/react-components/src/Toggle.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback } from 'react'; diff --git a/packages/react-components/src/ToggleGroup.tsx b/packages/react-components/src/ToggleGroup.tsx index 41cadc01128..23cefd8e103 100644 --- a/packages/react-components/src/ToggleGroup.tsx +++ b/packages/react-components/src/ToggleGroup.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useMemo } from 'react'; diff --git a/packages/react-components/src/Tooltip.tsx b/packages/react-components/src/Tooltip.tsx index d7c9a59ae7b..42650e98929 100644 --- a/packages/react-components/src/Tooltip.tsx +++ b/packages/react-components/src/Tooltip.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useEffect, useState } from 'react'; diff --git a/packages/react-components/src/TreasuryProposal.tsx b/packages/react-components/src/TreasuryProposal.tsx index 101b53c1985..a9f8e27af30 100644 --- a/packages/react-components/src/TreasuryProposal.tsx +++ b/packages/react-components/src/TreasuryProposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-democracy authors & contributors +// Copyright 2017-2025 @polkadot/app-democracy authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/react-components/src/TxButton.tsx b/packages/react-components/src/TxButton.tsx index efb01a6d851..7e4469c11b9 100644 --- a/packages/react-components/src/TxButton.tsx +++ b/packages/react-components/src/TxButton.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableResult } from '@polkadot/api'; diff --git a/packages/react-components/src/UsageBar.tsx b/packages/react-components/src/UsageBar.tsx index 3ddaa385c1f..a83e4610b15 100644 --- a/packages/react-components/src/UsageBar.tsx +++ b/packages/react-components/src/UsageBar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/VoteAccount.tsx b/packages/react-components/src/VoteAccount.tsx index 0abfa46d96e..2d16031e647 100644 --- a/packages/react-components/src/VoteAccount.tsx +++ b/packages/react-components/src/VoteAccount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-components/src/VoteValue.tsx b/packages/react-components/src/VoteValue.tsx index a97ad36b240..bfbb39ae01a 100644 --- a/packages/react-components/src/VoteValue.tsx +++ b/packages/react-components/src/VoteValue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type BN from 'bn.js'; diff --git a/packages/react-components/src/constants.ts b/packages/react-components/src/constants.ts index f17baeb9660..a0146d24f8c 100644 --- a/packages/react-components/src/constants.ts +++ b/packages/react-components/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export const rewardDestinationOptions = [ diff --git a/packages/react-components/src/i18n/Backend.ts b/packages/react-components/src/i18n/Backend.ts index 8be3c8e795d..7354043c6b2 100644 --- a/packages/react-components/src/i18n/Backend.ts +++ b/packages/react-components/src/i18n/Backend.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import languageCache from './cache.js'; diff --git a/packages/react-components/src/i18n/cache.ts b/packages/react-components/src/i18n/cache.ts index 7dd3cb5a26a..c1b99a286fe 100644 --- a/packages/react-components/src/i18n/cache.ts +++ b/packages/react-components/src/i18n/cache.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 const languageCache: Record> = {}; diff --git a/packages/react-components/src/i18n/index.ts b/packages/react-components/src/i18n/index.ts index 05ef297451f..a97f75d0d51 100644 --- a/packages/react-components/src/i18n/index.ts +++ b/packages/react-components/src/i18n/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LanguageDetectorModule, Newable } from 'i18next'; diff --git a/packages/react-components/src/index.ts b/packages/react-components/src/index.ts index 6007c013f69..1e60ea5b9a7 100644 --- a/packages/react-components/src/index.ts +++ b/packages/react-components/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 // named exports diff --git a/packages/react-components/src/modals/Transfer.tsx b/packages/react-components/src/modals/Transfer.tsx index 88bfd603584..d7d23474134 100644 --- a/packages/react-components/src/modals/Transfer.tsx +++ b/packages/react-components/src/modals/Transfer.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-components/src/modals/index.ts b/packages/react-components/src/modals/index.ts index 1f05f63a486..39963c4cfeb 100644 --- a/packages/react-components/src/modals/index.ts +++ b/packages/react-components/src/modals/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export { default as TransferModal } from './Transfer.js'; diff --git a/packages/react-components/src/styled.ts b/packages/react-components/src/styled.ts index 501553ebcec..12a466a8363 100644 --- a/packages/react-components/src/styled.ts +++ b/packages/react-components/src/styled.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export { styled } from 'styled-components'; diff --git a/packages/react-components/src/styles/components.ts b/packages/react-components/src/styles/components.ts index eb9c3ef8029..721bbf2d5d9 100644 --- a/packages/react-components/src/styles/components.ts +++ b/packages/react-components/src/styles/components.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export default ` diff --git a/packages/react-components/src/styles/form.ts b/packages/react-components/src/styles/form.ts index 0423a51de92..e129ba2ef59 100644 --- a/packages/react-components/src/styles/form.ts +++ b/packages/react-components/src/styles/form.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export default ` diff --git a/packages/react-components/src/styles/index.ts b/packages/react-components/src/styles/index.ts index 162444a4522..230108f8f33 100644 --- a/packages/react-components/src/styles/index.ts +++ b/packages/react-components/src/styles/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createGlobalStyle } from 'styled-components'; diff --git a/packages/react-components/src/styles/media.ts b/packages/react-components/src/styles/media.ts index a370ccde142..ec7472c6ae3 100644 --- a/packages/react-components/src/styles/media.ts +++ b/packages/react-components/src/styles/media.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export default [ diff --git a/packages/react-components/src/styles/semantic.ts b/packages/react-components/src/styles/semantic.ts index 171172995ba..d00942e6e36 100644 --- a/packages/react-components/src/styles/semantic.ts +++ b/packages/react-components/src/styles/semantic.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export default ` diff --git a/packages/react-components/src/styles/theme.ts b/packages/react-components/src/styles/theme.ts index 2e88a17d8b3..db86efe5a93 100644 --- a/packages/react-components/src/styles/theme.ts +++ b/packages/react-components/src/styles/theme.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 /* default buttons, dark gray */ diff --git a/packages/react-components/src/themes.ts b/packages/react-components/src/themes.ts index fd652364d93..32157a9f4c9 100644 --- a/packages/react-components/src/themes.ts +++ b/packages/react-components/src/themes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ThemeDef } from './types.js'; diff --git a/packages/react-components/src/translate.ts b/packages/react-components/src/translate.ts index aa15bc14d59..5665ce84989 100644 --- a/packages/react-components/src/translate.ts +++ b/packages/react-components/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-components/src/types.ts b/packages/react-components/src/types.ts index 1d1af1b1bd4..72d6b027790 100644 --- a/packages/react-components/src/types.ts +++ b/packages/react-components/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-components/src/util/checkVisibility.tsx b/packages/react-components/src/util/checkVisibility.tsx index a42273a3291..66299c56069 100644 --- a/packages/react-components/src/util/checkVisibility.tsx +++ b/packages/react-components/src/util/checkVisibility.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-staking authors & contributors +// Copyright 2017-2025 @polkadot/app-staking authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-components/src/util/dropdownItemsFilter.ts b/packages/react-components/src/util/dropdownItemsFilter.ts index 2e7cf781c2f..b002cdbc8be 100644 --- a/packages/react-components/src/util/dropdownItemsFilter.ts +++ b/packages/react-components/src/util/dropdownItemsFilter.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DropdownItemProps } from 'semantic-ui-react'; diff --git a/packages/react-components/src/util/getAccountCryptoType.ts b/packages/react-components/src/util/getAccountCryptoType.ts index a951642aaef..d3c1788136f 100644 --- a/packages/react-components/src/util/getAccountCryptoType.ts +++ b/packages/react-components/src/util/getAccountCryptoType.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountIdIsh } from '../types.js'; diff --git a/packages/react-components/src/util/getAddressMeta.ts b/packages/react-components/src/util/getAddressMeta.ts index 642372ae8f4..b5a081c76f8 100644 --- a/packages/react-components/src/util/getAddressMeta.ts +++ b/packages/react-components/src/util/getAddressMeta.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringItemType, KeyringJson$Meta } from '@polkadot/ui-keyring/types'; diff --git a/packages/react-components/src/util/getAddressName.ts b/packages/react-components/src/util/getAddressName.ts index 54ca20ab209..e0eb15075b3 100644 --- a/packages/react-components/src/util/getAddressName.ts +++ b/packages/react-components/src/util/getAddressName.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringItemType } from '@polkadot/ui-keyring/types'; diff --git a/packages/react-components/src/util/getAddressTags.ts b/packages/react-components/src/util/getAddressTags.ts index 240bc80dacd..fe69d107a51 100644 --- a/packages/react-components/src/util/getAddressTags.ts +++ b/packages/react-components/src/util/getAddressTags.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringItemType } from '@polkadot/ui-keyring/types'; diff --git a/packages/react-components/src/util/getContractAbi.ts b/packages/react-components/src/util/getContractAbi.ts index ae1ec4c7a65..12a22d86701 100644 --- a/packages/react-components/src/util/getContractAbi.ts +++ b/packages/react-components/src/util/getContractAbi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import { Abi } from '@polkadot/api-contract'; diff --git a/packages/react-components/src/util/index.ts b/packages/react-components/src/util/index.ts index ff3b3601a94..1c77a4ab4b7 100644 --- a/packages/react-components/src/util/index.ts +++ b/packages/react-components/src/util/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 export { checkVisibility } from './checkVisibility.js'; diff --git a/packages/react-components/src/util/isTreasuryProposalVote.ts b/packages/react-components/src/util/isTreasuryProposalVote.ts index 33a1c24dfa1..f86cc8574b6 100644 --- a/packages/react-components/src/util/isTreasuryProposalVote.ts +++ b/packages/react-components/src/util/isTreasuryProposalVote.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Proposal } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/util/toAddress.ts b/packages/react-components/src/util/toAddress.ts index 983fc72384f..9c73868e3b2 100644 --- a/packages/react-components/src/util/toAddress.ts +++ b/packages/react-components/src/util/toAddress.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import { keyring } from '@polkadot/ui-keyring'; diff --git a/packages/react-components/src/util/toShortAddress.ts b/packages/react-components/src/util/toShortAddress.ts index d6b3c7c9021..2b2927fbba6 100644 --- a/packages/react-components/src/util/toShortAddress.ts +++ b/packages/react-components/src/util/toShortAddress.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, AccountIndex, Address } from '@polkadot/types/interfaces'; diff --git a/packages/react-components/src/util/types.ts b/packages/react-components/src/util/types.ts index 53e7c547b17..c13b372fa96 100644 --- a/packages/react-components/src/util/types.ts +++ b/packages/react-components/src/util/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/constants.ts b/packages/react-hooks/src/constants.ts index 61fd992f296..74676519639 100644 --- a/packages/react-hooks/src/constants.ts +++ b/packages/react-hooks/src/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 export const AddressIdentityOtherDiscordKey = 'Discord'; diff --git a/packages/react-hooks/src/createNamedHook.ts b/packages/react-hooks/src/createNamedHook.ts index ce33047cc54..59f3272a83f 100644 --- a/packages/react-hooks/src/createNamedHook.ts +++ b/packages/react-hooks/src/createNamedHook.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 export function createNamedHook any> (name: string, fn: F): (...args: Parameters) => ReturnType { diff --git a/packages/react-hooks/src/ctx/AccountSidebar.tsx b/packages/react-hooks/src/ctx/AccountSidebar.tsx index eef74cee023..435dd6929ab 100644 --- a/packages/react-hooks/src/ctx/AccountSidebar.tsx +++ b/packages/react-hooks/src/ctx/AccountSidebar.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-hooks/src/ctx/Api.tsx b/packages/react-hooks/src/ctx/Api.tsx index 30799c21fb4..eb0bc64fd62 100644 --- a/packages/react-hooks/src/ctx/Api.tsx +++ b/packages/react-hooks/src/ctx/Api.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiProps } from './types.js'; diff --git a/packages/react-hooks/src/ctx/ApiStats.tsx b/packages/react-hooks/src/ctx/ApiStats.tsx index 8a9cc7f1a90..a09c23928ea 100644 --- a/packages/react-hooks/src/ctx/ApiStats.tsx +++ b/packages/react-hooks/src/ctx/ApiStats.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/ctx/BlockAuthors.tsx b/packages/react-hooks/src/ctx/BlockAuthors.tsx index a279867c93d..c466b6ad17d 100644 --- a/packages/react-hooks/src/ctx/BlockAuthors.tsx +++ b/packages/react-hooks/src/ctx/BlockAuthors.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { HeaderExtended } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/ctx/BlockEvents.tsx b/packages/react-hooks/src/ctx/BlockEvents.tsx index 4f8d04800a3..8ea5eab4690 100644 --- a/packages/react-hooks/src/ctx/BlockEvents.tsx +++ b/packages/react-hooks/src/ctx/BlockEvents.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/ctx/Keyring.tsx b/packages/react-hooks/src/ctx/Keyring.tsx index 9d5dea0361f..97a2b4da8c1 100644 --- a/packages/react-hooks/src/ctx/Keyring.tsx +++ b/packages/react-hooks/src/ctx/Keyring.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubjectInfo } from '@polkadot/ui-keyring/observable/types'; diff --git a/packages/react-hooks/src/ctx/Queue.tsx b/packages/react-hooks/src/ctx/Queue.tsx index ee2a269f825..57cfb0c7768 100644 --- a/packages/react-hooks/src/ctx/Queue.tsx +++ b/packages/react-hooks/src/ctx/Queue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableResult } from '@polkadot/api'; diff --git a/packages/react-hooks/src/ctx/Tabs.tsx b/packages/react-hooks/src/ctx/Tabs.tsx index 476790311bb..20bb4295193 100644 --- a/packages/react-hooks/src/ctx/Tabs.tsx +++ b/packages/react-hooks/src/ctx/Tabs.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { IconName } from '@fortawesome/fontawesome-svg-core'; diff --git a/packages/react-hooks/src/ctx/WindowSize.tsx b/packages/react-hooks/src/ctx/WindowSize.tsx index b2df848b125..ae784c68e02 100644 --- a/packages/react-hooks/src/ctx/WindowSize.tsx +++ b/packages/react-hooks/src/ctx/WindowSize.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 // Adapted from https://hackernoon.com/simplifying-responsive-layouts-with-react-hooks-19db73893a7a diff --git a/packages/react-hooks/src/ctx/index.ts b/packages/react-hooks/src/ctx/index.ts index d92738eb77b..a9f07550c8c 100644 --- a/packages/react-hooks/src/ctx/index.ts +++ b/packages/react-hooks/src/ctx/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 export { ApiStatsCtxRoot } from './ApiStats.js'; diff --git a/packages/react-hooks/src/ctx/types.ts b/packages/react-hooks/src/ctx/types.ts index 227fa46a6f5..bdf74409dbf 100644 --- a/packages/react-hooks/src/ctx/types.ts +++ b/packages/react-hooks/src/ctx/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Blockchain } from '@acala-network/chopsticks-core'; diff --git a/packages/react-hooks/src/index.ts b/packages/react-hooks/src/index.ts index 83f3695e1b5..621241373cf 100644 --- a/packages/react-hooks/src/index.ts +++ b/packages/react-hooks/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 // we use augmented types in this tsconfig diff --git a/packages/react-hooks/src/translate.ts b/packages/react-hooks/src/translate.ts index dc26304479b..d14c52e0d88 100644 --- a/packages/react-hooks/src/translate.ts +++ b/packages/react-hooks/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/react-hooks/src/types.ts b/packages/react-hooks/src/types.ts index e6cb66ac4fc..e344f82d330 100644 --- a/packages/react-hooks/src/types.ts +++ b/packages/react-hooks/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/useAccountId.ts b/packages/react-hooks/src/useAccountId.ts index d73c679cae1..70ebc75f1dd 100644 --- a/packages/react-hooks/src/useAccountId.ts +++ b/packages/react-hooks/src/useAccountId.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useState } from 'react'; diff --git a/packages/react-hooks/src/useAccountInfo.ts b/packages/react-hooks/src/useAccountInfo.ts index 225f1a049a1..191eaa45226 100644 --- a/packages/react-hooks/src/useAccountInfo.ts +++ b/packages/react-hooks/src/useAccountInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Nominations, ValidatorPrefs } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useAccounts.ts b/packages/react-hooks/src/useAccounts.ts index 56971547d51..2cb700906e8 100644 --- a/packages/react-hooks/src/useAccounts.ts +++ b/packages/react-hooks/src/useAccounts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Accounts } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useAddresses.ts b/packages/react-hooks/src/useAddresses.ts index f8cfcf20443..b694442ddfa 100644 --- a/packages/react-hooks/src/useAddresses.ts +++ b/packages/react-hooks/src/useAddresses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Addresses } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useApi.ts b/packages/react-hooks/src/useApi.ts index bd4e3d9cfe9..15b496014fa 100644 --- a/packages/react-hooks/src/useApi.ts +++ b/packages/react-hooks/src/useApi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiProps } from '@polkadot/react-api/types'; diff --git a/packages/react-hooks/src/useApiStats.ts b/packages/react-hooks/src/useApiStats.ts index f99fb37d51b..acea5ff47ad 100644 --- a/packages/react-hooks/src/useApiStats.ts +++ b/packages/react-hooks/src/useApiStats.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiStats } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useApiUrl.ts b/packages/react-hooks/src/useApiUrl.ts index 44536c22817..1e3a8bf355f 100644 --- a/packages/react-hooks/src/useApiUrl.ts +++ b/packages/react-hooks/src/useApiUrl.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ProviderInterface } from '@polkadot/rpc-provider/types'; diff --git a/packages/react-hooks/src/useAvailableSlashes.ts b/packages/react-hooks/src/useAvailableSlashes.ts index 88f0c272a9d..8437bf82a0d 100644 --- a/packages/react-hooks/src/useAvailableSlashes.ts +++ b/packages/react-hooks/src/useAvailableSlashes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionIndexes } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useBalancesAll.ts b/packages/react-hooks/src/useBalancesAll.ts index cf0d2a0af5a..0eb1a1e695b 100644 --- a/packages/react-hooks/src/useBalancesAll.ts +++ b/packages/react-hooks/src/useBalancesAll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useBestHash.ts b/packages/react-hooks/src/useBestHash.ts index db7a00d298b..378be52e530 100644 --- a/packages/react-hooks/src/useBestHash.ts +++ b/packages/react-hooks/src/useBestHash.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Header } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useBestNumber.ts b/packages/react-hooks/src/useBestNumber.ts index 17ecbcbc9ed..64340ded4e2 100644 --- a/packages/react-hooks/src/useBestNumber.ts +++ b/packages/react-hooks/src/useBestNumber.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useBlockAuthors.ts b/packages/react-hooks/src/useBlockAuthors.ts index 5753c87a9b2..91d063ab8f1 100644 --- a/packages/react-hooks/src/useBlockAuthors.ts +++ b/packages/react-hooks/src/useBlockAuthors.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockAuthors } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useBlockEvents.ts b/packages/react-hooks/src/useBlockEvents.ts index 77d8a96aa58..791893a4d06 100644 --- a/packages/react-hooks/src/useBlockEvents.ts +++ b/packages/react-hooks/src/useBlockEvents.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockEvents } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useBlockInterval.ts b/packages/react-hooks/src/useBlockInterval.ts index a4230b65b53..76407f96aa4 100644 --- a/packages/react-hooks/src/useBlockInterval.ts +++ b/packages/react-hooks/src/useBlockInterval.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBlockTime.ts b/packages/react-hooks/src/useBlockTime.ts index 4d87c9f0b62..609a5f2fe49 100644 --- a/packages/react-hooks/src/useBlockTime.ts +++ b/packages/react-hooks/src/useBlockTime.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBlocksPerDays.ts b/packages/react-hooks/src/useBlocksPerDays.ts index 841f054d55b..1fc674ca566 100644 --- a/packages/react-hooks/src/useBlocksPerDays.ts +++ b/packages/react-hooks/src/useBlocksPerDays.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo } from 'react'; diff --git a/packages/react-hooks/src/useBrokerConfig.ts b/packages/react-hooks/src/useBrokerConfig.ts index da46006905c..bb8d6c4f846 100644 --- a/packages/react-hooks/src/useBrokerConfig.ts +++ b/packages/react-hooks/src/useBrokerConfig.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBrokerLeases.ts b/packages/react-hooks/src/useBrokerLeases.ts index 075dbfff151..133c1d69540 100644 --- a/packages/react-hooks/src/useBrokerLeases.ts +++ b/packages/react-hooks/src/useBrokerLeases.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBrokerPotentialRenewals.ts b/packages/react-hooks/src/useBrokerPotentialRenewals.ts index ed5cebbdfb8..c4b26cc6290 100644 --- a/packages/react-hooks/src/useBrokerPotentialRenewals.ts +++ b/packages/react-hooks/src/useBrokerPotentialRenewals.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBrokerReservations.ts b/packages/react-hooks/src/useBrokerReservations.ts index 6d3d16faa01..d28e3a31c52 100644 --- a/packages/react-hooks/src/useBrokerReservations.ts +++ b/packages/react-hooks/src/useBrokerReservations.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBrokerSalesInfo.ts b/packages/react-hooks/src/useBrokerSalesInfo.ts index 7d28a07e2cf..3558d34dd98 100644 --- a/packages/react-hooks/src/useBrokerSalesInfo.ts +++ b/packages/react-hooks/src/useBrokerSalesInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useBrokerStatus.ts b/packages/react-hooks/src/useBrokerStatus.ts index d1f757a024f..09175a332eb 100644 --- a/packages/react-hooks/src/useBrokerStatus.ts +++ b/packages/react-hooks/src/useBrokerStatus.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useCacheKey.ts b/packages/react-hooks/src/useCacheKey.ts index a659b371caa..16e180c22ca 100644 --- a/packages/react-hooks/src/useCacheKey.ts +++ b/packages/react-hooks/src/useCacheKey.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useMemo } from 'react'; diff --git a/packages/react-hooks/src/useCall.ts b/packages/react-hooks/src/useCall.ts index d3bba3053ad..472eb452d8f 100644 --- a/packages/react-hooks/src/useCall.ts +++ b/packages/react-hooks/src/useCall.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useCallMulti.ts b/packages/react-hooks/src/useCallMulti.ts index cb30a88cae8..7d35cfe3c79 100644 --- a/packages/react-hooks/src/useCallMulti.ts +++ b/packages/react-hooks/src/useCallMulti.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useCollectiveInstance.ts b/packages/react-hooks/src/useCollectiveInstance.ts index 0e06306fd53..f557064bfb1 100644 --- a/packages/react-hooks/src/useCollectiveInstance.ts +++ b/packages/react-hooks/src/useCollectiveInstance.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CollectiveType } from './types.js'; diff --git a/packages/react-hooks/src/useCollectiveMembers.ts b/packages/react-hooks/src/useCollectiveMembers.ts index d72c5241a04..4a74b7f243a 100644 --- a/packages/react-hooks/src/useCollectiveMembers.ts +++ b/packages/react-hooks/src/useCollectiveMembers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useCoreDescriptor.ts b/packages/react-hooks/src/useCoreDescriptor.ts index 7fca588d812..b717dc5ae8d 100644 --- a/packages/react-hooks/src/useCoreDescriptor.ts +++ b/packages/react-hooks/src/useCoreDescriptor.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useCoretimeConsts.ts b/packages/react-hooks/src/useCoretimeConsts.ts index 1f45a894424..1b536aff338 100644 --- a/packages/react-hooks/src/useCoretimeConsts.ts +++ b/packages/react-hooks/src/useCoretimeConsts.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ChainConstants } from './types.js'; diff --git a/packages/react-hooks/src/useCoretimeEndpoint.ts b/packages/react-hooks/src/useCoretimeEndpoint.ts index 2e63072aaf2..847b6654628 100644 --- a/packages/react-hooks/src/useCoretimeEndpoint.ts +++ b/packages/react-hooks/src/useCoretimeEndpoint.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-hooks/src/useCoretimeInformation.ts b/packages/react-hooks/src/useCoretimeInformation.ts index 1d373dd204f..4874e3e9255 100644 --- a/packages/react-hooks/src/useCoretimeInformation.ts +++ b/packages/react-hooks/src/useCoretimeInformation.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useDebounce.ts b/packages/react-hooks/src/useDebounce.ts index 8ecd3ca0fc0..0060864fc2f 100644 --- a/packages/react-hooks/src/useDebounce.ts +++ b/packages/react-hooks/src/useDebounce.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect, useState } from 'react'; diff --git a/packages/react-hooks/src/useDelegations.ts b/packages/react-hooks/src/useDelegations.ts index ffe8e12f7d5..72b1937a12b 100644 --- a/packages/react-hooks/src/useDelegations.ts +++ b/packages/react-hooks/src/useDelegations.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletDemocracyVoteVoting } from '@polkadot/types/lookup'; diff --git a/packages/react-hooks/src/useDeriveAccountFlags.ts b/packages/react-hooks/src/useDeriveAccountFlags.ts index 5623d4fc9b8..51589eade68 100644 --- a/packages/react-hooks/src/useDeriveAccountFlags.ts +++ b/packages/react-hooks/src/useDeriveAccountFlags.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveAccountFlags } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useDeriveAccountInfo.ts b/packages/react-hooks/src/useDeriveAccountInfo.ts index 290f3302a19..15604001195 100644 --- a/packages/react-hooks/src/useDeriveAccountInfo.ts +++ b/packages/react-hooks/src/useDeriveAccountInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveAccountInfo } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useElementPosition.ts b/packages/react-hooks/src/useElementPosition.ts index 0b7b9f7d4b3..4eee65f902d 100644 --- a/packages/react-hooks/src/useElementPosition.ts +++ b/packages/react-hooks/src/useElementPosition.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/useEndpoint.ts b/packages/react-hooks/src/useEndpoint.ts index 9c7f1ed9c65..1595f527d85 100644 --- a/packages/react-hooks/src/useEndpoint.ts +++ b/packages/react-hooks/src/useEndpoint.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-hooks/src/useEventChanges.ts b/packages/react-hooks/src/useEventChanges.ts index da37763f22d..09077c9da58 100644 --- a/packages/react-hooks/src/useEventChanges.ts +++ b/packages/react-hooks/src/useEventChanges.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useEventTrigger.ts b/packages/react-hooks/src/useEventTrigger.ts index 2e72925889c..1c2e2929bfa 100644 --- a/packages/react-hooks/src/useEventTrigger.ts +++ b/packages/react-hooks/src/useEventTrigger.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AugmentedEvent } from '@polkadot/api/types'; diff --git a/packages/react-hooks/src/useExtrinsicTrigger.ts b/packages/react-hooks/src/useExtrinsicTrigger.ts index 82594efa8c6..4e4a172cf90 100644 --- a/packages/react-hooks/src/useExtrinsicTrigger.ts +++ b/packages/react-hooks/src/useExtrinsicTrigger.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/react-hooks/src/useFavorites.ts b/packages/react-hooks/src/useFavorites.ts index b7e38018f68..e15230e0045 100644 --- a/packages/react-hooks/src/useFavorites.ts +++ b/packages/react-hooks/src/useFavorites.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useMemo, useState } from 'react'; diff --git a/packages/react-hooks/src/useFormField.ts b/packages/react-hooks/src/useFormField.ts index 7a9d7e6272d..0c44d2505b0 100644 --- a/packages/react-hooks/src/useFormField.ts +++ b/packages/react-hooks/src/useFormField.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useMemo, useState } from 'react'; diff --git a/packages/react-hooks/src/useIncrement.ts b/packages/react-hooks/src/useIncrement.ts index 66cda117dd4..860e1fc216c 100644 --- a/packages/react-hooks/src/useIncrement.ts +++ b/packages/react-hooks/src/useIncrement.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useState } from 'react'; diff --git a/packages/react-hooks/src/useInflation.ts b/packages/react-hooks/src/useInflation.ts index 43903678759..73d0ab7263c 100644 --- a/packages/react-hooks/src/useInflation.ts +++ b/packages/react-hooks/src/useInflation.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useIpfs.ts b/packages/react-hooks/src/useIpfs.ts index f8286f531f1..51a0a2b613c 100644 --- a/packages/react-hooks/src/useIpfs.ts +++ b/packages/react-hooks/src/useIpfs.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useState } from 'react'; diff --git a/packages/react-hooks/src/useIpfsLink.ts b/packages/react-hooks/src/useIpfsLink.ts index d096c880d82..23131473027 100644 --- a/packages/react-hooks/src/useIpfsLink.ts +++ b/packages/react-hooks/src/useIpfsLink.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo } from 'react'; diff --git a/packages/react-hooks/src/useIsMountedRef.ts b/packages/react-hooks/src/useIsMountedRef.ts index 130272985d0..b8685cc07eb 100644 --- a/packages/react-hooks/src/useIsMountedRef.ts +++ b/packages/react-hooks/src/useIsMountedRef.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/useJudgements.tsx b/packages/react-hooks/src/useJudgements.tsx index a1f1d917f07..2f0b0b74f02 100644 --- a/packages/react-hooks/src/useJudgements.tsx +++ b/packages/react-hooks/src/useJudgements.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { UseJudgements } from './types.js'; diff --git a/packages/react-hooks/src/useKeyring.ts b/packages/react-hooks/src/useKeyring.ts index 386770f56f6..15974af6f54 100644 --- a/packages/react-hooks/src/useKeyring.ts +++ b/packages/react-hooks/src/useKeyring.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Accounts, Addresses } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useLedger.ts b/packages/react-hooks/src/useLedger.ts index dc629652762..8047c50cfa4 100644 --- a/packages/react-hooks/src/useLedger.ts +++ b/packages/react-hooks/src/useLedger.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 // This is for the use of `Ledger` diff --git a/packages/react-hooks/src/useMapEntries.ts b/packages/react-hooks/src/useMapEntries.ts index 2c3c6ce087b..bd4c4d37430 100644 --- a/packages/react-hooks/src/useMapEntries.ts +++ b/packages/react-hooks/src/useMapEntries.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/react-hooks/src/useMapKeys.ts b/packages/react-hooks/src/useMapKeys.ts index 10dda55745c..0830485f1b9 100644 --- a/packages/react-hooks/src/useMapKeys.ts +++ b/packages/react-hooks/src/useMapKeys.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueryableStorageEntry } from '@polkadot/api/types'; diff --git a/packages/react-hooks/src/useMemoValue.spec.ts b/packages/react-hooks/src/useMemoValue.spec.ts index 032744af0d0..b3ba775700a 100644 --- a/packages/react-hooks/src/useMemoValue.spec.ts +++ b/packages/react-hooks/src/useMemoValue.spec.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 /// diff --git a/packages/react-hooks/src/useMemoValue.ts b/packages/react-hooks/src/useMemoValue.ts index 19e90b8ce66..692a683f38d 100644 --- a/packages/react-hooks/src/useMemoValue.ts +++ b/packages/react-hooks/src/useMemoValue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useMemo, useRef } from 'react'; diff --git a/packages/react-hooks/src/useMetadataFetch.ts b/packages/react-hooks/src/useMetadataFetch.ts index 78154147ff3..2c67ab5dd7d 100644 --- a/packages/react-hooks/src/useMetadataFetch.ts +++ b/packages/react-hooks/src/useMetadataFetch.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/x-textencoder/shim'; diff --git a/packages/react-hooks/src/useModal.ts b/packages/react-hooks/src/useModal.ts index 1536c60f404..71cec71029a 100644 --- a/packages/react-hooks/src/useModal.ts +++ b/packages/react-hooks/src/useModal.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ModalState } from './types.js'; diff --git a/packages/react-hooks/src/useNextTick.ts b/packages/react-hooks/src/useNextTick.ts index 5b7c25709d9..bbe4500db63 100644 --- a/packages/react-hooks/src/useNextTick.ts +++ b/packages/react-hooks/src/useNextTick.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect, useState } from 'react'; diff --git a/packages/react-hooks/src/useNonEmptyString.ts b/packages/react-hooks/src/useNonEmptyString.ts index 6cb70f93685..67ff13d6b6f 100644 --- a/packages/react-hooks/src/useNonEmptyString.ts +++ b/packages/react-hooks/src/useNonEmptyString.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { FormField } from './useFormField.js'; diff --git a/packages/react-hooks/src/useNonZeroBn.ts b/packages/react-hooks/src/useNonZeroBn.ts index 76c2addac87..2c3aaec2297 100644 --- a/packages/react-hooks/src/useNonZeroBn.ts +++ b/packages/react-hooks/src/useNonZeroBn.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-hooks/src/useOutsideClick.ts b/packages/react-hooks/src/useOutsideClick.ts index dcadcd65639..332fe3abe13 100644 --- a/packages/react-hooks/src/useOutsideClick.ts +++ b/packages/react-hooks/src/useOutsideClick.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/useOwnEraRewards.ts b/packages/react-hooks/src/useOwnEraRewards.ts index c396d7964bc..f50615dcffe 100644 --- a/packages/react-hooks/src/useOwnEraRewards.ts +++ b/packages/react-hooks/src/useOwnEraRewards.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useOwnStashInfos.ts b/packages/react-hooks/src/useOwnStashInfos.ts index 2ae498ddd79..d5b2e1ac35d 100644 --- a/packages/react-hooks/src/useOwnStashInfos.ts +++ b/packages/react-hooks/src/useOwnStashInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { CombinatorFunction } from '@polkadot/api/promise/Combinator'; diff --git a/packages/react-hooks/src/useOwnStashes.ts b/packages/react-hooks/src/useOwnStashes.ts index 19c5b23fdd4..1480d2b6791 100644 --- a/packages/react-hooks/src/useOwnStashes.ts +++ b/packages/react-hooks/src/useOwnStashes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/react-hooks/src/useParaApi.ts b/packages/react-hooks/src/useParaApi.ts index 7e8f373d6ad..2aafd18e838 100644 --- a/packages/react-hooks/src/useParaApi.ts +++ b/packages/react-hooks/src/useParaApi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useParaEndpoints.ts b/packages/react-hooks/src/useParaEndpoints.ts index 5565be56261..b0a04824001 100644 --- a/packages/react-hooks/src/useParaEndpoints.ts +++ b/packages/react-hooks/src/useParaEndpoints.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-hooks/src/usePassword.ts b/packages/react-hooks/src/usePassword.ts index 9c4d6cd8262..a5fc3c60974 100644 --- a/packages/react-hooks/src/usePassword.ts +++ b/packages/react-hooks/src/usePassword.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/usePeopleEndpoint.ts b/packages/react-hooks/src/usePeopleEndpoint.ts index 16741c4e913..345df5e1a15 100644 --- a/packages/react-hooks/src/usePeopleEndpoint.ts +++ b/packages/react-hooks/src/usePeopleEndpoint.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-hooks/src/usePopupWindow.ts b/packages/react-hooks/src/usePopupWindow.ts index b6a211c55bc..1800a81f1a1 100644 --- a/packages/react-hooks/src/usePopupWindow.ts +++ b/packages/react-hooks/src/usePopupWindow.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/usePreimage.ts b/packages/react-hooks/src/usePreimage.ts index d4e8d01e4d4..37581a5dcf5 100644 --- a/packages/react-hooks/src/usePreimage.ts +++ b/packages/react-hooks/src/usePreimage.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useProxies.ts b/packages/react-hooks/src/useProxies.ts index 8a997d3dd28..4fd17e735d5 100644 --- a/packages/react-hooks/src/useProxies.ts +++ b/packages/react-hooks/src/useProxies.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useQueue.ts b/packages/react-hooks/src/useQueue.ts index 9dd282443f1..73eb213b2a9 100644 --- a/packages/react-hooks/src/useQueue.ts +++ b/packages/react-hooks/src/useQueue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueProps } from '@polkadot/react-components/Status/types'; diff --git a/packages/react-hooks/src/useQueueStatus.ts b/packages/react-hooks/src/useQueueStatus.ts index e132fcf6ad3..0c3a8560f37 100644 --- a/packages/react-hooks/src/useQueueStatus.ts +++ b/packages/react-hooks/src/useQueueStatus.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OnDemandQueueStatus } from './types.js'; diff --git a/packages/react-hooks/src/useRegions.ts b/packages/react-hooks/src/useRegions.ts index 9e115ec0e72..a4fca5adc8e 100644 --- a/packages/react-hooks/src/useRegions.ts +++ b/packages/react-hooks/src/useRegions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useRegistrars.ts b/packages/react-hooks/src/useRegistrars.ts index 5e90a7933aa..6cda96d8131 100644 --- a/packages/react-hooks/src/useRegistrars.ts +++ b/packages/react-hooks/src/useRegistrars.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/react-hooks/src/useSavedFlags.ts b/packages/react-hooks/src/useSavedFlags.ts index 640d05d91a1..86dee453774 100644 --- a/packages/react-hooks/src/useSavedFlags.ts +++ b/packages/react-hooks/src/useSavedFlags.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-hooks/src/useScroll.ts b/packages/react-hooks/src/useScroll.ts index 778639944ad..23de0bd494a 100644 --- a/packages/react-hooks/src/useScroll.ts +++ b/packages/react-hooks/src/useScroll.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useEffect, useState } from 'react'; diff --git a/packages/react-hooks/src/useStakingInfo.ts b/packages/react-hooks/src/useStakingInfo.ts index c93885548c0..9b67689f026 100644 --- a/packages/react-hooks/src/useStakingInfo.ts +++ b/packages/react-hooks/src/useStakingInfo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useStepper.ts b/packages/react-hooks/src/useStepper.ts index a82d296b307..d98724f0c1b 100644 --- a/packages/react-hooks/src/useStepper.ts +++ b/packages/react-hooks/src/useStepper.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useMemo, useState } from 'react'; diff --git a/packages/react-hooks/src/useSubidentities.ts b/packages/react-hooks/src/useSubidentities.ts index 1636c6cd16e..1b5911493df 100644 --- a/packages/react-hooks/src/useSubidentities.ts +++ b/packages/react-hooks/src/useSubidentities.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId, BalanceOf } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useSudo.ts b/packages/react-hooks/src/useSudo.ts index a2af7d83e0d..e50dd4db40e 100644 --- a/packages/react-hooks/src/useSudo.ts +++ b/packages/react-hooks/src/useSudo.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { AccountId } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useSystemApi.ts b/packages/react-hooks/src/useSystemApi.ts index 83153bd84ca..5666425b51b 100644 --- a/packages/react-hooks/src/useSystemApi.ts +++ b/packages/react-hooks/src/useSystemApi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useTeleport.ts b/packages/react-hooks/src/useTeleport.ts index 23cb99a80d7..9e75a6b03ca 100644 --- a/packages/react-hooks/src/useTeleport.ts +++ b/packages/react-hooks/src/useTeleport.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { LinkOption } from '@polkadot/apps-config/endpoints/types'; diff --git a/packages/react-hooks/src/useTheme.ts b/packages/react-hooks/src/useTheme.ts index 0aad65664a3..6ea998531cd 100644 --- a/packages/react-hooks/src/useTheme.ts +++ b/packages/react-hooks/src/useTheme.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ThemeDef } from '@polkadot/react-components/types'; diff --git a/packages/react-hooks/src/useTimer.ts b/packages/react-hooks/src/useTimer.ts index 358f3cb138e..a28206aaa3a 100644 --- a/packages/react-hooks/src/useTimer.ts +++ b/packages/react-hooks/src/useTimer.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useEffect, useRef, useState } from 'react'; diff --git a/packages/react-hooks/src/useToggle.ts b/packages/react-hooks/src/useToggle.ts index 8816ca503d2..e7987872c34 100644 --- a/packages/react-hooks/src/useToggle.ts +++ b/packages/react-hooks/src/useToggle.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useCallback, useEffect, useMemo, useState } from 'react'; diff --git a/packages/react-hooks/src/useTreasury.ts b/packages/react-hooks/src/useTreasury.ts index 49535a83a49..a434311e6d0 100644 --- a/packages/react-hooks/src/useTreasury.ts +++ b/packages/react-hooks/src/useTreasury.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAccount, DeriveBounties, DeriveTreasuryProposals } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/useTxBatch.ts b/packages/react-hooks/src/useTxBatch.ts index 31456aa2123..1beca2b3af9 100644 --- a/packages/react-hooks/src/useTxBatch.ts +++ b/packages/react-hooks/src/useTxBatch.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useVotingStatus.ts b/packages/react-hooks/src/useVotingStatus.ts index 8461d62bebf..63fc424a948 100644 --- a/packages/react-hooks/src/useVotingStatus.ts +++ b/packages/react-hooks/src/useVotingStatus.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useWeight.ts b/packages/react-hooks/src/useWeight.ts index a08f0472a24..27641a74a9b 100644 --- a/packages/react-hooks/src/useWeight.ts +++ b/packages/react-hooks/src/useWeight.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Call } from '@polkadot/types/interfaces'; diff --git a/packages/react-hooks/src/useWindowColumns.ts b/packages/react-hooks/src/useWindowColumns.ts index 8e0145a8510..0d9db638038 100644 --- a/packages/react-hooks/src/useWindowColumns.ts +++ b/packages/react-hooks/src/useWindowColumns.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createNamedHook } from './createNamedHook.js'; diff --git a/packages/react-hooks/src/useWindowSize.ts b/packages/react-hooks/src/useWindowSize.ts index 75dad350e3f..61232e2acd7 100644 --- a/packages/react-hooks/src/useWindowSize.ts +++ b/packages/react-hooks/src/useWindowSize.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WindowSize } from './ctx/types.js'; diff --git a/packages/react-hooks/src/useWorkloadInfos.ts b/packages/react-hooks/src/useWorkloadInfos.ts index 4a66a63f70e..3127bd05e5d 100644 --- a/packages/react-hooks/src/useWorkloadInfos.ts +++ b/packages/react-hooks/src/useWorkloadInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/useWorkplanInfos.ts b/packages/react-hooks/src/useWorkplanInfos.ts index f804700f155..7b7faeb4a1d 100644 --- a/packages/react-hooks/src/useWorkplanInfos.ts +++ b/packages/react-hooks/src/useWorkplanInfos.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-hooks/src/utils/dataProcessing.ts b/packages/react-hooks/src/utils/dataProcessing.ts index af03b48fc8d..29167292b42 100644 --- a/packages/react-hooks/src/utils/dataProcessing.ts +++ b/packages/react-hooks/src/utils/dataProcessing.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletBrokerScheduleItem } from '@polkadot/types/lookup'; diff --git a/packages/react-hooks/src/utils/getJudgements.ts b/packages/react-hooks/src/utils/getJudgements.ts index e3be790ea1e..99feec5c901 100644 --- a/packages/react-hooks/src/utils/getJudgements.ts +++ b/packages/react-hooks/src/utils/getJudgements.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveAccountRegistration } from '@polkadot/api-derive/types'; diff --git a/packages/react-hooks/src/utils/matchRegistrarAccountsWithIndexes.ts b/packages/react-hooks/src/utils/matchRegistrarAccountsWithIndexes.ts index 7151724fdcd..6d7baa779f5 100644 --- a/packages/react-hooks/src/utils/matchRegistrarAccountsWithIndexes.ts +++ b/packages/react-hooks/src/utils/matchRegistrarAccountsWithIndexes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-hooks authors & contributors +// Copyright 2017-2025 @polkadot/react-hooks authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SortedJudgements } from '@polkadot/react-components/util/types'; diff --git a/packages/react-params/src/Extra/Call.tsx b/packages/react-params/src/Extra/Call.tsx index c14fb773ed3..fb29164f29a 100644 --- a/packages/react-params/src/Extra/Call.tsx +++ b/packages/react-params/src/Extra/Call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-params/src/Extra/Extrinsic.tsx b/packages/react-params/src/Extra/Extrinsic.tsx index dc4b47675c0..dbe4bebc040 100644 --- a/packages/react-params/src/Extra/Extrinsic.tsx +++ b/packages/react-params/src/Extra/Extrinsic.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/react-params/src/Extra/OpaqueCall.tsx b/packages/react-params/src/Extra/OpaqueCall.tsx index 61f0575dc37..17f4886625d 100644 --- a/packages/react-params/src/Extra/OpaqueCall.tsx +++ b/packages/react-params/src/Extra/OpaqueCall.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/react-params/src/Extra/Proposal.tsx b/packages/react-params/src/Extra/Proposal.tsx index d053002b985..81ea36288eb 100644 --- a/packages/react-params/src/Extra/Proposal.tsx +++ b/packages/react-params/src/Extra/Proposal.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Extra/index.ts b/packages/react-params/src/Extra/index.ts index d7743c44c40..572eabb222c 100644 --- a/packages/react-params/src/Extra/index.ts +++ b/packages/react-params/src/Extra/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-extrinsics authors & contributors +// Copyright 2017-2025 @polkadot/app-extrinsics authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ComponentMap } from '../types.js'; diff --git a/packages/react-params/src/Holder.tsx b/packages/react-params/src/Holder.tsx index 1ebec550780..97e660de746 100644 --- a/packages/react-params/src/Holder.tsx +++ b/packages/react-params/src/Holder.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-params/src/Named/Call.tsx b/packages/react-params/src/Named/Call.tsx index b7f7b605cb1..c6f1667af8b 100644 --- a/packages/react-params/src/Named/Call.tsx +++ b/packages/react-params/src/Named/Call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ExtrinsicSignature } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Named/CallExpander.tsx b/packages/react-params/src/Named/CallExpander.tsx index b22e89d5c22..5ee376ca84b 100644 --- a/packages/react-params/src/Named/CallExpander.tsx +++ b/packages/react-params/src/Named/CallExpander.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Call, Extrinsic } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Named/Event.tsx b/packages/react-params/src/Named/Event.tsx index fe2f0591bf4..094fd74560d 100644 --- a/packages/react-params/src/Named/Event.tsx +++ b/packages/react-params/src/Named/Event.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DecodedEvent } from '@polkadot/api-contract/types'; diff --git a/packages/react-params/src/Named/Extrinsic.tsx b/packages/react-params/src/Named/Extrinsic.tsx index e2e8bd731ee..b0c1a33881d 100644 --- a/packages/react-params/src/Named/Extrinsic.tsx +++ b/packages/react-params/src/Named/Extrinsic.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api/types'; diff --git a/packages/react-params/src/Named/ProposedAction.tsx b/packages/react-params/src/Named/ProposedAction.tsx index d39acd6d440..95672aa7939 100644 --- a/packages/react-params/src/Named/ProposedAction.tsx +++ b/packages/react-params/src/Named/ProposedAction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Call } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Named/index.ts b/packages/react-params/src/Named/index.ts index 1ae5f58451f..dfbce96474a 100644 --- a/packages/react-params/src/Named/index.ts +++ b/packages/react-params/src/Named/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 export { default as Call } from './Call.js'; diff --git a/packages/react-params/src/Param/Account.tsx b/packages/react-params/src/Param/Account.tsx index 951db154dd4..6d17bfa90c4 100644 --- a/packages/react-params/src/Param/Account.tsx +++ b/packages/react-params/src/Param/Account.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { MultiAddress } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Param/Amount.tsx b/packages/react-params/src/Param/Amount.tsx index 36372d71450..d5c627e5dde 100644 --- a/packages/react-params/src/Param/Amount.tsx +++ b/packages/react-params/src/Param/Amount.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BitLength } from '@polkadot/react-components/types'; diff --git a/packages/react-params/src/Param/BTreeMap.tsx b/packages/react-params/src/Param/BTreeMap.tsx index b551738889c..f7da4492e06 100644 --- a/packages/react-params/src/Param/BTreeMap.tsx +++ b/packages/react-params/src/Param/BTreeMap.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParamDef, Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Param/Balance.tsx b/packages/react-params/src/Param/Balance.tsx index fe93825a5ff..b6e5c88e87e 100644 --- a/packages/react-params/src/Param/Balance.tsx +++ b/packages/react-params/src/Param/Balance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Bare.tsx b/packages/react-params/src/Param/Bare.tsx index 1653aa56048..12ee10efc3e 100644 --- a/packages/react-params/src/Param/Bare.tsx +++ b/packages/react-params/src/Param/Bare.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-params/src/Param/Base.tsx b/packages/react-params/src/Param/Base.tsx index 02ab04a77a7..584204124a6 100644 --- a/packages/react-params/src/Param/Base.tsx +++ b/packages/react-params/src/Param/Base.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Size } from '../types.js'; diff --git a/packages/react-params/src/Param/BaseBytes.tsx b/packages/react-params/src/Param/BaseBytes.tsx index 7e061d82373..3cf7777f33b 100644 --- a/packages/react-params/src/Param/BaseBytes.tsx +++ b/packages/react-params/src/Param/BaseBytes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { RawParam, RawParamOnChange, RawParamOnEnter, RawParamOnEscape, Size, TypeDefExt } from '../types.js'; diff --git a/packages/react-params/src/Param/BasicAccountId20.tsx b/packages/react-params/src/Param/BasicAccountId20.tsx index fbf9d46db52..1a42ed081ec 100644 --- a/packages/react-params/src/Param/BasicAccountId20.tsx +++ b/packages/react-params/src/Param/BasicAccountId20.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/BasicAccountId32.tsx b/packages/react-params/src/Param/BasicAccountId32.tsx index d162e06e61f..e4ae109fcfa 100644 --- a/packages/react-params/src/Param/BasicAccountId32.tsx +++ b/packages/react-params/src/Param/BasicAccountId32.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/BasicAccountIdBase.tsx b/packages/react-params/src/Param/BasicAccountIdBase.tsx index 3df5cd85b71..f927a3ed8e0 100644 --- a/packages/react-params/src/Param/BasicAccountIdBase.tsx +++ b/packages/react-params/src/Param/BasicAccountIdBase.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props as BaseProps } from '../types.js'; diff --git a/packages/react-params/src/Param/Bool.tsx b/packages/react-params/src/Param/Bool.tsx index bee134f6a4b..c380e1c110f 100644 --- a/packages/react-params/src/Param/Bool.tsx +++ b/packages/react-params/src/Param/Bool.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Bytes.tsx b/packages/react-params/src/Param/Bytes.tsx index 5c96037f71a..4e931620972 100644 --- a/packages/react-params/src/Param/Bytes.tsx +++ b/packages/react-params/src/Param/Bytes.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Call.tsx b/packages/react-params/src/Param/Call.tsx index ce91676b8ff..9241c447fa1 100644 --- a/packages/react-params/src/Param/Call.tsx +++ b/packages/react-params/src/Param/Call.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Extrinsic } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Param/Cid.tsx b/packages/react-params/src/Param/Cid.tsx index 9e956dc8f11..b01bf80eed6 100644 --- a/packages/react-params/src/Param/Cid.tsx +++ b/packages/react-params/src/Param/Cid.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAllianceCid } from '@polkadot/types/lookup'; diff --git a/packages/react-params/src/Param/Code.tsx b/packages/react-params/src/Param/Code.tsx index f4a74ae97eb..f2e043f832e 100644 --- a/packages/react-params/src/Param/Code.tsx +++ b/packages/react-params/src/Param/Code.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/DispatchError.tsx b/packages/react-params/src/Param/DispatchError.tsx index 3c3dceba9ff..04438d7be42 100644 --- a/packages/react-params/src/Param/DispatchError.tsx +++ b/packages/react-params/src/Param/DispatchError.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DispatchError } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Param/DispatchResult.tsx b/packages/react-params/src/Param/DispatchResult.tsx index ca45beff488..bc11551a05f 100644 --- a/packages/react-params/src/Param/DispatchResult.tsx +++ b/packages/react-params/src/Param/DispatchResult.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DispatchResult } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/Param/Enum.tsx b/packages/react-params/src/Param/Enum.tsx index c02ad4c367f..daecc177294 100644 --- a/packages/react-params/src/Param/Enum.tsx +++ b/packages/react-params/src/Param/Enum.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-params/src/Param/File.tsx b/packages/react-params/src/Param/File.tsx index ec1a07843ff..eb18bfc13be 100644 --- a/packages/react-params/src/Param/File.tsx +++ b/packages/react-params/src/Param/File.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-params/src/Param/Hash160.tsx b/packages/react-params/src/Param/Hash160.tsx index 4bb4a1503e8..e63c8634aef 100644 --- a/packages/react-params/src/Param/Hash160.tsx +++ b/packages/react-params/src/Param/Hash160.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Hash256.tsx b/packages/react-params/src/Param/Hash256.tsx index 29a8b914233..a936c5f2e6e 100644 --- a/packages/react-params/src/Param/Hash256.tsx +++ b/packages/react-params/src/Param/Hash256.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Hash512.tsx b/packages/react-params/src/Param/Hash512.tsx index 28086661da3..e5fa562369f 100644 --- a/packages/react-params/src/Param/Hash512.tsx +++ b/packages/react-params/src/Param/Hash512.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/KeyValue.tsx b/packages/react-params/src/Param/KeyValue.tsx index f361038245b..8826e62b623 100644 --- a/packages/react-params/src/Param/KeyValue.tsx +++ b/packages/react-params/src/Param/KeyValue.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/KeyValueArray.tsx b/packages/react-params/src/Param/KeyValueArray.tsx index 4467e99aadb..cfecbf221ad 100644 --- a/packages/react-params/src/Param/KeyValueArray.tsx +++ b/packages/react-params/src/Param/KeyValueArray.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Vec } from '@polkadot/types'; diff --git a/packages/react-params/src/Param/Moment.tsx b/packages/react-params/src/Param/Moment.tsx index 6bdd9f5704d..bee2ad7be5a 100644 --- a/packages/react-params/src/Param/Moment.tsx +++ b/packages/react-params/src/Param/Moment.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props, RawParamOnChangeValue } from '../types.js'; diff --git a/packages/react-params/src/Param/Null.tsx b/packages/react-params/src/Param/Null.tsx index 78095dbd640..f04cac95570 100644 --- a/packages/react-params/src/Param/Null.tsx +++ b/packages/react-params/src/Param/Null.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/OpaqueCall.tsx b/packages/react-params/src/Param/OpaqueCall.tsx index f54e90907c5..1431dbea86e 100644 --- a/packages/react-params/src/Param/OpaqueCall.tsx +++ b/packages/react-params/src/Param/OpaqueCall.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Bytes } from '@polkadot/types'; diff --git a/packages/react-params/src/Param/Option.tsx b/packages/react-params/src/Param/Option.tsx index 444f27b5174..aeaa4e50778 100644 --- a/packages/react-params/src/Param/Option.tsx +++ b/packages/react-params/src/Param/Option.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-params/src/Param/Raw.tsx b/packages/react-params/src/Param/Raw.tsx index a59b942f8cd..685277c67c6 100644 --- a/packages/react-params/src/Param/Raw.tsx +++ b/packages/react-params/src/Param/Raw.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec } from '@polkadot/types/types'; diff --git a/packages/react-params/src/Param/Static.tsx b/packages/react-params/src/Param/Static.tsx index 123b5c36032..cee60fd6179 100644 --- a/packages/react-params/src/Param/Static.tsx +++ b/packages/react-params/src/Param/Static.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Codec } from '@polkadot/types/types'; diff --git a/packages/react-params/src/Param/Struct.tsx b/packages/react-params/src/Param/Struct.tsx index bf675cf9049..a0f8ca8d244 100644 --- a/packages/react-params/src/Param/Struct.tsx +++ b/packages/react-params/src/Param/Struct.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Param/Text.tsx b/packages/react-params/src/Param/Text.tsx index 281a31f55e5..07ac485bc98 100644 --- a/packages/react-params/src/Param/Text.tsx +++ b/packages/react-params/src/Param/Text.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/Tuple.tsx b/packages/react-params/src/Param/Tuple.tsx index d3b2198489f..a322e7e45dc 100644 --- a/packages/react-params/src/Param/Tuple.tsx +++ b/packages/react-params/src/Param/Tuple.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Param/Unknown.tsx b/packages/react-params/src/Param/Unknown.tsx index 030a7b41c70..27f18f771a4 100644 --- a/packages/react-params/src/Param/Unknown.tsx +++ b/packages/react-params/src/Param/Unknown.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props as BaseProps } from '../types.js'; diff --git a/packages/react-params/src/Param/Vector.tsx b/packages/react-params/src/Param/Vector.tsx index 07658b83f0d..c6b789085df 100644 --- a/packages/react-params/src/Param/Vector.tsx +++ b/packages/react-params/src/Param/Vector.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParamDef, Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Param/VectorFixed.tsx b/packages/react-params/src/Param/VectorFixed.tsx index ac32d193012..2be9c170c98 100644 --- a/packages/react-params/src/Param/VectorFixed.tsx +++ b/packages/react-params/src/Param/VectorFixed.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ParamDef, Props, RawParam } from '../types.js'; diff --git a/packages/react-params/src/Param/Vote.tsx b/packages/react-params/src/Param/Vote.tsx index c4d3c2ed824..d93b8b9618f 100644 --- a/packages/react-params/src/Param/Vote.tsx +++ b/packages/react-params/src/Param/Vote.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/VoteThreshold.tsx b/packages/react-params/src/Param/VoteThreshold.tsx index c7a1f2ac16b..3e5c5dec2b1 100644 --- a/packages/react-params/src/Param/VoteThreshold.tsx +++ b/packages/react-params/src/Param/VoteThreshold.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-params/src/Param/findComponent.ts b/packages/react-params/src/Param/findComponent.ts index f569dce528f..552b5b1f879 100644 --- a/packages/react-params/src/Param/findComponent.ts +++ b/packages/react-params/src/Param/findComponent.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-params/src/Param/index.tsx b/packages/react-params/src/Param/index.tsx index b7b8a245ec4..1056c8b0c26 100644 --- a/packages/react-params/src/Param/index.tsx +++ b/packages/react-params/src/Param/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Props } from '../types.js'; diff --git a/packages/react-params/src/Param/useParamDefs.ts b/packages/react-params/src/Param/useParamDefs.ts index 5755e66193e..e67bc12a03f 100644 --- a/packages/react-params/src/Param/useParamDefs.ts +++ b/packages/react-params/src/Param/useParamDefs.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-params/src/ParamComp.tsx b/packages/react-params/src/ParamComp.tsx index 66ecd255311..e0f8384185a 100644 --- a/packages/react-params/src/ParamComp.tsx +++ b/packages/react-params/src/ParamComp.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-params/src/index.tsx b/packages/react-params/src/index.tsx index 19349d36e4c..8fd5ab48791 100644 --- a/packages/react-params/src/index.tsx +++ b/packages/react-params/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { I18nProps } from '@polkadot/react-components/types'; diff --git a/packages/react-params/src/initValue.ts b/packages/react-params/src/initValue.ts index 1c6d22d9f57..e802ee70094 100644 --- a/packages/react-params/src/initValue.ts +++ b/packages/react-params/src/initValue.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-params/src/overrides.ts b/packages/react-params/src/overrides.ts index d011b424406..a27ec9e4fe7 100644 --- a/packages/react-params/src/overrides.ts +++ b/packages/react-params/src/overrides.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ComponentMap } from './types.js'; diff --git a/packages/react-params/src/translate.ts b/packages/react-params/src/translate.ts index 9f960e34103..7ba7c15ed11 100644 --- a/packages/react-params/src/translate.ts +++ b/packages/react-params/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-params/src/types.ts b/packages/react-params/src/types.ts index ebc240acf8f..d683dc5e6ff 100644 --- a/packages/react-params/src/types.ts +++ b/packages/react-params/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type React from 'react'; diff --git a/packages/react-params/src/util.ts b/packages/react-params/src/util.ts index e9eac7e0f05..c02fd708843 100644 --- a/packages/react-params/src/util.ts +++ b/packages/react-params/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletAllianceCid } from '@polkadot/types/lookup'; diff --git a/packages/react-params/src/valueToText.tsx b/packages/react-params/src/valueToText.tsx index 869e0bfeac3..ad38f01f5dd 100644 --- a/packages/react-params/src/valueToText.tsx +++ b/packages/react-params/src/valueToText.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Keys, ValidatorId } from '@polkadot/types/interfaces'; diff --git a/packages/react-params/src/values.ts b/packages/react-params/src/values.ts index c05da9e144d..7b4b572cf8e 100644 --- a/packages/react-params/src/values.ts +++ b/packages/react-params/src/values.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-params authors & contributors +// Copyright 2017-2025 @polkadot/react-params authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry, TypeDef } from '@polkadot/types/types'; diff --git a/packages/react-query/src/Available.tsx b/packages/react-query/src/Available.tsx index 759d1fc0074..b4031fb57ef 100644 --- a/packages/react-query/src/Available.tsx +++ b/packages/react-query/src/Available.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/Balance.tsx b/packages/react-query/src/Balance.tsx index f6af4f05f3f..46fae4d0d95 100644 --- a/packages/react-query/src/Balance.tsx +++ b/packages/react-query/src/Balance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/BalanceFree.tsx b/packages/react-query/src/BalanceFree.tsx index f6fc7342168..15ad1a68f99 100644 --- a/packages/react-query/src/BalanceFree.tsx +++ b/packages/react-query/src/BalanceFree.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/BalanceVoting.tsx b/packages/react-query/src/BalanceVoting.tsx index ffa2ea53f4e..74bc3c23880 100644 --- a/packages/react-query/src/BalanceVoting.tsx +++ b/packages/react-query/src/BalanceVoting.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/BestFinalized.tsx b/packages/react-query/src/BestFinalized.tsx index 320f7a68703..b2082f528a3 100644 --- a/packages/react-query/src/BestFinalized.tsx +++ b/packages/react-query/src/BestFinalized.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/react-query/src/BestNumber.tsx b/packages/react-query/src/BestNumber.tsx index 942bd4e5aac..0b955070cc6 100644 --- a/packages/react-query/src/BestNumber.tsx +++ b/packages/react-query/src/BestNumber.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BlockNumber } from '@polkadot/types/interfaces'; diff --git a/packages/react-query/src/BlockToTime.tsx b/packages/react-query/src/BlockToTime.tsx index 6d23a68a227..212823b3ad6 100644 --- a/packages/react-query/src/BlockToTime.tsx +++ b/packages/react-query/src/BlockToTime.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-query/src/Bonded.tsx b/packages/react-query/src/Bonded.tsx index 26cc6ff30f7..b8836a3ac94 100644 --- a/packages/react-query/src/Bonded.tsx +++ b/packages/react-query/src/Bonded.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Option } from '@polkadot/types'; diff --git a/packages/react-query/src/Chain.tsx b/packages/react-query/src/Chain.tsx index 62da693a835..85e16302812 100644 --- a/packages/react-query/src/Chain.tsx +++ b/packages/react-query/src/Chain.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-query/src/CoreDescriptor.tsx b/packages/react-query/src/CoreDescriptor.tsx index ba4e6bb4e7c..07de5143479 100644 --- a/packages/react-query/src/CoreDescriptor.tsx +++ b/packages/react-query/src/CoreDescriptor.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PolkadotRuntimeParachainsAssignerCoretimeCoreDescriptor } from '@polkadot/types/lookup'; diff --git a/packages/react-query/src/Elapsed.tsx b/packages/react-query/src/Elapsed.tsx index d7e79ebdab2..1d7d30a00f7 100644 --- a/packages/react-query/src/Elapsed.tsx +++ b/packages/react-query/src/Elapsed.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-query/src/FormatBalance.tsx b/packages/react-query/src/FormatBalance.tsx index 268b3241656..38be134a795 100644 --- a/packages/react-query/src/FormatBalance.tsx +++ b/packages/react-query/src/FormatBalance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Compact } from '@polkadot/types'; diff --git a/packages/react-query/src/LockedVote.tsx b/packages/react-query/src/LockedVote.tsx index b3b7ef036aa..7b8a0634bf8 100644 --- a/packages/react-query/src/LockedVote.tsx +++ b/packages/react-query/src/LockedVote.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveCouncilVote } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/NodeName.tsx b/packages/react-query/src/NodeName.tsx index 9a40e491314..a9e8467f2bb 100644 --- a/packages/react-query/src/NodeName.tsx +++ b/packages/react-query/src/NodeName.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-query/src/NodeVersion.tsx b/packages/react-query/src/NodeVersion.tsx index 4320824a9d2..5545e1d1b9c 100644 --- a/packages/react-query/src/NodeVersion.tsx +++ b/packages/react-query/src/NodeVersion.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-query/src/Nonce.tsx b/packages/react-query/src/Nonce.tsx index f75dc1ee8c4..b9b96f0f1ab 100644 --- a/packages/react-query/src/Nonce.tsx +++ b/packages/react-query/src/Nonce.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/PoolSize.tsx b/packages/react-query/src/PoolSize.tsx index 04cd041d50e..7b735f51328 100644 --- a/packages/react-query/src/PoolSize.tsx +++ b/packages/react-query/src/PoolSize.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletBrokerStatusRecord } from '@polkadot/types/lookup'; diff --git a/packages/react-query/src/SessionToTime.tsx b/packages/react-query/src/SessionToTime.tsx index f3d1b98d894..ad814122e47 100644 --- a/packages/react-query/src/SessionToTime.tsx +++ b/packages/react-query/src/SessionToTime.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveSessionProgress } from '@polkadot/api-derive/types'; diff --git a/packages/react-query/src/TimeNow.tsx b/packages/react-query/src/TimeNow.tsx index c9d6a3598e2..dd2a257700c 100644 --- a/packages/react-query/src/TimeNow.tsx +++ b/packages/react-query/src/TimeNow.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Moment } from '@polkadot/types/interfaces'; diff --git a/packages/react-query/src/TotalInactive.tsx b/packages/react-query/src/TotalInactive.tsx index 827b7227f14..f902c7d24ab 100644 --- a/packages/react-query/src/TotalInactive.tsx +++ b/packages/react-query/src/TotalInactive.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-query/src/TotalIssuance.tsx b/packages/react-query/src/TotalIssuance.tsx index 7b7af3baf91..c9d5681cc71 100644 --- a/packages/react-query/src/TotalIssuance.tsx +++ b/packages/react-query/src/TotalIssuance.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import React from 'react'; diff --git a/packages/react-query/src/index.ts b/packages/react-query/src/index.ts index 6d29a47722a..3a2dd795f5d 100644 --- a/packages/react-query/src/index.ts +++ b/packages/react-query/src/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 export { default as Available } from './Available.js'; diff --git a/packages/react-query/src/translate.ts b/packages/react-query/src/translate.ts index a96befe7d5c..f4b7fb65bdf 100644 --- a/packages/react-query/src/translate.ts +++ b/packages/react-query/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-query authors & contributors +// Copyright 2017-2025 @polkadot/react-query authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/react-signer/src/Address.tsx b/packages/react-signer/src/Address.tsx index 676332cc3c3..f6908bcd0b4 100644 --- a/packages/react-signer/src/Address.tsx +++ b/packages/react-signer/src/Address.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-signer/src/Password.tsx b/packages/react-signer/src/Password.tsx index 823f18dd611..1687f7cf937 100644 --- a/packages/react-signer/src/Password.tsx +++ b/packages/react-signer/src/Password.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringPair } from '@polkadot/keyring/types'; diff --git a/packages/react-signer/src/PaymentInfo.tsx b/packages/react-signer/src/PaymentInfo.tsx index b0259b31d28..bf47b32559b 100644 --- a/packages/react-signer/src/PaymentInfo.tsx +++ b/packages/react-signer/src/PaymentInfo.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/promise/types'; diff --git a/packages/react-signer/src/Qr.tsx b/packages/react-signer/src/Qr.tsx index aeac733594a..abb5f68fd82 100644 --- a/packages/react-signer/src/Qr.tsx +++ b/packages/react-signer/src/Qr.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import React, { useCallback, useState } from 'react'; diff --git a/packages/react-signer/src/SignFields.tsx b/packages/react-signer/src/SignFields.tsx index 98ceb345b6c..67b42d4bd1f 100644 --- a/packages/react-signer/src/SignFields.tsx +++ b/packages/react-signer/src/SignFields.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SignerOptions } from '@polkadot/api/submittable/types'; diff --git a/packages/react-signer/src/Tip.tsx b/packages/react-signer/src/Tip.tsx index a27a24674de..1e3c8bd4e76 100644 --- a/packages/react-signer/src/Tip.tsx +++ b/packages/react-signer/src/Tip.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { BN } from '@polkadot/util'; diff --git a/packages/react-signer/src/Transaction.tsx b/packages/react-signer/src/Transaction.tsx index 1f0276ed418..9aee0cf068e 100644 --- a/packages/react-signer/src/Transaction.tsx +++ b/packages/react-signer/src/Transaction.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { QueueTx } from '@polkadot/react-components/Status/types'; diff --git a/packages/react-signer/src/TxSigned.tsx b/packages/react-signer/src/TxSigned.tsx index 8c79282593c..ce902b5c50d 100644 --- a/packages/react-signer/src/TxSigned.tsx +++ b/packages/react-signer/src/TxSigned.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 // This is for the use of `Ledger` diff --git a/packages/react-signer/src/TxUnsigned.tsx b/packages/react-signer/src/TxUnsigned.tsx index 18c5b658dcf..4a1444b217e 100644 --- a/packages/react-signer/src/TxUnsigned.tsx +++ b/packages/react-signer/src/TxUnsigned.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/react-signer/src/index.tsx b/packages/react-signer/src/index.tsx index 38b7d4e3d4c..c7f21fc4c91 100644 --- a/packages/react-signer/src/index.tsx +++ b/packages/react-signer/src/index.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/react-signer/src/signers/AccountSigner.ts b/packages/react-signer/src/signers/AccountSigner.ts index e1d2f2f2904..9162780e86e 100644 --- a/packages/react-signer/src/signers/AccountSigner.ts +++ b/packages/react-signer/src/signers/AccountSigner.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Signer, SignerResult } from '@polkadot/api/types'; diff --git a/packages/react-signer/src/signers/ApiSigner.ts b/packages/react-signer/src/signers/ApiSigner.ts index 26ed58f1b9c..6e2f145f0c6 100644 --- a/packages/react-signer/src/signers/ApiSigner.ts +++ b/packages/react-signer/src/signers/ApiSigner.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableResult } from '@polkadot/api'; diff --git a/packages/react-signer/src/signers/LedgerSigner.ts b/packages/react-signer/src/signers/LedgerSigner.ts index ac4bcbf20cc..f97bbe1246b 100644 --- a/packages/react-signer/src/signers/LedgerSigner.ts +++ b/packages/react-signer/src/signers/LedgerSigner.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 // This is for the use of `Ledger` diff --git a/packages/react-signer/src/signers/QrSigner.ts b/packages/react-signer/src/signers/QrSigner.ts index 4fb5a84854e..babe8ffe1dc 100644 --- a/packages/react-signer/src/signers/QrSigner.ts +++ b/packages/react-signer/src/signers/QrSigner.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Signer, SignerResult } from '@polkadot/api/types'; diff --git a/packages/react-signer/src/signers/index.ts b/packages/react-signer/src/signers/index.ts index 09b12122315..01893e6668c 100644 --- a/packages/react-signer/src/signers/index.ts +++ b/packages/react-signer/src/signers/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 // we use augmented types in this tsconfig diff --git a/packages/react-signer/src/translate.ts b/packages/react-signer/src/translate.ts index 5900cb4f2e5..bf2c4b98264 100644 --- a/packages/react-signer/src/translate.ts +++ b/packages/react-signer/src/translate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import { useTranslation as useTranslationBase } from 'react-i18next'; diff --git a/packages/react-signer/src/types.ts b/packages/react-signer/src/types.ts index ac6a08850f1..180c26b1f2f 100644 --- a/packages/react-signer/src/types.ts +++ b/packages/react-signer/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SignerResult } from '@polkadot/api/types'; diff --git a/packages/react-signer/src/util.ts b/packages/react-signer/src/util.ts index c3427ec31f1..23d0c38ba28 100644 --- a/packages/react-signer/src/util.ts +++ b/packages/react-signer/src/util.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-signer authors & contributors +// Copyright 2017-2025 @polkadot/react-signer authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableResult } from '@polkadot/api'; diff --git a/packages/test-support/scripts/createBounties.ts b/packages/test-support/scripts/createBounties.ts index 534cd8416ec..dc8caab2f69 100644 --- a/packages/test-support/scripts/createBounties.ts +++ b/packages/test-support/scripts/createBounties.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import { createApi } from '@polkadot/test-support/api'; diff --git a/packages/test-support/scripts/lib/bountyWaitFunctions.ts b/packages/test-support/scripts/lib/bountyWaitFunctions.ts index dae6bc025d2..8557b4b55c1 100644 --- a/packages/test-support/scripts/lib/bountyWaitFunctions.ts +++ b/packages/test-support/scripts/lib/bountyWaitFunctions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/scripts/lib/changeBountyStateFunctions.ts b/packages/test-support/scripts/lib/changeBountyStateFunctions.ts index 45f716421be..45ec7075100 100644 --- a/packages/test-support/scripts/lib/changeBountyStateFunctions.ts +++ b/packages/test-support/scripts/lib/changeBountyStateFunctions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/scripts/lib/constants.ts b/packages/test-support/scripts/lib/constants.ts index 8a94337315f..b826186860d 100644 --- a/packages/test-support/scripts/lib/constants.ts +++ b/packages/test-support/scripts/lib/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import { BN } from '@polkadot/util'; diff --git a/packages/test-support/scripts/lib/helpers.ts b/packages/test-support/scripts/lib/helpers.ts index f200da189b6..98a040fc6e0 100644 --- a/packages/test-support/scripts/lib/helpers.ts +++ b/packages/test-support/scripts/lib/helpers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/scripts/lib/multiFunctions.ts b/packages/test-support/scripts/lib/multiFunctions.ts index 8a292917dbb..d1919641d7e 100644 --- a/packages/test-support/scripts/lib/multiFunctions.ts +++ b/packages/test-support/scripts/lib/multiFunctions.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/src/api/createApi.ts b/packages/test-support/src/api/createApi.ts index b5efb61ad96..acf7bc4a60c 100644 --- a/packages/test-support/src/api/createApi.ts +++ b/packages/test-support/src/api/createApi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/src/api/createAugmentedApi.ts b/packages/test-support/src/api/createAugmentedApi.ts index ed71c07d172..8714ae5dfc9 100644 --- a/packages/test-support/src/api/createAugmentedApi.ts +++ b/packages/test-support/src/api/createAugmentedApi.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry } from '@polkadot/types/types'; diff --git a/packages/test-support/src/api/index.ts b/packages/test-support/src/api/index.ts index 624bc094758..148d72642f9 100644 --- a/packages/test-support/src/api/index.ts +++ b/packages/test-support/src/api/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import '@polkadot/api-augment/substrate'; diff --git a/packages/test-support/src/creation/account.ts b/packages/test-support/src/creation/account.ts index 88b33fa6e1b..9412c119ea9 100644 --- a/packages/test-support/src/creation/account.ts +++ b/packages/test-support/src/creation/account.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/test-support/src/creation/balance.ts b/packages/test-support/src/creation/balance.ts index d3b7d2c8e6a..58983684b39 100644 --- a/packages/test-support/src/creation/balance.ts +++ b/packages/test-support/src/creation/balance.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registry } from '@polkadot/types/types'; diff --git a/packages/test-support/src/creation/bounties.ts b/packages/test-support/src/creation/bounties.ts index 8deb4e313f1..573759021bb 100644 --- a/packages/test-support/src/creation/bounties.ts +++ b/packages/test-support/src/creation/bounties.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/src/creation/contact.ts b/packages/test-support/src/creation/contact.ts index 38df33f8ffa..9efb1dd6897 100644 --- a/packages/test-support/src/creation/contact.ts +++ b/packages/test-support/src/creation/contact.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/test-support/src/creation/hashes.ts b/packages/test-support/src/creation/hashes.ts index 1713bb109b3..b71c8d781ea 100644 --- a/packages/test-support/src/creation/hashes.ts +++ b/packages/test-support/src/creation/hashes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Hash } from '@polkadot/types/interfaces'; diff --git a/packages/test-support/src/creation/staking.ts b/packages/test-support/src/creation/staking.ts index e6a0e25a5bb..ef0402ace38 100644 --- a/packages/test-support/src/creation/staking.ts +++ b/packages/test-support/src/creation/staking.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/app-bounties authors & contributors +// Copyright 2017-2025 @polkadot/app-bounties authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PalletStakingStakingLedger } from '@polkadot/types/lookup'; diff --git a/packages/test-support/src/creation/treasury.ts b/packages/test-support/src/creation/treasury.ts index fea5dae6354..2aecb006865 100644 --- a/packages/test-support/src/creation/treasury.ts +++ b/packages/test-support/src/creation/treasury.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { ApiPromise } from '@polkadot/api'; diff --git a/packages/test-support/src/hooks/index.ts b/packages/test-support/src/hooks/index.ts index 3c1644dca14..a2d4b5c1671 100644 --- a/packages/test-support/src/hooks/index.ts +++ b/packages/test-support/src/hooks/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import { extractTime } from '@polkadot/util'; diff --git a/packages/test-support/src/keyring/MemoryStore.ts b/packages/test-support/src/keyring/MemoryStore.ts index a3b889e7f0a..1dfc18deb42 100644 --- a/packages/test-support/src/keyring/MemoryStore.ts +++ b/packages/test-support/src/keyring/MemoryStore.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringJson, KeyringStore } from '@polkadot/ui-keyring/types'; diff --git a/packages/test-support/src/keyring/addresses.ts b/packages/test-support/src/keyring/addresses.ts index 7425f77f7d7..41654c8e949 100644 --- a/packages/test-support/src/keyring/addresses.ts +++ b/packages/test-support/src/keyring/addresses.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export const alice = '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'; diff --git a/packages/test-support/src/keyring/index.ts b/packages/test-support/src/keyring/index.ts index e72b7152a35..feb96698003 100644 --- a/packages/test-support/src/keyring/index.ts +++ b/packages/test-support/src/keyring/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './addresses.js'; diff --git a/packages/test-support/src/keyring/signers.ts b/packages/test-support/src/keyring/signers.ts index 23c349740f8..cd230220524 100644 --- a/packages/test-support/src/keyring/signers.ts +++ b/packages/test-support/src/keyring/signers.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { KeyringPair } from '@polkadot/keyring/types'; diff --git a/packages/test-support/src/mockData/index.ts b/packages/test-support/src/mockData/index.ts index 80bc9549277..650a6ebe3da 100644 --- a/packages/test-support/src/mockData/index.ts +++ b/packages/test-support/src/mockData/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registrar } from '@polkadot/react-hooks/types'; diff --git a/packages/test-support/src/pages/Page.tsx b/packages/test-support/src/pages/Page.tsx index 901a5ce0c0a..6475507402b 100644 --- a/packages/test-support/src/pages/Page.tsx +++ b/packages/test-support/src/pages/Page.tsx @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global jest, fail */ diff --git a/packages/test-support/src/pagesElements/JudgementTag.ts b/packages/test-support/src/pagesElements/JudgementTag.ts index 85b8b78b72c..2fe2fb5d4cb 100644 --- a/packages/test-support/src/pagesElements/JudgementTag.ts +++ b/packages/test-support/src/pagesElements/JudgementTag.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global fail */ diff --git a/packages/test-support/src/pagesElements/Row.ts b/packages/test-support/src/pagesElements/Row.ts index ebd881179f1..828775f0eae 100644 --- a/packages/test-support/src/pagesElements/Row.ts +++ b/packages/test-support/src/pagesElements/Row.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global expect */ diff --git a/packages/test-support/src/pagesElements/Sidebar.ts b/packages/test-support/src/pagesElements/Sidebar.ts index de872bfa350..72262ee032c 100644 --- a/packages/test-support/src/pagesElements/Sidebar.ts +++ b/packages/test-support/src/pagesElements/Sidebar.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global expect */ diff --git a/packages/test-support/src/pagesElements/Table.ts b/packages/test-support/src/pagesElements/Table.ts index 39c5749cbd0..ca88ec023ff 100644 --- a/packages/test-support/src/pagesElements/Table.ts +++ b/packages/test-support/src/pagesElements/Table.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global expect */ diff --git a/packages/test-support/src/pagesElements/index.ts b/packages/test-support/src/pagesElements/index.ts index 9fbbf695aea..f7fed1f92fa 100644 --- a/packages/test-support/src/pagesElements/index.ts +++ b/packages/test-support/src/pagesElements/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './JudgementTag.js'; diff --git a/packages/test-support/src/react/apiInTests.ts b/packages/test-support/src/react/apiInTests.ts index ccfc96eb25a..febb0e092cf 100644 --- a/packages/test-support/src/react/apiInTests.ts +++ b/packages/test-support/src/react/apiInTests.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { PropsWithChildren } from 'react'; diff --git a/packages/test-support/src/react/index.ts b/packages/test-support/src/react/index.ts index 3ceace2e41c..de779cd0d64 100644 --- a/packages/test-support/src/react/index.ts +++ b/packages/test-support/src/react/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './apiInTests.js'; diff --git a/packages/test-support/src/substrate/constants.ts b/packages/test-support/src/substrate/constants.ts index 8827d3ca381..5451e527c90 100644 --- a/packages/test-support/src/substrate/constants.ts +++ b/packages/test-support/src/substrate/constants.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export const SUBSTRATE_PORT = Number.parseInt(process.env.TEST_SUBSTRATE_PORT || '30333'); diff --git a/packages/test-support/src/substrate/index.ts b/packages/test-support/src/substrate/index.ts index efc1b71058d..cdbbb523042 100644 --- a/packages/test-support/src/substrate/index.ts +++ b/packages/test-support/src/substrate/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './constants.js'; diff --git a/packages/test-support/src/transaction/execute.ts b/packages/test-support/src/transaction/execute.ts index 74acdd6141d..13c037496b5 100644 --- a/packages/test-support/src/transaction/execute.ts +++ b/packages/test-support/src/transaction/execute.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { SubmittableExtrinsic } from '@polkadot/api/types'; diff --git a/packages/test-support/src/transaction/index.ts b/packages/test-support/src/transaction/index.ts index 1e08256c9b2..5a63fb0168a 100644 --- a/packages/test-support/src/transaction/index.ts +++ b/packages/test-support/src/transaction/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './execute.js'; diff --git a/packages/test-support/src/types.ts b/packages/test-support/src/types.ts index 5fa01542740..adfebef2876 100644 --- a/packages/test-support/src/types.ts +++ b/packages/test-support/src/types.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/test-support/src/utils/accountDefaults.ts b/packages/test-support/src/utils/accountDefaults.ts index 1456dbafcb7..f61a7485f24 100644 --- a/packages/test-support/src/utils/accountDefaults.ts +++ b/packages/test-support/src/utils/accountDefaults.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { DeriveBalancesAll, DeriveStakingAccount } from '@polkadot/api-derive/types'; diff --git a/packages/test-support/src/utils/balance.ts b/packages/test-support/src/utils/balance.ts index a04e9cc62c5..fd7a9e4dd8f 100644 --- a/packages/test-support/src/utils/balance.ts +++ b/packages/test-support/src/utils/balance.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Balance } from '@polkadot/types/interfaces'; diff --git a/packages/test-support/src/utils/index.ts b/packages/test-support/src/utils/index.ts index 4b4e0cb26c2..b56924ec9b1 100644 --- a/packages/test-support/src/utils/index.ts +++ b/packages/test-support/src/utils/index.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 export * from './accountDefaults.js'; diff --git a/packages/test-support/src/utils/mockApiHooks.ts b/packages/test-support/src/utils/mockApiHooks.ts index c2f60a141a2..14180bbd365 100644 --- a/packages/test-support/src/utils/mockApiHooks.ts +++ b/packages/test-support/src/utils/mockApiHooks.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { Registrar } from '@polkadot/react-hooks/types'; diff --git a/packages/test-support/src/utils/renderedScreenUtils.ts b/packages/test-support/src/utils/renderedScreenUtils.ts index 3b461f81b68..194e8c6b23d 100644 --- a/packages/test-support/src/utils/renderedScreenUtils.ts +++ b/packages/test-support/src/utils/renderedScreenUtils.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-supports authors & contributors +// Copyright 2017-2025 @polkadot/test-supports authors & contributors // SPDX-License-Identifier: Apache-2.0 /* global expect */ diff --git a/packages/test-support/src/utils/waitFor.ts b/packages/test-support/src/utils/waitFor.ts index a3c6b4afa27..4a968f52513 100644 --- a/packages/test-support/src/utils/waitFor.ts +++ b/packages/test-support/src/utils/waitFor.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/test-support authors & contributors +// Copyright 2017-2025 @polkadot/test-support authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { WaitOptions } from '../types.js'; diff --git a/scripts/findPackages.cjs b/scripts/findPackages.cjs index 2272778f0f6..3199f492239 100644 --- a/scripts/findPackages.cjs +++ b/scripts/findPackages.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('node:fs'); diff --git a/scripts/i18nLint.cjs b/scripts/i18nLint.cjs index 34b8d6a44f9..687baa5b414 100644 --- a/scripts/i18nLint.cjs +++ b/scripts/i18nLint.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('node:fs'); diff --git a/scripts/i18nSort.cjs b/scripts/i18nSort.cjs index 16923015108..50d6d2ad5e8 100644 --- a/scripts/i18nSort.cjs +++ b/scripts/i18nSort.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('node:fs'); diff --git a/scripts/imgConvert.mjs b/scripts/imgConvert.mjs index 242b21ff3d6..a00f9acea62 100644 --- a/scripts/imgConvert.mjs +++ b/scripts/imgConvert.mjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 import fs from 'node:fs'; diff --git a/scripts/ipfsUpload.mjs b/scripts/ipfsUpload.mjs index c2f9aac996f..88e3cc004dd 100644 --- a/scripts/ipfsUpload.mjs +++ b/scripts/ipfsUpload.mjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/apps authors & contributors +// Copyright 2017-2025 @polkadot/apps authors & contributors // SPDX-License-Identifier: Apache-2.0 // eslint-disable-next-line @typescript-eslint/ban-ts-comment diff --git a/scripts/robohash.cjs b/scripts/robohash.cjs old mode 100755 new mode 100644 index e645087220d..cef0cd8f6d5 --- a/scripts/robohash.cjs +++ b/scripts/robohash.cjs @@ -1,4 +1,4 @@ -// Copyright 2017-2024 @polkadot/react-components authors & contributors +// Copyright 2017-2025 @polkadot/react-components authors & contributors // SPDX-License-Identifier: Apache-2.0 const fs = require('node:fs');