Go语言 如何解码恒星XDR

idfiyjo8  于 2022-12-07  发布在  Go
关注(0)|答案(1)|浏览(160)

我正在开发stellar区块链,需要用GO语言解码stellar XDR。我知道如何用JavaScript解码,但找不到用GO语言解码的方法。

//JS code

 const {Transaction} = require('stellar-base')

 const parsedTx = new Transaction('tx_envelope_encoded_as_XDR')
 console.log(parsedTx)

这个很好用。我试过了,但没有用...

//GO code

import (

   "bytes"
   "encoding/json"
   "fmt"
   "net/http"
   "github.com/stellar/go/xdr"
   "github.com/gorilla/mux"

 )

func DecodeXDR(w http.ResponseWriter, r *http.Request) {

    var OBJ model.TransactionCollectionBody
    err := json.NewDecoder(r.Body).Decode(&OBJ)
    if err != nil {
      w.WriteHeader(http.StatusBadRequest)
      json.NewEncoder(w).Encode("Error while Decoding the body")
      fmt.Println(err)

      return
    }

    // fmt.Println(OBJ)

    // lol:=xdr.Value(OBJ.XDR)

    var txe xdr.Transaction
    err = xdr.SafeUnmarshalBase64(XDRB64, &txe)
    if err != nil {
      fmt.Println(err)
    }

    fmt.Println(txe)

}

//Output
{{PublicKeyTypePublicKeyTypeEd25519 0xc042055d20} 200 2800572080062465 <nil> {MemoTypeMemoNone <nil> <nil> <nil> <nil>} [{<nil> {OperationTypeManageData <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> 0xc042174040 <nil>}} {<nil> {OperationTypeManageData <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> <nil> 0xc042174080 <nil>}}] {0}}

//预期输出
{类型:'付款',目的地:“中国银行股份有限公司”,资产:资产{代码:“博客”,发布者:“金额:'10' }
{类型:'付款',目的地:“中国银行股份有限公司”,资产:资产{代码:“博客”,发布者:“金额:'10' }
{类型:'付款',目的地:“中国银行股份有限公司”,资产:资产{代码:“博客”,发布者:“金额:'10' }

有人能帮我解决这个问题吗?

bq3bfh9z

bq3bfh9z1#

我带来了一个可能晚一点的解决方案。但是要得到你需要的东西,你可以使用这个包:
“github.com/stellar/go-xdr/xdr3
并使用下面的函数。

// DecodeFrom decodes this value using the Decoder.
func (s *Value) DecodeFrom(d *xdr.Decoder) (int, error) {
    var err error
    var n, nTmp int
    (*s), nTmp, err = d.DecodeOpaque(0)
    n += nTmp
    if err != nil {
        return n, fmt.Errorf("decoding Value: %s", err)
    }
    return n, nil
}

相关问题