Are you satoshi by any chance?

I'd like to.
Anyway there have been many improvements in the blockchain. There are two explorers:
https://explorer.denaro.is/ and
https://explorer2.denaro.is/.
I also developed a kind of VM on top of Denaro Blockchain, similar to the EVM:
https://github.com/denaro-coin/dvm.
It uses transactions messages to call vm smart contracts, and the main difference with the EVM is that it's not built directly into the blockchain itself.
It's like another layer that uses the base chain to receive messages. This method could be used to implement smart contracts even on the Bitcoin blockchain.
Smart contracts are written in Python too and I think this is a pretty innovative thing (or at least never seen before?), and they get executed in a limited environment using RestrictedPython.
I also recently developed a mining pool. We really needed that as chain became controlled by a few miners. It isn't on GitHub yet because it's still in a development phase, but you can find the python miner at
https://t.me/DenaroGroup/20420. Now we need an open source gpu miner so that it can be adapted for the pool. For everyone who wanna try developing it, there already is
https://github.com/witer33/denarocudaminer but it needs some improvements