Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ public void OpenPrimarySalePanel()

public void LinkEOAWallet()
{
EOAWalletLinker linker = new EOAWalletLinker(Wallet, "https://api.sequence.app/rpc/API/GenerateWaaSVerificationURL");

EOAWalletLinker linker = new EOAWalletLinker(Wallet, "https://dev-api.sequence.app/rpc/API/GenerateWaaSVerificationURL", "https://demo-waas-wallet-link.pages.dev/");

linker.OpenEOAWalletLink(Chain.ArbitrumNova);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ public class EOAWalletLinker

private IWallet _wallet;

private const string _verificationUrl = "https://demo-waas-wallet-link.pages.dev/";
private string _verificationUrl;// = "https://demo-waas-wallet-link.pages.dev/";

public EOAWalletLinker(IWallet wallet, string nonceGenerationLink)
public EOAWalletLinker(IWallet wallet, string nonceGenerationLink, string verificationUrl)
{
_wallet = wallet;
_nonceGenerationLink = nonceGenerationLink;
_verificationUrl = verificationUrl;
}

public async Task<string> GenerateEOAWalletLink(Chain chain)
Expand Down
Loading