package
1.4.0-rc.2
Repository: https://github.com/iotaledger/wasp.git
Documentation: pkg.go.dev

# README

Go API client for client

REST API for the Wasp node

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Generation

  • Install newest OpenAPI Generator binary
  • Run an up to date Wasp node
  • Execute openapi-generator-cli generate -i http://localhost:9090/doc/swagger.json -g go --package-name=client

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import "github.com/iotaledger/wasp/clients/apiclient"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), apiclient.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), apiclient.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), apiclient.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), apiclient.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:9090

ClassMethodHTTP requestDescription
AuthApiAuthInfoGet /auth/infoGet information about the current authentication mode
AuthApiAuthenticatePost /authAuthenticate towards the node
ChainsApiActivateChainPost /v1/chains/{chainID}/activateActivate a chain
ChainsApiAddAccessNodePut /v1/chains/{chainID}/access-node/{peer}Configure a trusted node to be an access node.
ChainsApiDeactivateChainPost /v1/chains/{chainID}/deactivateDeactivate a chain
ChainsApiGetChainInfoGet /v1/chains/{chainID}Get information about a specific chain
ChainsApiGetChainsGet /v1/chainsGet a list of all chains
ChainsApiGetCommitteeInfoGet /v1/chains/{chainID}/committeeGet information about the deployed committee
ChainsApiGetContractsGet /v1/chains/{chainID}/contractsGet all available chain contracts
ChainsApiGetRequestIDFromEVMTransactionIDGet /v1/chains/{chainID}/evm/tx/{txHash}Get the ISC request ID for the given Ethereum transaction hash
ChainsApiGetStateValueGet /v1/chains/{chainID}/state/{stateKey}Fetch the raw value associated with the given key in the chain state
ChainsApiRemoveAccessNodeDelete /v1/chains/{chainID}/access-node/{peer}Remove an access node.
ChainsApiSetChainRecordPost /v1/chains/{chainID}/chainrecordSets the chain record.
ChainsApiV1ChainsChainIDEvmGetGet /v1/chains/{chainID}/evmEthereum JSON-RPC
ChainsApiV1ChainsChainIDEvmWsGetGet /v1/chains/{chainID}/evm/wsEthereum JSON-RPC (Websocket transport)
CorecontractsApiAccountsGetAccountBalanceGet /v1/chains/{chainID}/core/accounts/account/{agentID}/balanceGet all assets belonging to an account
CorecontractsApiAccountsGetAccountFoundriesGet /v1/chains/{chainID}/core/accounts/account/{agentID}/foundriesGet all foundries owned by an account
CorecontractsApiAccountsGetAccountNFTIDsGet /v1/chains/{chainID}/core/accounts/account/{agentID}/nftsGet all NFT ids belonging to an account
CorecontractsApiAccountsGetAccountNonceGet /v1/chains/{chainID}/core/accounts/account/{agentID}/nonceGet the current nonce of an account
CorecontractsApiAccountsGetAccountsGet /v1/chains/{chainID}/core/accountsGet a list of all accounts
CorecontractsApiAccountsGetFoundryOutputGet /v1/chains/{chainID}/core/accounts/foundry_output/{serialNumber}Get the foundry output
CorecontractsApiAccountsGetNFTDataGet /v1/chains/{chainID}/core/accounts/nftdata/{nftID}Get the NFT data by an ID
CorecontractsApiAccountsGetNativeTokenIDRegistryGet /v1/chains/{chainID}/core/accounts/token_registryGet a list of all registries
CorecontractsApiAccountsGetTotalAssetsGet /v1/chains/{chainID}/core/accounts/total_assetsGet all stored assets
CorecontractsApiBlobsGetAllBlobsGet /v1/chains/{chainID}/core/blobsGet all stored blobs
CorecontractsApiBlobsGetBlobInfoGet /v1/chains/{chainID}/core/blobs/{blobHash}Get all fields of a blob
CorecontractsApiBlobsGetBlobValueGet /v1/chains/{chainID}/core/blobs/{blobHash}/data/{fieldKey}Get the value of the supplied field (key)
CorecontractsApiBlocklogGetBlockInfoGet /v1/chains/{chainID}/core/blocklog/blocks/{blockIndex}Get the block info of a certain block index
CorecontractsApiBlocklogGetControlAddressesGet /v1/chains/{chainID}/core/blocklog/controladdressesGet the control addresses
CorecontractsApiBlocklogGetEventsOfBlockGet /v1/chains/{chainID}/core/blocklog/events/block/{blockIndex}Get events of a block
CorecontractsApiBlocklogGetEventsOfContractGet /v1/chains/{chainID}/core/blocklog/events/contract/{contractHname}Get events of a contract
CorecontractsApiBlocklogGetEventsOfLatestBlockGet /v1/chains/{chainID}/core/blocklog/events/block/latestGet events of the latest block
CorecontractsApiBlocklogGetEventsOfRequestGet /v1/chains/{chainID}/core/blocklog/events/request/{requestID}Get events of a request
CorecontractsApiBlocklogGetLatestBlockInfoGet /v1/chains/{chainID}/core/blocklog/blocks/latestGet the block info of the latest block
CorecontractsApiBlocklogGetRequestIDsForBlockGet /v1/chains/{chainID}/core/blocklog/blocks/{blockIndex}/requestidsGet the request ids for a certain block index
CorecontractsApiBlocklogGetRequestIDsForLatestBlockGet /v1/chains/{chainID}/core/blocklog/blocks/latest/requestidsGet the request ids for the latest block
CorecontractsApiBlocklogGetRequestIsProcessedGet /v1/chains/{chainID}/core/blocklog/requests/{requestID}/is_processedGet the request processing status
CorecontractsApiBlocklogGetRequestReceiptGet /v1/chains/{chainID}/core/blocklog/requests/{requestID}Get the receipt of a certain request id
CorecontractsApiBlocklogGetRequestReceiptsOfBlockGet /v1/chains/{chainID}/core/blocklog/blocks/{blockIndex}/receiptsGet all receipts of a certain block
CorecontractsApiBlocklogGetRequestReceiptsOfLatestBlockGet /v1/chains/{chainID}/core/blocklog/blocks/latest/receiptsGet all receipts of the latest block
CorecontractsApiErrorsGetErrorMessageFormatGet /v1/chains/{chainID}/core/errors/{contractHname}/message/{errorID}Get the error message format of a specific error id
CorecontractsApiGovernanceGetAllowedStateControllerAddressesGet /v1/chains/{chainID}/core/governance/allowedstatecontrollersGet the allowed state controller addresses
CorecontractsApiGovernanceGetChainInfoGet /v1/chains/{chainID}/core/governance/chaininfoGet the chain info
CorecontractsApiGovernanceGetChainOwnerGet /v1/chains/{chainID}/core/governance/chainownerGet the chain owner
DefaultApiGetHealthGet /healthReturns 200 if the node is healthy.
DefaultApiV1WsGetGet /v1/wsThe websocket connection service
MetricsApiGetChainMessageMetricsGet /v1/metrics/chain/{chainID}/messagesGet chain specific message metrics.
MetricsApiGetChainPipeMetricsGet /v1/metrics/chain/{chainID}/pipeGet chain pipe event metrics.
MetricsApiGetChainWorkflowMetricsGet /v1/metrics/chain/{chainID}/workflowGet chain workflow metrics.
MetricsApiGetNodeMessageMetricsGet /v1/metrics/node/messagesGet accumulated message metrics.
NodeApiDistrustPeerDelete /v1/node/peers/trusted/{peer}Distrust a peering node
NodeApiGenerateDKSPost /v1/node/dksGenerate a new distributed key
NodeApiGetAllPeersGet /v1/node/peersGet basic information about all configured peers
NodeApiGetConfigurationGet /v1/node/configReturn the Wasp configuration
NodeApiGetDKSInfoGet /v1/node/dks/{sharedAddress}Get information about the shared address DKS configuration
NodeApiGetInfoGet /v1/node/infoReturns private information about this node.
NodeApiGetPeeringIdentityGet /v1/node/peers/identityGet basic peer info of the current node
NodeApiGetTrustedPeersGet /v1/node/peers/trustedGet trusted peers
NodeApiGetVersionGet /v1/node/versionReturns the node version.
NodeApiSetNodeOwnerPost /v1/node/owner/certificateSets the node owner
NodeApiShutdownNodePost /v1/node/shutdownShut down the node
NodeApiTrustPeerPost /v1/node/peers/trustedTrust a peering node
RequestsApiCallViewPost /v1/requests/callviewCall a view function on a contract by Hname
RequestsApiGetReceiptGet /v1/chains/{chainID}/receipts/{requestID}Get a receipt from a request ID
RequestsApiOffLedgerPost /v1/requests/offledgerPost an off-ledger request
RequestsApiWaitForRequestGet /v1/chains/{chainID}/requests/{requestID}/waitWait until the given request has been processed by the node
UsersApiAddUserPost /v1/usersAdd a user
UsersApiChangeUserPasswordPut /v1/users/{username}/passwordChange user password
UsersApiChangeUserPermissionsPut /v1/users/{username}/permissionsChange user permissions
UsersApiDeleteUserDelete /v1/users/{username}Deletes a user
UsersApiGetUserGet /v1/users/{username}Get a user
UsersApiGetUsersGet /v1/usersGet a list of all users

