Skip to content

Commit

Permalink
Merge pull request #391 from immutable/docs/marketplace
Browse files Browse the repository at this point in the history
docs: update marketplace docs
  • Loading branch information
nattb8 authored Jan 30, 2025
2 parents 1a940b2 + de0c102 commit 0209af0
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 0209af0

Please sign in to comment.