- Komodo's Antara Smartchain Technology
- Independent blockchain
- Block time : ~ 60 seconds
- Block generation: Proof of Work
- Mining algorithm: Equihash
- Block reward - 1 WSB
- Premine: 90,000,000,000 WSB
- Privacy: zk-SNARKS
Built using Komodo Platform tech, WSB is capable of doing all DeFi things one can possible do using Antara Smartchain's CryptoConditions.
- Tokens Exchange, can be used to create and trade tokens/NFTs. Link
- Dilithium type transactions can make Quantum Resistant transactions. Link
- Decentralized Faucet, to give away free WSB coins to people who wants to try things out on the chain. Link
- Heir, can help manage funds in a way that it can be passed on to heir for inheridence. Link
- Oracles, to link real world data to blockchain based decentralized applications. Oracles are what powers DeFi. It is very powerful technology. And it works already available to Antara Smartchains. Link
- Pegs, to make decentralized stablecoins or making pegged cryptocurrencies to other kind of assets in financial world. Link
All Komodo holders were airdropped WSB 100:1 from the premine. If you have an address with KMD in it, you now own WSB in the same address but on the WallStreetBets blockchain.
Download pre-compiled komodo binaries for your operating system from here. Extract the binaries, and execute "fetch-params" script from command line terminal to fetch the required chain params.
Use the following command to launch WSB coin's blockchain daemon with komodod or komodo-qt:
./komodod -ac_name=WSB -ac_supply=90000000000 -ac_cc=3 -ac_reward=100000000 -addnode=94.130.38.173 -addnode=178.63.47.105
# Get wallet and blockchain info
./komodo-cli -ac_name=WSB getinfo
# Get wallet information
./komodo-cli -ac_name=WSB getwalletinfo
# Get mining information
./komodo-cli -ac_name=WSB getmininginfo
# Generate a new Public address
./komodo-cli -ac_name=WSB getnewaddress
# Send coins to an address
./komodo-cli -ac_name=WSB sendtoaddress "to_taddress" "amount"
# To backup the private key of a public address
./komodo-cli -ac_name=WSB dumpprivkey
# To import private key of public address
./komodo-cli -ac_name=WSB importprivkey "PRIVATE_KEY_STRING_FROM_DUMPPRIVKEY_COMMAND"
# Generate a new Z/Private address
./komodo-cli -ac_name=WSB z_getnewaddress
# To backup the private key of a z address
./komodo-cli -ac_name=WSB z_exportkey "zaddr"
# To enable CPU mining
./komodo-cli -ac_name=WSB setgenerate true 1
# To disable CPU mining
./komodo-cli -ac_name=WSB setgenerate false
# To send mined coins to a z address
./komodo-cli -ac_name=WSB "fromaddress" "tozaddress" ( fee ) ( limit )
# Example 1:
./komodo-cli -ac_name=WSB z_shieldcoinbase "FROM_YOUR_ADDRESS" "TO_Z_ADDRESS"
# Example 2:
./komodo-cli -ac_name=WSB z_shieldcoinbase "*" "TO_Z_ADDRESS"
# To send a transaction from your z address to another z address
./komodo-cli -ac_name=WSB z_sendmany "fromaddress" [{"address":... ,"amount":...},...] ( minconf ) ( fee )
# Example:
komodo-cli -ac_name=WSB z_sendmany "FROM_Z_ADDRESS" '[{"address": "TO_Z_ADDRESS" ,"amount": 5.9999}]'