@galacticcouncil/xc-cfg 2.5.0 → 2.6.0
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/build/assets.d.ts +2 -0
- package/build/chains/index.d.ts +2 -0
- package/build/chains/near/index.d.ts +4 -0
- package/build/chains/near/mainnet.d.ts +8 -0
- package/build/chains/zcash/index.d.ts +4 -0
- package/build/chains/zcash/mainnet.d.ts +10 -0
- package/build/index.cjs +1 -1
- package/build/index.mjs +1 -1
- package/package.json +2 -2
package/build/assets.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare const lbtc: Asset;
|
|
|
25
25
|
export declare const ewt: Asset;
|
|
26
26
|
export declare const link: Asset;
|
|
27
27
|
export declare const myth: Asset;
|
|
28
|
+
export declare const near: Asset;
|
|
28
29
|
export declare const neuro: Asset;
|
|
29
30
|
export declare const pen: Asset;
|
|
30
31
|
export declare const paxg: Asset;
|
|
@@ -53,5 +54,6 @@ export declare const wbtc_wh: Asset;
|
|
|
53
54
|
export declare const wsol: Asset;
|
|
54
55
|
export declare const wsteth: Asset;
|
|
55
56
|
export declare const wud: Asset;
|
|
57
|
+
export declare const zec: Asset;
|
|
56
58
|
export declare const assets: Asset[];
|
|
57
59
|
export declare const assetsMap: Map<string, Asset>;
|
package/build/chains/index.d.ts
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { NearChain } from '@galacticcouncil/xc-core';
|
|
2
|
+
/**
|
|
3
|
+
* NEAR mainnet.
|
|
4
|
+
*
|
|
5
|
+
* - Standalone: carries no transfer routes, so no platform adapter is built
|
|
6
|
+
* - Registered for balances, address validation and metadata only
|
|
7
|
+
*/
|
|
8
|
+
export declare const near_chain: NearChain;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ZecChain } from '@galacticcouncil/xc-core';
|
|
2
|
+
/**
|
|
3
|
+
* Zcash mainnet.
|
|
4
|
+
*
|
|
5
|
+
* - Standalone: carries no transfer routes, so no platform adapter is built
|
|
6
|
+
* - Transparent addresses only — `t1` and `t3`, what NEAR Intents withdraws to
|
|
7
|
+
* - No `balanceReader`: Zcash is UTXO and has no canonical public balance API,
|
|
8
|
+
* so balances stay unavailable until an indexer is supplied
|
|
9
|
+
*/
|
|
10
|
+
export declare const zcash: ZecChain;
|