\EosAPI
Method
HTTP request
Description
CreateEosAccount
Example
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/moon-up/moon-sdk-go"
)
func main() {
authorization := "authorization_example" // string |
eosInput := *openapiclient.NewEosInput() // EosInput |
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.EosAPI.CreateEosAccount(context.Background()).Authorization(authorization).EosInput(eosInput).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `EosAPI.CreateEosAccount``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateEosAccount`: AccountAPIResponse
fmt.Fprintf(os.Stdout, "Response from `EosAPI.CreateEosAccount`: %v\n", resp)
}Path Parameters
Other Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
GetEosAccount
Example
Path Parameters
Name
Type
Description
Notes
Other Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
ListEosAccounts
Example
Path Parameters
Other Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
SignEosTransaction
Example
Path Parameters
Name
Type
Description
Notes
Other Parameters
Name
Type
Description
Notes