GetTransactionById - Tron
Example code for the GetTransactionById gRPC method. Complete guide on how to use GetTransactionById gRPC method in GetBlock Web3 documentation.
Service
Method
rpc GetTransactionById (BytesMessage) returns (Transaction)Request Message
Field
Type
Description
Request
grpcurl -H 'x-api-key: <ACCESS-TOKEN>' \
-d '{"value": "d5ec749ecc2a615399d8a6c864ea4c74ff9f523c2be0e341ac9be5d47d7c2d62"}' \
go.getblock.io:443 protocol.Wallet/GetTransactionByIdimport grpc
# Stubs generated from java-tron's api.proto with grpcio-tools
from api import api_pb2_grpc
from core import Contract_pb2, Tron_pb2
creds = grpc.ssl_channel_credentials()
channel = grpc.secure_channel('go.getblock.io:443', creds)
metadata = [('x-api-key', '<ACCESS-TOKEN>')]
stub = api_pb2_grpc.WalletStub(channel)
response = stub.GetTransactionById(api_pb2.BytesMessage(value=bytes.fromhex('d5ec749ecc2a615399d8a6c864ea4c74ff9f523c2be0e341ac9be5d47d7c2d62')), metadata=metadata)
print(response)conn, _ := grpc.Dial(
"go.getblock.io:443",
grpc.WithTransportCredentials(credentials.NewTLS(&tls.Config{})),
)
defer conn.Close()
client := api.NewWalletClient(conn)
ctx := metadata.AppendToOutgoingContext(
context.Background(), "x-api-key", "<ACCESS-TOKEN>")
resp, _ := client.GetTransactionById(ctx, &api.BytesMessage{Value: txidBytes})
fmt.Println(resp)Response Message
Field
Type
Description
Use Cases
Error Handling
Code
Status
Description
Was this helpful?