@near-js/accounts
Version:
Classes encapsulating account-specific functionality
51 lines (50 loc) • 1.04 kB
JavaScript
import {
Account
} from "./account.js";
import {
AccountCreator,
LocalAccountCreator,
UrlAccountCreator
} from "./account_creator.js";
import { Connection } from "./connection.js";
import {
MULTISIG_STORAGE_KEY,
MULTISIG_ALLOWANCE,
MULTISIG_GAS,
MULTISIG_DEPOSIT,
MULTISIG_CHANGE_METHODS,
MULTISIG_CONFIRM_METHODS
} from "./constants.js";
import {
Contract
} from "./contract.js";
import {
ArgumentSchemaError,
ConflictingOptions,
UnknownArgumentError,
UnsupportedSerializationError
} from "./errors.js";
import {
MultisigDeleteRequestRejectionError,
MultisigStateStatus
} from "./types.js";
export {
Account,
AccountCreator,
ArgumentSchemaError,
ConflictingOptions,
Connection,
Contract,
LocalAccountCreator,
MULTISIG_ALLOWANCE,
MULTISIG_CHANGE_METHODS,
MULTISIG_CONFIRM_METHODS,
MULTISIG_DEPOSIT,
MULTISIG_GAS,
MULTISIG_STORAGE_KEY,
MultisigDeleteRequestRejectionError,
MultisigStateStatus,
UnknownArgumentError,
UnsupportedSerializationError,
UrlAccountCreator
};