Skip to content

Instantly share code, notes, and snippets.

@asbjornenge
Last active August 2, 2022 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asbjornenge/bea357cc3eab48974b59ccf54e08eadf to your computer and use it in GitHub Desktop.
Save asbjornenge/bea357cc3eab48974b59ccf54e08eadf to your computer and use it in GitHub Desktop.
ChainBorn Datastore
import smartpy as sp
import os
cwd = os.getcwd()
Types = sp.io.import_script_from_url("file://%s/types.py" % cwd)
class ChainBornDatastore(sp.Contract):
def __init__(
self,
admins,
metadata
):
self.init(
admins=admins,
heroes=sp.big_map({}),
battles=sp.big_map({}),
earnings=sp.tez(0),
metadata=metadata,
)
self.init_type(sp.TRecord(
admins=sp.TSet(sp.TAddress),
heroes=sp.TBigMap(Types.THeroUid, Types.THero),
battles=sp.TBigMap(sp.TString, Types.TBattle),
earnings=sp.TMutez,
metadata=sp.TBigMap(sp.TString, sp.TBytes)
))
## Checks
#
@sp.private_lambda(with_storage='read-only', wrap_call=True)
def check_admin(self):
sp.verify(self.data.admins.contains(sp.sender), 'Only admin can call this entrypoint')
## Heroes
#
@sp.entry_point
def set_hero(self, hero):
self.check_admin()
sp.set_type(hero, Types.THero)
uid = sp.pair(hero.token_address, hero.token_id)
self.data.heroes[uid] = hero
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment