Who | % | $IDZ | Lockup | Gradual release |
---|---|---|---|---|
Founders | 27 % | 2.700.000 | 3 years | 10 months |
Advisors | 5 % | 500.000 | 3 years | 10 months |
Incentive pool | 50 % | 5.000.000 | 1 month | - |
Private sale (sold out) | 5 % | 500.000 | 3 months | 5 months |
Public sale | 10 % | 1.000.000 | Liquid | - |
Initial QuipuSwap liquidity | 2,5 % | 250.000 | Liquid | - |
Proofdrop | 0,5 % | 50.000 | Liquid | - |
Parameter | Value |
---|---|
When | 12.09.2021 14:00 UTC |
Presale amount | 1.000.000 $IDZ |
Total raise goal | $ 225.000 |
Price | $ 0,225 |
Initial price on QuipuSwap | $ 0,351 |
Public sale discount | 35,90% |
Minimum amount | 50 $XTZ |
Maximum amount | - |
Parameter | Weight |
---|---|
1x Unverified proof | 1 |
1x Verified proof | 4 |
👆 prior to announcement | +2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -Rf bin pyvenv.cfg | |
wget https://smartpy.io/cli/install.sh | |
chmod +x install.sh | |
./install.sh --prefix bin | |
rm install.sh | |
virtualenv . | |
cd bin && ln -sf SmartPy.sh spy && cd .. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smartpy as sp | |
## Config | |
# | |
TGameConfig = sp.TRecord( | |
paused=sp.TBool, | |
summon_cost=sp.TMutez, | |
minimum_loot=sp.TMutez, | |
hero_health_initial=sp.TNat, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smartpy as sp | |
import os | |
cwd = os.getcwd() | |
Types = sp.io.import_script_from_url("file://%s/types.py" % cwd) | |
class ChainBornGame(sp.Contract): | |
def __init__( | |
self, | |
admins, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smartpy as sp | |
import os | |
cwd = os.getcwd() | |
Game = sp.io.import_script_from_url("file://%s/controller.py" % cwd) | |
Data = sp.io.import_script_from_url("file://%s/datastore.py" % cwd) | |
Types = sp.io.import_script_from_url("file://%s/types.py" % cwd) | |
Tokens = sp.io.import_script_from_url("file://%s/tokens.py" % cwd) | |
Randomizer = sp.io.import_script_from_url("https://ipfs.infura.io/ipfs/QmPNkabMCpDmFE6GynfS9UAoQDLE6PyCLpRJQmceEp2oTv") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smartpy as sp | |
import json | |
import os | |
from datetime import datetime, timezone | |
env = os.environ | |
cwd = os.getcwd() | |
Data = sp.io.import_script_from_url("file://%s/datastore.py" % cwd) | |
Game = sp.io.import_script_from_url("file://%s/controller.py" % cwd) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { TezosToolkit } from '@taquito/taquito' | |
import { BeaconWallet } from '@taquito/beacon-wallet' | |
const Tezos = new TezosToolkit() | |
const wallet = new BeaconWallet({ name: "ChainBorn" }) | |
Tezos.setWalletProvider(wallet) | |
export async function setProvider(rpc) { | |
Tezos.setProvider({ rpc: rpc}) | |
} |