Git Product home page Git Product logo

arcadians-client-sdk's Introduction

arcadians-client-sdk

Add utility to your NFTs!

Demo Repository

Live Demo

Install


npm install arcadians-client-sdk


import Arcadians from "arcadians-client-sdk";

or

Load acardians.min.js using a script tag:


<script src="https://unpkg.com/[email protected]/dist/arcadians.min.js"></script>

<script>

let settings = {
	testMode: true, // Test mode.
	testAddress: "0xf0103243f4d22b5696588646b21313d85916a16a", // The test address you would like to use.
	nftsLimit : 50, // Limit the maximum numbers of fetched NFTs.
	gameId : "0cd69241-531c-4698-bf17-454dd6cb1ab4", // Your gameId provided by us.
	apiUrl : "https://lb-dev.gmfrens.games", // Your apiUrl provided by us.
}
let arc = new Arcadians(settings);

function onUserSelect(selectedNft) {
console.log(selectedNft);
}
arc.showNftsWindow(onUserSelect);

</script>

Usage

Production:


let settings = {
gameId : "0cd69241-531c-4698-bf17-454dd6cb1ab4", // Your gameId provided by us.
apiUrl : "https://lb-dev.gmfrens.games", // Your apiUrl provided by us.
}
let arc = new Arcadians(settings);

// Callback executed when a user selects a NFT from the window.
// Returns an object containing the NFT metadata or false if the user closes the window.
function onUserSelect(selectedNft) {
	console.log(selectedNft);
}

arc.showNftsWindow(onUserSelect);

Add your custom callback on each NFT loaded:


function onUserSelect(selectedNft) {
	console.log(selectedNft);
}

function onNftLoaded(loadedNft) {
	console.log(loadedNft);
}

arc.showNftsWindow(onUserSelect, onNftLoaded);

Get NFTs metadata without injecting a window:


arc.getUserNfts().then((result) => {
	console.log(result);
});

Get NFTs metadata without logging in into MetaMask by using a custom address:


let customAddress = "0xf0103243f4d22b5696588646b21313d85916a16a";

arc.getUserNftsWithCustomAddress(customAddress).then((result) => {
	console.log(result);
});

Show leaderboard window:


arc.showLeaderboardWindow();

Get leaderboard data without injecting a window:


arc.fetchLeaderboard();

Start your game session (when a user joins a game):


arc.startGameSession();

arcadians-client-sdk's People

Contributors

inn3rgames avatar rexrodriguez avatar yuri-alto avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.