Skip to content

docs: update marketplace docs #391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 30, 2025
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