Last active
October 1, 2023 13:31
-
-
Save svanas/6f0bf60bc25201a217bbc2eca2ce4dcb to your computer and use it in GitHub Desktop.
Create a new web3 client for the Sepolia test net
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var | |
Client: IWeb3; | |
procedure TForm1.FormCreate(Sender: TObject); | |
begin | |
Client := TWeb3.Create(Sepolia.SetRPC('https://sepolia.infura.io/v3/your-project-id')); | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment