# ethmoji-js **Repository Path**: ProjectOpenSea/ethmoji-js ## Basic Information - **Project Name**: ethmoji-js - **Description**: SDK for Ethmoji blockchain avatars - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-25 - **Last Updated**: 2025-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ethmoji-js Let's developers interact with the Ethmoji game, starting with fetching your users' Ethmoji avatar. ##### Installation & Setup: ``` yarn add ethmoji-js ``` ##### Using ES6 style imports (recommended): ```javascript import EthmojiAPI from "ethmoji-js"; ... const ethmojiAPI = new EthmojiAPI(web3.currentProvider); await ethmojiAPI.init(); await avatar = ethmojiAPI.getAvatar(ownerAddress); => Avatar { name: Ethmoji name tokenId: Ethmoji tokenId in the smart contract imageUrl: Ethmoji image url for displaying ownerAddress: Ethmoji ownerAddress ownerUsername: Ethmojis ownerUsername on OpenSea } ```