@hardkas/bridge-local 0.8.5-alpha → 0.8.9-alpha

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +18 -8
package/dist/index.js CHANGED
@@ -75,7 +75,7 @@ import { resolveHardkasAccountAddress, listHardkasAccounts } from "@hardkas/acco
75
75
  async function resolveBridgeLocalContext(options) {
76
76
  const { config, sessionName, from, toIgra } = options;
77
77
  if (from && toIgra) {
78
- const l1Address = resolveHardkasAccountAddress(from, config.config);
78
+ const l1Address = await resolveHardkasAccountAddress(from, config.config);
79
79
  return {
80
80
  source: "explicit",
81
81
  l1: { walletName: from, address: l1Address },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hardkas/bridge-local",
3
- "version": "0.8.5-alpha",
3
+ "version": "0.8.9-alpha",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,12 +12,12 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@hardkas/accounts": "0.8.5-alpha",
16
- "@hardkas/artifacts": "0.8.5-alpha",
17
- "@hardkas/core": "0.8.5-alpha",
18
- "@hardkas/config": "0.8.5-alpha",
19
- "@hardkas/sessions": "0.8.5-alpha",
20
- "@hardkas/tx-builder": "0.8.5-alpha"
15
+ "@hardkas/accounts": "0.8.9-alpha",
16
+ "@hardkas/artifacts": "0.8.9-alpha",
17
+ "@hardkas/core": "0.8.9-alpha",
18
+ "@hardkas/sessions": "0.8.9-alpha",
19
+ "@hardkas/tx-builder": "0.8.9-alpha",
20
+ "@hardkas/config": "0.8.9-alpha"
21
21
  },
22
22
  "devDependencies": {
23
23
  "tsup": "^8.3.5",
@@ -28,8 +28,18 @@
28
28
  "author": "Javier Rodriguez",
29
29
  "files": [
30
30
  "dist",
31
- "README.md"
31
+ "README.md",
32
+ "LICENSE"
32
33
  ],
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/KasLabDevs/HardKas.git",
37
+ "directory": "packages/bridge-local"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/KasLabDevs/HardKas/issues"
41
+ },
42
+ "homepage": "https://github.com/KasLabDevs/HardKas/tree/main/packages/bridge-local#readme",
33
43
  "scripts": {
34
44
  "build": "tsup src/index.ts --format esm --dts --clean",
35
45
  "test": "vitest run --passWithNoTests",