@atlantis-l/radix-tool
Version:
A tool to interact with the radix network
19 lines (18 loc) • 452 B
TypeScript
import { Wallet } from "./wallet";
import { Amount } from "@radixdlt/radix-engine-toolkit";
declare enum TokenType {
FUNGIBLE = 0,
NONFUNGIBLE = 1
}
interface TransferInfo {
tokenType: TokenType;
tokenAddress: string;
amount?: Amount;
nonFungibleLocalIds?: string[];
}
interface CustomOption {
fromWallet: Wallet;
toAddress: string;
transferInfos: TransferInfo[];
}
export { TokenType, CustomOption, TransferInfo };