Skip to content

Commit 05bf25a

Browse files
committed
Change contract visibility from private to public in EscrowClient and KVStoreClient
1 parent 45f5f3d commit 05bf25a

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.changeset/eleven-clubs-itch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@human-protocol/sdk": patch
3+
---
4+
5+
Change contract visibility from private to public in EscrowClient and KVStoreClient

packages/sdk/typescript/human-protocol-sdk/src/escrow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ import {
146146
* ```
147147
*/
148148
export class EscrowClient extends BaseEthersClient {
149-
private escrowFactoryContract: EscrowFactory;
149+
public escrowFactoryContract: EscrowFactory;
150150

151151
/**
152152
* **EscrowClient constructor**

packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ import { IKVStore, SubgraphOptions } from './interfaces';
9696
*/
9797

9898
export class KVStoreClient extends BaseEthersClient {
99-
private contract: KVStore;
99+
public contract: KVStore;
100100

101101
/**
102102
* **KVStoreClient constructor**

0 commit comments

Comments
 (0)