Skip to content

Commit 0209af0

Browse files
authored
Merge pull request #391 from immutable/docs/marketplace
docs: update marketplace docs
2 parents 1a940b2 + de0c102 commit 0209af0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Packages/Marketplace/Runtime/LinkQueryParams.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ public struct OnRampQueryParams
3232
public struct SwapQueryParams
3333
{
3434
/// <summary>
35-
/// The address of the token being swapped from (default is null).
35+
/// The address of the token being swapped from (default: null).
3636
/// </summary>
3737
public string? FromTokenAddress { get; set; }
3838

3939
/// <summary>
40-
/// The address of the token being swapped to (default is null).
40+
/// The address of the token being swapped to (default: null).
4141
/// </summary>
4242
public string? ToTokenAddress { get; set; }
4343
}
@@ -48,22 +48,22 @@ public struct SwapQueryParams
4848
public struct BridgeQueryParams
4949
{
5050
/// <summary>
51-
/// The ID of the source blockchain (default is null).
51+
/// The ID of the source blockchain (default: null).
5252
/// </summary>
5353
public string? FromChainID { get; set; }
5454

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

6060
/// <summary>
61-
/// The ID of the destination blockchain (default is null).
61+
/// The ID of the destination blockchain (default: null).
6262
/// </summary>
6363
public string? ToChainID { get; set; }
6464

6565
/// <summary>
66-
/// The address of the token being moved to (default is null).
66+
/// The address of the token being moved to (default: null).
6767
/// </summary>
6868
public string? ToTokenAddress { get; set; }
6969
}

0 commit comments

Comments
 (0)