Skip to content

Commit

Permalink
Merge pull request #226 from xch-dev/fix-binding
Browse files Browse the repository at this point in the history
fix binding
  • Loading branch information
Rigidity authored Jan 3, 2025
2 parents b2f6540 + 058d2d6 commit c37183b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export type Login = { fingerprint: number }
export type LoginResponse = Record<string, never>
export type Logout = Record<string, never>
export type LogoutResponse = Record<string, never>
export type MakeOffer = { requested_assets: Assets; offered_assets: Assets; fee: Amount; expires_at_second: number | null }
export type MakeOffer = { requested_assets: Assets; offered_assets: Assets; fee: Amount; receive_address?: string | null; expires_at_second?: number | null }
export type MakeOfferResponse = { offer: string; offer_id: string }
export type Network = { default_port: number; ticker: string; address_prefix: string; precision: number; genesis_challenge: string; agg_sig_me: string; dns_introducers: string[] }
export type NetworkConfig = { network_id: string; target_peers: number; discover_peers: boolean }
Expand Down

0 comments on commit c37183b

Please sign in to comment.