How to create an account via smart contract? #159
-
What tx should I send to register? |
Beta Was this translation helpful? Give feedback.
Answered by
horsefacts
Apr 18, 2024
Replies: 1 comment 1 reply
-
You can call Depending on how you intend to interact with the protocol, you may want to register this account to a fresh address. If you want to use Warpcast, you'll need to import the seed phrase of the account that owns your FID, so it's a good idea to use a single purpose address rather than a shared wallet you use for other types of transactions. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sds
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can call
IdGateway.register
to create an ID andKeyGateway.add
to add a signer public key.Depending on how you intend to interact with the protocol, you may want to register this account to a fresh address. If you want to use Warpcast, you'll need to import the seed phrase of the account that owns your FID, so it's a good idea to use a single purpose address rather than a shared wallet you use for other types of transactions.