Skip to content

Instantly share code, notes, and snippets.

@svanas
Last active October 1, 2023 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svanas/6f0bf60bc25201a217bbc2eca2ce4dcb to your computer and use it in GitHub Desktop.
Save svanas/6f0bf60bc25201a217bbc2eca2ce4dcb to your computer and use it in GitHub Desktop.
Create a new web3 client for the Sepolia test net
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