Linking your Enjin Platform Account to your Enjin Wallet
From the account that you've generated from the previous step, you will want to link your project to your developer wallet. You can link your wallet and retrieve linking information by using the following query:
query{
GetPlayer(id: "Your Username") {
id
wallet {
ethAddress
}
linkingInfo {
code
qr
}
createdAt
updatedAt
}
}
Using the query above should return information such as your username, your wallet address (if already linked), your
linkingInfo
with the option to link with the unique code, or via QR. 
- Code: You can link your wallet by going to the Enjin Wallet -> Linked Projects -> "+ Link Project" -> Select your Developer Wallet and enter the unique code to link.
- QR: You can link your wallet by going to the Enjin Wallet -> Linked Projects -> "+ Link Project" -> Select your Developer Wallet and scan the unique QR code that you've been provided.
Since we are passing requests through the platform itself, it's also required for you to link your project through the platform page, which can be done by following this guide here
Once you have linked your wallet to your project, you will be able to approve and process any request from the Enjin Platform and Enjin API that are programmatically sent from your project.
Last modified 10mo ago