Skip to content

Commit a894cbd

Browse files
flopez7portuu3
andauthored
[Staking] Implement staking UI (#3013)
* Generate new Staking Dashboard project * Fix Python SDK tests * Rename FundingMethod component to ConnectWallet and modify some texts * Create a context to maintain only one instance of useStake for all components * Update sass deprecated imports * Updated dependencies to avoid vulnerabilites * Moved project to a new folder, updated readme and removed some icons not used * Updated tsconfig file path * update docs --------- Co-authored-by: portuu3 <[email protected]>
1 parent 6d1a427 commit a894cbd

File tree

148 files changed

+3853
-353
lines changed

Some content is hidden

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

148 files changed

+3853
-353
lines changed

docs/sdk/python/human_protocol_sdk.filter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Initializes a PayoutFilter instance.
4646
* **date_from** (`Optional`[`datetime`]) – Created from date
4747
* **date_to** (`Optional`[`datetime`]) – Created to date
4848

49-
### *class* human_protocol_sdk.filter.StatisticsFilter(date_from=None, date_to=None, first=10, skip=0, order_direction=OrderDirection.DESC)
49+
### *class* human_protocol_sdk.filter.StatisticsFilter(date_from=None, date_to=None, first=10, skip=0, order_direction=OrderDirection.ASC)
5050

5151
Bases: `object`
5252

@@ -68,11 +68,11 @@ A class used to filter statistical data.
6868
date_to=datetime(2023, 12, 31),
6969
first=10,
7070
skip=0,
71-
order_direction=OrderDirection.DESC
71+
order_direction=OrderDirection.ASC
7272
)
7373
```
7474

75-
#### \_\_init_\_(date_from=None, date_to=None, first=10, skip=0, order_direction=OrderDirection.DESC)
75+
#### \_\_init_\_(date_from=None, date_to=None, first=10, skip=0, order_direction=OrderDirection.ASC)
7676

7777
### *class* human_protocol_sdk.filter.TransactionFilter(chain_id, from_address=None, to_address=None, start_date=None, end_date=None, start_block=None, end_block=None, first=10, skip=0, order_direction=OrderDirection.DESC)
7878

docs/sdk/python/human_protocol_sdk.staking.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ obtain staking information from both the contracts and subgraph.
1111
* [`StakingClient`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient)
1212
* [`StakingClient.__init__()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.__init__)
1313
* [`StakingClient.approve_stake()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.approve_stake)
14+
* [`StakingClient.get_staker_info()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.get_staker_info)
1415
* [`StakingClient.slash()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.slash)
1516
* [`StakingClient.stake()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.stake)
1617
* [`StakingClient.unstake()`](human_protocol_sdk.staking.staking_client.md#human_protocol_sdk.staking.staking_client.StakingClient.unstake)

docs/sdk/python/human_protocol_sdk.staking.staking_client.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,33 @@ Approves HMT token for Staking.
100100
staking_client.approve_stake(amount)
101101
```
102102

103+
#### get_staker_info(staker_address)
104+
105+
Retrieves comprehensive staking information for a staker.
106+
107+
* **Parameters:**
108+
**staker_address** (`str`) – The address of the staker
109+
* **Return type:**
110+
`dict`
111+
* **Returns:**
112+
A dictionary containing staker information
113+
* **Validate:**
114+
- Staker address must be valid
115+
* **Example:**
116+
```python
117+
from eth_typing import URI
118+
from web3 import Web3
119+
from web3.providers.auto import load_provider_from_uri
120+
121+
from human_protocol_sdk.staking import StakingClient
122+
123+
w3 = Web3(load_provider_from_uri(URI("http://localhost:8545")))
124+
staking_client = StakingClient(w3)
125+
126+
staking_info = staking_client.get_staker_info('0xYourStakerAddress')
127+
print(staking_info['stakedAmount'])
128+
```
129+
103130
#### slash(slasher, staker, escrow_address, amount, tx_options=None)
104131

105132
Slashes HMT token.

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

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

4545
#### Defined in
4646

47-
[base.ts:20](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
47+
[base.ts:20](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L20)
4848

4949
## Properties
5050

@@ -54,7 +54,7 @@ The network information required to connect to the contracts
5454
5555
#### Defined in
5656

57-
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
57+
[base.ts:12](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L12)
5858

5959
***
6060

@@ -64,4 +64,4 @@ The network information required to connect to the contracts
6464
6565
#### Defined in
6666

67-
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)
67+
[base.ts:11](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/base.ts#L11)

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The private key.
6767

6868
#### Defined in
6969

70-
[encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66)
70+
[encryption.ts:66](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L66)
7171

7272
## Methods
7373

@@ -123,7 +123,7 @@ const resultMessage = await encryption.decrypt('message');
123123

124124
#### Defined in
125125

126-
[encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194)
126+
[encryption.ts:194](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L194)
127127

128128
***
129129

@@ -161,7 +161,7 @@ const resultMessage = await encryption.sign('message');
161161

162162
#### Defined in
163163

164-
[encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251)
164+
[encryption.ts:251](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L251)
165165

166166
***
167167

@@ -230,7 +230,7 @@ const resultMessage = await encryption.signAndEncrypt('message', publicKeys);
230230

231231
#### Defined in
232232

233-
[encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142)
233+
[encryption.ts:142](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L142)
234234

235235
***
236236

@@ -262,4 +262,4 @@ Optional: The passphrase for the private key.
262262

263263
#### Defined in
264264

265-
[encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77)
265+
[encryption.ts:77](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L77)

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

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

104104
#### Defined in
105105

106-
[encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444)
106+
[encryption.ts:444](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L444)
107107

108108
***
109109

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

153153
#### Defined in
154154

155-
[encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382)
155+
[encryption.ts:382](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L382)
156156

157157
***
158158

@@ -186,7 +186,7 @@ const signedData = await EncryptionUtils.getSignedData('message');
186186

187187
#### Defined in
188188

189-
[encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351)
189+
[encryption.ts:351](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L351)
190190

191191
***
192192

@@ -236,7 +236,7 @@ if (isEncrypted) {
236236

237237
#### Defined in
238238

239-
[encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494)
239+
[encryption.ts:494](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L494)
240240

241241
***
242242

@@ -288,4 +288,4 @@ const result = await EncryptionUtils.verify('message', publicKey);
288288

289289
#### Defined in
290290

291-
[encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318)
291+
[encryption.ts:318](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/encryption.ts#L318)

docs/sdk/typescript/enums/enumerations/ChainId.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
#### Defined in
1616

17-
[enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2)
17+
[enums.ts:2](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L2)
1818

1919
***
2020

@@ -24,7 +24,7 @@
2424
2525
#### Defined in
2626

27-
[enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15)
27+
[enums.ts:15](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L15)
2828

2929
***
3030

@@ -34,7 +34,7 @@
3434
3535
#### Defined in
3636

37-
[enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14)
37+
[enums.ts:14](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L14)
3838

3939
***
4040

@@ -44,7 +44,7 @@
4444
4545
#### Defined in
4646

47-
[enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7)
47+
[enums.ts:7](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L7)
4848

4949
***
5050

@@ -54,7 +54,7 @@
5454
5555
#### Defined in
5656

57-
[enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8)
57+
[enums.ts:8](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L8)
5858

5959
***
6060

@@ -64,7 +64,7 @@
6464
6565
#### Defined in
6666

67-
[enums.ts:16](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L16)
67+
[enums.ts:16](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L16)
6868

6969
***
7070

@@ -74,7 +74,7 @@
7474
7575
#### Defined in
7676

77-
[enums.ts:17](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L17)
77+
[enums.ts:17](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L17)
7878

7979
***
8080

@@ -84,7 +84,7 @@
8484
8585
#### Defined in
8686

87-
[enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5)
87+
[enums.ts:5](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L5)
8888

8989
***
9090

@@ -94,7 +94,7 @@
9494
9595
#### Defined in
9696

97-
[enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19)
97+
[enums.ts:19](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L19)
9898

9999
***
100100

@@ -104,7 +104,7 @@
104104
105105
#### Defined in
106106

107-
[enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3)
107+
[enums.ts:3](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L3)
108108

109109
***
110110

@@ -114,7 +114,7 @@
114114
115115
#### Defined in
116116

117-
[enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13)
117+
[enums.ts:13](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L13)
118118

119119
***
120120

@@ -124,7 +124,7 @@
124124
125125
#### Defined in
126126

127-
[enums.ts:12](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L12)
127+
[enums.ts:12](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L12)
128128

129129
***
130130

@@ -134,7 +134,7 @@
134134
135135
#### Defined in
136136

137-
[enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9)
137+
[enums.ts:9](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L9)
138138

139139
***
140140

@@ -144,7 +144,7 @@
144144
145145
#### Defined in
146146

147-
[enums.ts:11](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L11)
147+
[enums.ts:11](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L11)
148148

149149
***
150150

@@ -154,7 +154,7 @@
154154
155155
#### Defined in
156156

157-
[enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10)
157+
[enums.ts:10](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L10)
158158

159159
***
160160

@@ -164,7 +164,7 @@
164164
165165
#### Defined in
166166

167-
[enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4)
167+
[enums.ts:4](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L4)
168168

169169
***
170170

@@ -174,7 +174,7 @@
174174
175175
#### Defined in
176176

177-
[enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6)
177+
[enums.ts:6](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L6)
178178

179179
***
180180

@@ -184,7 +184,7 @@
184184
185185
#### Defined in
186186

187-
[enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20)
187+
[enums.ts:20](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L20)
188188

189189
***
190190

@@ -194,4 +194,4 @@
194194
195195
#### Defined in
196196

197-
[enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18)
197+
[enums.ts:18](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L18)

docs/sdk/typescript/enums/enumerations/OrderDirection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
1515
#### Defined in
1616

17-
[enums.ts:24](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L24)
17+
[enums.ts:24](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L24)
1818

1919
***
2020

@@ -24,4 +24,4 @@
2424
2525
#### Defined in
2626

27-
[enums.ts:25](https://github.com/humanprotocol/human-protocol/blob/38a18ec1b58d03e9e1ad84ba013a1910011a6602/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L25)
27+
[enums.ts:25](https://github.com/humanprotocol/human-protocol/blob/b190dc1831c2c96fe3d44fd63e915e54011e1ec8/packages/sdk/typescript/human-protocol-sdk/src/enums.ts#L25)

0 commit comments

Comments
 (0)