Skip to content

lightspeed393/WallStreetBetsCoin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WSBcoin

Technical Details

  • 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

Features

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

Resources

Explorer

Wallets

WSB Coin Community

Mining Pools

Exchanges

Faucets

Stats

Komodo Airdrop

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.

Using Command Line

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.

WSB Blockchain 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

Wallet comands

# 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}]'

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%