@fepvenancio/stela-sdk 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -34,6 +34,14 @@ function resolveNetwork(raw) {
|
|
|
34
34
|
if (trimmed) console.warn(`Invalid NETWORK "${trimmed}", falling back to sepolia`);
|
|
35
35
|
return "sepolia";
|
|
36
36
|
}
|
|
37
|
+
var CHAIN_ID = {
|
|
38
|
+
sepolia: "SN_SEPOLIA",
|
|
39
|
+
mainnet: "SN_MAIN"
|
|
40
|
+
};
|
|
41
|
+
var EXPLORER_TX_URL = {
|
|
42
|
+
sepolia: "https://sepolia.voyager.online/tx",
|
|
43
|
+
mainnet: "https://voyager.online/tx"
|
|
44
|
+
};
|
|
37
45
|
|
|
38
46
|
// src/constants/protocol.ts
|
|
39
47
|
var MAX_BPS = 10000n;
|
|
@@ -3082,6 +3090,8 @@ exports.ASSET_TYPE_ENUM = ASSET_TYPE_ENUM;
|
|
|
3082
3090
|
exports.ASSET_TYPE_NAMES = ASSET_TYPE_NAMES;
|
|
3083
3091
|
exports.ApiClient = ApiClient;
|
|
3084
3092
|
exports.ApiError = ApiError;
|
|
3093
|
+
exports.CHAIN_ID = CHAIN_ID;
|
|
3094
|
+
exports.EXPLORER_TX_URL = EXPLORER_TX_URL;
|
|
3085
3095
|
exports.InscriptionClient = InscriptionClient;
|
|
3086
3096
|
exports.LockerClient = LockerClient;
|
|
3087
3097
|
exports.MAX_BPS = MAX_BPS;
|