@dojima-wallet/transfer
Version:
Transfer assets from account to account
25 lines (23 loc) • 659 B
text/typescript
import ArweaveChain from "./chains/arweave";
// import BitcoinChain from "./chains/bitcoin";
import DojimaChain from "./chains/dojima";
import EthereumChain from "./chains/ethereum";
import HermesChain from "./chains/hermes";
import SolanaChain from "./chains/solana";
import PolkadotChain from "./chains/polkadot";
import {
GasfeeResult,
UsdtTokenGasFeeResult,
PoolDataResult,
} from "./chains/types";
import { getPoolData } from "./chains/utils";
export { GasfeeResult, UsdtTokenGasFeeResult, PoolDataResult, getPoolData };
export {
SolanaChain,
ArweaveChain,
DojimaChain,
EthereumChain,
HermesChain,
// BitcoinChain,
PolkadotChain,
};