Skip to content

Commit c37183b

Browse files
authored
Merge pull request #226 from xch-dev/fix-binding
fix binding
2 parents b2f6540 + 058d2d6 commit c37183b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bindings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export type Login = { fingerprint: number }
334334
export type LoginResponse = Record<string, never>
335335
export type Logout = Record<string, never>
336336
export type LogoutResponse = Record<string, never>
337-
export type MakeOffer = { requested_assets: Assets; offered_assets: Assets; fee: Amount; expires_at_second: number | null }
337+
export type MakeOffer = { requested_assets: Assets; offered_assets: Assets; fee: Amount; receive_address?: string | null; expires_at_second?: number | null }
338338
export type MakeOfferResponse = { offer: string; offer_id: string }
339339
export type Network = { default_port: number; ticker: string; address_prefix: string; precision: number; genesis_challenge: string; agg_sig_me: string; dns_introducers: string[] }
340340
export type NetworkConfig = { network_id: string; target_peers: number; discover_peers: boolean }

0 commit comments

Comments
 (0)