diff --git a/packages/blaze-core/src/types.ts b/packages/blaze-core/src/types.ts index 2ef190a..bfd6326 100644 --- a/packages/blaze-core/src/types.ts +++ b/packages/blaze-core/src/types.ts @@ -140,7 +140,7 @@ export const PoolId: { fromKeyHash(value: Crypto.Ed25519KeyHashHex): PoolId; toKeyHash(poolId: PoolId): Crypto.Ed25519KeyHashHex; } = C.Cardano.PoolId; -export type PoolId = OpaqueString<'PoolId'>; +export type PoolId = OpaqueString<"PoolId">; export const StakeRegistration = C.Serialization.StakeRegistration; export type StakeRegistration = C.Serialization.StakeRegistration; @@ -222,10 +222,13 @@ export type CborReaderState = C.Serialization.CborReaderState; export const RewardAccount: { (value: string): C.Cardano.RewardAccount; toHash(rewardAccount: C.Cardano.RewardAccount): Hash28ByteBase16; - fromCredential(credential: C.Cardano.Credential, networkId: C.Cardano.NetworkId): C.Cardano.RewardAccount; + fromCredential( + credential: C.Cardano.Credential, + networkId: C.Cardano.NetworkId, + ): C.Cardano.RewardAccount; toNetworkId(rewardAccount: C.Cardano.RewardAccount): C.Cardano.NetworkId; } = C.Cardano.RewardAccount; -export type RewardAccount = OpaqueString<'RewardAccount'>; +export type RewardAccount = OpaqueString<"RewardAccount">; export const Hash = C.Serialization.Hash; export type Hash = C.Serialization.Hash;