Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/Packages/Marketplace/Runtime/LinkQueryParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ public struct OnRampQueryParams
public struct SwapQueryParams
{
/// <summary>
/// The address of the token being swapped from (default is null).
/// The address of the token being swapped from (default: null).
/// </summary>
public string? FromTokenAddress { get; set; }

/// <summary>
/// The address of the token being swapped to (default is null).
/// The address of the token being swapped to (default: null).
/// </summary>
public string? ToTokenAddress { get; set; }
}
Expand All @@ -48,22 +48,22 @@ public struct SwapQueryParams
public struct BridgeQueryParams
{
/// <summary>
/// The ID of the source blockchain (default is null).
/// The ID of the source blockchain (default: null).
/// </summary>
public string? FromChainID { get; set; }

/// <summary>
/// The address of the token being moved from (default is null).
/// The address of the token being moved from (default: null).
/// </summary>
public string? FromTokenAddress { get; set; }

/// <summary>
/// The ID of the destination blockchain (default is null).
/// The ID of the destination blockchain (default: null).
/// </summary>
public string? ToChainID { get; set; }

/// <summary>
/// The address of the token being moved to (default is null).
/// The address of the token being moved to (default: null).
/// </summary>
public string? ToTokenAddress { get; set; }
}
Expand Down
Loading