From de0c1026104f65e363e80fc91badae5822ac18ff Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Thu, 30 Jan 2025 12:36:22 +1300 Subject: [PATCH] docs: update marketplace docs --- src/Packages/Marketplace/Runtime/LinkQueryParams.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Packages/Marketplace/Runtime/LinkQueryParams.cs b/src/Packages/Marketplace/Runtime/LinkQueryParams.cs index 04217aa8f..38ed1601f 100644 --- a/src/Packages/Marketplace/Runtime/LinkQueryParams.cs +++ b/src/Packages/Marketplace/Runtime/LinkQueryParams.cs @@ -32,12 +32,12 @@ public struct OnRampQueryParams public struct SwapQueryParams { /// - /// The address of the token being swapped from (default is null). + /// The address of the token being swapped from (default: null). /// public string? FromTokenAddress { get; set; } /// - /// The address of the token being swapped to (default is null). + /// The address of the token being swapped to (default: null). /// public string? ToTokenAddress { get; set; } } @@ -48,22 +48,22 @@ public struct SwapQueryParams public struct BridgeQueryParams { /// - /// The ID of the source blockchain (default is null). + /// The ID of the source blockchain (default: null). /// public string? FromChainID { get; set; } /// - /// The address of the token being moved from (default is null). + /// The address of the token being moved from (default: null). /// public string? FromTokenAddress { get; set; } /// - /// The ID of the destination blockchain (default is null). + /// The ID of the destination blockchain (default: null). /// public string? ToChainID { get; set; } /// - /// The address of the token being moved to (default is null). + /// The address of the token being moved to (default: null). /// public string? ToTokenAddress { get; set; } }