'use strict'; import * as providers from './providers'; import * as utils from './utils'; import * as keyStores from './key_stores'; import * as transactions from './transaction'; import { Account } from './account'; import * as accountCreator from './account_creator'; import { Connection } from './connection'; import { Signer, InMemorySigner } from './signer'; import { Contract } from './contract'; import { KeyPair } from './utils/key_pair'; import { connect } from './near'; // TODO: Deprecate and remove WalletAccount import { WalletAccount, WalletConnection } from './wallet-account'; export { accountCreator, keyStores, providers, utils, transactions, Account, Connection, Contract, InMemorySigner, Signer, KeyPair, connect, WalletAccount, WalletConnection };