GetTransactionResult Access API Method
参数
Id
bytes
必填
正在加载...
退货
状态
整数
正在加载...
活动
数组
正在加载...
类型
字符串
正在加载...
transaction_id
字符串
正在加载...
有效载荷
字符串
正在加载...
block_id
字符串
正在加载...
transaction_id
字符串
正在加载...
collection_id
字符串
正在加载...
block_height
整数
正在加载...
请求
1包 main23导入 (4"上下文"5"编码/十六进制"6"encoding/json"7"fmt"8"日志"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()18如果 err != nil {19log.Fatalf("err: %v", err)20}2122// Get Transaction by ID23transactionId, err := hex.DecodeString("45c36ca2e7ac95eaeb1f66b12ff55d51ae976abc026a8e81ed081ad54e0e66c7")24如果 err != nil {25log.Fatalf("err: %v", err)26}27resultResp, err := client.GetTransactionResult(ctx, &access.GetTransactionRequest{Id: transactionId})28respJSON, err := json.Marshal(resultResp)29如果 err != nil {30log.Fatalf("err: %v", err)31}32fmt.Println("Get Transaction Result response:", string(respJSON))33}
1包 main23导入 (4"上下文"5"编码/十六进制"6"encoding/json"7"fmt"8"日志"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()18如果 err != nil {19log.Fatalf("err: %v", err)20}2122// Get Transaction by ID23transactionId, err := hex.DecodeString("45c36ca2e7ac95eaeb1f66b12ff55d51ae976abc026a8e81ed081ad54e0e66c7")24如果 err != nil {25log.Fatalf("err: %v", err)26}27resultResp, err := client.GetTransactionResult(ctx, &access.GetTransactionRequest{Id: transactionId})28respJSON, err := json.Marshal(resultResp)29如果 err != nil {30log.Fatalf("err: %v", err)31}32fmt.Println("Get Transaction Result response:", string(respJSON))33}