Connect your game to the OASIS avatar and cross-game quests. When players launch from the portal, they get onode and token in the URL; use the SDK to read config and report objectives.
Install
npm install @oasis/quest-sdk
Quick example
const config = OASISQuestSDK.getConfig();
if (config) {
const result = await OASISQuestSDK.completeObjective(config, 'isocity', 'population_100');
if (result.completed) console.log('Quest completed!');
}