svanas
delphereum
Pascal

web3 implementation for the Delphi programming language

Last updated Jul 1, 2026
147
Stars
51
Forks
5
Issues
0
Stars/day
Attention Score
87
Language breakdown
Pascal 100.0%
C++ 0.0%
PowerShell 0.0%
Files click to expand
README

What is Delphereum?

Delphereum is a Delphi interface to the Ethereum blockchain that allows for development of native dapps (aka decentralized applications) that interact with the Ethereum network, including sending transactions, working with smart contracts, and reading blockchain data.

What is Delphi?

Delphi is a development environment that compiles into native apps for Windows, macOS, iOS, and Android.

What is Ethereum?

Ethereum is a blockchain-based distributed computing platform and operating system featuring smart contracts.

What is a smart contract?

A smart contract is a computation that takes place on a blockchain or distributed ledger. You can think of a smart contract as a microservice that runs trustless on the backend of your application.

Smart contracts can have many applications, ranging from sports betting to online voting. But the true power of smart contracts is in managing assets that have value and are scarce.

Once added to the blockchain, a smart contract becomes public and cannot be modified or removed. This assures your users that the rules are transparent and will never change.

What is a dapp?

A dapp is an application whose backend runs on a decentralised network with trustless protocols. Dapps aren’t owned by anyone, cannot be shut down, and have zero downtime.

What other networks does this thing support?

Delphereum supports every EVM-compatible network, including (but not limited to)

Dependencies

Before you can compile this project, you will need to clone the following repositories, and then add them to your Delphi search path:

git clone https://github.com/rvelthuis/DelphiBigNumbers git clone https://github.com/Xor-el/SimpleBaseLib4Pascal git clone https://github.com/Xor-el/HashLib4Pascal git clone https://github.com/Xor-el/CryptoLib4Pascal
Please note there are NO runtime dependencies. Delphereum is lightweight and self-contained.

Search path

Assuming your project is named MyProject and you have a projects directory with this structure...

MyProject 
CryptoLib4Pascal
delphereum
DelphiBigNumbers
HashLib4Pascal
SimpleBaseLib4Pascal

...then this is your Delphi search path:

