Create app-generated wallet

in the video, https://www.youtube.com/watch?v=mhAUmULLV44&list=WL&index=2&t=1063s. Around 7:20, the speaker says there's a way to auto generate a wallet in a app but he did not go into details about it. does Anyone have any ideas how that can be implemented? any recourses would be much appreciated!

You can dynamicly generate wallet using ethers.js in your own app

const ethers = require('ethers')
const wallet = ethers.Wallet.createRandom()
console.log('address:', wallet.address)
console.log('mnemonic:', wallet.mnemonic.phrase)
console.log('privateKey:', wallet.privateKey)

Hi @wentaozhou -

To generate a new Relayer (which is what I think Palla was referring to in that video), you can use the defender-relay-client NPM package and use the relayClient.create() call.

Please let us know if you have any further questions