@hub3js/namespaces 0.1.2-next.0 → 0.1.2-next.2
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/namespaces.d.ts +5 -5
- package/dist/namespaces.d.ts.map +1 -1
- package/package.json +49 -1
- package/src/namespaces.ts +5 -5
- package/CHANGELOG.md +0 -12
package/dist/namespaces.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { EvmActions } from '@hub3js/evm';
|
|
2
2
|
import type { SolanaActions } from '@hub3js/solana';
|
|
3
|
-
import type {
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
6
|
-
import type {
|
|
3
|
+
import type { XRPLActions } from '@hub3js/xrpl';
|
|
4
|
+
import type { SuiActions } from '@hub3js/sui';
|
|
5
|
+
import type { StarknetActions } from '@hub3js/starknet';
|
|
6
|
+
import type { StellarActions } from '@hub3js/stellar';
|
|
7
|
+
import type { TonActions } from '@hub3js/tvm';
|
|
7
8
|
import type { TronActions } from '@rango-dev/wallets-core/namespaces/tron';
|
|
8
9
|
import type { UtxoActions } from '@rango-dev/wallets-core/namespaces/utxo';
|
|
9
|
-
import type { XRPLActions } from '@rango-dev/wallets-core/namespaces/xrpl';
|
|
10
10
|
export interface DefaultNamespaces {
|
|
11
11
|
evm: EvmActions;
|
|
12
12
|
solana: SolanaActions;
|
package/dist/namespaces.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"namespaces.d.ts","sourceRoot":"","sources":["../src/namespaces.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"namespaces.d.ts","sourceRoot":"","sources":["../src/namespaces.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yCAAyC,CAAC;AAC3E,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yCAAyC,CAAC;AAE3E,MAAM,WAAW,iBAAiB;IAChC,GAAG,EAAE,UAAU,CAAC;IAChB,MAAM,EAAE,aAAa,CAAC;IACtB,GAAG,EAAE,UAAU,CAAC;IAChB,IAAI,EAAE,WAAW,CAAC;IAClB,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,EAAE,eAAe,CAAC;IAC1B,IAAI,EAAE,WAAW,CAAC;IAClB,GAAG,EAAE,UAAU,CAAC;IAChB,OAAO,EAAE,cAAc,CAAC;CACzB;AAOD,KAAK,cAAc,GACf,KAAK,GACL,QAAQ,GACR,MAAM,GACN,UAAU,GACV,MAAM,GACN,KAAK,GACL,KAAK,GACL,MAAM,GACN,SAAS,CAAC;AAEd,MAAM,MAAM,SAAS,GAAG,cAAc,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1 +1,49 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@hub3js/namespaces",
|
|
3
|
+
"version": "0.1.2-next.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"source": "./src/mod.ts",
|
|
7
|
+
"main": "./dist/mod.js",
|
|
8
|
+
"typings": "./dist/mod.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"default": "./dist/mod.js",
|
|
12
|
+
"types": "./dist/mod.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"src"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsc -p tsconfig.build.json",
|
|
21
|
+
"ts-check": "tsc --declaration --emitDeclarationOnly -p tsconfig.json",
|
|
22
|
+
"clean": "rimraf dist",
|
|
23
|
+
"format": "prettier --write '{.,src}/**/*.{ts,tsx}'",
|
|
24
|
+
"lint": "eslint \"**/*.{ts,tsx}\""
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@rango-dev/wallets-core": "^0.59.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@mysten/sui": "^1.21.2",
|
|
31
|
+
"@mysten/wallet-standard": "^0.13.26",
|
|
32
|
+
"@rango-dev/wallets-core": "^0.59.0",
|
|
33
|
+
"@types/urijs": "^1.19.26",
|
|
34
|
+
"urijs": "^1.19.11",
|
|
35
|
+
"xrpl": "^4.6.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@hub3js/evm": "^0.2.2-next.0",
|
|
39
|
+
"@hub3js/solana": "^0.2.2-next.0",
|
|
40
|
+
"@hub3js/starknet": "^0.1.1-next.0",
|
|
41
|
+
"@hub3js/stellar": "^0.1.1-next.0",
|
|
42
|
+
"@hub3js/sui": "^0.1.1-next.0",
|
|
43
|
+
"@hub3js/tvm": "^0.1.1-next.0",
|
|
44
|
+
"@hub3js/xrpl": "^0.1.1-next.0"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
}
|
|
49
|
+
}
|
package/src/namespaces.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { EvmActions } from '@hub3js/evm';
|
|
2
2
|
import type { SolanaActions } from '@hub3js/solana';
|
|
3
|
-
import type {
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
6
|
-
import type {
|
|
3
|
+
import type { XRPLActions } from '@hub3js/xrpl';
|
|
4
|
+
import type { SuiActions } from '@hub3js/sui';
|
|
5
|
+
import type { StarknetActions } from '@hub3js/starknet';
|
|
6
|
+
import type { StellarActions } from '@hub3js/stellar';
|
|
7
|
+
import type { TonActions } from '@hub3js/tvm';
|
|
7
8
|
import type { TronActions } from '@rango-dev/wallets-core/namespaces/tron';
|
|
8
9
|
import type { UtxoActions } from '@rango-dev/wallets-core/namespaces/utxo';
|
|
9
|
-
import type { XRPLActions } from '@rango-dev/wallets-core/namespaces/xrpl';
|
|
10
10
|
|
|
11
11
|
export interface DefaultNamespaces {
|
|
12
12
|
evm: EvmActions;
|
package/CHANGELOG.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
## [0.1.1](https://github.com/rango-exchange/hub3js/compare/namespaces@0.1.0...namespaces@0.1.1) (2026-06-03)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* removed cosmos ([4878e9d](https://github.com/rango-exchange/hub3js/commit/4878e9d89385f65a43b5a6f663fcdff9627427c9))
|
|
7
|
-
# 0.1.0 (2026-06-03)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
### Bug Fixes
|
|
11
|
-
|
|
12
|
-
* modified exports ([88cec1f](https://github.com/rango-exchange/hub3js/commit/88cec1f9578ffedb9c79106656c5f3a37660e7e8))
|