Aptos Arcade Core

Overview

The AptosArcadeCore package is an extensible framework for issuing in-game NFTs and establishing on-chain gamer reputation systems for games on Aptos. It is open-source and 100% covered by unit tests at: https://github.com/aptos-arcade/aptos-arcade-core-contracts/

Package and Dependencies

The package is deployed at 0x887a990cd9846b5f29938b3c9775f7cce4bfcc57077f019f28e34a5e0561d786 and depends only on packages from the aptos-core repository.

https://github.com/aptos-arcade/aptos-arcade-core-contracts/blob/master/Move.toml
[package]
name = 'AptosArcadeCore'
version = '1.0.0'

[addresses]
aptos_arcade = '0x887a990cd9846b5f29938b3c9775f7cce4bfcc57077f019f28e34a5e0561d786'

[dependencies.AptosFramework]
git = 'https://github.com/aptos-labs/aptos-core.git'
rev = 'main'
subdir = 'aptos-move/framework/aptos-framework'

[dependencies.AptosToken]
git = 'https://github.com/aptos-labs/aptos-core.git'
rev = 'main'
subdir = 'aptos-move/framework/aptos-token'

[dependencies.AptosTokenObjects]
git = 'https://github.com/aptos-labs/aptos-core.git'
rev = 'main'
subdir = 'aptos-move/framework/aptos-token-objects'

Last updated