This repository was archived by the owner on Jan 26, 2023. It is now read-only.
Initial Release
Whats New
First release of the Kudos.sol contract to the mainnet. The deploy didn't work using truffle migrate
, had to release using the truffle console:
truffle console --network live
In the console,
var tx = Kudos.new({gasPrice: 3 * 10**9, nonce: 4 })
The contract is deployed to address 0x56c72cda0b04fc39a25d0b6a64fa258fad46d664
on the mainnet.
Known bugs
In this version, there is no reliable way to find the latest kudos id. I was using totalSupply()
but this is not reliable when you start burning tokens. Need to upgrade to the newest version to fix this.