import type { ApiInterfaceRx } from '@polkadot/api-base/types'; import type { u32 } from '@polkadot/types'; import type { Balance, BlockNumber, BountyIndex, Hash, Proposal, ProposalIndex, SetIndex, Votes } from '@polkadot/types/interfaces'; import type { PalletBountiesBounty, PalletTreasuryProposal } from '@polkadot/types/lookup'; import type { BN } from '@polkadot/util'; import type { ExactDerive } from './derive.js'; export * from './accounts/types.js'; export * from './bagsList/types.js'; export * from './balances/types.js'; export * from './council/types.js'; export * from './crowdloan/types.js'; export * from './democracy/types.js'; export * from './elections/types.js'; export * from './parachains/types.js'; export * from './session/types.js'; export * from './society/types.js'; export * from './staking/types.js'; export * from './type/types.js'; export interface DeriveApi extends ApiInterfaceRx { derive: ExactDerive; } export interface DeriveContractFees { callBaseFee: BN; contractFee: BN; creationFee: BN; rentByteFee: BN; rentDepositOffset: BN; surchargeReward: BN; tombstoneDeposit: BN; transactionBaseFee: BN; transactionByteFee: BN; transferFee: BN; } export interface DeriveCollectiveProposal { hash: Hash; proposal: Proposal | null; votes: Votes | null; } export interface DeriveFees { creationFee: Balance; existentialDeposit: Balance; transactionBaseFee: Balance; transactionByteFee: Balance; transferFee: Balance; } export interface DeriveHeartbeatAuthor { blockCount: u32; hasMessage: boolean; isOnline: boolean; } export type DeriveHeartbeats = Record; export interface RecentlyOffline { blockNumber: BlockNumber; count: BN; } export type DeriveRecentlyOffline = Record; export interface DeriveTreasuryProposal { council: DeriveCollectiveProposal[]; id: ProposalIndex; proposal: PalletTreasuryProposal; } export interface DeriveTreasuryProposals { approvals: DeriveTreasuryProposal[]; proposalCount: ProposalIndex; proposals: DeriveTreasuryProposal[]; } export interface VoterPosition { globalIndex: BN; index: BN; setIndex: SetIndex; } export type DeriveVoterPositions = Record; export interface DeriveBounty { bounty: PalletBountiesBounty; description: string; index: BountyIndex; proposals: DeriveCollectiveProposal[]; } export type DeriveBounties = DeriveBounty[];