File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Check out the LUDS repository: [luds](https://github.com/lnurl/luds/)
35
35
- [x] LUD-16
36
36
- [ ] LUD-17
37
37
- [ ] LUD-18
38
- - [ ] LUD-19
38
+ - [x ] LUD-19
39
39
- [x] LUD-20
40
40
- [ ] LUD-21
41
41
Original file line number Diff line number Diff line change @@ -159,6 +159,8 @@ class LnurlWithdrawResponse(LnurlResponseModel):
159
159
min_withdrawable : MilliSatoshi = Field (..., alias = "minWithdrawable" , gt = 0 )
160
160
max_withdrawable : MilliSatoshi = Field (..., alias = "maxWithdrawable" , gt = 0 )
161
161
default_description : str = Field ("" , alias = "defaultDescription" )
162
+ # LUD-19: Pay link discoverable from withdraw link.
163
+ pay_link : Optional [str ] = Field (None , alias = "payLink" )
162
164
163
165
@validator ("max_withdrawable" )
164
166
def max_less_than_min (cls , value , values ):
You can’t perform that action at this time.
0 commit comments