@aastar/enduser 0.16.12 → 0.16.14

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.
@@ -1,4 +1,5 @@
1
- import { Address, Hash, PublicClient, WalletClient } from 'viem';
1
+ import { Address, Hash } from 'viem';
2
+ import { type PublicClient, type WalletClient } from '@aastar/core';
2
3
  /**
3
4
  * PhD Paper Experiment Test Toolkit
4
5
  *
@@ -29,9 +30,15 @@ import { Address, Hash, PublicClient, WalletClient } from 'viem';
29
30
  * ```
30
31
  */
31
32
  export declare class TestAccountManager {
33
+ /** @internal */
32
34
  private publicClient;
35
+ /** @internal */
33
36
  private walletClient;
34
- constructor(publicClient: PublicClient, walletClient: WalletClient);
37
+ constructor(
38
+ /** @internal */
39
+ publicClient: PublicClient,
40
+ /** @internal */
41
+ walletClient: WalletClient);
35
42
  /**
36
43
  * Prepare complete test environment for PhD experiments
37
44
  *
@@ -33,7 +33,11 @@ import { accountFactoryActions, TEST_ACCOUNT_ADDRESSES } from '@aastar/core';
33
33
  export class TestAccountManager {
34
34
  publicClient;
35
35
  walletClient;
36
- constructor(publicClient, walletClient) {
36
+ constructor(
37
+ /** @internal */
38
+ publicClient,
39
+ /** @internal */
40
+ walletClient) {
37
41
  this.publicClient = publicClient;
38
42
  this.walletClient = walletClient;
39
43
  if (!walletClient.account) {
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@aastar/enduser",
3
- "version": "0.16.12",
3
+ "version": "0.16.14",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
4
7
  "type": "module",
5
8
  "description": "Enduser client for AAstar SDK",
6
9
  "main": "dist/index.js",
@@ -17,7 +20,7 @@
17
20
  "license": "MIT",
18
21
  "dependencies": {
19
22
  "viem": "2.43.3",
20
- "@aastar/core": "0.16.12"
23
+ "@aastar/core": "0.16.14"
21
24
  },
22
25
  "devDependencies": {
23
26
  "typescript": "5.7.2"