@tatumio/tatum
Version:
Tatum JS SDK
34 lines • 1.73 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const service_1 = require("../../../service");
const e2e_constant_1 = require("../../e2e.constant");
const utxo_e2e_utils_1 = require("./utxo.e2e.utils");
const utxoTestNetworks = [
{ network: service_1.Network.BITCOIN_TESTNET, type: utxo_e2e_utils_1.UtxoNetworkType.TEST },
{ network: service_1.Network.BITCOIN_TESTNET_4, type: utxo_e2e_utils_1.UtxoNetworkType.TESTNET4 },
{ network: service_1.Network.BITCOIN, type: utxo_e2e_utils_1.UtxoNetworkType.MAIN },
{ network: service_1.Network.DOGECOIN_TESTNET, type: utxo_e2e_utils_1.UtxoNetworkType.TEST },
{ network: service_1.Network.DOGECOIN, type: utxo_e2e_utils_1.UtxoNetworkType.MAIN },
{ network: service_1.Network.LITECOIN_TESTNET, type: utxo_e2e_utils_1.UtxoNetworkType.TEST },
{ network: service_1.Network.LITECOIN, type: utxo_e2e_utils_1.UtxoNetworkType.MAIN },
{
network: service_1.Network.ZCASH_TESTNET,
type: utxo_e2e_utils_1.UtxoNetworkType.TEST,
apiKey: e2e_constant_1.ApiKey.testnet,
skipEstimateSmartFee: true,
},
// { network: Network.ZCASH, type: UtxoNetworkType.MAIN, skipEstimateSmartFee: true },
// {
// network: Network.BITCOIN_CASH_TESTNET,
// type: UtxoNetworkType.TEST,
// apiKey: process.env.V3_API_KEY_TESTNET,
// skipEstimateSmartFee: true,
// },
// { network: Network.BITCOIN_CASH, type: UtxoNetworkType.MAIN, skipEstimateSmartFee: true },
];
describe.each(utxoTestNetworks)('UTXO E2E Test Suite', (testNetwork) => {
describe(testNetwork.network, () => {
utxo_e2e_utils_1.UtxoE2eUtils.e2e(testNetwork);
});
});
//# sourceMappingURL=utxo.rpc.spec.js.map