The easiest way to find out information is by querying the game contract. You can select a contract below:
Current Key Price
You can find the current key price by checking getBuyPrice
. The price returned is in wei you will need to convert it back to eth. You can use this converter.
Get Your Player ID
Getting your player ID is helpful for other commands you may want to query:
- Using an address:
pIDxAddr_
:- Enter the address and press query it will return the id.
- Using an vanity name:
pIDxName_
:- Enter the vanity name and press query it will return the id.
- Enter the vanity name and press query it will return the id.
Get Round info
You can get all sorts of interesting information about the current round or previous rounds:
- Current Round:
getCurrentRoundInfo
:- Eth invested during ico
- Round ID
- Total Keys for the round (in Wei)
- When the round will end (if no one buys a key) (in seconds since Jan 01 1970 UTC)
- When the round started (in seconds since Jan 01 1970 UTC)
- Current pot (in Wei)
- Player id and team id (The last digit is the team ID)
- Address of the player in lead
- Vanity name of the player in lead, the result is a hex string and needs to be converted to be readable you can use this converter (you can leave out the 0x at the begining and the excess 0's at the end)
- Eth in team whales (in Wei)
- Eth in team bears (in Wei)
- Eth in team sneks (in Wei)
- Eth in team bulls (in Wei)
- Airdrop tracker and pot (The last 3 digits are the Aidrop tracker)
- Any Round:
round_
, you have to enter the round ID:- Player ID of the player in lead
- Team ID of player in lead
- Timestamp of when the round ended/ends (in seconds since Jan 01 1970 UTC)
- Did the round already end True/False
- Timestamp of when the round started (in seconds since Jan 01 1970 UTC)
- Total Keys (in Wei)
- Eth that went into the round (in Wei)
- Eth in the pot (in Wei)
- Total eth sent during ICO phase
- Ico key price
ICO Phase
For Soon, you can check if you got into the ICO phase of a given round with calcPlayerICOPhaseKeys
. You will need to enter the player ID and round ID. It will return the number of keys bought during the ico.
Keys in Round
You can check how many keys you had in a given round. To do this with plyrRnds_
you need to enter the player id and the round id. The amounts returned are in wei and need to be converted back to eth.
Countdown Timer
You can check how much time is left on the countdown:
getTimeLeft
returns the time left in seconds
Key Cost in ICO
You can check what a key cost during ICO in a given round. To do this with calcAverageICOPhaseKeyPrice
you need to enter the round id. The amount returned is in wei and needs to be converted back to eth.
Get Player Data
You can get info about an user for a given address by using the getPlayerInfoByAddress
which returns the following:
- The player ID of the player
- The Vanity Name of the player, the result is a hex string and needs to be converted to be readable you can use this converter (you can leave out the 0x at the begining and the excess 0's at the end)
- Keys owned in the current round, this value is in Wei
- Wining Vault, this value is in Wei
- General vault, this value is in Wei
- Affiliate vault (bad advice), this value is in Wei
- Is different in long and soon:
- In Long: How much eth was invested by the player in the current round
- In Short: How much eth was invested by the player into the ico of the current round