@magiceden/magiceden-sdk
Version:
A TypeScript SDK for interacting with Magic Eden's API across multiple chains.
30 lines (29 loc) • 902 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Blockchain = exports.ChainType = void 0;
/**
* Chain type
*/
var ChainType;
(function (ChainType) {
ChainType["SOLANA"] = "solana";
ChainType["EVM"] = "evm";
})(ChainType || (exports.ChainType = ChainType = {}));
/**
* Blockchain type
*/
var Blockchain;
(function (Blockchain) {
Blockchain["SOLANA"] = "solana";
Blockchain["BITCOIN"] = "bitcoin";
Blockchain["ETHEREUM"] = "ethereum";
Blockchain["POLYGON"] = "polygon";
Blockchain["BASE"] = "base";
Blockchain["SEI"] = "sei";
Blockchain["ARBITRUM"] = "arbitrum";
Blockchain["APECHAIN"] = "apechain";
Blockchain["BERACHAIN"] = "berachain";
Blockchain["MONAD_TESTNET"] = "monad-testnet";
Blockchain["BSC"] = "bsc";
Blockchain["ABSTRACT"] = "abstract";
})(Blockchain || (exports.Blockchain = Blockchain = {}));