@ledgerhq/coin-tezos
Version:
22 lines (18 loc) • 408 B
text/typescript
// SPDX-FileCopyrightText: © 2026 LEDGER SAS
// SPDX-License-Identifier: Apache-2.0
export type TezosOperationMode =
| 'send'
| 'delegate'
| 'undelegate'
| 'stake'
| 'unstake'
| 'finalize_unstake'
| 'send_token'
type CapacityStatus = 'normal' | 'full'
export type Baker = {
address: string
name: string
logoURL: string
nominalYield: `${number} %`
capacityStatus: CapacityStatus
}