Making RPC Calls
How to start making RPC calls to FluxRPC using Golang and TypeScript
Last updated
How to start making RPC calls to FluxRPC using Golang and TypeScript
In this guide, you will learn how to begin making RPC calls to the Flux RPC in both Golang and Typescript. This guide is aimed at developers with some experience in TypeScript or Golang, but who have not necessarily used Solana or an RPC before.
A Remote Procedure Call (RPC) is a method to execute a function on a remote server as if it were local. For our purposes, we will be calling functions on a remote server (an RPC Server) that query data on the Solana blockchain.
Practically speaking, before proceeding with this guide, you will need the address of an RPC Server and an API key that allows you to access it. You can get both of these at FluxRPC.
Last updated