mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-05-07 10:47:59 +00:00
21 lines
472 B
TypeScript
21 lines
472 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
export const AddressIdentityOtherDiscordKey = 'Discord';
|
|
|
|
export enum CoreTimeTypes {
|
|
'Reservation',
|
|
'Lease',
|
|
'Bulk Coretime',
|
|
'On Demand'
|
|
}
|
|
|
|
export const ChainRenewalStatus = {
|
|
Eligible: 'eligible',
|
|
None: '-',
|
|
Renewed: 'renewed'
|
|
};
|
|
|
|
// block time on coretime chain is 2 x slower than on relay chain
|
|
export const BlockTimeCoretimeToRelayConstant = 2;
|