package main
import (
  "fmt"
  "strings"
  "net/http"
  "io"
)
func main() {
  url := "https://site1.moralis-nodes.com/eth/YOUR_API_KEY"
  payload := strings.NewReader("{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"eth_getDecodedTransactions\"}")
  req, _ := http.NewRequest("POST", url, payload)
  req.Header.Add("Accept", "application/json")
  req.Header.Add("Content-Type", "application/json")
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := io.ReadAll(res.Body)
  fmt.Println(res)
  fmt.Println(string(body))
}