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
2 changes: 1 addition & 1 deletion src/Packages/Marketplace/Runtime/Bridge/Bridge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Bridge(string environment)
/// <param name="toTokenAddress">The address of the token being moved to (default is null).</param>
/// <param name="toChain">The ID of the destination blockchain (default is null).</param>
/// <returns>A bridge URL.</returns>
public string GetLink(string? fromTokenAddress, string? fromChain, string? toTokenAddress, string? toChain)
public string GetLink(string? fromTokenAddress = null, string? fromChain = null, string? toTokenAddress = null, string? toChain = null)
{
var baseUrl = BaseUrls[_environment];

Expand Down
Loading