Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow verification url setting on wallet linker #172

Closed
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
@@ -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);
}

Original file line number Diff line number Diff line change
@@ -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)
Loading