Documentation
¶
Index ¶
- Variables
- func CacheExpires(r *http.Response) time.Time
- type APIClient
- type APIKey
- type APIResponse
- type AnalyticIssueWalletTx
- type AnalyticRuleWalletTx
- type AnalyticTransaction
- type AnalyticTransferWalletTx
- type AnalyticWalletMetadata
- type AnalyticWalletTx
- type AnalyticsApiService
- type AnalyticsAssetConverterProofDescription
- type AnalyticsConfidentialIssuanceDescription
- type AnalyticsContent
- type AnalyticsIssueTx
- type AnalyticsIssueTxAllOf
- type AnalyticsOutput
- type AnalyticsOutputDescription
- type AnalyticsPublicIssuanceDescription
- type AnalyticsRule
- type AnalyticsRuleDefinition
- type AnalyticsRuleTx
- type AnalyticsRuleTxAllOf
- type AnalyticsRuleWalletDefinition
- type AnalyticsSpendDescription
- type AnalyticsTransferTx
- type AnalyticsTransferTxAllOf
- type AnalyticsTxMetadata
- type AsyncApiService
- func (a *AsyncApiService) NodeUnlockWalletPost(ctx context.Context, unlockWalletRequest UnlockWalletRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *AsyncApiService) WalletCreateRulePost(ctx context.Context, createRuleRequest CreateRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *AsyncApiService) WalletDeleteRulePost(ctx context.Context, deleteRuleRequest DeleteRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *AsyncApiService) WalletIssueAssetPost(ctx context.Context, issueAssetRequest IssueAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *AsyncApiService) WalletTransferAssetPost(ctx context.Context, transferAssetRequest TransferAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- type AsyncTaskCreatedResponse
- type BalanceForAsset
- type BasicAuth
- type Block
- type ConfidentialAnalyticsOutput
- type Configuration
- type CreateRuleRequest
- type DeleteRuleRequest
- type DeleteWalletRequest
- type ErrorResponse
- type ExportWalletRequest
- type ExportWalletResponse
- type GenerateWalletRequest
- type GenericOpenAPIError
- type GetActivityRequest
- type GetActivityResponse
- type GetAllWalletsResponse
- type GetBlocksRequest
- type GetBlocksResponse
- type GetNetworkActivityRequest
- type GetNetworkActivityResponse
- type GetNewAddressRequest
- type GetNewAddressResponse
- type GetPublicKeyRequest
- type GetPublicKeyResponse
- type GetRulesResponse
- type GetTaskStatusRequest
- type GetTaskStatusResponse
- type GetTransactionsRequest
- type GetTransactionsResponse
- type GetWalletActivityRequest
- type GetWalletActivityResponse
- type GetWalletBalanceRequest
- type GetWalletBalanceResponse
- type HealthApiService
- type HealthcheckResponse
- type HealthcheckResponseBlockchainConnector
- type HealthcheckResponseItem
- type ImportWalletRequest
- type IssueAssetRequest
- type NodeApiService
- func (a *NodeApiService) NodeDeleteWalletPost(ctx context.Context, deleteWalletRequest DeleteWalletRequest) (*http.Response, error)
- func (a *NodeApiService) NodeExportWalletPost(ctx context.Context, exportWalletRequest ExportWalletRequest) (ExportWalletResponse, *http.Response, error)
- func (a *NodeApiService) NodeGenerateWalletPost(ctx context.Context, generateWalletRequest GenerateWalletRequest) (*http.Response, error)
- func (a *NodeApiService) NodeGetAllWalletsPost(ctx context.Context) (GetAllWalletsResponse, *http.Response, error)
- func (a *NodeApiService) NodeGetRulesPost(ctx context.Context) (GetRulesResponse, *http.Response, error)
- func (a *NodeApiService) NodeGetTaskStatusPost(ctx context.Context, getTaskStatusRequest GetTaskStatusRequest) (GetTaskStatusResponse, *http.Response, error)
- func (a *NodeApiService) NodeImportWalletPost(ctx context.Context, importWalletRequest ImportWalletRequest) (*http.Response, error)
- func (a *NodeApiService) NodeUnlockWalletPost(ctx context.Context, unlockWalletRequest UnlockWalletRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- type PublicAnalyticsOutput
- type Rule
- type TransactionsForWallet
- type TransferAssetRequest
- type UnlockWalletRequest
- type WalletApiService
- func (a *WalletApiService) WalletCreateRulePost(ctx context.Context, createRuleRequest CreateRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *WalletApiService) WalletDeleteRulePost(ctx context.Context, deleteRuleRequest DeleteRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *WalletApiService) WalletGetActivityPost(ctx context.Context, getWalletActivityRequest GetWalletActivityRequest) (GetWalletActivityResponse, *http.Response, error)
- func (a *WalletApiService) WalletGetBalancesPost(ctx context.Context, getWalletBalanceRequest GetWalletBalanceRequest) (GetWalletBalanceResponse, *http.Response, error)
- func (a *WalletApiService) WalletGetNewAddressPost(ctx context.Context, getNewAddressRequest GetNewAddressRequest) (GetNewAddressResponse, *http.Response, error)
- func (a *WalletApiService) WalletGetPublicKeyPost(ctx context.Context, getPublicKeyRequest GetPublicKeyRequest) (GetPublicKeyResponse, *http.Response, error)
- func (a *WalletApiService) WalletIssueAssetPost(ctx context.Context, issueAssetRequest IssueAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
- func (a *WalletApiService) WalletTransferAssetPost(ctx context.Context, transferAssetRequest TransferAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
Constants ¶
This section is empty.
Variables ¶
var ( // ContextOAuth2 takes an oauth2.TokenSource as authentication for the request. ContextOAuth2 = contextKey("token") // ContextBasicAuth takes BasicAuth as authentication for the request. ContextBasicAuth = contextKey("basic") // ContextAccessToken takes a string oauth2 access token as authentication for the request. ContextAccessToken = contextKey("accesstoken") // ContextAPIKey takes an APIKey as authentication for the request ContextAPIKey = contextKey("apikey") )
Functions ¶
Types ¶
type APIClient ¶
type APIClient struct { AnalyticsApi *AnalyticsApiService HealthApi *HealthApiService NodeApi *NodeApiService WalletApi *WalletApiService // contains filtered or unexported fields }
APIClient manages communication with the QED-it - Asset Transfers API v1.3.0 In most cases there should be only one, shared, APIClient.
func NewAPIClient ¶
func NewAPIClient(cfg *Configuration) *APIClient
NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.
func (*APIClient) ChangeBasePath ¶
Change base path to allow switching to mocks
type APIKey ¶
APIKey provides API key based authentication to a request passed via context using ContextAPIKey
type APIResponse ¶
type APIResponse struct { *http.Response `json:"-"` Message string `json:"message,omitempty"` // Operation is the name of the OpenAPI operation. Operation string `json:"operation,omitempty"` // RequestURL is the request URL. This value is always available, even if the // embedded *http.Response is nil. RequestURL string `json:"url,omitempty"` // Method is the HTTP method used for the request. This value is always // available, even if the embedded *http.Response is nil. Method string `json:"method,omitempty"` // Payload holds the contents of the response body (which may be nil or empty). // This is provided here as the raw response.Body() reader will have already // been drained. Payload []byte `json:"-"` }
func NewAPIResponse ¶
func NewAPIResponse(r *http.Response) *APIResponse
func NewAPIResponseWithError ¶
func NewAPIResponseWithError(errorMessage string) *APIResponse
type AnalyticIssueWalletTx ¶
type AnalyticIssueWalletTx struct { IsIncoming bool `json:"is_incoming,omitempty"` IssuedBySelf bool `json:"issued_by_self,omitempty"` Memo string `json:"memo,omitempty"` RecipientAddress string `json:"recipient_address,omitempty"` AssetId int32 `json:"asset_id,omitempty"` Amount int32 `json:"amount,omitempty"` IsConfidential bool `json:"is_confidential,omitempty"` }
type AnalyticRuleWalletTx ¶
type AnalyticRuleWalletTx struct { SignedBySelf bool `json:"signed_by_self,omitempty"` RuleAffectSelf bool `json:"rule_affect_self,omitempty"` TxSigner string `json:"tx_signer,omitempty"` Rule AnalyticsRuleWalletDefinition `json:"rule,omitempty"` }
type AnalyticTransaction ¶
type AnalyticTransaction struct { Metadata AnalyticsTxMetadata `json:"metadata,omitempty"` Content map[string]interface{} `json:"content,omitempty"` }
type AnalyticWalletMetadata ¶
type AnalyticWalletTx ¶
type AnalyticWalletTx struct { Metadata AnalyticWalletMetadata `json:"metadata,omitempty"` Content map[string]interface{} `json:"content,omitempty"` }
type AnalyticsApiService ¶
type AnalyticsApiService service
func (*AnalyticsApiService) AnalyticsGetNetworkActivityPost ¶
func (a *AnalyticsApiService) AnalyticsGetNetworkActivityPost(ctx context.Context, getNetworkActivityRequest GetNetworkActivityRequest) (GetNetworkActivityResponse, *http.Response, error)
AnalyticsApiService Get details on past blocks
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getNetworkActivityRequest
@return GetNetworkActivityResponse
type AnalyticsConfidentialIssuanceDescription ¶
type AnalyticsConfidentialIssuanceDescription struct { InputCv string `json:"input_cv,omitempty"` Zkproof string `json:"zkproof,omitempty"` Rule AnalyticsRule `json:"rule,omitempty"` }
type AnalyticsContent ¶
type AnalyticsContent struct {
TxType string `json:"tx_type"`
}
type AnalyticsIssueTx ¶
type AnalyticsIssueTx struct { Outputs []AnalyticsOutput `json:"outputs,omitempty"` PublicKey string `json:"public_key,omitempty"` Signature string `json:"signature,omitempty"` }
type AnalyticsIssueTxAllOf ¶
type AnalyticsIssueTxAllOf struct { Outputs []AnalyticsOutput `json:"outputs,omitempty"` PublicKey string `json:"public_key,omitempty"` Signature string `json:"signature,omitempty"` }
type AnalyticsOutput ¶
type AnalyticsOutput struct { IsConfidential bool `json:"is_confidential,omitempty"` PublicIssuanceDescription AnalyticsPublicIssuanceDescription `json:"public_issuance_description,omitempty"` ConfidentialIssuanceDescription AnalyticsConfidentialIssuanceDescription `json:"confidential_issuance_description,omitempty"` OutputDescription AnalyticsOutputDescription `json:"output_description,omitempty"` }
type AnalyticsRule ¶
type AnalyticsRuleDefinition ¶
type AnalyticsRuleDefinition struct { PublicKey string `json:"public_key,omitempty"` CanIssueConfidentially bool `json:"can_issue_confidentially,omitempty"` IsAdmin bool `json:"is_admin,omitempty"` CanIssueAssetIdFirst int32 `json:"can_issue_asset_id_first,omitempty"` CanIssueAssetIdLast int32 `json:"can_issue_asset_id_last,omitempty"` }
type AnalyticsRuleTx ¶
type AnalyticsRuleTx struct { SenderPublicKey string `json:"sender_public_key,omitempty"` RulesToAdd []AnalyticsRuleDefinition `json:"rules_to_add,omitempty"` RulesToDelete []AnalyticsRuleDefinition `json:"rules_to_delete,omitempty"` Nonce int32 `json:"nonce,omitempty"` Signature string `json:"signature,omitempty"` }
type AnalyticsRuleTxAllOf ¶
type AnalyticsRuleTxAllOf struct { SenderPublicKey string `json:"sender_public_key,omitempty"` RulesToAdd AnalyticsRuleDefinition `json:"rules_to_add,omitempty"` RulesToDelete AnalyticsRuleDefinition `json:"rules_to_delete,omitempty"` Nonce int32 `json:"nonce,omitempty"` Signature string `json:"signature,omitempty"` }
type AnalyticsRuleWalletDefinition ¶
type AnalyticsRuleWalletDefinition struct { PublicKey string `json:"public_key,omitempty"` CanIssueConfidentially bool `json:"can_issue_confidentially,omitempty"` IsAdmin bool `json:"is_admin,omitempty"` CanIssueAssetIdFirst int32 `json:"can_issue_asset_id_first,omitempty"` CanIssueAssetIdLast int32 `json:"can_issue_asset_id_last,omitempty"` Operation string `json:"operation,omitempty"` }
type AnalyticsTransferTx ¶
type AnalyticsTransferTx struct { AssetConverterDescriptions []AnalyticsAssetConverterProofDescription `json:"asset_converter_descriptions,omitempty"` Spends []AnalyticsSpendDescription `json:"spends,omitempty"` Outputs []AnalyticsOutputDescription `json:"outputs,omitempty"` BindingSig string `json:"binding_sig,omitempty"` SpendAuthSigs []string `json:"spend_auth_sigs,omitempty"` }
type AnalyticsTransferTxAllOf ¶
type AnalyticsTransferTxAllOf struct { AssetConverterDescriptions AnalyticsAssetConverterProofDescription `json:"asset_converter_descriptions,omitempty"` Spends []AnalyticsSpendDescription `json:"spends,omitempty"` Outputs []AnalyticsOutputDescription `json:"outputs,omitempty"` BindingSig string `json:"binding_sig,omitempty"` SpendAuthSigs []string `json:"spend_auth_sigs,omitempty"` }
type AnalyticsTxMetadata ¶
type AnalyticsTxMetadata struct { Type string `json:"type,omitempty"` TxHash string `json:"tx_hash,omitempty"` BlockHash string `json:"block_hash,omitempty"` Timestamp string `json:"timestamp,omitempty"` IndexInBlock int32 `json:"index_in_block,omitempty"` BlockHeight int32 `json:"block_height,omitempty"` }
type AsyncApiService ¶
type AsyncApiService service
func (*AsyncApiService) NodeUnlockWalletPost ¶
func (a *AsyncApiService) NodeUnlockWalletPost(ctx context.Context, unlockWalletRequest UnlockWalletRequest) (AsyncTaskCreatedResponse, *http.Response, error)
AsyncApiService Unlocks a wallet for a given amount of seconds [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param unlockWalletRequest
@return AsyncTaskCreatedResponse
func (*AsyncApiService) WalletCreateRulePost ¶
func (a *AsyncApiService) WalletCreateRulePost(ctx context.Context, createRuleRequest CreateRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
AsyncApiService Create & broadcast add-config-rule [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param createRuleRequest
@return AsyncTaskCreatedResponse
func (*AsyncApiService) WalletDeleteRulePost ¶
func (a *AsyncApiService) WalletDeleteRulePost(ctx context.Context, deleteRuleRequest DeleteRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
AsyncApiService Create & broadcast delete-config-rule [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param deleteRuleRequest
@return AsyncTaskCreatedResponse
func (*AsyncApiService) WalletIssueAssetPost ¶
func (a *AsyncApiService) WalletIssueAssetPost(ctx context.Context, issueAssetRequest IssueAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
AsyncApiService Issue assets [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param issueAssetRequest
@return AsyncTaskCreatedResponse
func (*AsyncApiService) WalletTransferAssetPost ¶
func (a *AsyncApiService) WalletTransferAssetPost(ctx context.Context, transferAssetRequest TransferAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
AsyncApiService Transfer assets [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param transferAssetRequest
@return AsyncTaskCreatedResponse
type AsyncTaskCreatedResponse ¶
type AsyncTaskCreatedResponse struct {
Id string `json:"id"`
}
type BalanceForAsset ¶
type BasicAuth ¶
type BasicAuth struct { UserName string `json:"userName,omitempty"` Password string `json:"password,omitempty"` }
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth
type ConfidentialAnalyticsOutput ¶
type ConfidentialAnalyticsOutput struct { IsConfidential bool `json:"is_confidential"` OutputDescription AnalyticsOutputDescription `json:"output_description"` ConfidentialIssuanceDescription AnalyticsConfidentialIssuanceDescription `json:"confidential_issuance_description"` }
type Configuration ¶
type Configuration struct { BasePath string `json:"basePath,omitempty"` Host string `json:"host,omitempty"` Scheme string `json:"scheme,omitempty"` DefaultHeader map[string]string `json:"defaultHeader,omitempty"` UserAgent string `json:"userAgent,omitempty"` HTTPClient *http.Client }
func NewConfiguration ¶
func NewConfiguration() *Configuration
func (*Configuration) AddDefaultHeader ¶
func (c *Configuration) AddDefaultHeader(key string, value string)
type CreateRuleRequest ¶
type DeleteRuleRequest ¶
type DeleteWalletRequest ¶
type ErrorResponse ¶
type ExportWalletRequest ¶
type ExportWalletRequest struct {
WalletId string `json:"wallet_id"`
}
type ExportWalletResponse ¶
type GenerateWalletRequest ¶
type GenericOpenAPIError ¶
type GenericOpenAPIError struct {
// contains filtered or unexported fields
}
GenericOpenAPIError Provides access to the body, error and model on returned errors.
func (GenericOpenAPIError) Body ¶
func (e GenericOpenAPIError) Body() []byte
Body returns the raw bytes of the response
func (GenericOpenAPIError) Error ¶
func (e GenericOpenAPIError) Error() string
Error returns non-empty string if there was an error.
func (GenericOpenAPIError) Model ¶
func (e GenericOpenAPIError) Model() interface{}
Model returns the unpacked model of the error
type GetActivityRequest ¶
type GetActivityResponse ¶
type GetActivityResponse struct { WalletId string `json:"wallet_id"` Transactions []TransactionsForWallet `json:"transactions"` }
type GetAllWalletsResponse ¶
type GetAllWalletsResponse struct {
WalletIds []string `json:"wallet_ids,omitempty"`
}
type GetBlocksRequest ¶
type GetBlocksResponse ¶
type GetBlocksResponse struct {
Blocks []Block `json:"blocks"`
}
type GetNetworkActivityResponse ¶
type GetNetworkActivityResponse struct {
Transactions []AnalyticTransaction `json:"transactions,omitempty"`
}
type GetNewAddressRequest ¶
type GetNewAddressResponse ¶
type GetPublicKeyRequest ¶
type GetPublicKeyRequest struct {
WalletId string `json:"wallet_id"`
}
type GetPublicKeyResponse ¶
type GetRulesResponse ¶
type GetRulesResponse struct {
Rules []Rule `json:"rules,omitempty"`
}
type GetTaskStatusRequest ¶
type GetTaskStatusRequest struct {
Id string `json:"id"`
}
type GetTaskStatusResponse ¶
type GetTaskStatusResponse struct { Id string `json:"id,omitempty"` CreatedAt string `json:"created_at,omitempty"` UpdatedAt string `json:"updated_at,omitempty"` Result string `json:"result,omitempty"` TxHash string `json:"tx_hash,omitempty"` Type string `json:"type,omitempty"` Data map[string]interface{} `json:"data,omitempty"` Error string `json:"error,omitempty"` }
type GetTransactionsRequest ¶
type GetTransactionsResponse ¶
type GetTransactionsResponse struct { WalletId string `json:"wallet_id"` Transactions []TransactionsForWallet `json:"transactions"` }
type GetWalletActivityResponse ¶
type GetWalletActivityResponse struct { WalletId string `json:"wallet_id,omitempty"` Transactions []AnalyticWalletTx `json:"transactions,omitempty"` }
type GetWalletBalanceRequest ¶
type GetWalletBalanceRequest struct {
WalletId string `json:"wallet_id"`
}
type GetWalletBalanceResponse ¶
type GetWalletBalanceResponse struct { WalletId string `json:"wallet_id"` Assets []BalanceForAsset `json:"assets"` }
type HealthApiService ¶
type HealthApiService service
func (*HealthApiService) HealthPost ¶
func (a *HealthApiService) HealthPost(ctx context.Context) (HealthcheckResponse, *http.Response, error)
HealthApiService Perform a healthcheck of the node and its dependent services
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return HealthcheckResponse
type HealthcheckResponse ¶
type HealthcheckResponse struct { Version string `json:"version,omitempty"` BlockchainConnector HealthcheckResponseItem `json:"blockchain_connector,omitempty"` MessageQueue HealthcheckResponseItem `json:"message_queue,omitempty"` Database HealthcheckResponseItem `json:"database,omitempty"` Passing bool `json:"passing,omitempty"` }
type HealthcheckResponseItem ¶
type ImportWalletRequest ¶
type IssueAssetRequest ¶
type NodeApiService ¶
type NodeApiService service
func (*NodeApiService) NodeDeleteWalletPost ¶
func (a *NodeApiService) NodeDeleteWalletPost(ctx context.Context, deleteWalletRequest DeleteWalletRequest) (*http.Response, error)
NodeApiService Delete a wallet
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param deleteWalletRequest
func (*NodeApiService) NodeExportWalletPost ¶
func (a *NodeApiService) NodeExportWalletPost(ctx context.Context, exportWalletRequest ExportWalletRequest) (ExportWalletResponse, *http.Response, error)
NodeApiService Export wallet secret key
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param exportWalletRequest
@return ExportWalletResponse
func (*NodeApiService) NodeGenerateWalletPost ¶
func (a *NodeApiService) NodeGenerateWalletPost(ctx context.Context, generateWalletRequest GenerateWalletRequest) (*http.Response, error)
NodeApiService Generate a new wallet
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param generateWalletRequest
func (*NodeApiService) NodeGetAllWalletsPost ¶
func (a *NodeApiService) NodeGetAllWalletsPost(ctx context.Context) (GetAllWalletsResponse, *http.Response, error)
NodeApiService Get all wallet labels
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return GetAllWalletsResponse
func (*NodeApiService) NodeGetRulesPost ¶
func (a *NodeApiService) NodeGetRulesPost(ctx context.Context) (GetRulesResponse, *http.Response, error)
NodeApiService Get network governance rules
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return GetRulesResponse
func (*NodeApiService) NodeGetTaskStatusPost ¶
func (a *NodeApiService) NodeGetTaskStatusPost(ctx context.Context, getTaskStatusRequest GetTaskStatusRequest) (GetTaskStatusResponse, *http.Response, error)
NodeApiService Get all tasks in the node
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getTaskStatusRequest
@return GetTaskStatusResponse
func (*NodeApiService) NodeImportWalletPost ¶
func (a *NodeApiService) NodeImportWalletPost(ctx context.Context, importWalletRequest ImportWalletRequest) (*http.Response, error)
NodeApiService Import wallet from secret key
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param importWalletRequest
func (*NodeApiService) NodeUnlockWalletPost ¶
func (a *NodeApiService) NodeUnlockWalletPost(ctx context.Context, unlockWalletRequest UnlockWalletRequest) (AsyncTaskCreatedResponse, *http.Response, error)
NodeApiService Unlocks a wallet for a given amount of seconds [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param unlockWalletRequest
@return AsyncTaskCreatedResponse
type PublicAnalyticsOutput ¶
type PublicAnalyticsOutput struct { IsConfidential bool `json:"is_confidential"` OutputDescription AnalyticsOutputDescription `json:"output_description"` PublicIssuanceDescription AnalyticsPublicIssuanceDescription `json:"public_issuance_description"` }
type Rule ¶
type Rule struct { PublicKey string `json:"public_key"` CanIssueConfidentially bool `json:"can_issue_confidentially,omitempty"` CanIssueAssetIdFirst int32 `json:"can_issue_asset_id_first,omitempty"` CanIssueAssetIdLast int32 `json:"can_issue_asset_id_last,omitempty"` IsAdmin bool `json:"is_admin,omitempty"` }
type TransactionsForWallet ¶
type TransferAssetRequest ¶
type UnlockWalletRequest ¶
type WalletApiService ¶
type WalletApiService service
func (*WalletApiService) WalletCreateRulePost ¶
func (a *WalletApiService) WalletCreateRulePost(ctx context.Context, createRuleRequest CreateRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
WalletApiService Create & broadcast add-config-rule [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param createRuleRequest
@return AsyncTaskCreatedResponse
func (*WalletApiService) WalletDeleteRulePost ¶
func (a *WalletApiService) WalletDeleteRulePost(ctx context.Context, deleteRuleRequest DeleteRuleRequest) (AsyncTaskCreatedResponse, *http.Response, error)
WalletApiService Create & broadcast delete-config-rule [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param deleteRuleRequest
@return AsyncTaskCreatedResponse
func (*WalletApiService) WalletGetActivityPost ¶
func (a *WalletApiService) WalletGetActivityPost(ctx context.Context, getWalletActivityRequest GetWalletActivityRequest) (GetWalletActivityResponse, *http.Response, error)
WalletApiService Get wallet activity (transactions)
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getWalletActivityRequest
@return GetWalletActivityResponse
func (*WalletApiService) WalletGetBalancesPost ¶
func (a *WalletApiService) WalletGetBalancesPost(ctx context.Context, getWalletBalanceRequest GetWalletBalanceRequest) (GetWalletBalanceResponse, *http.Response, error)
WalletApiService Get wallets balance
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getWalletBalanceRequest
@return GetWalletBalanceResponse
func (*WalletApiService) WalletGetNewAddressPost ¶
func (a *WalletApiService) WalletGetNewAddressPost(ctx context.Context, getNewAddressRequest GetNewAddressRequest) (GetNewAddressResponse, *http.Response, error)
WalletApiService Get a new address from a given diversifier or generate randomly
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getNewAddressRequest
@return GetNewAddressResponse
func (*WalletApiService) WalletGetPublicKeyPost ¶
func (a *WalletApiService) WalletGetPublicKeyPost(ctx context.Context, getPublicKeyRequest GetPublicKeyRequest) (GetPublicKeyResponse, *http.Response, error)
WalletApiService Get wallet public key
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param getPublicKeyRequest
@return GetPublicKeyResponse
func (*WalletApiService) WalletIssueAssetPost ¶
func (a *WalletApiService) WalletIssueAssetPost(ctx context.Context, issueAssetRequest IssueAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
WalletApiService Issue assets [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param issueAssetRequest
@return AsyncTaskCreatedResponse
func (*WalletApiService) WalletTransferAssetPost ¶
func (a *WalletApiService) WalletTransferAssetPost(ctx context.Context, transferAssetRequest TransferAssetRequest) (AsyncTaskCreatedResponse, *http.Response, error)
WalletApiService Transfer assets [async call]
- @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
- @param transferAssetRequest
@return AsyncTaskCreatedResponse
Source Files
¶
- api_analytics.go
- api_async.go
- api_health.go
- api_node.go
- api_wallet.go
- client.go
- configuration.go
- model_analytic_issue_wallet_tx.go
- model_analytic_rule_wallet_tx.go
- model_analytic_transaction.go
- model_analytic_transfer_wallet_tx.go
- model_analytic_wallet_metadata.go
- model_analytic_wallet_tx.go
- model_analytics_asset_converter_proof_description.go
- model_analytics_confidential_issuance_description.go
- model_analytics_content.go
- model_analytics_issue_tx.go
- model_analytics_issue_tx_all_of.go
- model_analytics_output.go
- model_analytics_output_description.go
- model_analytics_public_issuance_description.go
- model_analytics_rule.go
- model_analytics_rule_definition.go
- model_analytics_rule_tx.go
- model_analytics_rule_tx_all_of.go
- model_analytics_rule_wallet_definition.go
- model_analytics_spend_description.go
- model_analytics_transfer_tx.go
- model_analytics_transfer_tx_all_of.go
- model_analytics_tx_metadata.go
- model_async_task_created_response.go
- model_balance_for_asset.go
- model_block.go
- model_confidential_analytics_output.go
- model_create_rule_request.go
- model_delete_rule_request.go
- model_delete_wallet_request.go
- model_error_response.go
- model_export_wallet_request.go
- model_export_wallet_response.go
- model_generate_wallet_request.go
- model_get_activity_request.go
- model_get_activity_response.go
- model_get_all_wallets_response.go
- model_get_blocks_request.go
- model_get_blocks_response.go
- model_get_network_activity_request.go
- model_get_network_activity_response.go
- model_get_new_address_request.go
- model_get_new_address_response.go
- model_get_public_key_request.go
- model_get_public_key_response.go
- model_get_rules_response.go
- model_get_task_status_request.go
- model_get_task_status_response.go
- model_get_transactions_request.go
- model_get_transactions_response.go
- model_get_wallet_activity_request.go
- model_get_wallet_activity_response.go
- model_get_wallet_balance_request.go
- model_get_wallet_balance_response.go
- model_healthcheck_response.go
- model_healthcheck_response_blockchain_connector.go
- model_healthcheck_response_item.go
- model_import_wallet_request.go
- model_issue_asset_request.go
- model_public_analytics_output.go
- model_rule.go
- model_transactions_for_wallet.go
- model_transfer_asset_request.go
- model_unlock_wallet_request.go
- response.go