UNPKG

@radixdlt/application

Version:

A JavaScript client library for interacting with the Radix Distributed Ledger.

12 lines 694 B
import { IntendedStakeTokensAction, StakeTokensInput } from './_types'; import { AccountAddressT } from '@radixdlt/account'; import { Result } from 'neverthrow'; export declare const isStakeTokensInput: (something: unknown) => something is Readonly<{ to_validator: import("@radixdlt/account").ValidatorAddressOrUnsafeInput; amount: import("@radixdlt/primitives").AmountOrUnsafeInput; tokenIdentifier: import("@radixdlt/account").ResourceIdentifierOrUnsafeInput; }>; export declare const IntendedStakeTokens: { create: (input: StakeTokensInput, from_account: AccountAddressT) => Result<IntendedStakeTokensAction, Error>; }; //# sourceMappingURL=intendedStakeTokensAction.d.ts.map