Documentation For Models

Documentation For Authorization

Authorization

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: Authorization and passed in as the auth context for each request.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccountFoundriesResponse instantiates a new AccountFoundriesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountFoundriesResponseWithDefaults instantiates a new AccountFoundriesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountListResponse instantiates a new AccountListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountListResponseWithDefaults instantiates a new AccountListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountNFTsResponse instantiates a new AccountNFTsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountNFTsResponseWithDefaults instantiates a new AccountNFTsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountNonceResponse instantiates a new AccountNonceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountNonceResponseWithDefaults instantiates a new AccountNonceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAddUserRequest instantiates a new AddUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAddUserRequestWithDefaults instantiates a new AddUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAliasOutputMetricItem instantiates a new AliasOutputMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAliasOutputMetricItemWithDefaults instantiates a new AliasOutputMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAssets instantiates a new Assets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssetsJSON instantiates a new AssetsJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssetsJSONWithDefaults instantiates a new AssetsJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssetsResponse instantiates a new AssetsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssetsResponseWithDefaults instantiates a new AssetsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssetsWithDefaults instantiates a new Assets object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthInfoModel instantiates a new AuthInfoModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthInfoModelWithDefaults instantiates a new AuthInfoModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseToken instantiates a new BaseToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseTokenWithDefaults instantiates a new BaseToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlob instantiates a new Blob object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlobInfoResponse instantiates a new BlobInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlobInfoResponseWithDefaults instantiates a new BlobInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlobListResponse instantiates a new BlobListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlobListResponseWithDefaults instantiates a new BlobListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlobValueResponse instantiates a new BlobValueResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlobValueResponseWithDefaults instantiates a new BlobValueResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlobWithDefaults instantiates a new Blob object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockInfoResponse instantiates a new BlockInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockInfoResponseWithDefaults instantiates a new BlockInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockReceiptError instantiates a new BlockReceiptError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockReceiptErrorWithDefaults instantiates a new BlockReceiptError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBlockReceiptsResponse instantiates a new BlockReceiptsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBlockReceiptsResponseWithDefaults instantiates a new BlockReceiptsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBurnLog instantiates a new BurnLog object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBurnLogWithDefaults instantiates a new BurnLog object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBurnRecord instantiates a new BurnRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBurnRecordWithDefaults instantiates a new BurnRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCallTarget instantiates a new CallTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCallTargetJSON instantiates a new CallTargetJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCallTargetJSONWithDefaults instantiates a new CallTargetJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCallTargetWithDefaults instantiates a new CallTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChainInfoResponse instantiates a new ChainInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChainInfoResponseWithDefaults instantiates a new ChainInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChainMessageMetrics instantiates a new ChainMessageMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChainMessageMetricsWithDefaults instantiates a new ChainMessageMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChainMetadata instantiates a new ChainMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChainMetadataWithDefaults instantiates a new ChainMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewChainRecord instantiates a new ChainRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewChainRecordWithDefaults instantiates a new ChainRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitteeInfoResponse instantiates a new CommitteeInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitteeInfoResponseWithDefaults instantiates a new CommitteeInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCommitteeNode instantiates a new CommitteeNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCommitteeNodeWithDefaults instantiates a new CommitteeNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConsensusPipeMetrics instantiates a new ConsensusPipeMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConsensusPipeMetricsWithDefaults instantiates a new ConsensusPipeMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConsensusWorkflowMetrics instantiates a new ConsensusWorkflowMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConsensusWorkflowMetricsWithDefaults instantiates a new ConsensusWorkflowMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContractCallViewRequest instantiates a new ContractCallViewRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContractCallViewRequestWithDefaults instantiates a new ContractCallViewRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContractInfoResponse instantiates a new ContractInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContractInfoResponseWithDefaults instantiates a new ContractInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewControlAddressesResponse instantiates a new ControlAddressesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewControlAddressesResponseWithDefaults instantiates a new ControlAddressesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDKSharesInfo instantiates a new DKSharesInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDKSharesInfoWithDefaults instantiates a new DKSharesInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDKSharesPostRequest instantiates a new DKSharesPostRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDKSharesPostRequestWithDefaults instantiates a new DKSharesPostRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorMessageFormatResponse instantiates a new ErrorMessageFormatResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorMessageFormatResponseWithDefaults instantiates a new ErrorMessageFormatResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewErrorParameter instantiates a new ErrorParameter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewErrorParameterWithDefaults instantiates a new ErrorParameter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasRequestOffledger instantiates a new EstimateGasRequestOffledger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasRequestOffledgerWithDefaults instantiates a new EstimateGasRequestOffledger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEstimateGasRequestOnledger instantiates a new EstimateGasRequestOnledger object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEstimateGasRequestOnledgerWithDefaults instantiates a new EstimateGasRequestOnledger object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEvent instantiates a new Event object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventJSON instantiates a new EventJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventJSONWithDefaults instantiates a new EventJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventsResponse instantiates a new EventsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventsResponseWithDefaults instantiates a new EventsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventWithDefaults instantiates a new Event object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeePolicy instantiates a new FeePolicy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeePolicyWithDefaults instantiates a new FeePolicy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFoundryOutputResponse instantiates a new FoundryOutputResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFoundryOutputResponseWithDefaults instantiates a new FoundryOutputResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGovAllowedStateControllerAddressesResponse instantiates a new GovAllowedStateControllerAddressesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGovAllowedStateControllerAddressesResponseWithDefaults instantiates a new GovAllowedStateControllerAddressesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGovChainInfoResponse instantiates a new GovChainInfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGovChainInfoResponseWithDefaults instantiates a new GovChainInfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGovChainMetadata instantiates a new GovChainMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGovChainMetadataWithDefaults instantiates a new GovChainMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGovChainOwnerResponse instantiates a new GovChainOwnerResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGovChainOwnerResponseWithDefaults instantiates a new GovChainOwnerResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGovPublicChainMetadata instantiates a new GovPublicChainMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGovPublicChainMetadataWithDefaults instantiates a new GovPublicChainMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInfoResponse instantiates a new InfoResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInfoResponseWithDefaults instantiates a new InfoResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInOutput instantiates a new InOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInOutputMetricItem instantiates a new InOutputMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInOutputMetricItemWithDefaults instantiates a new InOutputMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInOutputWithDefaults instantiates a new InOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInStateOutput instantiates a new InStateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInStateOutputMetricItem instantiates a new InStateOutputMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInStateOutputMetricItemWithDefaults instantiates a new InStateOutputMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInStateOutputWithDefaults instantiates a new InStateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInterfaceMetricItem instantiates a new InterfaceMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInterfaceMetricItemWithDefaults instantiates a new InterfaceMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewItem instantiates a new Item object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewItemWithDefaults instantiates a new Item object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJSONDict instantiates a new JSONDict object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJSONDictWithDefaults instantiates a new JSONDict object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewL1Params instantiates a new L1Params object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewL1ParamsWithDefaults instantiates a new L1Params object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLimits instantiates a new Limits object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLimitsWithDefaults instantiates a new Limits object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLoginRequest instantiates a new LoginRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLoginRequestWithDefaults instantiates a new LoginRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLoginResponse instantiates a new LoginResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLoginResponseWithDefaults instantiates a new LoginResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMilestoneInfo instantiates a new MilestoneInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMilestoneInfoWithDefaults instantiates a new MilestoneInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMilestoneMetricItem instantiates a new MilestoneMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMilestoneMetricItemWithDefaults instantiates a new MilestoneMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNativeToken instantiates a new NativeToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNativeTokenIDRegistryResponse instantiates a new NativeTokenIDRegistryResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNativeTokenIDRegistryResponseWithDefaults instantiates a new NativeTokenIDRegistryResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNativeTokenJSON instantiates a new NativeTokenJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNativeTokenJSONWithDefaults instantiates a new NativeTokenJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNativeTokenWithDefaults instantiates a new NativeToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNFTDataResponse instantiates a new NFTDataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNFTDataResponseWithDefaults instantiates a new NFTDataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNFTJSON instantiates a new NFTJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNFTJSONWithDefaults instantiates a new NFTJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeMessageMetrics instantiates a new NodeMessageMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeMessageMetricsWithDefaults instantiates a new NodeMessageMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeOwnerCertificateRequest instantiates a new NodeOwnerCertificateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeOwnerCertificateRequestWithDefaults instantiates a new NodeOwnerCertificateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNodeOwnerCertificateResponse instantiates a new NodeOwnerCertificateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNodeOwnerCertificateResponseWithDefaults instantiates a new NodeOwnerCertificateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOffLedgerRequest instantiates a new OffLedgerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOffLedgerRequestWithDefaults instantiates a new OffLedgerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOnLedgerRequest instantiates a new OnLedgerRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOnLedgerRequestMetricItem instantiates a new OnLedgerRequestMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOnLedgerRequestMetricItemWithDefaults instantiates a new OnLedgerRequestMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOnLedgerRequestWithDefaults instantiates a new OnLedgerRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOutput instantiates a new Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOutputID instantiates a new OutputID object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOutputIDWithDefaults instantiates a new OutputID object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOutputWithDefaults instantiates a new Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPeeringNodeIdentityResponse instantiates a new PeeringNodeIdentityResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPeeringNodeIdentityResponseWithDefaults instantiates a new PeeringNodeIdentityResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPeeringNodeStatusResponse instantiates a new PeeringNodeStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPeeringNodeStatusResponseWithDefaults instantiates a new PeeringNodeStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPeeringTrustRequest instantiates a new PeeringTrustRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPeeringTrustRequestWithDefaults instantiates a new PeeringTrustRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProtocolParameters instantiates a new ProtocolParameters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProtocolParametersWithDefaults instantiates a new ProtocolParameters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPublicChainMetadata instantiates a new PublicChainMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPublicChainMetadataWithDefaults instantiates a new PublicChainMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPublisherStateTransactionItem instantiates a new PublisherStateTransactionItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPublisherStateTransactionItemWithDefaults instantiates a new PublisherStateTransactionItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRatio32 instantiates a new Ratio32 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRatio32WithDefaults instantiates a new Ratio32 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReceiptError instantiates a new ReceiptError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReceiptErrorWithDefaults instantiates a new ReceiptError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReceiptResponse instantiates a new ReceiptResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReceiptResponseWithDefaults instantiates a new ReceiptResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRentStructure instantiates a new RentStructure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRentStructureWithDefaults instantiates a new RentStructure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestDetail instantiates a new RequestDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestDetailWithDefaults instantiates a new RequestDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestIDResponse instantiates a new RequestIDResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestIDResponseWithDefaults instantiates a new RequestIDResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestIDsResponse instantiates a new RequestIDsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestIDsResponseWithDefaults instantiates a new RequestIDsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestJSON instantiates a new RequestJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestJSONWithDefaults instantiates a new RequestJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestProcessedResponse instantiates a new RequestProcessedResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestProcessedResponseWithDefaults instantiates a new RequestProcessedResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequestReceiptResponse instantiates a new RequestReceiptResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequestReceiptResponseWithDefaults instantiates a new RequestReceiptResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateResponse instantiates a new StateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateResponseWithDefaults instantiates a new StateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStateTransaction instantiates a new StateTransaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStateTransactionWithDefaults instantiates a new StateTransaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransaction instantiates a new Transaction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionIDMetricItem instantiates a new TransactionIDMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionIDMetricItemWithDefaults instantiates a new TransactionIDMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionMetricItem instantiates a new TransactionMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTransactionMetricItemWithDefaults instantiates a new TransactionMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTransactionWithDefaults instantiates a new Transaction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTxInclusionStateMsg instantiates a new TxInclusionStateMsg object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTxInclusionStateMsgMetricItem instantiates a new TxInclusionStateMsgMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTxInclusionStateMsgMetricItemWithDefaults instantiates a new TxInclusionStateMsgMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTxInclusionStateMsgWithDefaults instantiates a new TxInclusionStateMsg object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnresolvedVMError instantiates a new UnresolvedVMError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnresolvedVMErrorJSON instantiates a new UnresolvedVMErrorJSON object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnresolvedVMErrorJSONWithDefaults instantiates a new UnresolvedVMErrorJSON object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnresolvedVMErrorWithDefaults instantiates a new UnresolvedVMError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateUserPasswordRequest instantiates a new UpdateUserPasswordRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateUserPasswordRequestWithDefaults instantiates a new UpdateUserPasswordRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateUserPermissionsRequest instantiates a new UpdateUserPermissionsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateUserPermissionsRequestWithDefaults instantiates a new UpdateUserPermissionsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUTXOInputMetricItem instantiates a new UTXOInputMetricItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUTXOInputMetricItemWithDefaults instantiates a new UTXOInputMetricItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidationError instantiates a new ValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidationErrorWithDefaults instantiates a new ValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVersionResponse instantiates a new VersionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVersionResponseWithDefaults instantiates a new VersionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVMErrorCode instantiates a new VMErrorCode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVMErrorCodeWithDefaults instantiates a new VMErrorCode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextAPIKeys takes a string apikey as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AccountFoundriesResponse struct for AccountFoundriesResponse.
AccountListResponse struct for AccountListResponse.
AccountNFTsResponse struct for AccountNFTsResponse.
AccountNonceResponse struct for AccountNonceResponse.
AddUserRequest struct for AddUserRequest.
AliasOutputMetricItem struct for AliasOutputMetricItem.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Wasp API API v0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Assets struct for Assets.
AssetsJSON struct for AssetsJSON.
AssetsResponse struct for AssetsResponse.
AuthInfoModel struct for AuthInfoModel.
BaseToken struct for BaseToken.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Blob struct for Blob.
BlobInfoResponse struct for BlobInfoResponse.
BlobListResponse struct for BlobListResponse.
BlobValueResponse struct for BlobValueResponse.
BlockInfoResponse struct for BlockInfoResponse.
BlockReceiptError struct for BlockReceiptError.
BlockReceiptsResponse struct for BlockReceiptsResponse.
BurnLog struct for BurnLog.
BurnRecord struct for BurnRecord.
CallTarget struct for CallTarget.
CallTargetJSON struct for CallTargetJSON.
ChainInfoResponse struct for ChainInfoResponse.
ChainMessageMetrics struct for ChainMessageMetrics.
ChainMetadata struct for ChainMetadata.
ChainRecord struct for ChainRecord.
CommitteeInfoResponse struct for CommitteeInfoResponse.
CommitteeNode struct for CommitteeNode.
Configuration stores the configuration of the API client.
ConsensusPipeMetrics struct for ConsensusPipeMetrics.
ConsensusWorkflowMetrics struct for ConsensusWorkflowMetrics.
ContractCallViewRequest struct for ContractCallViewRequest.
ContractInfoResponse struct for ContractInfoResponse.
ControlAddressesResponse struct for ControlAddressesResponse.
DKSharesInfo struct for DKSharesInfo.
DKSharesPostRequest struct for DKSharesPostRequest.
ErrorMessageFormatResponse struct for ErrorMessageFormatResponse.
ErrorParameter struct for ErrorParameter.
EstimateGasRequestOffledger struct for EstimateGasRequestOffledger.
EstimateGasRequestOnledger struct for EstimateGasRequestOnledger.
Event struct for Event.
EventJSON struct for EventJSON.
EventsResponse struct for EventsResponse.
FeePolicy struct for FeePolicy.
FoundryOutputResponse struct for FoundryOutputResponse.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GovAllowedStateControllerAddressesResponse struct for GovAllowedStateControllerAddressesResponse.
GovChainInfoResponse struct for GovChainInfoResponse.
GovChainMetadata struct for GovChainMetadata.
GovChainOwnerResponse struct for GovChainOwnerResponse.
GovPublicChainMetadata struct for GovPublicChainMetadata.
InfoResponse struct for InfoResponse.
InOutput struct for InOutput.
InOutputMetricItem struct for InOutputMetricItem.
InStateOutput struct for InStateOutput.
InStateOutputMetricItem struct for InStateOutputMetricItem.
InterfaceMetricItem struct for InterfaceMetricItem.
Item struct for Item.
JSONDict struct for JSONDict.
L1Params struct for L1Params.
Limits struct for Limits.
LoginRequest struct for LoginRequest.
LoginResponse struct for LoginResponse.
MilestoneInfo struct for MilestoneInfo.
MilestoneMetricItem struct for MilestoneMetricItem.
NativeToken struct for NativeToken.
NativeTokenIDRegistryResponse struct for NativeTokenIDRegistryResponse.
NativeTokenJSON struct for NativeTokenJSON.
NFTDataResponse struct for NFTDataResponse.
NFTJSON struct for NFTJSON.
NodeMessageMetrics struct for NodeMessageMetrics.
NodeOwnerCertificateRequest struct for NodeOwnerCertificateRequest.
NodeOwnerCertificateResponse struct for NodeOwnerCertificateResponse.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OffLedgerRequest struct for OffLedgerRequest.
OnLedgerRequest struct for OnLedgerRequest.
OnLedgerRequestMetricItem struct for OnLedgerRequestMetricItem.
Output struct for Output.
OutputID struct for OutputID.
PeeringNodeIdentityResponse struct for PeeringNodeIdentityResponse.
PeeringNodeStatusResponse struct for PeeringNodeStatusResponse.
PeeringTrustRequest struct for PeeringTrustRequest.
ProtocolParameters struct for ProtocolParameters.
PublicChainMetadata struct for PublicChainMetadata.
PublisherStateTransactionItem struct for PublisherStateTransactionItem.
Ratio32 struct for Ratio32.
ReceiptError struct for ReceiptError.
ReceiptResponse struct for ReceiptResponse.
RentStructure struct for RentStructure.
RequestDetail struct for RequestDetail.
RequestIDResponse struct for RequestIDResponse.
RequestIDsResponse struct for RequestIDsResponse.
RequestJSON struct for RequestJSON.
RequestProcessedResponse struct for RequestProcessedResponse.
RequestReceiptResponse struct for RequestReceiptResponse.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
StateResponse struct for StateResponse.
StateTransaction struct for StateTransaction.
Transaction struct for Transaction.
TransactionIDMetricItem struct for TransactionIDMetricItem.
TransactionMetricItem struct for TransactionMetricItem.
TxInclusionStateMsg struct for TxInclusionStateMsg.
TxInclusionStateMsgMetricItem struct for TxInclusionStateMsgMetricItem.
UnresolvedVMError struct for UnresolvedVMError.
UnresolvedVMErrorJSON struct for UnresolvedVMErrorJSON.
UpdateUserPasswordRequest struct for UpdateUserPasswordRequest.
UpdateUserPermissionsRequest struct for UpdateUserPermissionsRequest.
User struct for User.
UTXOInputMetricItem struct for UTXOInputMetricItem.
ValidationError struct for ValidationError.
VersionResponse struct for VersionResponse.
VMErrorCode struct for VMErrorCode.

# Interfaces

No description provided by the author

# Type aliases

AuthApiService AuthApi service.
ChainsApiService ChainsApi service.
CorecontractsApiService CorecontractsApi service.
DefaultApiService DefaultApi service.
MetricsApiService MetricsApi service.
NodeApiService NodeApi service.
RequestsApiService RequestsApi service.
ServerConfigurations stores multiple ServerConfiguration items.
UsersApiService UsersApi service.