Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/eleven-clubs-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@human-protocol/sdk": patch
---

Change contract visibility from private to public in EscrowClient and KVStoreClient
2 changes: 1 addition & 1 deletion packages/sdk/typescript/human-protocol-sdk/src/escrow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ import {
* ```
*/
export class EscrowClient extends BaseEthersClient {
private escrowFactoryContract: EscrowFactory;
public escrowFactoryContract: EscrowFactory;

/**
* **EscrowClient constructor**
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/typescript/human-protocol-sdk/src/kvstore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ import { IKVStore, SubgraphOptions } from './interfaces';
*/

export class KVStoreClient extends BaseEthersClient {
private contract: KVStore;
public contract: KVStore;

/**
* **KVStoreClient constructor**
Expand Down
Loading