diff --git a/packages/core/src/Cardano/types/Certificate.ts b/packages/core/src/Cardano/types/Certificate.ts index de2969f3b26..e935d94e4d0 100644 --- a/packages/core/src/Cardano/types/Certificate.ts +++ b/packages/core/src/Cardano/types/Certificate.ts @@ -1,13 +1,13 @@ import { Epoch, Hash32ByteBase16, Lovelace, PoolId, PoolParameters, RewardAccount } from '.'; export enum CertificateType { - StakeKeyRegistration = 'StakeKeyRegistration', - StakeKeyDeregistration = 'StakeKeyDeregistration', - PoolRegistration = 'PoolRegistration', - PoolRetirement = 'PoolRetirement', - StakeDelegation = 'StakeDelegation', - MIR = 'MoveInstantaneousRewards', - GenesisKeyDelegation = 'GenesisKeyDelegation' + StakeKeyRegistration = 'StakeKeyRegistrationCertificate', + StakeKeyDeregistration = 'StakeKeyDeregistrationCertificate', + PoolRegistration = 'PoolRegistrationCertificate', + PoolRetirement = 'PoolRetirementCertificate', + StakeDelegation = 'StakeDelegationCertificate', + MIR = 'MirCertificate', + GenesisKeyDelegation = 'GenesisKeyDelegationCertificate' } export interface StakeAddressCertificate { diff --git a/packages/core/src/Cardano/types/StakePool/StakePool.ts b/packages/core/src/Cardano/types/StakePool/StakePool.ts index 7cd63656533..d08d9c5cea2 100644 --- a/packages/core/src/Cardano/types/StakePool/StakePool.ts +++ b/packages/core/src/Cardano/types/StakePool/StakePool.ts @@ -100,6 +100,7 @@ export interface StakePoolTransactions { } export enum StakePoolStatus { + Activating = 'activating', Active = 'active', Retired = 'retired', Retiring = 'retiring'