Moralis with magic link custom support

Hi,
how can i support non crypto user who created with magic link and add custom blockchain support in
moralis?

Hey @ajlalkhan,

Feel free to do that with Magic Link search in their docs, which is a separate service to us. As far as I remember, they are blockchain agnostic.

Similarly, Moralis Auth API is also blockchain agnostic (EVM), therefore you should be able to implement a Magic login w/ Moralis Auth APi

@YosephKS
actually magic link does not support our custom chain which we have created and implemented in out product now magic link support ETH, polygon and BSC chain but not support our custom chain is there any solution that we support our custom chain with moralis for non crypto user ?

is your custom EVM? then if not, probably unlikely true. But you need to confirm with the Magic Link team since they have the best answer for this.

Also Moralis doesn’t support different types of chains, just EVM, Solana, and Aptos

1 Like

@YosephKS
Yes the chain is EVM, it is actually a subnet deployed on Avalanche mainnet
https://chainlist.org/chain/8888

If that’s the case,

I see that Magic Link should be able to support it based on their docs like this

const customNodeOptions = {
  rpcUrl: "https://mainnet.xana.net/rpc",
  chainId: 8888
};

const magic = new Magic('YOUR_PUBLISHABLE_API_KEY', { network: customNodeOptions });

Of course feel free to use other RPC node if you prefer others

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.