../delphereum;../DelphiBigNumbers/Source;../CryptoLib4Pascal/CryptoLib/src/Asn1;../CryptoLib4Pascal/CryptoLib/src/Asn1/Cms;../CryptoLib4Pascal/CryptoLib/src/Asn1/CryptLib;../CryptoLib4Pascal/CryptoLib/src/Asn1/CryptoPro;../CryptoLib4Pascal/CryptoLib/src/Asn1/Misc;../CryptoLib4Pascal/CryptoLib/src/Asn1/Nist;../CryptoLib4Pascal/CryptoLib/src/Asn1/Oiw;../CryptoLib4Pascal/CryptoLib/src/Asn1/Pkcs;../CryptoLib4Pascal/CryptoLib/src/Asn1/Rosstandart;../CryptoLib4Pascal/CryptoLib/src/Asn1/Sec;../CryptoLib4Pascal/CryptoLib/src/Asn1/TeleTrust;../CryptoLib4Pascal/CryptoLib/src/Asn1/X500/Style;../CryptoLib4Pascal/CryptoLib/src/Asn1/X509;../CryptoLib4Pascal/CryptoLib/src/Asn1/X9;../CryptoLib4Pascal/CryptoLib/src/Crypto;../CryptoLib4Pascal/CryptoLib/src/Crypto/Digests;../CryptoLib4Pascal/CryptoLib/src/Crypto/EC;../CryptoLib4Pascal/CryptoLib/src/Crypto/Engines;../CryptoLib4Pascal/CryptoLib/src/Crypto/Generators;../CryptoLib4Pascal/CryptoLib/src/Crypto/IO;../CryptoLib4Pascal/CryptoLib/src/Crypto/Macs;../CryptoLib4Pascal/CryptoLib/src/Crypto/Operators;../CryptoLib4Pascal/CryptoLib/src/Crypto/Parameters;../CryptoLib4Pascal/CryptoLib/src/Crypto/Randoms;../CryptoLib4Pascal/CryptoLib/src/Crypto/Signers;../CryptoLib4Pascal/CryptoLib/src/Crypto/Signers/SignerCalculators;../CryptoLib4Pascal/CryptoLib/src/Encoders;../CryptoLib4Pascal/CryptoLib/src/GeneralUtilities;../CryptoLib4Pascal/CryptoLib/src/Helpers;../CryptoLib4Pascal/CryptoLib/src/Interfaces;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Asn1;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Asn1/Cms;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Asn1/X509;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Asn1/X9;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Digests;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Generators;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Macs;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Operators;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Parameters;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Randoms;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Signers;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Crypto/Signers/SignerCalculators;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/BinPoly;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/EC;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/EC/Abc;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/EC/Custom/Sec;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/EC/Endo;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/EC/Multiplier;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Math/Field;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Rngs;../CryptoLib4Pascal/CryptoLib/src/Interfaces/Rngs/Providers;../CryptoLib4Pascal/CryptoLib/src/Interfaces/X509;../CryptoLib4Pascal/CryptoLib/src/IO;../CryptoLib4Pascal/CryptoLib/src/Math;../CryptoLib4Pascal/CryptoLib/src/Math/BinPoly;../CryptoLib4Pascal/CryptoLib/src/Math/EC;../CryptoLib4Pascal/CryptoLib/src/Math/EC/Abc;../CryptoLib4Pascal/CryptoLib/src/Math/EC/Custom/Sec;../CryptoLib4Pascal/CryptoLib/src/Math/EC/Endo;../CryptoLib4Pascal/CryptoLib/src/Math/EC/Multiplier;../CryptoLib4Pascal/CryptoLib/src/Math/Field;../CryptoLib4Pascal/CryptoLib/src/Math/Raw;../CryptoLib4Pascal/CryptoLib/src/Misc;../CryptoLib4Pascal/CryptoLib/src/Net;../CryptoLib4Pascal/CryptoLib/src/NumberUtilities;../CryptoLib4Pascal/CryptoLib/src/Rngs;../CryptoLib4Pascal/CryptoLib/src/Rngs/Providers;../CryptoLib4Pascal/CryptoLib/src/X509;../HashLib4Pascal/HashLib/src/Base;../HashLib4Pascal/HashLib/src/Checksum;../HashLib4Pascal/HashLib/src/Crypto;../HashLib4Pascal/HashLib/src/Crypto/Blake2BParams;../HashLib4Pascal/HashLib/src/Crypto/Blake2SParams;../HashLib4Pascal/HashLib/src/Hash32;../HashLib4Pascal/HashLib/src/Hash64;../HashLib4Pascal/HashLib/src/Hash128;../HashLib4Pascal/HashLib/src/Interfaces;../HashLib4Pascal/HashLib/src/Interfaces/IBlake2BParams;../HashLib4Pascal/HashLib/src/Interfaces/IBlake2SParams;../HashLib4Pascal/HashLib/src/KDF;../HashLib4Pascal/HashLib/src/NullDigest;../HashLib4Pascal/HashLib/src/Utils;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Alphabets;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Bases;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Coders;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Interfaces;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Interfaces/Alphabets;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Interfaces/Bases;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Interfaces/Coders;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Misc;../SimpleBaseLib4Pascal/SimpleBaseLib/src/Utilities

Tutorials

Videos

If you are still confused about what Ethereum and smart contracts and dapps (aka decentralized apps) are, watch this 3-part presentation from Ethereum DevCon in 2015:

  • https://www.youtube.com/watch?v=seU7DykOxfc
  • https://www.youtube.com/watch?v=nPpi9BPkRbo
  • https://www.youtube.com/watch?v=Ij5tGo8cp80
While Mist doesn’t exist anymore (it has been replaced with your favorite web browser plus MetaMask or any other crypto wallet such as Rabby or Phantom), the above videos explain the principles behind Ethereum and smart contracts and the decentralized web pretty good.

Case studies

1. Migratooor

Migratooor transfers all your tokens from one wallet to another. You can download migratooor for Windows or macOS.

2. Bankless

Bankless is a DeFi desktop app with the highest possible yield on your stablecoin savings.

Made with Delphi, bankless is a small and simple dapp that makes it super easy to transfer your savings from one lending protocol to another with the click of one button.

You can download bankless for Windows or macOS.

3. Balancer

Balancer is an implementation of the https://balancer.finance protocol in native code, made possible by an awesome grant from the Balancer DAO. You can download balancer for Windows or macOS.

4. PubSub

PubSub is a simple "Hello World" example project, demonstrating how to subscribe to an Ethereum RPC provider and get notified every time a new block got mined. You can download PubSub for Windows.

License

Distributed under the GNU AGP v3.0 with Commons Clause license.

Sponsors

Commercial support and training

Commercial support and training is available from Stefan.

© 2026 GitRepoTrend · svanas/delphereum · Updated daily from GitHub