GetTransactionResult Access API Method
參數
Id
bytes
必填
載入中...
退貨
狀態
整數
載入中...
活動
陣列
載入中...
類型
字串
載入中...
transaction_id
字串
載入中...
payload
字串
載入中...
block_id
字串
載入中...
transaction_id
字串
載入中...
collection_id
字串
載入中...
block_height
整數
載入中...
請求
1package main23import (4"context"5"encoding/hex"6"encoding/json"7"fmt"8"log"910"github.com/onflow/flow/protobuf/go/flow/access"11)1213func main() {1415// Requires authenticating before making the request. Refer to Intro Page on how Authentication can be done.16client, err := getAccessClientWithBasicAuth("ENDPOINT-NAME", "TOKEN_GOES_HERE")17ctx := context.Background()18if err != nil {19log.Fatalf("err: %v", err)20}2122// Get Transaction by ID23transactionId, err := hex.DecodeString("45c36ca2e7ac95eaeb1f66b12ff55d51ae976abc026a8e81ed081ad54e0e66c7")24if err != nil {25log.Fatalf("err: %v", err)26}27resultResp, err := client.GetTransactionResult(ctx, &access.GetTransactionRequest{Id: transactionId})28respJSON, err := json.Marshal(resultResp)29if err != nil {30log.Fatalf("err: %v", err)31}32fmt.Println("Get Transaction Result response:", string(respJSON))33}
1package main23import (4"context"5"encoding/hex"6"encoding/json"7"fmt"8"log"910"github.com/onflow/flow/protobuf/go/flow/access"11)1213func main() {1415// Requires authenticating before making the request. Refer to Intro Page on how Authentication can be done.16client, err := getAccessClientWithBasicAuth("ENDPOINT-NAME", "TOKEN_GOES_HERE")17ctx := context.Background()18if err != nil {19log.Fatalf("err: %v", err)20}2122// Get Transaction by ID23transactionId, err := hex.DecodeString("45c36ca2e7ac95eaeb1f66b12ff55d51ae976abc026a8e81ed081ad54e0e66c7")24if err != nil {25log.Fatalf("err: %v", err)26}27resultResp, err := client.GetTransactionResult(ctx, &access.GetTransactionRequest{Id: transactionId})28respJSON, err := json.Marshal(resultResp)29if err != nil {30log.Fatalf("err: %v", err)31}32fmt.Println("Get Transaction Result response:", string(respJSON))33}