You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Packages/Marketplace/Runtime/LinkFactory.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ public class LinkFactory
11
11
/// </summary>
12
12
/// <param name="environment">Specifies the environment (<c>Sandbox</c> or <c>Production</c>).</param>
13
13
/// <param name="email">The user's email address, pre-filled in the on-ramp flow.</param>
14
-
/// <param name="address">The user's wallet address, where tokens will be sent.</param>
14
+
/// <param name="walletAddress">The user's wallet address, where tokens will be sent.</param>
15
15
/// <param name="queryParams">The query parameters for the on-ramp flow. Uses default values if not specified.</param>
16
16
/// <param name="extraQueryParams">Optional additional query parameters. See <a href="https://docs.transak.com/docs/query-parameters">Transak docs</a> for possible fields.</param>
17
17
/// <returns>The generated on-ramp URL.</returns>
@@ -24,7 +24,7 @@ public class LinkFactory
24
24
publicstaticstringGenerateOnRampLink(
25
25
Environmentenvironment,
26
26
stringemail,
27
-
stringaddress,
27
+
stringwalletAddress,
28
28
OnRampQueryParamsqueryParams=default,
29
29
Dictionary<string,string>?extraQueryParams=null
30
30
)
@@ -83,7 +83,7 @@ public static string GenerateOnRampLink(
0 commit comments