0.4.7 • Published 2 years ago

arcadians-client-sdk v0.4.7

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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/arcadians-client-sdk@0.4.6/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();
0.4.5

2 years ago

0.4.4

2 years ago

0.4.7

2 years ago

0.4.6

2 years ago

0.4.1

2 years ago

0.4.3

2 years ago

0.4.2

2 years ago

0.4.0

2 years ago

0.3.18

2 years ago

0.3.17

2 years ago

0.3.16

2 years ago

0.3.15

2 years ago

0.3.14

2 years ago

0.3.13

2 years ago

0.3.12

2 years ago

0.3.11

2 years ago

0.3.10

2 years ago

0.3.9

2 years ago

0.3.8

2 years ago

0.3.7

2 years ago

0.3.6

2 years ago

0.3.5

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.19

2 years ago

0.1.18

2 years ago

0.1.17

2 years ago

0.1.16

2 years ago

0.1.15

2 years ago

0.1.14

2 years ago

0.1.13

2 years ago

0.1.12

2 years ago

0.1.11

2 years ago

0.1.10

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago