diff options
| -rw-r--r-- | lib/wallet/types.ts | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts index 8cecc1e8e..c20884cff 100644 --- a/lib/wallet/types.ts +++ b/lib/wallet/types.ts @@ -268,6 +268,9 @@ export class Contract {    @Checkable.Optional(Checkable.String)    repurchase_correlation_id: string; +  @Checkable.Optional(Checkable.String) +  receiver: string; +    static checked: (obj: any) => Contract;  }  | 
