getLatestBlockhash gRPC Method - Solana gRPC
Solana gRPC is included with Scale plans and up. Learn more on our pricing page.
पैरामीटर
commitment
डोरी
लोड हो रहा है...
PROCESSED
डोरी
लोड हो रहा है...
CONFIRMED
डोरी
लोड हो रहा है...
FINALIZED
डोरी
लोड हो रहा है...
रिटर्न
slot
डोरी
लोड हो रहा है...
blockhash
डोरी
लोड हो रहा है...
lastValidBlockHeight
डोरी
लोड हो रहा है...
अनुरोध
1पैकेज मुख्य23आयात (4"प्रसंग"5"क्रिप्टो/टीएलएस"6"एफएमटी"7"लकड़ी का लट्ठा"8"समय"910pb "yellowstone/proto"111213"google.golang.org/ grpc "14"google.golang.org/ grpc /साख"15"google.golang.org/grpc/encoding/gzip"16"google.golang.org/grpc/keepalive"17)1819// Quicknode endpoints consist of two crucial components: the endpoint name and the corresponding token20// For eg: QN Endpoint: https://docs-demo.solana-mainnet.quiknode.pro/abcde12345678921// endpoint will be: docs-demo.solana-mainnet.quiknode.pro:443 {443 is the port number for gRPC}22// token will be : abcde1234567892324var (25endpoint = "YOUR_QN_ENDPOINT:443"26token = "YOUR_TOKEN_NUMBER"27)2829var kacp = keepalive.ClientParameters{30Time: 10 * time.Second,31Timeout: time.Second,32PermitWithoutStream: true,33}3435type tokenAuth struct {36टोकन स्ट्रिंग37}3839func (t tokenAuth) GetRequestMetadata(ctx context.Context, in ...string) (map[string]string, error) {40वापस करना मानचित्र [ स्ट्रिंग ] स्ट्रिंग {41"x-token": t.token,42} , शून्य43}4445func (tokenAuth) RequireTransportSecurity() bool {46return true47}4849समारोह मुख्य ( ) {50opts := []grpc.DialOption{51grpc ( credentials.NewTLS ( & tls.Config { } ) )52grpc.WithKeepaliveParams(kacp),53grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(1024*1024*1024), grpc.UseCompressor(gzip.Name)),54grpc.WithPerRPCCredentials(tokenAuth{token: token}),55}5657conn, err := grpc.NewClient(endpoint, opts...)58यदि त्रुटि != शून्य {59log.Fatalf("Failed to connect: %v", err)60}61कनेक्शन स्थगित करें । बंद करें ( )6263client := pb.NewGeyserClient(conn)6465ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)66defer cancel()6768latestBlockHash, err := client.GetLatestBlockhash(ctx, &pb.GetLatestBlockhashRequest{})69यदि त्रुटि != शून्य {70log.Fatalf("Failed to get latest blockhash: %v", err)71}7273fmt.Printf("Latest Blockhash Information:\n")74fmt.Printf(" Blockhash: %+v\n", latestBlockHash)7576}77
1पैकेज मुख्य23आयात (4"प्रसंग"5"क्रिप्टो/टीएलएस"6"एफएमटी"7"लकड़ी का लट्ठा"8"समय"910pb "yellowstone/proto"111213"google.golang.org/ grpc "14"google.golang.org/ grpc /साख"15"google.golang.org/grpc/encoding/gzip"16"google.golang.org/grpc/keepalive"17)1819// Quicknode endpoints consist of two crucial components: the endpoint name and the corresponding token20// For eg: QN Endpoint: https://docs-demo.solana-mainnet.quiknode.pro/abcde12345678921// endpoint will be: docs-demo.solana-mainnet.quiknode.pro:443 {443 is the port number for gRPC}22// token will be : abcde1234567892324var (25endpoint = "YOUR_QN_ENDPOINT:443"26token = "YOUR_TOKEN_NUMBER"27)2829var kacp = keepalive.ClientParameters{30Time: 10 * time.Second,31Timeout: time.Second,32PermitWithoutStream: true,33}3435type tokenAuth struct {36टोकन स्ट्रिंग37}3839func (t tokenAuth) GetRequestMetadata(ctx context.Context, in ...string) (map[string]string, error) {40वापस करना मानचित्र [ स्ट्रिंग ] स्ट्रिंग {41"x-token": t.token,42} , शून्य43}4445func (tokenAuth) RequireTransportSecurity() bool {46return true47}4849समारोह मुख्य ( ) {50opts := []grpc.DialOption{51grpc ( credentials.NewTLS ( & tls.Config { } ) )52grpc.WithKeepaliveParams(kacp),53grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(1024*1024*1024), grpc.UseCompressor(gzip.Name)),54grpc.WithPerRPCCredentials(tokenAuth{token: token}),55}5657conn, err := grpc.NewClient(endpoint, opts...)58यदि त्रुटि != शून्य {59log.Fatalf("Failed to connect: %v", err)60}61कनेक्शन स्थगित करें । बंद करें ( )6263client := pb.NewGeyserClient(conn)6465ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)66defer cancel()6768latestBlockHash, err := client.GetLatestBlockhash(ctx, &pb.GetLatestBlockhashRequest{})69यदि त्रुटि != शून्य {70log.Fatalf("Failed to get latest blockhash: %v", err)71}7273fmt.Printf("Latest Blockhash Information:\n")74fmt.Printf(" Blockhash: %+v\n", latestBlockHash)7576}77
1import Client, { CommitmentLevel } from "@triton-one/yellowstone-grpc";23// Quicknode endpoints consist of two crucial components: the endpoint name and the corresponding token4// For eg: QN Endpoint: https://docs-demo.solana-mainnet.quiknode.pro/abcde1234567895// endpoint will be: https://docs-demo.solana-mainnet.quiknode.pro:443 {443 is the port number for gRPC}6// token will be : abcde12345678978const ENDPOINT = "https://YOUR_QN_ENDPOINT:443";9const TOKEN = "YOUR_TOKEN_NUMBER";1011अतुल्यकालिक समारोह मुख्य ( ) {12const client = new Client(ENDPOINT, TOKEN, {13grpcDefaultCompressionAlgorithm: 0, // 0 = gzip, 1 = zstd14});15await client.connect();1617const commitment = CommitmentLevel.CONFIRMED;1819try {20const response = await client.getLatestBlockhash(commitment);21console.log(`Latest Blockhash: ${JSON.stringify(response, null, 2)}`);22} catch (error) {23console.error("Error fetching latest blockhash:", error);24}25}2627main()28.catch((err) => {29console.error("Unhandled error:", err);30process.exit(1);31});32
1import Client, { CommitmentLevel } from "@triton-one/yellowstone-grpc";23// Quicknode endpoints consist of two crucial components: the endpoint name and the corresponding token4// For eg: QN Endpoint: https://docs-demo.solana-mainnet.quiknode.pro/abcde1234567895// endpoint will be: https://docs-demo.solana-mainnet.quiknode.pro:443 {443 is the port number for gRPC}6// token will be : abcde12345678978const ENDPOINT = "https://YOUR_QN_ENDPOINT:443";9const TOKEN = "YOUR_TOKEN_NUMBER";1011अतुल्यकालिक समारोह मुख्य ( ) {12const client = new Client(ENDPOINT, TOKEN, {13grpcDefaultCompressionAlgorithm: 0, // 0 = gzip, 1 = zstd14});15await client.connect();1617const commitment = CommitmentLevel.CONFIRMED;1819try {20const response = await client.getLatestBlockhash(commitment);21console.log(`Latest Blockhash: ${JSON.stringify(response, null, 2)}`);22} catch (error) {23console.error("Error fetching latest blockhash:", error);24}25}2627main()28.catch((err) => {29console.error("Unhandled error:", err);30process.exit(1);31});32
अब तक कोई खाता नहीं है?
अपना बनाएँ Quicknode endpoint कुछ ही सेकंड में निर्माण शुरू करें
मुफ़्त में शुरुआत करें