Skip to content

Commit 3fbc5fc

Browse files
authored
Merge pull request #2529 from humanprotocol/develop
Release 20240919
2 parents 6cfb4a4 + 463f374 commit 3fbc5fc

File tree

216 files changed

+5530
-21314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+5530
-21314
lines changed

docs/sdk/typescript/base/classes/BaseEthersClient.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The network information required to connect to the contracts
4040

4141
#### Defined in
4242

43-
[base.ts:20](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
43+
[base.ts:20](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
4444

4545
## Properties
4646

@@ -50,7 +50,7 @@ The network information required to connect to the contracts
5050
5151
#### Defined in
5252

53-
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
53+
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
5454

5555
***
5656

@@ -60,4 +60,4 @@ The network information required to connect to the contracts
6060
6161
#### Defined in
6262

63-
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
63+
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)

docs/sdk/typescript/encryption/classes/Encryption.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88

99
## Introduction
1010

11-
Class for sign and decrypt messages.
11+
Class for signing and decrypting messages.
1212

13-
The algorithm includes the implementation of the [PGP encryption algorithm](https://github.com/openpgpjs/openpgpjs) multi-public key encryption on typescript.
14-
Using the vanilla [ed25519](https://en.wikipedia.org/wiki/EdDSA#Ed25519) implementation Schnorr signatures for signature and [curve25519](https://en.wikipedia.org/wiki/Curve25519) for encryption. [Learn more](https://wiki.polkadot.network/docs/learn-cryptography).
13+
The algorithm includes the implementation of the [PGP encryption algorithm](https://github.com/openpgpjs/openpgpjs) multi-public key encryption on typescript, and uses the vanilla [ed25519](https://en.wikipedia.org/wiki/EdDSA#Ed25519) implementation Schnorr signature for signatures and [curve25519](https://en.wikipedia.org/wiki/Curve25519) for encryption. [Learn more](https://wiki.polkadot.network/docs/learn-cryptography).
1514

16-
To get an instance of this class, is recommended to initialize it using the static `build` method.
15+
To get an instance of this class, initialization is recommended using the static `build` method.
1716

1817
```ts
1918
static async build(privateKeyArmored: string, passphrase?: string): Promise<Encryption>
@@ -66,15 +65,15 @@ The private key.
6665

6766
#### Defined in
6867

69-
[encryption.ts:53](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L53)
68+
[encryption.ts:52](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L52)
7069

7170
## Methods
7271

7372
### decrypt()
7473

7574
> **decrypt**(`message`, `publicKey`?): `Promise`\<`string`\>
7675
77-
This function decrypt message message using the private key. In addition, the public key can be added for signature verification.
76+
This function decrypts messages using the private key. In addition, the public key can be added for signature verification.
7877

7978
#### Parameters
8079

@@ -84,7 +83,7 @@ Message to decrypt.
8483

8584
**publicKey?**: `string`
8685

87-
Public key used to verify signature if needed. Optional.
86+
Public key used to verify signature if needed. This is optional.
8887

8988
#### Returns
9089

@@ -118,7 +117,7 @@ const resultMessage = await encription.decrypt('message');
118117

119118
#### Defined in
120119

121-
[encryption.ts:180](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L180)
120+
[encryption.ts:179](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L179)
122121

123122
***
124123

@@ -154,7 +153,7 @@ const resultMessage = await encription.sign('message');
154153

155154
#### Defined in
156155

157-
[encryption.ts:217](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L217)
156+
[encryption.ts:216](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L216)
158157

159158
***
160159

@@ -219,7 +218,7 @@ const resultMessage = await encription.signAndEncrypt('message', publicKeys);
219218

220219
#### Defined in
221220

222-
[encryption.ts:129](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L129)
221+
[encryption.ts:128](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L128)
223222

224223
***
225224

@@ -247,4 +246,4 @@ Optional: The passphrase for the private key.
247246

248247
#### Defined in
249248

250-
[encryption.ts:64](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L64)
249+
[encryption.ts:63](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L63)

docs/sdk/typescript/encryption/classes/EncryptionUtils.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const result = await EncriptionUtils.encrypt('message', publicKeys);
9797

9898
#### Defined in
9999

100-
[encryption.ts:422](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L422)
100+
[encryption.ts:421](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L421)
101101

102102
***
103103

@@ -152,7 +152,7 @@ const result = await EncriptionUtils.generateKeyPair(name, email, passphrase);
152152

153153
#### Defined in
154154

155-
[encryption.ts:360](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L360)
155+
[encryption.ts:359](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L359)
156156

157157
***
158158

@@ -184,7 +184,7 @@ const signedData = await EncriptionUtils.getSignedData('message');
184184

185185
#### Defined in
186186

187-
[encryption.ts:317](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L317)
187+
[encryption.ts:316](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L316)
188188

189189
***
190190

@@ -232,7 +232,7 @@ if (isEncrypted) {
232232

233233
#### Defined in
234234

235-
[encryption.ts:471](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L471)
235+
[encryption.ts:470](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L470)
236236

237237
***
238238

@@ -280,4 +280,4 @@ const result = await EncriptionUtils.verify('message', publicKey);
280280

281281
#### Defined in
282282

283-
[encryption.ts:284](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L284)
283+
[encryption.ts:283](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L283)

docs/sdk/typescript/escrow/classes/EscrowClient.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ The Runner object to interact with the Ethereum network
104104

105105
#### Defined in
106106

107-
[escrow.ts:129](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L129)
107+
[escrow.ts:129](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L129)
108108

109109
## Properties
110110

@@ -118,7 +118,7 @@ The Runner object to interact with the Ethereum network
118118

119119
#### Defined in
120120

121-
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
121+
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
122122

123123
***
124124

@@ -132,7 +132,7 @@ The Runner object to interact with the Ethereum network
132132

133133
#### Defined in
134134

135-
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
135+
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
136136

137137
## Methods
138138

@@ -178,7 +178,7 @@ await escrowClient.abort('0x62dD51230A30401C455c8398d06F85e4EaB6309f');
178178

179179
#### Defined in
180180

181-
[escrow.ts:837](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L837)
181+
[escrow.ts:837](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L837)
182182

183183
***
184184

@@ -229,7 +229,7 @@ await escrowClient.addTrustedHandlers('0x62dD51230A30401C455c8398d06F85e4EaB6309
229229

230230
#### Defined in
231231

232-
[escrow.ts:885](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L885)
232+
[escrow.ts:885](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L885)
233233

234234
***
235235

@@ -296,7 +296,7 @@ await escrowClient.bulkPayOut('0x62dD51230A30401C455c8398d06F85e4EaB6309f', reci
296296

297297
#### Defined in
298298

299-
[escrow.ts:650](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L650)
299+
[escrow.ts:650](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L650)
300300

301301
***
302302

@@ -342,7 +342,7 @@ await escrowClient.cancel('0x62dD51230A30401C455c8398d06F85e4EaB6309f');
342342

343343
#### Defined in
344344

345-
[escrow.ts:753](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L753)
345+
[escrow.ts:753](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L753)
346346

347347
***
348348

@@ -388,7 +388,7 @@ await escrowClient.complete('0x62dD51230A30401C455c8398d06F85e4EaB6309f');
388388

389389
#### Defined in
390390

391-
[escrow.ts:592](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L592)
391+
[escrow.ts:592](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L592)
392392

393393
***
394394

@@ -455,7 +455,7 @@ const escrowAddress = await escrowClient.createAndSetupEscrow(tokenAddress, trus
455455

456456
#### Defined in
457457

458-
[escrow.ts:415](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L415)
458+
[escrow.ts:415](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L415)
459459

460460
***
461461

@@ -512,7 +512,7 @@ const escrowAddress = await escrowClient.createEscrow(tokenAddress, trustedHandl
512512

513513
#### Defined in
514514

515-
[escrow.ts:209](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L209)
515+
[escrow.ts:209](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L209)
516516

517517
***
518518

@@ -561,7 +561,7 @@ await escrowClient.fund('0x62dD51230A30401C455c8398d06F85e4EaB6309f', amount);
561561

562562
#### Defined in
563563

564-
[escrow.ts:463](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L463)
564+
[escrow.ts:463](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L463)
565565

566566
***
567567

@@ -599,7 +599,7 @@ const balance = await escrowClient.getBalance('0x62dD51230A30401C455c8398d06F85e
599599

600600
#### Defined in
601601

602-
[escrow.ts:940](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L940)
602+
[escrow.ts:940](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L940)
603603

604604
***
605605

@@ -637,7 +637,7 @@ const oracleAddress = await escrowClient.getExchangeOracleAddress('0x62dD51230A3
637637

638638
#### Defined in
639639

640-
[escrow.ts:1320](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1320)
640+
[escrow.ts:1320](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1320)
641641

642642
***
643643

@@ -675,7 +675,7 @@ const factoryAddress = await escrowClient.getFactoryAddress('0x62dD51230A30401C4
675675

676676
#### Defined in
677677

678-
[escrow.ts:1358](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1358)
678+
[escrow.ts:1358](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1358)
679679

680680
***
681681

@@ -713,7 +713,7 @@ const intemediateResultsUrl = await escrowClient.getIntermediateResultsUrl('0x62
713713

714714
#### Defined in
715715

716-
[escrow.ts:1092](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1092)
716+
[escrow.ts:1092](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1092)
717717

718718
***
719719

@@ -751,7 +751,7 @@ const jobLauncherAddress = await escrowClient.getJobLauncherAddress('0x62dD51230
751751

752752
#### Defined in
753753

754-
[escrow.ts:1244](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1244)
754+
[escrow.ts:1244](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1244)
755755

756756
***
757757

@@ -789,7 +789,7 @@ const manifestHash = await escrowClient.getManifestHash('0x62dD51230A30401C455c8
789789

790790
#### Defined in
791791

792-
[escrow.ts:978](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L978)
792+
[escrow.ts:978](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L978)
793793

794794
***
795795

@@ -827,7 +827,7 @@ const manifestUrl = await escrowClient.getManifestUrl('0x62dD51230A30401C455c839
827827

828828
#### Defined in
829829

830-
[escrow.ts:1016](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1016)
830+
[escrow.ts:1016](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1016)
831831

832832
***
833833

@@ -865,7 +865,7 @@ const oracleAddress = await escrowClient.getRecordingOracleAddress('0x62dD51230A
865865

866866
#### Defined in
867867

868-
[escrow.ts:1206](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1206)
868+
[escrow.ts:1206](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1206)
869869

870870
***
871871

@@ -903,7 +903,7 @@ const oracleAddress = await escrowClient.getReputationOracleAddress('0x62dD51230
903903

904904
#### Defined in
905905

906-
[escrow.ts:1282](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1282)
906+
[escrow.ts:1282](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1282)
907907

908908
***
909909

@@ -941,7 +941,7 @@ const resultsUrl = await escrowClient.getResultsUrl('0x62dD51230A30401C455c8398d
941941

942942
#### Defined in
943943

944-
[escrow.ts:1054](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1054)
944+
[escrow.ts:1054](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1054)
945945

946946
***
947947

@@ -979,7 +979,7 @@ const status = await escrowClient.getStatus('0x62dD51230A30401C455c8398d06F85e4E
979979

980980
#### Defined in
981981

982-
[escrow.ts:1168](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1168)
982+
[escrow.ts:1168](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1168)
983983

984984
***
985985

@@ -1017,7 +1017,7 @@ const tokenAddress = await escrowClient.getTokenAddress('0x62dD51230A30401C455c8
10171017

10181018
#### Defined in
10191019

1020-
[escrow.ts:1130](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1130)
1020+
[escrow.ts:1130](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L1130)
10211021

10221022
***
10231023

@@ -1078,7 +1078,7 @@ await escrowClient.setup(escrowAddress, escrowConfig);
10781078

10791079
#### Defined in
10801080

1081-
[escrow.ts:290](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L290)
1081+
[escrow.ts:290](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L290)
10821082

10831083
***
10841084

@@ -1132,7 +1132,7 @@ await storeResults.storeResults('0x62dD51230A30401C455c8398d06F85e4EaB6309f', 'h
11321132

11331133
#### Defined in
11341134

1135-
[escrow.ts:528](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L528)
1135+
[escrow.ts:528](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L528)
11361136

11371137
***
11381138

@@ -1164,4 +1164,4 @@ Thrown if the network's chainId is not supported
11641164

11651165
#### Defined in
11661166

1167-
[escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/0b3839952b697011b6b5a2ed2d456d3d85ce02c7/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147)
1167+
[escrow.ts:147](https://github.com/humanprotocol/human-protocol/blob/11c280a968c4e19e21e43f468baa71bfd0766e56/packages/sdk/typescript/human-protocol-sdk/src/escrow.ts#L147)

0 commit comments

Comments
 (0)