@c7-digital/ledger 0.0.4 → 0.0.5

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.md CHANGED
@@ -30,7 +30,7 @@ pnpm exec ledger-build --sdk-version=3.4.0 # Target specific SDK version
30
30
  ### Programmatic Usage
31
31
 
32
32
  ```typescript
33
- import { build } from "@c7/ledger/scripts/build";
33
+ import { build } from "@c7-digital/ledger/scripts/build";
34
34
 
35
35
  await build();
36
36
  ```
@@ -89,7 +89,7 @@ To use this build system in other projects:
89
89
  1. **Install the package**:
90
90
 
91
91
  ```bash
92
- pnpm install @c7/ledger
92
+ pnpm install @c7-digital/ledger
93
93
  ```
94
94
 
95
95
  2. **Add to package.json**:
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @c7/ledger
1
+ # @c7-digital/ledger
2
2
 
3
3
  OpenAPI v2 compatible Daml ledger client (that could replace `@daml/ledger`) for the new Canton JSON API v2.
4
4
 
@@ -27,7 +27,7 @@ This package follows the Canton SDK versioning scheme. The package version match
27
27
  ## Installation
28
28
 
29
29
  ```bash
30
- pnpm install @c7/ledger
30
+ pnpm install @c7-digital/ledger
31
31
  ```
32
32
 
33
33
  Or build from source:
@@ -40,7 +40,7 @@ pnpm build
40
40
  ## Usage
41
41
 
42
42
  ```typescript
43
- import { Ledger } from "@c7/ledger";
43
+ import { Ledger } from "@c7-digital/ledger";
44
44
 
45
45
  const ledger = new Ledger({
46
46
  token: "your-jwt-token",